From 36b4022996659aa38771f80b78b109a6168a1dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Capucho?= Date: Tue, 10 Dec 2024 23:09:42 +0000 Subject: [PATCH] AED: Add missing files --- 2ano1/AED/aula01/table | 7 + 2ano1/AED/aula02/binary_search.c | 41 + 2ano1/AED/aula02/ex02.c | 73 + 2ano1/AED/aula02/ex03.c | 31 + 2ano1/AED/aula02/ex04.c | 104 + 2ano1/AED/aula02/ex05.c | 98 + .../AED/aula02/integer_arithmetic_pitfalls.c | 46 + 2ano1/AED/aula02/primes.c | 31 + 2ano1/AED/aula03/elapsed_time.h | 58 + 2ano1/AED/aula03/ex03.c | 62 + 2ano1/AED/aula03/ex04.c | 65 + 2ano1/AED/aula03/examples.c | 484 + 2ano1/AED/aula03/functions_iterations_count.c | 256 + 2ano1/AED/aula03/functions_timing.c | 304 + 2ano1/AED/aula03/out | 77 + 2ano1/AED/aula04/ex01.c | 44 + 2ano1/AED/aula04/ex02.c | 55 + 2ano1/AED/aula04/ex03.c | 58 + 2ano1/AED/aula04/guiao.norg | 151 + 2ano1/AED/aula05/assets/ex03_calls.excalidraw | 554 + 2ano1/AED/aula05/assets/ex03_calls.png | Bin 0 -> 132743 bytes 2ano1/AED/aula05/ex01.c | 59 + 2ano1/AED/aula05/guiao.norg | 161 + 2ano1/AED/aula06/cache_stats.txt | 121 + 2ano1/AED/aula06/ex01a.c | 43 + 2ano1/AED/aula06/ex01b.c | 53 + 2ano1/AED/aula06/ex01c.c | 59 + 2ano1/AED/aula06/ex02a.c | 34 + 2ano1/AED/aula06/ex02b.c | 23 + 2ano1/AED/aula06/memoized_stats.txt | 10201 ++ 2ano1/AED/aula06/recursive_stats.txt | 121 + 2ano1/AED/aula07/ex01/Makefile | 40 + 2ano1/AED/aula07/ex01/src/01_example.c | 42 + 2ano1/AED/aula07/ex01/src/IntegersQueue.c | 87 + 2ano1/AED/aula07/ex01/src/IntegersQueue.h | 33 + 2ano1/AED/aula07/ex01/src/IntegersStack.c | 65 + 2ano1/AED/aula07/ex01/src/IntegersStack.h | 34 + 2ano1/AED/aula07/ex02/Makefile | 40 + 2ano1/AED/aula07/ex02/src/Date.c | 186 + 2ano1/AED/aula07/ex02/src/Date.h | 49 + 2ano1/AED/aula07/ex02/src/Person.c | 86 + 2ano1/AED/aula07/ex02/src/Person.h | 27 + 2ano1/AED/aula07/ex02/src/Tests.c | 205 + 2ano1/AED/aula07/ex03/Makefile | 40 + 2ano1/AED/aula07/ex03/src/Date.c | 186 + 2ano1/AED/aula07/ex03/src/Date.h | 49 + 2ano1/AED/aula07/ex03/src/Ex03.c | 47 + 2ano1/AED/aula07/ex03/src/Person.c | 86 + 2ano1/AED/aula07/ex03/src/Person.h | 27 + 2ano1/AED/aula07/ex03/src/PointersQueue.c | 88 + 2ano1/AED/aula07/ex03/src/PointersQueue.h | 33 + 2ano1/AED/aula07/ex03/src/PointersStack.c | 64 + 2ano1/AED/aula07/ex03/src/PointersStack.h | 33 + 2ano1/AED/aula08/Date.c | 149 + 2ano1/AED/aula08/Date.h | 46 + 2ano1/AED/aula08/Makefile | 36 + 2ano1/AED/aula08/Person.c | 79 + 2ano1/AED/aula08/Person.h | 27 + 2ano1/AED/aula08/PersonSet.c | 234 + 2ano1/AED/aula08/PersonSet.h | 30 + 2ano1/AED/aula08/Tests.c | 160 + 2ano1/AED/aula08/ref-12.txt | 153 + 2ano1/AED/aula08/ref-14.txt | 151 + 2ano1/AED/aula10/BSTree.c | 564 + 2ano1/AED/aula10/BSTree.h | 66 + 2ano1/AED/aula10/BSTreeTest.c | 104 + 2ano1/AED/aula10/Date.c | 150 + 2ano1/AED/aula10/Date.h | 48 + 2ano1/AED/aula10/Makefile | 39 + 2ano1/AED/aula10/Person.c | 88 + 2ano1/AED/aula10/Person.h | 28 + 2ano1/AED/aula10/PersonSet.c | 209 + 2ano1/AED/aula10/PersonSet.h | 33 + 2ano1/AED/aula10/PointersQueue.c | 118 + 2ano1/AED/aula10/PointersQueue.h | 30 + 2ano1/AED/aula10/Tests.c | 162 + 2ano1/AED/aula10/ref-0.txt | 418 + 2ano1/AED/aula10/ref-12.txt | 153 + 2ano1/AED/aula10/ref-14.txt | 151 + 2ano1/AED/aula11/FileMerge.c | 102 + 2ano1/AED/aula11/FileReader.c | 59 + 2ano1/AED/aula11/FileReader.h | 33 + 2ano1/AED/aula11/HashTable.c | 371 + 2ano1/AED/aula11/HashTable.h | 71 + 2ano1/AED/aula11/KLongestWords.c | 195 + 2ano1/AED/aula11/Makefile | 44 + 2ano1/AED/aula11/MinHeap.c | 194 + 2ano1/AED/aula11/MinHeap.h | 51 + 2ano1/AED/aula11/MinHeapTest.c | 92 + 2ano1/AED/aula11/SherlockHolmes.txt | 76758 ++++++++++++++++ 2ano1/AED/aula11/TopKValues.c | 127 + 2ano1/AED/aula11/aleatorios02500.txt | 2500 + 2ano1/AED/aula11/aleatorios05000.txt | 5000 + 2ano1/AED/aula11/aleatorios10000.txt | 10000 ++ 2ano1/AED/aula11/aleatorios20000.txt | 20000 ++++ 2ano1/AED/aula11/aleatorios40000.txt | 40000 ++++++++ 2ano1/AED/aula11/file10.txt | 10 + 2ano1/AED/aula11/file11.txt | 11 + 2ano1/AED/aula11/file12.txt | 12 + 2ano1/AED/aula11/file20.txt | 20 + 2ano1/AED/aula11/file99.txt | 99 + 2ano1/AED/aula11/ordInversa02500.txt | 2500 + 2ano1/AED/aula11/ordenados02500.txt | 2500 + 2ano1/AED/aula12/Graph.c | 465 + 2ano1/AED/aula12/Graph.h | 94 + 2ano1/AED/aula12/GraphBFSWithQueue.c | 150 + 2ano1/AED/aula12/GraphBFSWithQueue.h | 33 + 2ano1/AED/aula12/GraphDFSRec.c | 132 + 2ano1/AED/aula12/GraphDFSRec.h | 33 + 2ano1/AED/aula12/GraphDFSWithStack.c | 139 + 2ano1/AED/aula12/GraphDFSWithStack.h | 33 + 2ano1/AED/aula12/IntegersQueue.c | 86 + 2ano1/AED/aula12/IntegersQueue.h | 32 + 2ano1/AED/aula12/IntegersStack.c | 65 + 2ano1/AED/aula12/IntegersStack.h | 34 + 2ano1/AED/aula12/Makefile | 48 + 2ano1/AED/aula12/SortedList.c | 340 + 2ano1/AED/aula12/SortedList.h | 70 + 2ano1/AED/aula12/example1.c | 51 + 2ano1/AED/aula12/example2.c | 64 + 2ano1/AED/aula12/example3.c | 63 + 2ano1/AED/aula13/Circle.cpp | 83 + 2ano1/AED/aula13/Circle.h | 37 + 2ano1/AED/aula13/CircleTest.cpp | 53 + 2ano1/AED/aula13/Figure.cpp | 28 + 2ano1/AED/aula13/Figure.h | 36 + 2ano1/AED/aula13/FiguresTest.cpp | 56 + 2ano1/AED/aula13/Makefile | 45 + 2ano1/AED/aula13/Point.cpp | 38 + 2ano1/AED/aula13/Point.h | 32 + 2ano1/AED/aula13/PointTest.cpp | 24 + 2ano1/AED/aula13/Rectangle.cpp | 81 + 2ano1/AED/aula13/Rectangle.h | 41 + 2ano1/AED/aula13/RectangleTest.cpp | 40 + 2ano1/AED/aula13/Square.cpp | 58 + 2ano1/AED/aula13/Square.h | 31 + 2ano1/AED/aula13/SquareTest.cpp | 40 + 2ano1/AED/aula13/Triangle.cpp | 45 + 2ano1/AED/aula13/Triangle.h | 40 + 139 files changed, 181936 insertions(+) create mode 100644 2ano1/AED/aula01/table create mode 100644 2ano1/AED/aula02/binary_search.c create mode 100644 2ano1/AED/aula02/ex02.c create mode 100644 2ano1/AED/aula02/ex03.c create mode 100644 2ano1/AED/aula02/ex04.c create mode 100644 2ano1/AED/aula02/ex05.c create mode 100644 2ano1/AED/aula02/integer_arithmetic_pitfalls.c create mode 100644 2ano1/AED/aula02/primes.c create mode 100644 2ano1/AED/aula03/elapsed_time.h create mode 100644 2ano1/AED/aula03/ex03.c create mode 100644 2ano1/AED/aula03/ex04.c create mode 100644 2ano1/AED/aula03/examples.c create mode 100644 2ano1/AED/aula03/functions_iterations_count.c create mode 100644 2ano1/AED/aula03/functions_timing.c create mode 100644 2ano1/AED/aula03/out create mode 100644 2ano1/AED/aula04/ex01.c create mode 100644 2ano1/AED/aula04/ex02.c create mode 100644 2ano1/AED/aula04/ex03.c create mode 100644 2ano1/AED/aula04/guiao.norg create mode 100644 2ano1/AED/aula05/assets/ex03_calls.excalidraw create mode 100644 2ano1/AED/aula05/assets/ex03_calls.png create mode 100644 2ano1/AED/aula05/ex01.c create mode 100644 2ano1/AED/aula05/guiao.norg create mode 100644 2ano1/AED/aula06/cache_stats.txt create mode 100644 2ano1/AED/aula06/ex01a.c create mode 100644 2ano1/AED/aula06/ex01b.c create mode 100644 2ano1/AED/aula06/ex01c.c create mode 100644 2ano1/AED/aula06/ex02a.c create mode 100644 2ano1/AED/aula06/ex02b.c create mode 100644 2ano1/AED/aula06/memoized_stats.txt create mode 100644 2ano1/AED/aula06/recursive_stats.txt create mode 100644 2ano1/AED/aula07/ex01/Makefile create mode 100644 2ano1/AED/aula07/ex01/src/01_example.c create mode 100644 2ano1/AED/aula07/ex01/src/IntegersQueue.c create mode 100644 2ano1/AED/aula07/ex01/src/IntegersQueue.h create mode 100644 2ano1/AED/aula07/ex01/src/IntegersStack.c create mode 100644 2ano1/AED/aula07/ex01/src/IntegersStack.h create mode 100644 2ano1/AED/aula07/ex02/Makefile create mode 100644 2ano1/AED/aula07/ex02/src/Date.c create mode 100644 2ano1/AED/aula07/ex02/src/Date.h create mode 100644 2ano1/AED/aula07/ex02/src/Person.c create mode 100644 2ano1/AED/aula07/ex02/src/Person.h create mode 100644 2ano1/AED/aula07/ex02/src/Tests.c create mode 100644 2ano1/AED/aula07/ex03/Makefile create mode 100644 2ano1/AED/aula07/ex03/src/Date.c create mode 100644 2ano1/AED/aula07/ex03/src/Date.h create mode 100644 2ano1/AED/aula07/ex03/src/Ex03.c create mode 100644 2ano1/AED/aula07/ex03/src/Person.c create mode 100644 2ano1/AED/aula07/ex03/src/Person.h create mode 100644 2ano1/AED/aula07/ex03/src/PointersQueue.c create mode 100644 2ano1/AED/aula07/ex03/src/PointersQueue.h create mode 100644 2ano1/AED/aula07/ex03/src/PointersStack.c create mode 100644 2ano1/AED/aula07/ex03/src/PointersStack.h create mode 100644 2ano1/AED/aula08/Date.c create mode 100644 2ano1/AED/aula08/Date.h create mode 100644 2ano1/AED/aula08/Makefile create mode 100644 2ano1/AED/aula08/Person.c create mode 100644 2ano1/AED/aula08/Person.h create mode 100644 2ano1/AED/aula08/PersonSet.c create mode 100644 2ano1/AED/aula08/PersonSet.h create mode 100644 2ano1/AED/aula08/Tests.c create mode 100644 2ano1/AED/aula08/ref-12.txt create mode 100644 2ano1/AED/aula08/ref-14.txt create mode 100644 2ano1/AED/aula10/BSTree.c create mode 100644 2ano1/AED/aula10/BSTree.h create mode 100644 2ano1/AED/aula10/BSTreeTest.c create mode 100644 2ano1/AED/aula10/Date.c create mode 100644 2ano1/AED/aula10/Date.h create mode 100644 2ano1/AED/aula10/Makefile create mode 100644 2ano1/AED/aula10/Person.c create mode 100644 2ano1/AED/aula10/Person.h create mode 100644 2ano1/AED/aula10/PersonSet.c create mode 100644 2ano1/AED/aula10/PersonSet.h create mode 100644 2ano1/AED/aula10/PointersQueue.c create mode 100644 2ano1/AED/aula10/PointersQueue.h create mode 100644 2ano1/AED/aula10/Tests.c create mode 100644 2ano1/AED/aula10/ref-0.txt create mode 100644 2ano1/AED/aula10/ref-12.txt create mode 100644 2ano1/AED/aula10/ref-14.txt create mode 100644 2ano1/AED/aula11/FileMerge.c create mode 100644 2ano1/AED/aula11/FileReader.c create mode 100644 2ano1/AED/aula11/FileReader.h create mode 100644 2ano1/AED/aula11/HashTable.c create mode 100644 2ano1/AED/aula11/HashTable.h create mode 100644 2ano1/AED/aula11/KLongestWords.c create mode 100644 2ano1/AED/aula11/Makefile create mode 100644 2ano1/AED/aula11/MinHeap.c create mode 100644 2ano1/AED/aula11/MinHeap.h create mode 100644 2ano1/AED/aula11/MinHeapTest.c create mode 100644 2ano1/AED/aula11/SherlockHolmes.txt create mode 100644 2ano1/AED/aula11/TopKValues.c create mode 100644 2ano1/AED/aula11/aleatorios02500.txt create mode 100644 2ano1/AED/aula11/aleatorios05000.txt create mode 100644 2ano1/AED/aula11/aleatorios10000.txt create mode 100644 2ano1/AED/aula11/aleatorios20000.txt create mode 100644 2ano1/AED/aula11/aleatorios40000.txt create mode 100644 2ano1/AED/aula11/file10.txt create mode 100644 2ano1/AED/aula11/file11.txt create mode 100644 2ano1/AED/aula11/file12.txt create mode 100644 2ano1/AED/aula11/file20.txt create mode 100644 2ano1/AED/aula11/file99.txt create mode 100644 2ano1/AED/aula11/ordInversa02500.txt create mode 100644 2ano1/AED/aula11/ordenados02500.txt create mode 100644 2ano1/AED/aula12/Graph.c create mode 100644 2ano1/AED/aula12/Graph.h create mode 100644 2ano1/AED/aula12/GraphBFSWithQueue.c create mode 100644 2ano1/AED/aula12/GraphBFSWithQueue.h create mode 100644 2ano1/AED/aula12/GraphDFSRec.c create mode 100644 2ano1/AED/aula12/GraphDFSRec.h create mode 100644 2ano1/AED/aula12/GraphDFSWithStack.c create mode 100644 2ano1/AED/aula12/GraphDFSWithStack.h create mode 100644 2ano1/AED/aula12/IntegersQueue.c create mode 100644 2ano1/AED/aula12/IntegersQueue.h create mode 100644 2ano1/AED/aula12/IntegersStack.c create mode 100644 2ano1/AED/aula12/IntegersStack.h create mode 100644 2ano1/AED/aula12/Makefile create mode 100644 2ano1/AED/aula12/SortedList.c create mode 100644 2ano1/AED/aula12/SortedList.h create mode 100644 2ano1/AED/aula12/example1.c create mode 100644 2ano1/AED/aula12/example2.c create mode 100644 2ano1/AED/aula12/example3.c create mode 100644 2ano1/AED/aula13/Circle.cpp create mode 100644 2ano1/AED/aula13/Circle.h create mode 100644 2ano1/AED/aula13/CircleTest.cpp create mode 100644 2ano1/AED/aula13/Figure.cpp create mode 100644 2ano1/AED/aula13/Figure.h create mode 100644 2ano1/AED/aula13/FiguresTest.cpp create mode 100644 2ano1/AED/aula13/Makefile create mode 100644 2ano1/AED/aula13/Point.cpp create mode 100644 2ano1/AED/aula13/Point.h create mode 100644 2ano1/AED/aula13/PointTest.cpp create mode 100644 2ano1/AED/aula13/Rectangle.cpp create mode 100644 2ano1/AED/aula13/Rectangle.h create mode 100644 2ano1/AED/aula13/RectangleTest.cpp create mode 100644 2ano1/AED/aula13/Square.cpp create mode 100644 2ano1/AED/aula13/Square.h create mode 100644 2ano1/AED/aula13/SquareTest.cpp create mode 100644 2ano1/AED/aula13/Triangle.cpp create mode 100644 2ano1/AED/aula13/Triangle.h diff --git a/2ano1/AED/aula01/table b/2ano1/AED/aula01/table new file mode 100644 index 0000000..335454d --- /dev/null +++ b/2ano1/AED/aula01/table @@ -0,0 +1,7 @@ +ang sin (ang) cos (ang) +------ ----------- ----------- + 20.00 0.34202013 0.93969262 + 25.00 0.42261826 0.90630779 + 30.00 0.50000001 0.86602540 + 35.00 0.57357643 0.81915205 + 40.00 0.64278759 0.76604446 diff --git a/2ano1/AED/aula02/binary_search.c b/2ano1/AED/aula02/binary_search.c new file mode 100644 index 0000000..1d61788 --- /dev/null +++ b/2ano1/AED/aula02/binary_search.c @@ -0,0 +1,41 @@ +// +// Tomás Oliveira e Silva, AED, October 2021 +// +// This program contains a flawed binary search implementation. +// Use the gdb program to execute the binary_search() function +// one line at a line and to examine the value of all relevant +// variables to find where it goes wrong. (Do not put calls to +// the printf function to discover what is wrong. In the context +// of the present exercise that would be cheating.) +// + +#include + +int binary_search(int *a, int n, int d) { + int lo = 0; + int hi = n - 1; + while (hi >= lo) { + int middle = (lo + hi) / 2; + if (a[middle] == d) + return middle; // found it + if (a[middle] < d) + lo = middle + 1; + else + hi = middle - 1; + } + return -1; // not found +} + +int main(void) { + int a[8] = {1, 3, 8, 11, 18, 19, 23, 27}; + int i, d; + + for (d = 0; d <= 30; d++) { + i = binary_search(a, 8, d); + if (i < 0) + printf("%d not found\n", d); + else + printf("the index of %d is %d\n", d, i); + } + return 0; +} diff --git a/2ano1/AED/aula02/ex02.c b/2ano1/AED/aula02/ex02.c new file mode 100644 index 0000000..a795fc4 --- /dev/null +++ b/2ano1/AED/aula02/ex02.c @@ -0,0 +1,73 @@ +#include +#include +#include + +#define INPUT_SIZE 200 + +void lowerAll(char *str) { + for (size_t i = 0; str[i] != '\0'; i++) + str[i] = tolower(str[i]); +} + +int readLine(char *str, const size_t size) { + if (fgets(str, size, stdin) == NULL) + return -1; + + str[strcspn(str, "\n")] = '\0'; + + return 0; +} + +int main(void) { + char str1[INPUT_SIZE]; + char str2[INPUT_SIZE * 2]; + + printf("Insert first string: "); + if (readLine(str1, INPUT_SIZE) != 0) + return 1; + + printf("Insert second string: "); + if (readLine(str2, INPUT_SIZE) != 0) + return 1; + + unsigned int numAlpha = 0; + for (int i = 0; str1[i] != '\0'; i++) { + if (isalpha(str1[i])) + numAlpha++; + } + printf("Caracteres do alfabeto = %d\n", numAlpha); + + unsigned int numUpperCase = 0; + for (int i = 0; str2[i] != '\0'; i++) { + if (isupper(str2[i])) + numUpperCase++; + } + printf("Caracteres maisculos = %d\n", numUpperCase); + + lowerAll(str1); + printf("First string minusculas = %s\n", str1); + lowerAll(str2); + printf("Second string minusculas = %s\n", str2); + + int cmpRes = strcmp(str1, str2); + + if (cmpRes == 0) { + printf("As strings são iguais\n"); + } else if (cmpRes > 0) { + puts(str2); + puts(str1); + } else { + puts(str1); + puts(str2); + } + + char str3[INPUT_SIZE]; + + strcpy(str3, str2); + printf("Cópia da segunda string: %s\n", str3); + + strcat(str2, str3); + printf("Strings concatenadas: %s\n", str2); + + return 0; +} diff --git a/2ano1/AED/aula02/ex03.c b/2ano1/AED/aula02/ex03.c new file mode 100644 index 0000000..70004d4 --- /dev/null +++ b/2ano1/AED/aula02/ex03.c @@ -0,0 +1,31 @@ +#include +#include +#include + +void Permute(int *a, int *b, int *c) { + const int temp = *c; + *c = *b; + *b = *a; + *a = temp; +} + +int main(void) { + int a = 1, b = 2, c = 3; + + printf("Start:\n"); + printf("a: %d\n", a); + printf("b: %d\n", b); + printf("c: %d\n", c); + + for (int i = 0; i < 5; i++) { + printf("Iteration %d\n", i); + + Permute(&a, &b, &c); + + printf("a: %d\n", a); + printf("b: %d\n", b); + printf("c: %d\n", c); + } + + return 0; +} diff --git a/2ano1/AED/aula02/ex04.c b/2ano1/AED/aula02/ex04.c new file mode 100644 index 0000000..26879e3 --- /dev/null +++ b/2ano1/AED/aula02/ex04.c @@ -0,0 +1,104 @@ +#include +#include +#include +#include + +// Display the contents of array a with n elements +// Pre-Conditions: a != NULL and n > 0 +// Example of produced output: Array = [ 1.00, 2.00, 3.00 ] +void DisplayArray(double *a, size_t n) { + printf("Array = ["); + + for (size_t i = 0; i < n; i++) + printf(" %.2lf", a[i]); + + printf(" ]\n"); +} + +// Read the number of elements, allocate the array and read its elements +// Condition: number of elements > 0 +// Pre-Condition: size_p != NULL +// Return NULL if memory allocation fails +// Set *size_p to ZERO if memory allocation fails +double *ReadArray(size_t *size_p) { + printf("Número de elementos: "); + + if (scanf(" %lu", size_p) != 1) { + *size_p = 0; + return NULL; + } + + double *result = malloc(*size_p * sizeof(double)); + + if (result == NULL) { + *size_p = 0; + return NULL; + } + + size_t read = 0; + while (read != *size_p) { + printf("%lu: ", read); + + if (scanf(" %lf", &result[read]) != 1) + printf("Please insert again\n"); + else + read++; + } + + return result; +} + +// Allocate and return a new array with (size_1 + size_2) elements +// which stores the elements of array_1 followed by the elements of array_2 +// Pre-Conditions: array_1 != NULL and array_2 != NULL +// Pre-Conditions: size_1 > 0 and size_2 > 0 +// Return NULL if memory allocation fails +double *Append(double *array_1, size_t size_1, double *array_2, size_t size_2) { + double *result = malloc(sizeof(double) * (size_1 + size_2)); + + if (result == NULL) + return NULL; + + memcpy(result, array_1, size_1 * sizeof(double)); + memcpy(result + size_1, array_2, size_2 * sizeof(double)); + + return result; +} + +// Test example: +// +// +// Array = [ 1.00, 2.00, 3.00 ] +// Array = [ 4.00, 5.00, 6.00, 7.00 ] +// Array = [ 1.00, 2.00, 3.00, 4.00, 5.00, 6.00, 7.00 ] +// +// + +int main(void) { + size_t array_size = 0; + double *array = ReadArray(&array_size); + + if (array == NULL) + return 1; + + DisplayArray(array, array_size); + + size_t array2_size = 0; + double *array2 = ReadArray(&array2_size); + + if (array2 == NULL) + return 1; + + double *append = Append(array, array_size, array2, array2_size); + + if (append == NULL) + return 1; + + DisplayArray(append, array_size + array2_size); + + free(append); + free(array2); + free(array); + + return 0; +} diff --git a/2ano1/AED/aula02/ex05.c b/2ano1/AED/aula02/ex05.c new file mode 100644 index 0000000..5b3992d --- /dev/null +++ b/2ano1/AED/aula02/ex05.c @@ -0,0 +1,98 @@ +#include +#include +#include +#include +#include + +// The coefficients of a degree n polynomial +// are stored in an array p of size (n + 1) +// p[0] is the coefficient of the largest degree term +// p[n] is the coefficient of the zero-degree term +// Display a polynomial +// Pre-Conditions: coef != NULL and degree >= 0 +// Example of produced output: +// Pol(x) = 1.000000 * x^2 + 4.000000 * x^1 + 1.000000 +void DisplayPol(double *coef, size_t degree) { + printf("Pol(x) = "); + + for (size_t i = 0; i < degree + 1; i++) { + if (i != 0) + printf(" + "); + + printf("%lf", coef[i]); + + if (i != degree) + printf(" * x^%lu", degree - i); + } + + putchar('\n'); +} + +// Compute the value of a polynomial using Horner’s method: +// Pre-Conditions: coef != NULL and degree >= 0 +double ComputePol(double *coef, size_t degree, double x) { + double a = coef[0]; + + for (size_t i = 1; i < degree + 1; i++) { + a = coef[i] + x * a; + } + + return a; +} + +// Test example: +// Pol(x) = 1.000000 * x^2 + 4.000000 * x^1 + 1.000000 +// Pol(2.000000) = 13.000000 +// Compute the real roots, if any, of a second-degree polynomial +// Pre-Conditions: coef != NULL and degree == 2 and coef[0] != 0 +// Pre-Conditions: root_1 != NULL and root_2 != NULL +// Return values: 0 -> no real roots +// 1 -> 1 real root with multiplicity 2 +// 2 -> 2 distinct real roots +// The computed root values are returned via the root_1 and root_2 +// pointer arguments +// Assign 0.0 to the *root_1 and *root_2 if there are no real roots +unsigned int GetRealRoots(double *coef, size_t degree, double *root_1, + double *root_2) { + if (degree != 2) { + *root_1 = 0.0; + *root_2 = 0.0; + return 0; + } + + const double a = coef[0], b = coef[1], c = coef[2]; + const double inner_root = b * b - 4 * a * c; + + if (inner_root < 0.0) { + *root_1 = 0.0; + *root_2 = 0.0; + return 0; + } + + *root_1 = (-b + sqrt(inner_root)) / (2 * a); + *root_2 = (-b - sqrt(inner_root)) / (2 * a); + + if (*root_1 == *root_2) + return 1; + + return 2; +} + +int main(void) { + double coefs[] = {2, 1, -6}; + const size_t degree = (sizeof(coefs) / sizeof(double)) - 1; + + DisplayPol(coefs, degree); + + const double res = ComputePol(coefs, degree, 1.0); + + printf("P(1) = %lf\n", res); + + double root_1 = 0.0, root_2 = 0.0; + + const unsigned int roots = GetRealRoots(coefs, degree, &root_1, &root_2); + + printf("Roots: %u\n", roots); + printf("First root: %lf\n", root_1); + printf("Second root: %lf\n", root_2); +} diff --git a/2ano1/AED/aula02/integer_arithmetic_pitfalls.c b/2ano1/AED/aula02/integer_arithmetic_pitfalls.c new file mode 100644 index 0000000..edc031f --- /dev/null +++ b/2ano1/AED/aula02/integer_arithmetic_pitfalls.c @@ -0,0 +1,46 @@ +// +// Tomás Oliveira e Silva, AED, October 2021 +// +// explain the program output +// +// try also compiling the program with the -Wsign-compare compilation flag +// + +#include +#include + +int main(void) { + unsigned int i = 1; + int j = -1; + int k = -2147483648; + + printf("original i = %u\n", i); + printf("original j = %d\n", j); + printf("original k = %d\n", k); + + // compare i with j + if (i > j) + printf("i > j is true\n"); + else + // Vai executar este porque como `i` tem um + // tipo mais especificado `unsigned int`, o + // compilador vai promover `j` também a esse + // tipo, mas como -1 é representado como 2^32-1 + // `j` será maior numa comparação unsigned. + printf("i > j is false\n"); + + // replace k by its absolute value and print the result + if (k < 0) + k = -k; + + // Isto vai continuar a ser -2147483648, porque + // o valor absoluto 2147483648 está fora do valores + // que podem ser representados por um int, o que causa + // com que a negação volte a ativar o bit mais significativo + // e o número a voltar ao seu valor inicial. + printf("absolute value of k = %d\n", k); + + printf("Integer representable range: (%d)---(%d)\n", INT_MIN, INT_MAX); + + return 0; +} diff --git a/2ano1/AED/aula02/primes.c b/2ano1/AED/aula02/primes.c new file mode 100644 index 0000000..bf9bd90 --- /dev/null +++ b/2ano1/AED/aula02/primes.c @@ -0,0 +1,31 @@ +// +// Tomás Oliveira e Silva, AED, October 2021 +// +// This program implements a simple sieve of Eratosthenes. +// It does not work as intended. Use the valgrind and +// gdb programs to find the programming errors. Correct them. +// + +#include +#include + +int main(void) { + const int limit = 1000000; + int *sieve = (int *)malloc((size_t)limit * sizeof(int)); + if (sieve == NULL) + return 1; + for (int i = 0; i < limit; i++) + sieve[i] = 0; + sieve[0] = sieve[1] = 1; // 0 and 1 are not prime + for (int p = 2; p * p < limit; p++) + if (sieve[p] == 0) + for (int i = p * p; i < limit; i += p) + sieve[i] = 1; // i is not prime + int c = 0; + for (int i = 0; i < limit; i++) + if (sieve[i] == 0) + c++; + printf("There are %d prime numbers up to %d\n", c, limit); + free(sieve); + return 0; +} diff --git a/2ano1/AED/aula03/elapsed_time.h b/2ano1/AED/aula03/elapsed_time.h new file mode 100644 index 0000000..52a7e2a --- /dev/null +++ b/2ano1/AED/aula03/elapsed_time.h @@ -0,0 +1,58 @@ +// +// Tomás Oliveira e Silva, AED, October 2021 +// +// code to measure the elapsed time used by a program fragment +// +// use as follows: +// +// double t1 = cpu_time(); +// // put your code to be time measured here +// double t2 = cpu_time(); +// printf("elapsed time: %.6f seconds\n",t2 - t1); +// + + +#if defined(__linux__) || defined(__APPLE__) + +// +// GNU/Linux and MacOS code to measure elapsed time +// + +#include + +double cpu_time(void) +{ + struct timespec current_time; + + if(clock_gettime(CLOCK_PROCESS_CPUTIME_ID,¤t_time) != 0) // the first argument could also be CLOCK_REALTIME + return -1.0; // clock_gettime() failed!!! + return (double)current_time.tv_sec + 1.0e-9 * (double)current_time.tv_nsec; +} + +#endif + + +#if defined(_MSC_VER) || defined(_WIN32) || defined(_WIN64) + +// +// Microsoft Windows code to measure elapsed time +// + +#include + +double cpu_time(void) +{ + static LARGE_INTEGER frequency; + static int first_time = 1; + LARGE_INTEGER current_time; + + if(first_time != 0) + { + QueryPerformanceFrequency(&frequency); + first_time = 0; + } + QueryPerformanceCounter(¤t_time); + return (double)current_time.QuadPart / (double)frequency.QuadPart; +} + +#endif diff --git a/2ano1/AED/aula03/ex03.c b/2ano1/AED/aula03/ex03.c new file mode 100644 index 0000000..39e9d5c --- /dev/null +++ b/2ano1/AED/aula03/ex03.c @@ -0,0 +1,62 @@ +#include + +int factorial(int n) { + int accum = 1; + + for (int i = 2; i <= n; i++) { + accum *= i; + } + + return accum; +} + +// First version, not optimized +// approx 27.8 ms +// int main(void) { +// for (int i = 1; i < 1000000; i++) { +// int sum = 0; +// +// for (int j = i; j != 0; j /= 10) { +// const int digit = j % 10; +// +// sum += factorial(digit); +// } +// +// if (i == sum) +// printf("%d é um factorião\n", i); +// } +// +// return 0; +// } + +// Second version, LUT for digit factorials +// approx 5.5 ms +int main(void) { + const int lut[10] = { + factorial(0), + factorial(1), + factorial(2), + factorial(3), + factorial(4), + factorial(5), + factorial(6), + factorial(7), + factorial(8), + factorial(9), + }; + + for (int i = 1; i < 1000000; i++) { + int sum = 0; + + for (int j = i; j != 0; j /= 10) { + const int digit = j % 10; + + sum += lut[digit]; + } + + if (i == sum) + printf("%d é um factorião\n", i); + } + + return 0; +} diff --git a/2ano1/AED/aula03/ex04.c b/2ano1/AED/aula03/ex04.c new file mode 100644 index 0000000..4e5a978 --- /dev/null +++ b/2ano1/AED/aula03/ex04.c @@ -0,0 +1,65 @@ +#include +#include + +int ipow(int base, int exp) { + int accum = 1; + + for (int i = 1; i <= exp; i++) { + accum *= base; + } + + return accum; +} + +// First version, not general +// int main(void) { +// for (int i = 100; i < 1000; i++) { +// int sum = 0; +// +// for (int j = i; j != 0; j /= 10) { +// const int digit = j % 10; +// +// sum += ipow(digit, 3); +// } +// +// if (i == sum) +// printf("%d é um número de Armstrong\n", i); +// } +// +// return 0; +// } + +int num_digits(int a) { + int accum = 0; + + for (int j = a; j != 0; j /= 10) { + accum++; + } + + return accum; +} + +// Second version, general +int main(int argv, char* argc[]) { + int max = 1000; + + if (argv > 1) { + max = atoi(argc[1]); + } + + for (int i = 1; i < max; i++) { + const int n = num_digits(i); + int sum = 0; + + for (int j = i; j != 0; j /= 10) { + const int digit = j % 10; + + sum += ipow(digit, n); + } + + if (i == sum) + printf("%d é um número de Armstrong\n", i); + } + + return 0; +} diff --git a/2ano1/AED/aula03/examples.c b/2ano1/AED/aula03/examples.c new file mode 100644 index 0000000..b791a0e --- /dev/null +++ b/2ano1/AED/aula03/examples.c @@ -0,0 +1,484 @@ +// +// Tomás Oliveira e Silva, AED, November 2021 +// +// empirical computational complexity (the first function is already fully instrumented) +// + +#include +#include +#include +#include +#include + + +// +// counter for the number of inner loop iterations (to simplify things, we make it a global variable) +// + +static unsigned long count; // counts the number of inner loop iterations + + +// +// O(n) algorithms +// + +double vector_sum(unsigned int n,double a[n]) +{ + double r = a[0]; + for(unsigned int i = 1u;i < n;i++) + { + count++; // count the number of inner loop iterations + r += a[i]; + } + return r; +} + +double vector_inner_product(unsigned int n,double a[n],double b[n]) +{ + double r = a[0] * b[0]; + for(unsigned int i = 1u;i < n;i++) + r += a[i] * b[i]; + return r; +} + +void vector_addition(unsigned int n,double a[n],double b[n],double r[n]) +{ // r = a + b + for(unsigned int i = 0u;i < n;i++) + r[i] = a[i] + b[i]; +} + +unsigned int find_index(unsigned int n,unsigned int a[n],unsigned int x) +{ // returns n when x is not found + unsigned int i; + + for(i = 0u;i < n && a[i] != x;i++) + ; + return i; +} + +unsigned int count_indices(unsigned int n,unsigned int a[n],unsigned int x) +{ + unsigned int c = 0u; + + for(unsigned int i = 0u;i < n;i++) + if(a[i] == x) + c++; + return c; +} + +double factorial(unsigned int n) +{ + return (n < 2u) ? 1.0 : (double)n * factorial(n - 1u); +} + + +// +// O(n^2) algorithms --- in mathematical expressions inside comments, by ^ we mean exponentiation +// + +void carry_propagation(unsigned int n,unsigned int a[n]) +{ // count the number of iteratations of the inner loop an belonging to the function that called this one + unsigned int carry = 0u; + for(unsigned int i = 0u;i < n;i++) + { +count++, + carry += a[i]; + a[i] = carry % 10u; + carry /= 10u; + } + assert(carry == 0u); +} + +void multiplication(unsigned int n,unsigned int a[n],unsigned int b[n],unsigned int r[2u * n]) +{ // r = a * b + assert(sizeof(n) >= (size_t)4 && n <= 47721858u); + for(unsigned int i = 0u;i < 2u * n;i++) +count++, + r[i] = 0u; + for(unsigned int i = 0u;i < n;i++) + if(a[i] != 0u) + for(unsigned int j = 0u;j < n;j++) +count++, + r[i + j] += a[i] * b[j]; + carry_propagation(2u * n,&r[0]); +} + +void matrix_addition(unsigned int n,double A[n][n],double B[n][n],double R[n][n]) +{ // R = A + B + unsigned int i,j; + + for(i = 0u;i < n;i++) + for(j = 0u;j < n;j++) + R[i][j] = A[i][j] + B[i][j]; +} + +void insertion_sort(unsigned int n,double a[n]) +{ + unsigned int i,j; + double v; + + for(i = 1u;i < n;i++) + { + v = a[i]; + for(j = i;j > 0u && v < a[j - 1u];j--) + a[j] = a[j - 1u]; + a[j] = v; + } +} + + +// +// O(n^3) algorithms +// + +void matrix_matrix_product(unsigned int n,double A[n][n],double B[n][n],double R[n][n]) +{ // R = A * B + for(unsigned int i = 0u;i < n;i++) + for(unsigned int j = 0u;j < n;j++) + R[i][j] = 0.0; + for(unsigned int i = 0u;i < n;i++) + for(unsigned int j = 0u;j < n;j++) + for(unsigned int k = 0u;k < n;k++) + R[i][j] += A[i][k] * B[k][j]; +} + +double matrix_determinant(unsigned int n,double A[n][n]) +{ // warning: A is modified + unsigned int i,j,k; + double r,t; + + r = 1.0; + for(i = 0u;i < n;i++) + { + // find the biggest element (the pivot) + j = i; + for(k = i + 1u;k < n;k++) + if(fabs(A[k][i]) > fabs(A[j][i])) + j = k; + // exchange lines (if necessary) + if(j != i) + for(r = -r,k = i;k < n;k++) + { + t = A[i][k]; + A[i][k] = A[j][k]; + A[j][k] = t; + } + // Gauss-Jordan elimination + for(r *= A[i][i],j = i + 1u;j < n;j++) + for(k = i + 1u;k < n;k++) + A[j][k] -= (A[j][i] / A[i][i]) * A[i][k]; + } + return r; +} + + +// +// algorithms with exponential complexity +// + +double F(unsigned int n) +{ + return (n < 2u) ? (double)n : F(n - 1u) + F(n - 2u); +} + +double Fi(unsigned int n) +{ + static double Ft[10] = + { + 0.0, 1.0, 1.0, 2.0, 3.0, // 0 to 4 + 5.0, 8.0,13.0,21.0,34.0 // 5 to 9 + }; + + return (n < 10u) ? Ft[n] : Fi(n - 1u) + Fi(n - 2u); +} + +void print_all_sums(unsigned int n,double a[n]) +{ + unsigned long mask; + unsigned int i,j; + double sum; + + mask = 0ul; // if the bit number i is set to 0 then + // a[i] will not contribute to the sum + // we begin with the empty set + do + { + // do sum + sum = 0.0; + for(i = j = 0u;i < n;i++) + if(((mask >> i) & 1ul) != 0ul) + { + sum += a[i]; + printf("%sa[%u]",(j == 0u) ? "" : "+",i); + j = 1u; // next time print a + sign + } + printf("%s = %.3f\n",(j == 0u) ? "empty" : "",sum); + // next subset (discrete binary counter) + mask++; + } + while(mask < (1ul << n)); +} + +void print_all_sums_recursive(unsigned int n,unsigned int m,double a[n],double sum,unsigned long mask) +{ + if(m == n) + { // nothing more to do; print sum + unsigned int i,j; + + for(i = j = 0u;i < n;i++) + if(((mask >> i) & 1ul) != 0ul) + { + printf("%sa[%u]",(j == 0u) ? "" : "+",i); + j = 1u; // next time print a + sign + } + printf("%s = %.3f\n",(j == 0u) ? "empty" : "",sum); + } + else + { + print_all_sums_recursive(n,m + 1u,&a[0],sum ,mask ); // do not use a[m] + print_all_sums_recursive(n,m + 1u,&a[0],sum + a[m],mask | (1ul << m)); // use a[m] + } +} + + +// +// algorithm with worst than exponential complexity (in this case, factorial complexity) +// + +void print_all_permutations_recursive(unsigned int n,unsigned int m,int a[n]) +{ + unsigned int i; + + if(m == n - 1u) + { // nothing more to do, visit permutation (in this example, just print it) + // in the instrumented version of this function just count the number of visitations (don't print the permutations!) + for(i = 0u;i < n;i++) + printf("%s%d",(i == 0u) ? "" : " ",a[i]); + printf("\n"); + } + else // not yet at the end, place in a[m] each remaining integer and recurse + for(i = m;i < n;i++) + { +#define swap(i,j) do { int t = a[i]; a[i] = a[j]; a[j] = t; } while(0) + swap(i,m); // swap a[i] with a[m] + print_all_permutations_recursive(n,m + 1u,&a[0]); // recurse + swap(i,m); // undo the swap of a[i] with a[m] +#undef swap + } +} + + +// +// algorithms with small complexity +// + +double power_dd(double x,double y) +{ + return exp(y * log(x)); +} + +double power_di(double x,int n) +{ + if(n < 0) return power_di(1.0 / x,-n); + if(n == 0) return 1.0; + double t = power_di(x * x,n / 2); // the integer division discards a fractional part + return (n % 2 == 0) ? t : x * t; // take care of the discarded fractional part +} + + +// +// functions to do random initialization of vectors or matrices +// + +unsigned int rand_uint(unsigned int range) +{ + return (unsigned int)rand() % range; // almost uniform distribution in the integers of the interval [0,range[ +} + +void rand_uint_vector(unsigned int n,unsigned int a[n],unsigned int range) +{ + for(unsigned int i = 0u;i < n;i++) + a[i] = rand_uint(range); +} + +double rand_double(double d_min,double d_max) +{ + return d_min + (d_max - d_min) * (double)rand() / (double)RAND_MAX; // uniform distribution in the interval [d_min,d_max[ +} + +void rand_double_vector(unsigned int n,double a[n],double d_min,double d_max) +{ + for(unsigned int i = 0u;i < n;i++) + a[i] = rand_double(d_min,d_max); +} + + +// +// main +// +// TODO: do even more random experiments, and print only the maximum and the mean of the count values +// + +int main(int argc,char **argv) +{ + unsigned int n,n_idx; + + // O(n) + if(argc == 2 && strcmp(argv[1],"vector_sum") == 0) + { + printf("# vector_sum data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned int k = 0u;k < 4u;k++) + { // do 5 random experiments + double a[n]; + rand_double_vector(n,&a[0],-1.0,+1.0); + count = 0ul; + if(vector_sum(n,&a[0]) == 1.0e100) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + if(argc == 2 && strcmp(argv[1],"vector_inner_product") == 0) + { + printf("# vector_inner_product data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned int k = 0u;k < 4u;k++) + { // do 5 random experiments + double a[n]; + double b[n]; + rand_double_vector(n,&a[0],-1.0,+1.0); + rand_double_vector(n,&b[0],-1.0,+1.0); + count = 0ul; + if(vector_inner_product(n,&a[0],&b[0]) == 1.0e100) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + if(argc == 2 && strcmp(argv[1],"vector_addition") == 0) + { + printf("# vector_addition data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned int k = 0u;k < 4u;k++) + { // do 5 random experiments + double a[n]; + double b[n]; + double r[n]; + rand_double_vector(n,&a[0],-1.0,+1.0); + rand_double_vector(n,&b[0],-1.0,+1.0); + count = 0ul; + vector_addition(n,&a[0],&b[0],&r[0]); + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + if(argc == 2 && strcmp(argv[1],"find_index") == 0) + { + printf("# find_index data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned k = 0u;k < 5u;k++) + { // do 5 random experiments + unsigned int a[n]; + rand_uint_vector(n,&a[0],n); + count = 0ul; + if(find_index(n,&a[0],rand_uint(n)) == 2u * n) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + if(argc == 2 && strcmp(argv[1],"count_indices") == 0) + { + printf("# count_indices data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned k = 0u;k < 5u;k++) + { // do 5 random experiments + unsigned int a[n]; + rand_uint_vector(n,&a[0],1000u); + count = 0ul; + if(count_indices(n,&a[0],1000000u) != 0u) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + if(argc == 2 && strcmp(argv[1],"factorial") == 0) + { + printf("# factorial data\n"); + for(n = 0u;n <= 40u;n++) + { + printf("%u",n); + for(unsigned k = 0u;k < 5u;k++) + { // do 5 random experiments + count = 0ul; + if(factorial(n) == 0.0) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + // O(n^2) + if(argc == 2 && strcmp(argv[1],"multiplication") == 0) + { + printf("# multiplication data\n"); + for(n_idx = 10u;n_idx <= 40u;n_idx++) + { + n = (unsigned int)round(pow(10.0,0.1 * (double)n_idx)); + printf("%u",n); + for(unsigned k = 0u;k < 5u;k++) + { // do 5 random experiments + unsigned int a[n]; + unsigned int b[n]; + unsigned int r[2u * n]; + rand_uint_vector(n,&a[0],10u); + rand_uint_vector(n,&b[0],10u); + count = 0ul; + multiplication(n,&a[0],&b[0],&r[0]); + if(r[0] == 10u) + return 99; // this will never happen, but the test ensures the function call is not optimized out + printf(" %lu",count); + } + printf("\n"); + } + return 0; // done + } + + // we get here if nothing was done, so we print an error message and exit + fprintf(stderr,"usage: %s function_ name\n",argv[0]); + fprintf(stderr,"List of funcion names:\n"); + fprintf(stderr," vector_sum\n"); + fprintf(stderr," vector_inner_product\n"); + fprintf(stderr," vector_addition\n"); + fprintf(stderr," find_index\n"); + fprintf(stderr," count_indices\n"); + fprintf(stderr," factorial\n"); + return 1; +} diff --git a/2ano1/AED/aula03/functions_iterations_count.c b/2ano1/AED/aula03/functions_iterations_count.c new file mode 100644 index 0000000..a5b4d71 --- /dev/null +++ b/2ano1/AED/aula03/functions_iterations_count.c @@ -0,0 +1,256 @@ +// +// Joaquim Madeira, AED, September 2023 +// +// Functions with different complexity orders +// +// The result of each function is the number of iterations carried out +// +// For each function, how does the number of iterations grow? +// +// 1 - Analyze the tables +// 2 - Assign a complexity order to each function +// +// 3 - Inspect the code +// 4 - For a given positive value of n, find a formula for the total number of +// iterations +// + +#include + +// Ordem: O(n) +// Iterações: n +unsigned int f1(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + r += 1; + } + return r; +} + +// Ordem: O(n^2) +// Iterações: 1/2*n*(n+1) +unsigned int f2(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned j = 1; j <= i; j++) { + r += 1; + } + } + return r; +} + +// Ordem: O(n^2) +// Iterações: n^2 +unsigned int f3(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= n; j++) { + r += 1; + } + } + return r; +} + +// Ordem: O(n^3) +// Iterações: 1/6*n^3 (approx) +unsigned int f4(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= i; j++) { + for (unsigned int k = 1; k <= j; k++) { + r += 1; + } + } + } + return r; +} + +// Ordem: O(n^3) +// Iterações: n^3 +unsigned int f5(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= n; j++) { + for (unsigned int k = 1; k <= n; k++) { + r += 1; + } + } + } + return r; +} + +// Ordem: O(log2(n)) +// Iterações: log2(n) +unsigned int f6(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = n; i > 0; i /= 2) { + r += 1; + } + return r; +} + +// Ordem: O(2^n) +// Iterações: 2^n - 1 +unsigned int f7(unsigned int n) { + unsigned int r = 0; + unsigned int last = 1; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= last; j++) { + r += 1; + } + last *= 2; + } + return r; +} + +int main(void) { + unsigned int n; + unsigned int result; + unsigned int previous; + double ratio; + + unsigned int start_n = 25; + unsigned int end_n = 1000; + + printf("\n f1 \n"); + printf(" n f1(n) f1(2n)/f1(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f1(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f2 \n"); + printf(" n f2(n) f2(2n)/f2(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f2(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f3 \n"); + printf(" n f3(n) f3(2n)/f3(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f3(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f4 \n"); + printf(" n f4(n) f4(2n)/f4(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f4(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f5 \n"); + printf(" n f5(n) f5(2n)/f5(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f5(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f6 \n"); + printf(" n f6(n) f6(2n)/f6(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = start_n; n < end_n; n *= 2) { + result = f6(n); + printf("%7u %10u", n, result); + + if (n > start_n) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + printf("\n f7 \n"); + printf(" n f7(n) f7(2n)/f7(n)\n"); + printf("------- ---------- --------------\n"); + + for (n = 1; n < 33; n *= 2) { + result = f7(n); + printf("%7u %10u", n, result); + + if (n > 1) { + ratio = (double)result / (double)previous; + printf(" %14.5f", ratio); + } + + printf("\n"); + + previous = result; + } + + printf("------- ---------- --------------\n"); + + return 0; +} diff --git a/2ano1/AED/aula03/functions_timing.c b/2ano1/AED/aula03/functions_timing.c new file mode 100644 index 0000000..9f8fb67 --- /dev/null +++ b/2ano1/AED/aula03/functions_timing.c @@ -0,0 +1,304 @@ +// +// Joaquim Madeira, AED, September 2023 +// +// Functions with different complexity orders +// +// The result of each function is the number of iterations carried out +// +// For each function, how does execution time grow? +// +// 1 - Analyze the tables +// 2 - Assign a complexity order to each function +// 3 - Compare with the results obtatined for the iterations count +// +// 4 - Extrapolate execution times for larger values of n +// + +#include + +#include "elapsed_time.h" + +unsigned int f1(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + r += 1; + } + return r; +} + +unsigned int f2(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned j = 1; j <= i; j++) { + r += 1; + } + } + return r; +} + +unsigned int f3(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= n; j++) { + r += 1; + } + } + return r; +} + +unsigned int f4(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= i; j++) { + for (unsigned int k = 1; k <= j; k++) { + r += 1; + } + } + } + return r; +} + +unsigned int f5(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= n; j++) { + for (unsigned int k = 1; k <= n; k++) { + r += 1; + } + } + } + return r; +} + +unsigned int f6(unsigned int n) { + unsigned int r = 0; + for (unsigned int i = n; i > 0; i /= 2) { + r += 1; + } + return r; +} + +unsigned int f7(unsigned int n) { + unsigned int r = 0; + unsigned int last = 1; + for (unsigned int i = 1; i <= n; i++) { + for (unsigned int j = 1; j <= last; j++) { + r += 1; + } + last *= 2; + } + return r; +} + +int main(void) { + unsigned int n; + + double start_time; + double finish_time; + double exec_time; + double prev_exec_time; + double ratio; + + unsigned int start_n = 10; + unsigned int end_n = 10000000; + + printf("\n f1 \n"); + printf(" n time1(n) time1(10n)/time1(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f1(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f2 \n"); + printf(" n time2(n) time2(10n)/time2(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n / 100; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f2(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f3 \n"); + printf(" n time3(n) time3(10n)/time3(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n / 100; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f3(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f4 \n"); + printf(" n time4(n) time4(10n)/time4(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n / 10000; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f4(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f5 \n"); + printf(" n time5(n) time5(10n)/time5(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n / 10000; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f5(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f6 \n"); + printf(" n time6(n) time6(10n)/time6(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = start_n; n <= end_n; n *= 10) { + // + // call function + // + start_time = cpu_time(); + f6(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > start_n) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n f7 \n"); + printf(" n time7(n) time7(2n)/time7(n)\n"); + printf("----------- ---------- ---------------------\n"); + + for (n = 1; n < 33; n *= 2) { + // + // call function + // + start_time = cpu_time(); + f7(n); + finish_time = cpu_time(); + + exec_time = finish_time - start_time; + + printf("%11d %9.3e", n, exec_time); + + if (n > 1) { + ratio = exec_time / prev_exec_time; + printf(" %21.5e", ratio); + } + + printf("\n"); + + prev_exec_time = exec_time; + } + + printf("----------- ---------- ---------------------\n"); + + printf("\n\n"); + + return 0; +} diff --git a/2ano1/AED/aula03/out b/2ano1/AED/aula03/out new file mode 100644 index 0000000..c482fe6 --- /dev/null +++ b/2ano1/AED/aula03/out @@ -0,0 +1,77 @@ + + f1 + n f1(n) f1(2n)/f1(n) +------- ---------- -------------- + 25 25 + 50 50 2.00000 + 100 100 2.00000 + 200 200 2.00000 + 400 400 2.00000 + 800 800 2.00000 +------- ---------- -------------- + + f2 + n f2(n) f2(2n)/f2(n) +------- ---------- -------------- + 25 325 + 50 1275 3.92308 + 100 5050 3.96078 + 200 20100 3.98020 + 400 80200 3.99005 + 800 320400 3.99501 +------- ---------- -------------- + + f3 + n f3(n) f3(2n)/f3(n) +------- ---------- -------------- + 25 625 + 50 2500 4.00000 + 100 10000 4.00000 + 200 40000 4.00000 + 400 160000 4.00000 + 800 640000 4.00000 +------- ---------- -------------- + + f4 + n f4(n) f4(2n)/f4(n) +------- ---------- -------------- + 25 2925 + 50 22100 7.55556 + 100 171700 7.76923 + 200 1353400 7.88235 + 400 10746800 7.94059 + 800 85653600 7.97015 +------- ---------- -------------- + + f5 + n f5(n) f5(2n)/f5(n) +------- ---------- -------------- + 25 15625 + 50 125000 8.00000 + 100 1000000 8.00000 + 200 8000000 8.00000 + 400 64000000 8.00000 + 800 512000000 8.00000 +------- ---------- -------------- + + f6 + n f6(n) f6(2n)/f6(n) +------- ---------- -------------- + 25 5 + 50 6 1.20000 + 100 7 1.16667 + 200 8 1.14286 + 400 9 1.12500 + 800 10 1.11111 +------- ---------- -------------- + + f7 + n f7(n) f7(2n)/f7(n) +------- ---------- -------------- + 1 1 + 2 3 3.00000 + 4 15 5.00000 + 8 255 17.00000 + 16 65535 257.00000 + 32 4294967295 65537.00000 +------- ---------- -------------- diff --git a/2ano1/AED/aula04/ex01.c b/2ano1/AED/aula04/ex01.c new file mode 100644 index 0000000..aeada3f --- /dev/null +++ b/2ano1/AED/aula04/ex01.c @@ -0,0 +1,44 @@ +#include +#include +#include +#include + +int check_condition(int *arr, size_t length, int *num_comps) { + int conforms = 0; + + for (size_t i = 1; i < length - 1; i++) { + *num_comps += 1; + if (arr[i] == arr[i - 1] + arr[i + 1]) + conforms += 1; + } + + return conforms; +} + +void print_array(int *arr, size_t length) { + for (size_t i = 0; i < length - 1; i++) { + printf("%d, ", arr[i]); + } + + if (length > 0) + printf("%d", arr[length - 1]); +} + +int main(void) { + int test_array[5][10] = { + {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, {1, 2, 1, 4, 5, 6, 7, 8, 9, 10}, + {1, 2, 1, 3, 2, 6, 7, 8, 9, 10}, {0, 2, 2, 0, 3, 3, 0, 4, 4, 0}, + {0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, + }; + + for (int test = 0; test < 5; test++) { + int num_comps = 0; + int resultado = check_condition(test_array[test], 10, &num_comps); + + print_array(test_array[test], 10); + printf("\tResultado: %d", resultado); + printf("\tN° de comparações: %d\n", num_comps); + } + + return 0; +} diff --git a/2ano1/AED/aula04/ex02.c b/2ano1/AED/aula04/ex02.c new file mode 100644 index 0000000..d7bb422 --- /dev/null +++ b/2ano1/AED/aula04/ex02.c @@ -0,0 +1,55 @@ +#include +#include +#include +#include + +int check_condition(float *arr, size_t length, int *num_ops) { + if (length < 3) + return 0; + + float r = arr[1] / arr[0]; + *num_ops += 1; + + for (size_t i = 2; i < length; i++) { + *num_ops += 1; + if (arr[i] != r * arr[i - 1]) + return 0; + } + + return 1; +} + +void print_array(float *arr, size_t length) { + for (size_t i = 0; i < length - 1; i++) { + printf("%.1f, ", arr[i]); + } + + if (length > 0) + printf("%.1f", arr[length - 1]); +} + +int main(void) { + float test_array[9][10] = { + {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 4, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 256, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 256, 512}, + + }; + + for (int test = 0; test < 9; test++) { + int num_ops = 0; + int resultado = check_condition(test_array[test], 10, &num_ops); + + print_array(test_array[test], 10); + printf("\tResultado: %d", resultado); + printf("\tN° de operações: %d\n", num_ops); + } + + return 0; +} diff --git a/2ano1/AED/aula04/ex03.c b/2ano1/AED/aula04/ex03.c new file mode 100644 index 0000000..91fe04b --- /dev/null +++ b/2ano1/AED/aula04/ex03.c @@ -0,0 +1,58 @@ +#include +#include +#include +#include + +int check_condition(float *arr, size_t length, int *num_comps) { + if (length < 3) + return 0; + + int conforms = 0; + + for (size_t i = 0; i < length; i++) { + for (size_t j = i + 1; j < length; j++) { + for (size_t k = j + 1; k < length; k++) { + *num_comps += 1; + if (arr[k] == arr[i] + arr[j]) + conforms += 1; + } + } + } + + return conforms; +} + +void print_array(float *arr, size_t length) { + for (size_t i = 0; i < length - 1; i++) { + printf("%.1f, ", arr[i]); + } + + if (length > 0) + printf("%.1f", arr[length - 1]); +} + +int main(void) { + float test_array[9][10] = { + {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 4, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 5, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 6, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 7, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 8, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 9, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 256, 10}, + {1, 2, 4, 8, 16, 32, 64, 128, 256, 512}, + + }; + + for (int test = 0; test < 9; test++) { + int num_comps = 0; + int resultado = check_condition(test_array[test], 10, &num_comps); + + print_array(test_array[test], 10); + printf("\tResultado: %d", resultado); + printf("\tN° de comparações: %d\n", num_comps); + } + + return 0; +} diff --git a/2ano1/AED/aula04/guiao.norg b/2ano1/AED/aula04/guiao.norg new file mode 100644 index 0000000..461986f --- /dev/null +++ b/2ano1/AED/aula04/guiao.norg @@ -0,0 +1,151 @@ +@document.meta +title: Aula 04 +description: Análise da complexidade de algoritmos +author: João Capucho +@end + +* Exercício 1 + +** Após a execução + +*** Primeira pergunta + + O número de comparações depende apenas do número de elemento no array e não + dos seus dados, logo não existe diferença entre o melhor caso e o pior caso + (estes são iguais um ao outro). Logo o algoritmo é sistemático. + +*** Segunda pergunta + + TODO + + O número de comparações cresce linearmente com o número de elemento do + array, o que sugere que a ordem de complexidade do algoritmo será de + $O(n)$. + +*** Terceira pergunta + + @math + \sum_{i=1}^{n-2} 1 = n-2 + @end + + Logo a ordem de complexidade do algoritmo é $O(n)$. + +*** Quarta pergunta + + @math + 10-2 = 8 + @end + + O resultado teórico corresponde ao valor experimental obtido para arrays de + tamanho 10 como era esperado. + +* Exercício 2 + +** Após a execução + +*** Primeira pergunta + + > Qual é a sequência (ou as sequências) que corresponde(m) ao melhor caso + do algoritmo? + + São todas as sequências que não sastifazem a condição + `a[ i ] = r × a[ i – 1 ]`, logo no primeiro elemento a ser verificado + (terceiro elemento do array). + + Estas correspondem a apenas 2 operações, a divisão inicial para calcular `r` + e a operação de multiplicação para verificar o elemento errado. + +*** Segunda pergunta + + > Qual é a sequência (ou as sequências) que corresponde(m) ao pior caso do + algoritmo? + + São as sequências em que todos os elementos, ou todos exceto o último, + satisfazem a condição. Isto porque todos uma multiplicação terá que ser + feita para todos os elementos. + +*** Terceira pergunta + + > Para as sequências dadas (`n = 10`) qual foi o número médio de operações + efetuadas? + + O número médio de operações para as sequências dadas foi de $5 + 8/9 \approx 5.9$. + +*** Quarta pergunta + + > Qual é a ordem de complexidade do algoritmo? + + O algoritmo tem ordem de complexidade de `O(n)`. + +*** Quinta pergunta + + > *Determine formalmente a ordem de complexidade do algoritmo nas situações + do melhor caso, do pior caso e do caso médio, considerando uma sequência de + tamanho n.* Deve obter expressões matemáticas exatas e simplificadas. + + O melhor caso como já vimos, requer apenas duas operações a divisão inicial + e a primeira multiplicação, logo temos que: + + @math + B(n) = 1 + 1 = 2 + @end + + O que significa que a ordem de complexidade do melhor caso é de `O(1)`. + + O pior caso no entanto requer percorrer os `n` elementos, por isso o número + de iterações é dado por: + + @math + W(n) = 1 + \sum_{i=2}^{n-1} 1 = 1 + (n-2) = n - 1 + @end + + Logo a ordem de complexidade do pior caso é `O(n)`. + + Para calcular o caso médio começamos por assumir equiprobabilidade das + sequências com posições diferentes do primeiro elemento errado, para + $n$ elementos existem $n - 2$ posições possíveis para o erro mais o + caso onde não há erro, ou seja existem $n - 1$ casos possíveis. + + @math + \begin{align*} + A(n) &= \frac{1}{n-1} \left( \left( \sum_{i=2}^{n-1} i \right) + n - 1 \right) \\ + &= \frac{1}{n-1} \left( \left( \sum_{i=1}^{n-1} i \right) - 1 + n - 1 \right) \\ + &= \frac{1}{n-1} \left( \frac{(n - 1)n}{2} + n - 2 \right) \\ + &= \frac{1}{n-1} \frac{(n - 1)n + 2(n - 2)}{2} \\ + &= \frac{n}{2} + \frac{n - 2}{n - 1} \approx \frac{n}{2} + \end{align*} + @end + + Logo a ordem de complexidade é `O(n)`. + +*** Sexta pergunta + + > Calcule o valor dessas expressões para `n = 10` e compare-os com os + resultados obtidos experimentalmente. + + Melhor caso: + + @math + B(10) = 2 + @end + + Este valor é igual ao que obtemos experimentalmente para as sequências do + melhor caso. + + Pior caso: + + @math + W(10) = 10 - 1 = 9 + @end + + Este valor é igual ao que obtemos experimentalmente para as sequências do + pior caso. + + Caso médio: + + @math + A(10) = \frac{10}{2} + \frac{8}{9} \approx 5.8889 + @end + + Este valor é igual ao que obtemos experimentalmente para as sequências + testadas indicando que estas fazem parte do caso médio. diff --git a/2ano1/AED/aula05/assets/ex03_calls.excalidraw b/2ano1/AED/aula05/assets/ex03_calls.excalidraw new file mode 100644 index 0000000..af45278 --- /dev/null +++ b/2ano1/AED/aula05/assets/ex03_calls.excalidraw @@ -0,0 +1,554 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": [ + { + "id": "55XPdhiT43LPH1LvNuXxI", + "type": "rectangle", + "x": -622.9071458022256, + "y": -258.5575169052974, + "width": 87.75778214096412, + "height": 53.50265617824675, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 1851972754, + "version": 153, + "versionNonce": 969727058, + "isDeleted": false, + "boundElements": [ + { + "id": "TGir2Xo8gSdjsTnfJA_CN", + "type": "arrow" + } + ], + "updated": 1697150905593, + "link": null, + "locked": false + }, + { + "id": "TGir2Xo8gSdjsTnfJA_CN", + "type": "arrow", + "x": -534.1347645943805, + "y": -232.71049323183075, + "width": 203.93238258719606, + "height": 112.64923534647716, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1949330130, + "version": 604, + "versionNonce": 993741262, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 203.93238258719606, + -112.64923534647716 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "55XPdhiT43LPH1LvNuXxI", + "gap": 1.0145990668810327, + "focus": 0.4686133829083339 + }, + "endBinding": { + "elementId": "V4XejOrVYJzmzSomK72ji", + "gap": 1, + "focus": 0.5237099278994786 + }, + "startArrowhead": null, + "endArrowhead": "arrow" + }, + { + "id": "k3a6EEZ-qw0U5HlVSg33-", + "type": "text", + "x": -589.7467791308798, + "y": -259.97459809052606, + "width": 16.816667556762695, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 939452114, + "version": 134, + "versionNonce": 1762451470, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "n", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "n", + "lineHeight": 1.25 + }, + { + "id": "wxplH5xNDWIWPVhw80xoj", + "type": "text", + "x": -509.523592486578, + "y": -325.7175011269986, + "width": 57.25, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1880248402, + "version": 88, + "versionNonce": 582709202, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "par", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "par", + "lineHeight": 1.25 + }, + { + "id": "JDnQi18gJZ5Zh0HQERigA", + "type": "line", + "x": -531.700836946135, + "y": -233.07391040613078, + "width": 94.99188398802028, + "height": 98.71705590911898, + "angle": 0, + "strokeColor": "#e03131", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "seed": 339689618, + "version": 167, + "versionNonce": 648282190, + "isDeleted": false, + "boundElements": null, + "updated": 1697150908408, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 94.99188398802028, + 98.71705590911898 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "MfUjZlyGMc7X9fwdbk4SS", + "type": "arrow", + "x": -436.8696542469217, + "y": -134.5649916776551, + "width": 100.21316772334006, + "height": 45.87866394689456, + "angle": 0, + "strokeColor": "#e03131", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "seed": 2137874002, + "version": 134, + "versionNonce": 1732856530, + "isDeleted": false, + "boundElements": null, + "updated": 1697150922824, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 100.21316772334006, + -45.87866394689456 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": { + "elementId": "ugZuLLfiwdsxPkk0lwLwX", + "focus": 0.5425072635535438, + "gap": 3.485546086917253 + }, + "startArrowhead": null, + "endArrowhead": "arrow" + }, + { + "id": "p3i3YmMRj6UAr8yPhu_pa", + "type": "arrow", + "x": -436.7147365070186, + "y": -134.77528023525596, + "width": 97.9360444310754, + "height": 39.40038376813776, + "angle": 0, + "strokeColor": "#e03131", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "seed": 579978258, + "version": 325, + "versionNonce": 1527315214, + "isDeleted": false, + "boundElements": null, + "updated": 1697150913049, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 97.9360444310754, + 39.40038376813776 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": { + "elementId": "_IIYY_7qb_X2SG_mCkg2l", + "gap": 1.2784151707552098, + "focus": -0.46807810702785274 + }, + "startArrowhead": null, + "endArrowhead": "arrow" + }, + { + "id": "ugZuLLfiwdsxPkk0lwLwX", + "type": "rectangle", + "x": -333.1709404366644, + "y": -211.16145427381284, + "width": 145.69545290586433, + "height": 60.6107105593297, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "seed": 180189778, + "version": 127, + "versionNonce": 1891312466, + "isDeleted": false, + "boundElements": [ + { + "id": "MfUjZlyGMc7X9fwdbk4SS", + "type": "arrow" + } + ], + "updated": 1697150905593, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 214, + "versionNonce": 704902866, + "isDeleted": false, + "id": "_IIYY_7qb_X2SG_mCkg2l", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": -337.50027690518795, + "y": -123.49239078621096, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 148.2159929401896, + "height": 60.6107105593297, + "seed": 92168210, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "boundElements": [ + { + "id": "p3i3YmMRj6UAr8yPhu_pa", + "type": "arrow" + } + ], + "updated": 1697150905593, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 178, + "versionNonce": 1635325774, + "isDeleted": false, + "id": "V4XejOrVYJzmzSomK72ji", + "fillStyle": "hachure", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": -329.20238200718444, + "y": -379.6447985071876, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 146.70366891959446, + "height": 60.6107105593297, + "seed": 1251773906, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 3 + }, + "boundElements": [ + { + "id": "TGir2Xo8gSdjsTnfJA_CN", + "type": "arrow" + } + ], + "updated": 1697150905593, + "link": null, + "locked": false + }, + { + "id": "vSH8rlZfD9tt4GNQUZwpb", + "type": "text", + "x": -564.8058275209826, + "y": -182.4346787463411, + "width": 91.33333587646484, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 927432914, + "version": 109, + "versionNonce": 1606503570, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "ímpar", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "ímpar", + "lineHeight": 1.25 + }, + { + "id": "sAcGKHMvnLd35cvY1h682", + "type": "text", + "x": -286.05626267428215, + "y": -367.89239062522057, + "width": 60.45000076293945, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 587950994, + "version": 111, + "versionNonce": 1899298190, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "n/2", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "n/2", + "lineHeight": 1.25 + }, + { + "id": "lBfa2O579RDi25rWZKFQk", + "type": "text", + "x": -289.58501872233745, + "y": -202.0408563666188, + "width": 60.45000076293945, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 52010770, + "version": 105, + "versionNonce": 651029074, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "n/2", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "n/2", + "lineHeight": 1.25 + }, + { + "id": "EdMxrf09Kac0B9G928jnJ", + "type": "text", + "x": -322.28466790793703, + "y": -111.17225136380102, + "width": 119.80000305175781, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "roundness": null, + "seed": 1122636110, + "version": 172, + "versionNonce": 1696209870, + "isDeleted": false, + "boundElements": null, + "updated": 1697150905593, + "link": null, + "locked": false, + "text": "(n+1)/2", + "fontSize": 36, + "fontFamily": 1, + "textAlign": "center", + "verticalAlign": "top", + "baseline": 32, + "containerId": null, + "originalText": "(n+1)/2", + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": null, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file diff --git a/2ano1/AED/aula05/assets/ex03_calls.png b/2ano1/AED/aula05/assets/ex03_calls.png new file mode 100644 index 0000000000000000000000000000000000000000..6818490b8a2959153c7c693b7913e55833df2172 GIT binary patch literal 132743 zcmdpe^;?zM`?Vq{hykJ?4N@W?f^>^?3aE4_-O?RLQ9w$%LsF!>!$P{d6_D=k_dYuF z`O1v*54=B&*ENXeJkQ>Dtb47sxAy}X(TnE^&YwDU>Y})qko>7rXu79PomoRa3qQG< zP&I$*6xk_pp?eSQH5NwBg(&p&)~-q~SG{IQ5qpH1-gz%2>G{SeYKoWpb9eO4tHQJ> zC=zl}WWx6xLodC4ID3aonyYijd0?CO!2ZqTX!Gze<=x};-pmgTwEG7^-xzFVw!E>I zj0EqWI*p1Y@P|L136Y%@R~C&?M*WXpxPvOzxF-0ge~SDW(N!|qc``Oha`#gx=w$!? zgHqSw;vate^H(pOe-mPZ6`k_O=YkIp%C9{8Uw?NFO{|g2t401#---O0xU$BX|M)xi z7bujv#GmzO|GXdq?#c8y|FISVwfEquE-+OUpp%U!z*C*eQ$GJ6 zA5KQwWc-H>`nmGY9=IoGzUZfa`5zztCS;2B-;4ii0XS|7$oJke2^0K}4~Oj~`2S&h zQI*D*Mk*|)TZt#;zwz@QjP0%OZ!aJ3+boar1{^OgGR01O!zCd(T6S~XE3kdGt<)UB zL?z;T{n$0~uw-kqThxt&?lJwus^{^-l78GC-%gqT>P8AvJA@!Y0P{`A#f`hQd;f^3 zFjTX#YKH07SR84NI)7r-@1MQ3o%?cxyszMU-{X#=7Bn9&UG4ANobMYsI_Rig+AEVR z<%@AHqA>fBORYs^kdCqClob~N4=;M!*~>Z-R@TEa>~V$2qhmRwj-r5v1uhl1Wu z3p*$y{o@}y=oM1?5))5ndub%!xbODFe!4>12p?2dq)P90b5ojq~5@rbH_qKD6)SXwq3r{SY9}Xl*A8WLR&<5)?M|AAOF{rZ9$|ZUv z!vmtasxDv#CTF^YHG7;4@bM&fYN2ojRcgub+o24q#r1jGU!7wROFy?k?jD(DwX=xj z))zd@kbK=Hk(Ue(BWJ`1ZXRDPxOXDC$#zin+Tsq)nIFrhb^amtgxtg?i%NNi;NZ11(p{`|gFO<(uQDZHOLU!W!8a z4)SxCh~8A#Ela$SUR zA(6wfD=FoVXzJ2_Z06U;nK^oXIX%84et)e$$z`*qr7oKHNXu>M$Lo4mlDM{Te*QU= zX*YfzMWLh2oE}KbrYfgx-{r^EB)$&q+a1Tf@$+rgtzJA^S_d!kAQxQt%C}yOeL1I1 zdU&)#boqF+e1HAL*#0>y`#q=ej(GkZb8~*T(zYZwQl5kD#!oeU*t<@j=Em?JYupW} zTU&86Zl;lqyP9>GgxySSVtHVFx=oZ)r%8L%b>GxsxoVq!`*NK>rS6MWWpe71q2hri z;!i|-|J4QWl}ka?(znEeC<9>~C0b)Rry}*^0-Gc6irVv?y@4#Z9CQf{I}=|6nmUq1 z{n#5Wk?mFD^quu62MN*jN*_HVl<-)musD|Dg+CuY0HsYNkqziK1w zR>+-d3=M`LmS_l~av^Cug?uPPI~F=7X7J)rNs~V@x9@T^ySe|f@jdEMyD=9UwDVWJ zR)`P;V)ASc)-rugBAW#C`-B%b$)z{@11woI^W4rq(6B3Ty|o{7x}wbtf++t zAIfd!bruJU>iSw^xm^a8VmK^xK6_!yms#q@*P)f)6(11bKa&}7;et0i>Movis)~$ z7hmZkuAk`a2&`)yE_;P?`;Tx69!HJFj8r+xDniT*?|c?!G({b zT;~MmqiCce+9kH#x5#M;AGqR*o>*By#qoHzBc?0)Dmd*DbPwOXX^!I^l2F|Hg+x|z zYO~cVe1i)h!&n}55KO7)v%!9+x||t6B%6?JDifaQ(CAMPXD<>c@l~-r8yBEJNdAIS zWQizy>Aq~HgY|FkdsfN>vYTr}@;Kxt%fxaeO76N4i7VIO6r5N%GOSJ1y{$#MG1vX9 z*}B5k_&AeWs>PXxnq0pgOG`N6QO4tZ>sk36b$EJ*NEX8&O3AS1#t{E)a@u(gPRyS% z_dhiCmLd1qH$lUp;;dQfr(a%Eb)`xNCkp#SZKa&~RZ6PSS&Vz79%rk~+K5Fm>-ypp zeCQWzJUdY!D0Q+Ya{SDG4mS5?0K--?D zEgH#g9@j@z=SN7xSaXoi|7pd+EGVBZnCZmsVR^-&WGLo@QAeQ3@;4y|l(-FbBR_y&VUJVd_gzOR!omHgDx(;iT80XIh<=8F%*i zNpSXDQ42~%XQuMqu2cFgQB+XG*%n35{k6*Exez~wJ?}&N(rb>7oM<1t58)5nHk5%? zw&=h=5!YU>D6!mjVFLyFP9vpp$;5ol_8Xs`eEs>j_oxzzbc^aT(;lZtT*K#ew64{r zrX^fSb3gUZmTF0u zMwKI4_lsl`fn8;y6R(7BcDlf=-)MuF+cxC3dinpY?;v_aY?yS&%|Mf}YIOilh$4AjSes*plZUpSQqz^6w&k}b#-ou~} zKU+p|wv+jzgtK$7-ln^=@=b$#d%jOLip|u>RM7F)a5bJFaJaXr3;&rZ`jYZjFANlj zLf%hl2_4s56(4ZVEx36y;0{pqNDsS-O@@l4e)(tYb72;m4n4-btu_-z zX7!_aZ9b>wtcNG;Zol%?f9@__xU+O5v#>-MJ^nBuIoGe(VYp+rq&C}~9xQt1@VFvV zxq!<|=nw7oxu(`!cY0@%=;a*5(rA_H6&e|$|63EfXX`(tlROYid!YaPs>G^Vz*j>2-z?^P8A@=uZ5Q6a6u>zL3nOQSdy)+hyf47t zTIR5>7x2Mo7Ul5V?TbH`9q|BbWeejC{#`w>yr*A?Mvyc?nev5`TXGT6r|G8dy1&R? z@_||+L~Lte0Ed8(T;f+=si9a+w}wJXEGycXNeW1Y`0((m!Pn>>bClx+<@;L}TtAsF1Sp|&id#yF z3DDv?VfEVk(dB;S#EK>YdR7zk9Flb}V(wxhF6(+Znm>PrBf(?yB-_5T7p{}}5wM>3 z^TVS0^)<)WuCp42Ah+6#7jOe5%wl%Uuah&iyXj9(Js$o71$r$yQ02|e!~qBhfl~`c_W;N}P9YU=$-EPOQc2c#5M@bpl>XXX~IfPvyC6_Z%bC%uL|nl z6?!dj6<4X!KCg0rsUk5=XQU{G)9Q7cS=$@(`&S=p8KW!V-2{jh17#-f^rQC=0|88{ z#@`I$6>k)|^5)yguXuR%I*)zskXuZhH;yRa?d#V{n&Yt0IT2`>xMH4{h$ly@oHVrC zqSy+ zcIRaUhuHW=z5GXg7vL+>7GMU*9RCpUgO71OU#)+$Wz%Fgfl$N6iN?)INY7cmqoqt@>!s7@y-=!qmuA zTl`oly6-CiYdobwgTTt&AJG9!9EajqLHQkrq4h^6%F$_dl&Cj7pBIuCEWUrvciJ{< z21HVe;#k%fz<*@G`5GEc)7n%M!*&`4irgcu+0K;C_m48Z7EfEZSi{`Ad9AMcn(`iHt0~v{ z;%k@j6JvY5M{)E{>6LaX{NjtR;7`Q)y}y`~cK$jm=C3yTH&}g3F`k~9xg@}NT_TFb zaK_{nZ1Gc+QCEIm(<13;w$1|mwwu%+Y_V3tpkclVNXw;k@(Bli9G7vgDqzxY`!;Zg!$lTe>v#Zqg$e0z?J^tBP+K@otU-j zE|lDpjb@XU2)T)^LU=<3HPO9xcYWG#j8{{(fm$|Bjb&i6`)hvEDOOdlk0>< zeXWa^`f@ZGfu2aFsGy;pN5AXyzq#b+lfR|<8}1J!eDx=$15hhrVCrRn?S+D(>Ad>V z8HPK)Q3wS#RT)+}~OpF_V@g)M*N92{eTy@`w~Z8D8yI+9eUV zj2a7UGj06GYDRt8#6KTgPz^}{{>)IPtxQ>NsBHf9>g5mP9Or1`>pJie?{1ARCTH@6 z!K@})EF<5Gt%rN>#N;6;DPW%3OZa}ID1dLTeu9ejZINW6Fqt)KW$e;=u@8*hiU16* zauHI=qaM&Fm~+e#1}qK2)}=gnE9mM!&foRt=Y6M;=5I1s*kIZYB^aB*TmZRys2VPt zj|PfOqf^iT_Rs>m72<(`BLPi=-tR3AN{6u4?%GsmqA+I35U^D5D|f#8_&)%~{7>s4 z)CyTOayE;`*KunB|JQ0L3CydpnU4;4UIJFYGQOPByci-b+eMg z#gZ|Jm*=k$k;9DnhizP0YhrAwcG(|3t6t;kg3n|B?B_P3%OO@)o~5f4ya zSFTcIwAQ1j`Lf?19S_ldb;XvpBZ-@U+cvXut+nOvesEji*MA)8p0%80tDhYt?EqMk;Dpw!mHj_UbqOXtEFzo)s-8al9nsu_qt|^#&%XGr1#Mh zKaEt_QNaL)P>N#3wwKas3S*G3ur)1VK6CEUhW+baGl`&lTOVf9lf?-Qb#1zh5n7`~ z1#uoc^$LXyf5`&UB;_n1R+9br!mP4!81!!#8taT@=fSi&5Kl5R?f~>>vTfWp1#V#y?S~nDh zG?`EmUdM>rZ`e##Cbs2d6ZQ&bz55^>z3XgtR-V+*hjLgvH5@4~TAf-x+|fNFMQ{bh z?Pxdc;roXTrkQ^YcO3bb0p;8&KtH)7Tqt{a6TorWUr;i)AFFh*nlbSb!$xO1&6|=P zzGx_Zs$gp>T+{L3X7PX$T>$XM$|3zb($+;E&;k&Ea-bd6izNUAxvX$`mO1w*}-kgvmamRv&Ju&JLC2 z7LqupszT7^{KnP`ep6=3rw!!=z4 z0d5UebMrFfG$={$oGmx>8^ERz5d#Jph4}ouDE4V{bDrLG1<_X*@W0o~{HgoQpcC=f zKe+Yq-8k#G%l;NVdpdF>H4vxIoUQNA)0U=j*&eY=fo)AabY4uTIc88P%(eaykz*xV z=mr>2=U``5MEo29O5nA2W+HfZ8*V?1Q*4%#_4T)(81jfKOG;Uvlr|CrkPIDi)Yf3H zblJBRhnali-jg(R4l*oUT)j$iq{@?%Vc0SaM49r_ul}aS4{Hv$q66PlSdED1}DqL^Lf|`ze7i@ao1ojv|oLigD{ewhVIy;Aj_*e{|YDxElQmn%^I`$N>Exq zV@&2j%##_F9!saP&nW(8FeN%>ypYs4qe7h;Bd1x8+pBoV(# zGh4u&#WXJyJ#SYC)mFJv3(xmt=r=+zUQbsm%QxiLQIGYw97DOc}k*!t+lq5Y8RftF2`BtL|lVK1* z?|NX=gqq@o3TK61ILdQCT4BdNw?G#=I@pEsOBWz+kZ%jbwm&-bfPeQd>~@t}^s1~aH0(-t+FsJ2>Gav$@F;in7|XVusJloDlqskxT!IS72|&YXk+mZq z6IhB|p0A{C2T!^eyK9VZbaF5tixCg~%12DbdZ@6Z_ZvWX%2coD#isvr)qsgB2q+`_ zi}rgPv+@wN?E_Z0R>Zz&#^9}m&!HX>yy+#yD;by{>T&qDXOIX>5e9c?GESgxX(mv%Cs z-pJf6IQy%D(SEp2`nMP0uM&!968g?cZn|+7M76u8r%cBp4Uidgp3>dFAZBk-n*FiG4zC@gzi(e$;aNC26 zAra)0`}CjB&_2j}D$Mz8yjD9}Hi*)DVX&wP`|6(;Y0P=uZ)3i%&A66QNN{?WvUB_z zhwVZH5Igr+m}aw}DM+f6n3?X2@Tl8Pnv!P`b31LBhzH(ynY9XH>n9EjA`%iaLygS` zcmyce*ubW}8XBxq37Q!H@B%xsbDD`#*M(a9L`srj6`^fVG{n2^rT0nu1CS_<@B(HL z8_#~dgjbdPUqCF}qnzO0~7%xEul$kVcqTM?M;GUUbRYuLum;EV;8z@%NPQb0f&9?*Q1q zXETZDd$+l&sOiG`*;b?!9W|g9{&h0!MC$3;W$i4LBB}k|!F#gFeA~lTmb+`ZP4@{| zjVRBYy^uRR*5@C7Tm4Gb<}T!C#HAjEYDgm{ByT&6!D2etUCPm>K2)F|z>vb(JSpB7 zg|W(UvahwEp1nkL6Uof?sb2=h8K^9r7M=dvC|l^m6?U?>6thiK+E@XJ0P`qV6FUgp zV`QdUS!ZYJ#^g9uH7b~_!}dfA6)J2OkzIj_IF9Td%0Pu(jv+r6*|<#Y5Uowsj3nd1 znjHo0y!n$K|4>wN2e~t;s=M?u9Z*Ct&@N=L7a;5}8WJA~taEA&)+4XWra^{$~@(Bozh0bug z%0wTMP~*iC^vxMsZr~|)sGos~jLiKR(aowNU@aTA$J~~OCi%9GU}#8zAB2e%8FUD4 zTqJa3KdcZvzLejI1V}aU!$nulxd_VE4js2KK32>@vd71ZYf35q!yYa@1J4t_$CXfvWa@D_{PUPv*7|8OICmMe;^S17M0 zx<}zN!B-GoDIxEVE_v@JCAgQ!dK>_wyS7l!w&&7Ese35Xd}3SO1q?8N{p{V)Zsc{^ z3ISTkqqh!V>M2Zvi`^i|c=d*C_7-Xs^qSfxjsP;`vR#-d@}I|%wXIs^D$a9+$ zxIdui3sbT((t5*E$j38k6YjkLk)6rR^AN-g`9cFZ&9sd&esSgahU+H+8(qj0@uMZW z>Gd_bN;7%>z1?0_b750-TTk~E6iDV^0NeJlkAi(2>6~FhOf^Q`{g&)Q$a&WJK=L4>HVo_#vlMoPSansc;7%4zvo%#m6==yU0c z7~`&G;_My(*D*8jyz{xyS; z&0+pU4C&<%E)JI!7%VEoS4UtDm)l4}+oGY7iCG!sw3+M9*J~l5ASWP>X2c7)#;7s8 zA^35|pgt}O1B9B#K=q9muj6StljqbNl^1#6=szZ?-ngN>hRHs>@Zb=o1jXbWp^L3ado?2ppu|D@VD@bf{>3^uSo_ z5G5^Ry$%cyi%Ea`GT)!$X+~HGr2H*{jf&-JI+z^KXZc~9ieVgV_GvQfw-ODMS*6X0 zcMX-8H?>5wBS()qDjt;ZK09z9DM z8_l=;80U#&ls&K;b;3G7V-949fcUNUzPHqRha(Vgsu8;CbpIh1OGD~wkeSIl5H0UQzZ=@&Pa=iOsCq|`CO%a>X^8Lkb`F7 z%YFt>@k1@3;7R7|xHk80&=Pj&2UwgORmMf*!>-h_IR9ctS zI2QI?cWTB0>PPmE-MA0FRPPH*Eh%>fWT|puT=z3b8hOn6mII6wIs2}lgdo*SlKmOc z?Zxc0a)XW=4WLNZ#sz>jUN1`OGHK&dg=GpeTo99Xo%c*TzRSDv< z>s?r0zO_&VZs$~OMGes!^=8t3^1K|-yb)Fx6jJnAh~{Lu-$1>jc^-%NwA1*`40;LcQIcrk!Ze0ov;~Kv{X=$I`t50 z`P8#;j5PeawxvYBar`?cKQ#+D!Z=o{!01Jxst{`INS(Ugxfm5SR;*`7cK=t7=qRLssk z;iV$vcXck9O+1)zWQvY6DIP?6P+Fo`3kG9d(e1DHSG!bnzmxm4I3W{?OHSK_`47$Y zG=e*O4dqFAKofRfA34S8{bTX|{cqcgLmv*GmG!qBd`xjY+}nM4uCw}7B&`xE6lMyf zX1wyOt?2d!Gqv<6-!P2w)O&$8yy-u3Qf+iwuGHD)90Hp1u2z21Te$FoG3|cK56qsg zb_@OFAp4gP9Uwjx22<40)dR(vDpUZD-3$pzKx$JO<%w_V`2%`)n3q^k#m>@eYTc{SUiPv zzKSUz{5P<_%8N4msFmkIT~Yvg^+$1l0^Zr6kSXDlIDmsbA>8O?*_Es(ibw0Zlv>Bp z&Q;FyuRnG0=_6a!`z<#piYvR??M-%mT5b@n0ycM^+ghROWw^)LvPw3CKkLE9)pY9HMYuD7F&VzT zfyz7a(6BdC*^em-HCweLJBG`qv6D!(#OzuYv4GxiOF!v(%tnolc{&R4SftBs+zt73BKm&-5n%uAH&} zV;7gDxN#N9-MK0f8}(dWXFHdXQm4C<#U!p@LqmwQ;zEe;>iK?kYkxJIioqd>;y9EHXlC)fyj(Q!PJBf%q_57TY&?6Jl$>+|){v&ObddxDlB z4l|yVC*R>lSKZ6UPf_Zkp)GqDz}+Y0Gm5V^qdo|mPhKEf56%aYZG195r&KQU7+Mb{4z*OSsUkkJ&K;uyzSYk- zsaBw+s6mDORus?AxIfpG79bVF(ZM2@8AzaU|6wec}2Y0bF_|Er)2803}A$u0FJjrz_9^HIRWT!J69?>C)@kJ2C@c z&(M5u;w_#bDz=v!;-lPoYc#h?gL3z#UGOfU@!aM{@w!Hlnk*9`u{2ymhi9%4w6d}y zCQazt1;K3+7ZQ6{-`_$d5Z46_X2+ZBKUxaV1aR!ZhL(gB*gBn6y6j>6(%1*6*T)eG zW)CSzE0skc->4@#Y3XW=->Nw&GwQ2W*k)O94k2BrlNr=Xo1f>Ae)6WFgMo6p<=Zf( ztxsQRCiX)EMSdm^RTkzkQv|Lsj+40?vaE>mOly@vy1f2=EaZ~cKW zhBnQcGzFbN77TguC=Xh{N#iI~T6H&>sl9^viuq|e|Eys1V%dVM%I7^k)!-DmiL}|V z%6~7COOQ(vsiV>eG8yay=}qQ|KF^dF7Kq&HWU~@Ycfko=Z`0y17E0Jb99O z|3I1VgY~MIb$fXZa`@713Tpu7k%CF#v*+BD25>Tg92Vb&oUe%77#FTpl~zu3wG(e# zyCVD>M}c^Q+m4eXg3>GYd5QfflScb~mafcR@}$^mw_CM5pQ&?Syn~TsKz5+HtyFN; zbc<}!o{j~-+U+fFEiN6Xyg{tSkHO98RgQu*JAmvY>i9w>ycn=EUrQ1V8>_dmtqQ>R z&_oQrim0BTi@=-S4T=JFq{!H?rY$M$^=4VS&bv^B+M^3M0iYn|f(c1k2EB%$FY!%G zb}U!>i;Tk!TAtcv0V}cwQ{TS&%YXAM3s-j*H)ND?i+{i#l&BRwxu3-w&K58!6Z%Q4 zQt#OO2HTSu)Ue{bscu_EX505BJi8SsN7dGy*Q0)9P`uDs)Qt)OC@(2S72|A?ki&|A zVW|P8mQ0(i_6&H|P9Vk6TRPs}Ker3qaiu>vgsZ_O$S=6g&s86ukLK7}2pzLHbN(|W zWC*r2$GJJ3%mI>kmo4RVFhp5!sWi#AV|isFjqH;k3W8)%{fz~BG)M+qamksq*u=l1 zC^99~I`jBj6mBKUPs#1}Uw_+s8~gH7A?gRK*)<77;qjs6A*TlYSnzpA{Kzm`C2O6O zMOo39h`bc#qw;Kz1;QW>vl|V86rP5bBC=w0hHNSu*V=swH}ccGia)-@YyzB))CRGm zo`RHtoYkC&jr(3&SBEgX16tmIVc>xwlA&}4BA6UIJ1h}NPNo1a7(|9BV$TRxi?CcvBUKnl@4Uh1HHR~o$&#*W~521}XO5?@5#Y-UdsWL}AL!VIM^-jZ)iQzz zV4;gO6Ry(UJj;FS*=#43!&2GwjY>UGXmy}9fwesfz3puZ29OdzYz{zq_6?{JEmmew zP1si{w@#ngeqi9Jta6j;4Qa%C^8gZF`krf-UQQ#f$Kol~xK?%NXpSv@bbOA~u3RsJ zi|L;{-U3#?+qc~A$Zb83v`!tvt*gpZ+4CWDU!uc(C2N-k9ymSbU(=+&e{W*`|`Vb(Zr`S%fmIsl-e~Gv6p)Jheq(_CXJx$g(x}Y*qgOzcO>&rP(XRVk_U#Tt}8z63&7-ruZ8xTumiQ=C(UFgqa z)~a=XfZn6+3mjeGhZpB00Y3>klAnEELuzg#T~i6-|< zx{`GL9Idij;roGG_3oV`yfTM>NfW$$am>0B9gfb0Gj!nUIh$0cFBBCg(MQnuX*)$w9r?gEsobO=qw9r z=J^?6XMnNRL+WE5(8j!a(r*k0B%655UibQ)my*G39zFKiP~HA=Odrjnaiw9RoJEqc zwQ*76;|~ieZS6WQTDpL&@JC;Jy)}HV4Wy=-kjA`Xh~xLG13;w2um zsU)cvOX|nYOT(Pteenejyv^jDCQ099S?|}2FQ;o6Pf5)M*McU`6PF0%dzr;*Yz?8f zvK!{z6aJ$9ThG47cdZRY5?`UwBci~MrcxHsKB_t5q@w%Oi{GHcdyQ})tj&g?_+e_I zJhL`-M{wSe386ZT{pOW|tTc*vfh}D9ST)wk7vFz)7j~vdN-8Nud`;iDafeq|$fp_w z`*3C-c@zR5d(p*g)1hLKpgz^E!2;xz*k%j|k9yuI8`(y&0MW(lu%^>777baK9!||j z(Fvwd@eZG6mUPu*F>DyzTaTrZyp^SOj63wpp z!^xnUGeQ4i;N1DqY-300l8z(j=Z^-j%<4+;>^=`^eJCZNOMgq2TAXxtx0$-%=_tX1 z*><*rRZpGbaEGw$y?ERASo)SEjBrQ?hXqyOr6Sqe`0)ai&%cp5jW;t=Q4;92kXGxou4XRC`oDI6Cx?RBZKqD4rt(+a1N*E#RV+i3Mv6Zr%YAX%^Voq1Yig zpTYCA;>vUq8^0TO5D8aH=ilE|HI^~Ps900<_%2CA^LCyklMZ8^3tM$C)JvMEFD~F= zG@8}k;8-?hWokpS%X&-s;F|q4#ft+74WoL#axw7T=KV z8)2HGKNk;jiE`f4my3AJ4*Te9FUIG3v*yG>UxY2_1C#?2gpEMQ6(`ou3eKp*~tDX7&%G4?kP@o#e6XK^VPGNd#d{=6pht#|Ev@Jkm0!hu%yS@}aK7FF#j!jv0T(h(P62P$O(w+`T3F)nNBuZ-V2R>zog(fyB%$<6R<%52a z;o7Gz(U)1R-?GO*aAbIi>2%E7+li*~vDT#6V^x?Jbiqk}1rA!}+|Q)WBaIbmBAw|2a#^}bNXc*ao2w&sOx%o2{OEDKvzM5& zFGh@eb>2Igrz1r$czacI&MpH3Gxo9h#5p5Zoc?Fu*$qpQD`pR5DP?G;n8V*#DrNfAPU<>tBPZ*AKIoCC_GKMlK$oMXttq z*Ro?TCoYQGnKd$dGXsvHTuVoViPF$-5>B5ExcG;jmQxsqV8dll7|))aZ&^UCCcZ_f zyZAuo((f;f9^p>Sea@VKwkCFzT$b9F>Z!W8l5`zkIGb$k)6SQh-jkWtRX+OOKZA zaA%)=%vn3#T!`BtIG-5=(g&{=5AwJA2^w(6vzdi4BiSWqR! ztu6N3j6McE)IsQfdjSYRcLpJ?dtwF7y@-RnLBYj40ba+so{Y6&t2XaAosHhY$M3=z z+M}|MOpvD@8J>)10T_~iiIpB0aND6ppeYm6G{KfMZ$mt@ez-qAcv+>r^%i<+=(~sSq^lrpuKyNu8e%(&B+P>YPY{ZLGmfZB0$hBD-=K8q; z-YYe)oqX=RLCX{AOb5wkF6AGBjPXc4T=5xiUIvZbNDRJ zI56-gl%&sR%>}SY|Cj?|v{$w3^D=l9V*33x``U%{;P<9r;a%0II~st=rQ>zn$hDDn zxj3gQjdxoumnWz9Q!o1kgAUbkAW=g>PwZg$2u-%Cm%CWfKRHu9sQJb30Ix$vYb`rc zL~v^@%gtoS35FghDdi%9Y;QAM7joQ8gDy!rMYd|PSz+wvKcDW(O2y&nhPOg?>%po%#f%pyK8b4Z}G{Tp{chIJYdf9ZB0Z~?)&bZ)|0h12AIYrV`tc`DqG zhpI6>lcyM$8z1!;S9-sH4PXQg#cJ|9 zDb0tYqkVJ3_5=j7W8^d$ttrYDfRRyr0H_pIiPTwLv&RyTcJ6BYxK!y*JzZitw53G0 zch)zo^w}Sruw)YGnVi)f9QYN7=F3HNE+Zz3`tJ$SwC_?od>?xoZl)22i#ZnhDcnC& zhCO}mj>BzJk}lWB++dt_;Kiu;b+j(JXLbe;PTzjcbPZ9%$v3Y#EMDcsG6i<#r^Y3T zXAt@PoGB1!BKVh(g|9FR4lR%sPi(U?YF3+cpM^9m((E;YAqYG^jGe4HS*Y8Pc3yF= zpoeGlEk%`*f*CiIb{6L)T4OjPBh(8=6Hm}Wa2dW$2!V9w!EF4yr9waqbAe+&4KU^A z>c!%vB%|Wj*}-`>luobHNTN#?zi;bKG>l32?Z4B(b6^#v>T<2NE(IZNvN^JA0!!Kv zEM;}!w6i|$+9=SrSY(R%h8x2e=o~u~VUF`7H6~W$rA@=zvp0s@6~bYZ&h%Yh`_V$@h{91`*$WOPy%?+*X5H5_wBNl7mGYi?Q`Z*7Jxh@30z+$8 zX}zSZH2)w=HMC{Pz#GCh@_Fl!2fhz&x2Zp?npaVQAXZJmP4zE3x4=z|1FQY_zIFf- z3+KTkA2Ype*TBVL0>j46J2LV8orLE`j=Mb~rDhxJY;(zI0 z*Z4gUr#-l4kH;uW*+pg(g@!@&-hBbIe4U2xxPpwgt>-9NK?3#py)L=COKP=sSC!~aN zTsB6#;G(|4#V~<|{;t*+|L$bf_UJmni@4-&oKU12G73edSfB~7)L12;Ki%g%9E@t| z!>c&qne{=*@Xrcg%`VTYXk9Ae_*gjcsJx8%|-n)cyGcONs3 z=MS2VR4hu=S5vsf@oRBSrevn*ij|F~9xlv00M#43@e|q#v%;KvmsJQ*-rjrwLuV4- z`-;@fpv|Nvs7B5=&HN(ZEKy=DIFEH}-A|i21&0)QiLw74A_BFFh@|iULK^L9Qnk7H z2LXo@b+5I%eS17ifKzjhDrtJ{n$NSK*u@0YQW!q#*PSB&g-`cb%!ZXfo&p_dBl7M2 zoBy*fu}uP(Cl2DFpdt5XQ1h^{u5(%@!@2Ltyg(JF9q?acM=(9T&p}Jb#4hr?CL-X4 zp=KF+c1Lgj;jY?GjY2xxJE;AsqtPaN7X+~ z<8#@ohc-z%pOuEOx#fsl2INs(VlL}9FzoM+tprm^QaesK!YjuhLsZ5=}9hHvxaFwCz=bY)x8w_eT&}bU4 z-g2fLbIP7ICo(iNY0{sU^b};E-z>^d05Q%lz_P*^Y(-)4U_(V$*U84;)dF$uN4WqF zSLE41q&KMngxhZh7wEyDiNI-B$ahrP>c9o{d7#8RUK;_{-+!Ekt2IQBZZq7GxE53H zSXZ1v$NQ+41Akwt(F8lrs%6!$(;~8HFqbjeO{Pxqi2kFou(j5wR~L1mpP6|ws+B$f zRSTyh9slR86Yc`FsK5@Bg9+Wm#6_m@>;mnRC%=b;*DaK$PrU>w=eLwfd79?pB=zW@ zcKb4f94TkqAKv1&U-e?yPbpBVa%r)SE6w}f=u40^l|C6My+1he7G`@A{<`$=WF*|Q zWo&T%wW2%f2{!Y+P#3P0%oA~13O%j!o!!1}eOl&Ur>(|4YR%K^yuxlNxjoG=ZMr5F z-N%8iO0AG5*5+{7dQnkui+BLo(v&j3TLX_YTCgJ~^+8BSqCm5W1vqj!!*2vfJ(0=f z5#=7nP-Zc4RvakQ?_PMnH>>BekoQ|<=T;()O}x7<@Sy2MF( zmXAslPC34R`LvQ<%%H~;W{0@h=!$Qg;%6nGxm;Jy17|jfNNWT4Rnfi zgn139b^JH8&HYjg8_2tYhRssOoRpf=C)!QoLLeBTBb_o z7{YnaX#Omc{w^T9e&CQI$2f3#E;qCX_wG4g6;I zb!JN4k@+#>`kLbY^wuLq!Qujt*-a*jVZXM%t+bBxu%$&ZRi`Be|G zZlNG={8$(&X)`Sa*cl3{Ge_~Ye=qdTjb|(0<@y@>)ALtWBs5<+EUMnpmP>m0VSRRO zfGsV}n~Q#)s)l4t$AOr)X#bwY^bykxLoP6@4e%m!thNm52~-yh{z{hTwa~p%1P~}B z_j@|eMitt;haw~qW%IjqR2x)VMu_LjjMlZ)T+}@#k%nTpPSDWb8TndymSmPM-jsx5 zZ272TjR!xN=i4pSI~w1=yf$|5<>#LJdB#=GbhOez;}~Jg7Weg++3%SI(&UCTLk2Wu zDHn(!fx|-%!GCS*kAkIVSF=Qpeu7M<)&J~(nY;2O?K)IDzbQN{P3!ROE}$l)BW zWPDNlF3S|&HNGIrNX-pH_~v+SJDKy>Zt0YJbdhedT=e?ujtYCM9T+@$dwr#2IP#Fk z^5nQ-egARHy%cBX$+9ergUj>NCZ{EW?}S<~7rUA*lYS`C&GV!lurjM*i5k;b^7K@V zE8n`?ldR}16SmLYu?iGI5S*atN&#kt8tA4w|GRVqg(0D+-EF_c#bpny8sc!@)v|#X z;I=6}rr#@uy^>Z#V2?=pa~HhfF^`3e$Iyz^8v6G@zRlCFTeGoG-kYD*kgi{3aPl>WT|Rko zN%8nPjvi&%4}i`Zt;_y$`bqD1oc>vH5ds*06M7cAz;sHMTh9_*3`ovQ8b)@%U*QKA zeQn@!JX`h3koxdY*;yyl6f5V)I~_{xyEHDH#hfm&2H#up*QOqi@og#X&aN@Ple(-K zZkg!@8nG_8N>k^rF{nI5IyV0A?wbcFKvM^S53*-*4F<0;@SJdx5Wq3<24$@OYXyiI znrB;k4oOlUHu$FpiXC{Lyl?2QOpnhqZS|5W+{$U`bTyQXe^uv;t>F5eRgRh3;bWSG zjBT%ECDMvwh}3Z%50&1fh|m1Gn82MBwOImh0}E3>+2oSL1N=2o;Uv387$Kp zB1`DqtQdETki~s5Y~#&En&Q2yZFgx48hoQZ#Mi17==lNE>t7p%+dC*7Ij{e9--Xr{ zq*-PPj=G!OH-c-GHfFFRYyuHD`yT@JvxTl_Wn!zVgd`jorZ3g|A>w7?-yd|LTruc=+Io00*b z%pZ>T|En#i3K+-P&G)uUFhk1-h9O{&`$EY&cur5=%mSB4LHz#U!smX(7Qgo?tcA*p zcucI$XhbRN1A)}y^b5(9?VR{MBKaPZYdQk6OMC&C-R^iA_V-%jc#R!);bglw(9l26 z^8fteqpS77Gy!TAwk?ZS5UzLO7C!!XhaV#U=XW3@KwqeNR{xH$VzS<7$aaXs+!X45 z9A!X!b1~;)l)>`ui_VqlElb9OxFOo$&(ieA!_|BJ+K|$g>PxKR%#^-vgYACDh zWbeH*vKz?G-lMGS5VGI<;rvdi_x$0n)AN0v&$#DxUANfrRhe6b{&4!*Z1WYJ+dpQN zhjA)j=5g9A9jxcA{4D-@I@hFFSen1;!8>%vx$F{hUk3A`QY$F4)w_`c@()rD>Quc) zv&u9iV6G^)PVQ{Y<%+8RfTB=IBn7BVbmda?;c!DNUENE2(LMGo8YRSK2Z1+D@QnR*p-?87e{&(PekZGFK+WjCqdAIzvrm^pSli5!Fqq$Lz_> zvDAPjf#F~3(|8{+EG{L>_QHU%#64!8&UDQA1>;u$-OpPM_%FZG3=tAL`*llPp$1TivGfqEF%?6Yg0v`S98e97FC9aI42>TE%@<`tmH+T z+roKAUPpbpTWd{Z2;b%4`os$E_w6`!7(!LkycckMZ(M-%>h}D(*x}bZ0Np-fu2usK z_bQfLg~P)L0avHbH6V8Phlm&!xhEjENa+OmX~|suuh}&#K~Zc?UGp@JdDiu+Gq{HP zTB`L;kE5>+)k)Lu7Ov=f)^+I1aF@L3ZQISL(41fJsI#d53MV4jWx1BvJar}PRku4O z;3P)^@LnB1bOI&+F-tNf!87SX$?_&G2nD9aobmdtaY~toZjcjwm1TKLYpJamQvoiiO>ECn>yADBl0fG}VFq_Q?1_a7tI;i+QQRej zFHvU%OtK|`;x@>GK6xHL!6!hAK+M>~4xOP#G&<~7C}^{QhR&j3`pScBfLS42SsK9k z+Obf~yuI5f`ugR`-vTo%SI@zXMUsZTuZ;v#Zvfp}C2H;W7vu0Wa&NWm z_K&_iZLXF_TcAyf4S6LtKt154_#6DoxszwS>~*U%lRiA^d24yz==IWRqo3B!{jTPt zI+s$O#WvfD+xdKaagp`&m%-vaq~QwizYsu~mq!;uu(|?F)>79j!}bIO6Yv}WFJ{YZ zXOY7#^y3_&CL$wwC%8aiAT`#F5fad%j_zfk0$rptxcOVS<#qc(`5klQk& zO^SyO->s_(DSE@aiaAIlxTs30Xs$_kpLbd^^!60F5)DQ6?vU9lb)Pq(b&e*OgG5vp zU+hsU&3!C0If+lh<~BdmB@2{szmKLsETg`7;@m;-1%iKo4QK%LkV~0R0T3)Ypneng z1g!TPsnednl|sfSJn!dhrM~tXwrbo>7u8gBrIJxmjPTl$-HsUBHjK-4UQTxRr-*ET zax3}yAfB1v6}jx^Rrd>}OdBp`7=?bMO_Aa##Rgxl$S{pDx<~`ISgD5YZ7=#dZz> zy#@M3bDD%H_wGCL^_?pqV*ixPzy$u*;O_Y#P(2L!@Rbc@w^WxU7sKcq1KEvY~2{Ya@Hd|EMTPK+K0x)z`)!@*?=8$~d1IFqb|np(E=kkaT^QipY1_&U zeci#;>Z8w_>EcoxhD3O?i=w#s^`(crMr&%v9r+CmT?syiwOoDPh7JK`Ah6ayRXPW< z1_uH{r2z;4HVXqNXkt;TxQDH~gQmPgm`Km}<=bSJ@Kh-Acxlk^#gAd0O}f%?(@9g0 zFe`I$Kw%iQ;W}KD>nb82l0$Gdy#qtu3Ageo5ii;;%1bYoV)|LD(1Q3@Y3yV8CIy#5 zue^-n*=SyB-BKUbvib+v^%`po$dG7ph*?4)`9kDktSWcf`_(z2ph~P$ZaX(MFJI!D zNu=2Wk2k+j z(|PphQ8E}id^|i#z_o`#cV`Z_du43uAz;U4o_GLg<`WbcsFs(P%kEwvBVz=#FYg^m z3QteZE$3P5sXNlrFZZl_+Gg7#D2z|f-rgM^9o^r+6%-U~*ov>RU+v}Cj~QK($tzyC z(~^2lPgnQZR;k;rQedtvkJ+))fPBcjEr2XBczkG`Br{ zO^&};%qU9MhhgNks|qDjPP z+k&%lZy2ZMRGXu@W;svY#FDZO_Sfm)D69#^gVG^j&eUHr1MSeQ^X;&UPl5S{xYF;^ zb38anno_;BeXLwkL~8~&M0-D#XLsg5O43g^wo9TufsSx%Wh(XEK|}D`zt)_{aI~t@ z=G*6+?!v;tByFo7g?tKPe)cF`{V&4vkit%r%g><9lx!GaS5Yu$bbsTMf1mMM9`!{Y zyiyTF>5;?fhoPz}S^~d`wlT%^^yblwZP5kM}b6A&WVR+X) zO|@#3x9f?*rAwD&i%pf6H#T}H*xA{)rdB~wVHP)3aMgM$)}l&`Z#8T=QZUmuu*-YP zsptIH)iRAK$g%-&YdNE3hyv{{rD+Z_ucX<7T*X_7SpE1#&hs%!m*FzFjt z&UyVxTs$JNq9l1To$Dm~wMKItaD5i^iWo_lv}zkm8(5V8L4S*bl+%d~x~D;T{jQ42 z>!g&Fy}fws+>B#!Zj&h2wDWHzLg+6A1_o})hh^T;f2Wu&N9bI*9W}VYF+D*LEZ5ph zRror5GjPo$VwD4@EywPQBg|hQL+i#DTGK*_d~U`y*w2|7=DV|75+;*}PN0X=6F&c& z?Y&NLx7zLghTpFCs_t8--HZ1p2wYXIQ^k1MGWa5DnU}uj@7%sm8Q3B?Pk6arqjWN(clY?%@e@ z+INH=S3BKP?}Vnu4-(j9 zbhn1N(EPeA^w-gR3NQ^M^nZJ2^Rr6!E`=<0Ign-&MHjr&%L>kaq-#0vT0B90^1ov$ z^bSWlgxNtS=HLz;{_&WX5dU1;=eQl-mmnkT^NkBLgHpAtI*pk}?AN)04fH92z|Mp0L)&Rl4w*}qGC_yB@{V(W{p3@m)mx<3Tm0#up=uW+%fpe^6?vSWgjki+Uoy z^is#wEe+L`z+cl>YWOke8_VjQ9}xcfMRKORW#I~zx;-b|Z02&Tlk_Q4bpeLgKOfl< zOIBE(#Wew?)Bi2C$BB~{_}u##>m(}^b~=5*&ve;O5M7h7lB_005L!dEUUGvg8aZ8c-y1`V%P<}v>7Q;(r> z6OxqM`ncpf7O0iI)^5U%6uDNsRd*&V<*fgabwb-9hRxYqdPevwHZJw7Y35(e)}E)~ zv0`rz>lO}8zl5t|hRv%?r%U>4QL2zvE*ar2{}tF;%0B4-61t^3-y?S;Dk{R&fizPw z%UF($W?kUu8n40{JB{4Xsr~gh7Q8-fLapwGzDaMz{`EJ4To-f+bx%m-dpsDl3i_qN zS@Zw=Q%rixpI_NGJ9tSm2MGH(okZ+ATy?H^i}r;E@%{P%awd4+N1Egkzm!$-q$vB# zO6QOz?#mt>2zvv^$cDXG%OUIN0&l_s^Y33QIR4)Pd%9rz`Nn3b5~|&mXf;ULmwa*3 zx7a8Dc9QE_*pb`jVSiFOWG!c-!Ti@HkHY);aOoBt;8M$v&y{(+pL&OM(&=n>FPI-W z`VOhbM3k3Ya_4^y#GoYh)C|aKukE`}SJMA=Li1x=S&hjvmQVlu#Ow#jfn)Z#!7k7EqLP~D?f%!%sC zKuI7Bbzt{~LHFio>4iaid(X}7@J5nMl5*CWIA)2{E4W>BIuviP3q-Q^bq>;i!#^)I z;cjmd>IxiQZE~7CP(?%L4KQg`D9Ouku~Ktz$S#)6u^2(%1OmM(J3BioK~H(G`dIR| z`b38_9+-W-JZOdcY$hJ3VA3bF2!hC8ivTOv)b_7?7NC3?7IqmC_H2$e8Ku4BlMO0t z93X-V(vNu|^fK>H(DWzVz=l9WsDweua?D^btT%p3y^KVao2julisrWlCZ(K50+S%l z!J#O@QUj?yP&}lanVG>SB0|VIw;CQ{f}j``F8`00P=&0hv6BHMD#zWm-bujOvg8@O zB=L;IY*iCT_012qZ+>$+6)uJ!#Ci58BmE<%hSIVSj*Z*pgHL)>17NVpNQ!7HjbW!xY$=C3aFQiR)pPu|Qf}?o{8pAi z$Z%KsbY3)Ev>*BcN!K&Q>VaIz;Eb@-NQ_sYD|QkK%hI=K(%>xUw<27$M&P%t24B{+ zJ^_N&2)CDjRfA8{@s*zkzEaS4UzR#^!NPj3mwUG5bDjB;3afzkrZtZXNRwF{4 z(hqJR=*^1#y={ELNpkM6On#{tK4qv8T+X03sYjT7JDY9pVW3(qwX?gsaM#G>OwlOR zg5UK-ZHf_*kfimlg4){@-Dzvrdz4?^pLOL}udiH>UN@Jn$`K$PEHk#I=+rI$WfK=K z!3 zXI3I~xH&)uu!NU0bHoCQ%m}^_vtW9M2F0%r>Xqs;#P#fWpTx$rRSH<@+|CJhb0zuI zet^hCDw?HulIEa%`0o|pJR3(JNx?sb7)o*~%blMOXMoCsh*l?GQOG_eKRS@d*1K*Z zPpno6I;o%#?1w&@YmC`m@pe0^tQ?k057b^aM@o2yUuz9p#%{(tbq%l^ccop@bX^M- z78M-`47i|i`TJVWl1--9#2bm?`R36!P0g`n>;gBD9n%J}Uttm&#yl7w6K^UWlf~G4$375mTi$0vMsr`0W!hmQ1$MhMd3uf3W%OrGzr5u;}(`~ZEVZ*@H zkR%lAHtOruaK0a#pb#E8sh6dce~VZtnm<|RzDj_gNX${%H)Ew2WTFXv6XR@|-9cO-a6`a)AKj^a<698Zuen7jgehV;Llin0= zdAq{t#xK4L?ym}JD~@(%J%C%jb3q2~IT0^EWdUC|hoaTO`91F_Q-^Zt;R$+~Yis}}zT=!m=f$bJ*O|^v=2(_0p zEX>SrtM4SU9JB7eD=yx#gy?LEzQ}?BOkk=tmvSlV0GTogMZsRPtMaN(qUwNRJPF!8 ztj}m)cD7*1<|fZ@Va|Ri6KDz~@W@1R1?X@hQ34B*bahw` zcA?!VTiG9va0T#CFPnM0Xtfa>IJA@N((C!w`*aY>2oEP+`Plx>wBQQ3pX;HiP)+A> z$XmP8YBo4~D}}N7b-JWJ?L1E*s_`LZ<;n86j>Tj|1s0|?CY05 zwk3xE;x=)!7-WW7>0Kdpn`9sJ6goOun~GbwY_v)MBK$aUY%lxvf#9Rdcz zwDLr!lwf!DWeZ;UWz<>}s&*DC;E|H$m(0O7cBISEB_hazFen0()lPBW<)Oz7ZihnE zxKgl73j6FwQ*G@8WHwuDSq@OXnpF8-<%C{$#+af|G6rxolXKg}Ji7SMWZUkkEgREE zE9`%~^OH+(l-Rl)FT+Wfu0fyetSeBm}53Z2Te1-c2MF z9U@;XzBK=HB3No7yJUnTCS|K4Be-fd#Kf%*^hH>u_}4-nVy}_IF)_Fh+bh)RRxlef z5B-Ieg_pgy9BtefJv8QBX4vqz!0ZFNR(sj~o7=O@W=BF`3~Y$FOtofLO(8mn^T6nO z{&^>+L!M5eTjbvC$JCjhK>3=a*#GHmR0@)&BJw!s22XiI=kCoN?@kfor>3F#7*Vf# zejB({-`q-55&`sDmZttW5!g?l)qB?a1)?01=EZf~(+jW9c`?phj?H~vcCaHH_au@& z^e$)}wM=7Yki750Zqd)mxQ|oIZp#Sa(B~STa30>+c}Tqebestih! zI>`QSzHxj8`Ims#&hZwyvj>x%{w*zdLy=?cC2=hW5&_70!fX`@HMOV@RO;rN@`GOR zag*sA8OEA%lCyiz1QeAZ2Yo#mi@u2o-Ql*i?_WNMIxdxtpBcvCX8RoD6)+HPg{o@x z>+4gBfPrLb35GZQ9zVt~0?=pe_vWVXuE14 z8d5vill5kD_f`%9rhnsmj~kFn*w&Z4e+`bs(*+AcVKop<40~}ZVY}!I2^(b_50v<6 zKvVPu;-j?!#>O5X@W>D7h;A?oK!V?XaAAxCE1$4c9mb+QKtDnQ)kt+mf#oe|KZ(H@ zxclVeHqFqE@f$%oIFuqXxHCKVgeY%#F4?zrrs}-7Oi^%ZC+^O*@>}gAy zAS0+%2Ec(~sS;ppozaOt=`ilk9ku8l8KGH3EKO{>xw*-+dN;8Ta7;5eJs13e9^3#< zulwUNxs?@@p`x$oqDjXc65`5Q+|D_9Ob;Gv})<+2cJ2^+z;k;-y_Hq^3h^{}Bz;)VN8;s^PRrCDfM75K~XtAX9NlOa~&A#3AX^=nU;x#MWQw->@7H?cV#Yi~Dj zdKr3JXKkJOa>z>}8U(k#Q9Hs+p$j?L@azJ}FT5XOP`*Tsz3Pq;Dq?u0RdglKdT2DR zTHxY&e5K~rHxs`lYBf4YIixvLJ07;!BSHu?=!DgMLc`Z>=&`Sr1 zYG_#$Dh8Q$mR4#<`I%l5ehnq8qiOSZUC7E~cGi_{z-wCuBSRH*fsx>7$M7s+zKOM( z2_Vh(r70k)^T`adAqh1ILTMoy?A=6Wf2Qpf+2Nw%0O(zq7E@s75B%%~U)Cx^MP8Xr z`I`gn&;0yCppAMRdwg4fDQ~Q%jiZjSZjs+$)M(R~_KIq4UwjAiiaAA?-tY1{LyST) zVX@eV!SzLEo-)7SUstNKBcPyQjgODtYz(wrsovkUaNOVBxHz>9`EC;22=0%`si_i3 zj0Wz9r}f3NXP@bWP&fNq<6{8UVS&IUqK#F*-aJDkQ{d9+Ia6w;d%uMcOf{rHiD z(85faK#WfuDKfZn*x4qy@_Roz?lT*cPfd2_2R#naf5jCzUPnR}JQ7f1POD1ZB%PJL z(jD8KqcyPl;{&c>NDRO8$af`M*&y##X`X8&fxLM)8cVSr-$*`62Utz0HYz>| zi6JlT;B{0Vzh%us+|Q6=kQVWL>eYTVzmBeH7NNc7A59XurcauSP(DtyCJI=z;p4^#-aanr{KJMhO`kBFpLRh-A`Gj;Oq3 z4xP`HX~F&eFKRbfwq*Hr_m^L|e}chb3*Q|h&@%8UK>1Myvkl_LnWj3Z4Vd#)1KJ{C zfNLU^BFC8X;d~#vcN-Iw(2yyPS{Kkp7}%`aT!u5oKGg~ja*>eBN|rEuQ%%kM!!6_@ zjz5&UMF8kRbQt$oT{+&-D`dSAKy$K=@6t8b_hYnj18p`@IeGTCfE42XxY(C}8&oMK zEZuZMFuVc82F5LO7~f=ao!DeJcEbe=&73Z8=R2c1Kwyl$vrXh`m27#rYT8C{ z)=kxE8vZ>B$a%2T0kdMhW2FRI#FS%MHBcX-hEr;1rxLI{OOwXSGXTRMQ>_8SC<6!& zGaGRQT1`;wNzE(ji{;-hK@cYZafw?rT>K(SHYDBl5ls zs>N9XMj1Xa8I;arHE5}F8JfeIAkUNLr7M{T^^^kJIfYc~LH;kS?wh_lGg9sxl9|}0 zi1gsY3T%1ThuzOLgWuy_lCUzL5>i72FMk3n=0c-+8I1A-9QHN!E>=Ku?A59d!0P6sakLlVuGXz$*=YLFHQgos6AXn>RD` zfVtL?02J%JRJ`drbfE2~Y}YOFl#KSE&g70t5$j4|5SDPV{(cFC#`Ym7TIocR2#4o2 zz=T>$Rtl(tz?_DO=^j$Z-re2^-`!qd{&wBTtp`lP=zdSQXT&L#utt$_s90JyJ2>1e zDj0(_Fv*Zx_C3>Lw5kB)h*PIC$=_w*ngX(+*c!#E+%4A=5xC6wZM77lyHKvW+dtU%yA6wALj4UgP2)+t_mo2FLdYB(pRK6a_<*T6xoF8m zpZBvX1yC~|?Z^;X`zIhEz>YC>*7}BNA6x1a-aI+_iB^i9+CH9bqQSDb%Yh=g$R`*L1N63J0si_zzl9L%7GPJwPVztAaZ7U;H)&r z*KI;poCJk4$y7Ny6M#dyrcO`lc|me+BS9##KmvrK4my2Qz*;vz$&t*)-_H}s@gtqhhIjA`*KubmJzH^5*xIz8qkMMi%rgC;`E zROG!Cz)Mu>bnB^Rgl9$Hj+Q0owMnC)rJdwi0C`f2Zx?qEi7)Wh{wwLbkaQ_PMbm&l zO8N_qiw>c7_e`I!(bN4#T9_Ot?~L!#PkccmqPrNjvU!jpp*)h+fp zk>}FLa}as@k9BneF*mNp&obZ8{e*`|XLYto*Zu%#l^9gN++s5acp)I>Pf)wy4~P6Y zFGG{1yJ!D4(Tw)|yVX0U>Zbc;{8^pQXjIED_`~>PT}L8z9@YdTj42_MuI+(&1`}mf zH8ny=7?}fgmu%jaEeP+P@!pJ#JxfZOE)|{8RADX<9T{6;yogvuq;A#icB%Sy_G;iA z^7aKx`7dR0^$-o}f+gN6;54WM3{ST6&e=k+Im5@^-gBMr`qg<;oEi~rtX`bKE{*$x z7p|+|jFxCV*y!I~sSOib>GaeqzMOlW2!X^fE@YOx`NJ+zy2IsKovue}JT+z*c1t7K zzVUDU;e0lPF}Ft7l!K)H;+G7T3|^aWFVk+NG2)2|3qNZl2A~euP+351rmL1Lo(_NZ z7W+9Wzo-) z49Mh;Ohr~iP|#`tGgDG1)2-rUu(A`0fi&-+J~P7JsSwHW zF8N18-%a+)Km0IW-W_nn`~kWLZ4q^$UGa*owe_K=jN;}nKJIgGBf2?ZAB;>(lK^Q1 z&0L(}Sq>IkuM&tB>uSe=MEVJ4G0{RDV(>Jsw5!+tN_ch6qCR>C$&I?LyOm+abB&7@ zpEY9xPM>7b|HDpsxWZB{6w)AkBk45sSsO#xUMuz6h@us2@{=-2a*gi?!+4=s+XODa zR;C0-LSgPp$2?&AzPspHM&iu0S-N~7xTdveU{0dKI4naSU-Hy%#|(=g0gB?cK2EnI z)+QSLGO;Vt#&X+TQ@lYT0q{RI0wp(xP-wI9>-F^Zvt?gP|14C(XsD6?e1_obuV4l0 zc`uP9VFhPw8F`XAx;HLGPo=E&`HUqK$x4X@l@rj_9uxI6OSPY=%9p?$?o*(umJF4U z@2c&KY2TRQCR|0X<^STJn%|lko?iIZoqnXffhfH9M|*pF0qn1r3cBN2AxhtxWr@@* z?RnvdVv~Su7BsiLGJ`C}Prr90g=((Ci#bg>>vY45)i9&ON$7xhPEAi+TU&VTydK!G zcPG^J)s!P_G;5Gf4*7_A)k?K}&kI(YHB=QTP$?;X z1p@>_a*0LRj$*$N`T%$ZFIa53>&Oe6{2;OhXo*RXxWAn;fmR~)O9qP#04$9i=;Q~<_J_*GjuaVJQ?dmRhe-}j=an;yiDcxZov(BB)ey6 z>2)!2@y3U}2wVZEhFh<&2SsYgJ)aNie^bB|ODCQe`?+73)>JN9cRH{<<67Y#W~#;& zPDR;Lxt1PsTszUhy@vuVdE$C56eNbBuK zdS~q)J9!i)REG{7zF5<~yi4^zq2P)Pr}bYw`^~kn^?j%#F%HI1hb^- zT8G0|_rq3Z5uld3U-ktR_FRTnhxGA({fP!8oLL+VDplluabU(cPLW1{rbhtf-rimT zuvJfDW23`)Hpef0WhX|gQ(rs1QypKCz?s`6togM&>DHr)ln3O$+YE<5s8X;xMVMm3 z_97M23BmnMsT@3HEI4$>^5C%e)&M4}jMAB%xnCjtb#exz?9(a>e?~grO_2iC?w%4q zJl^tA4U)b9BfJ@fbe@R2ox@=M9hLP4YaqMAXy5T^-2TS1_|o@?b(SnXkN&v>OGu=C zaVbz8aiJ;?z(#UFXHJci+;QTpw37t8*=OccRdN9Kq&yJFlGKi<7G|^5^)RXr)5lQ$ zZa1L*4{y1nhODK=Wj1JzJ3_(x;-WE(jzC7AA_e3z2K4QqGqc+BJG<-qk8Z0uWTE^n zUS?(-U1Yd$P|p6(r3@*-ojPBAAq=sW6C(fG+H>A=(04X+oJ~)?fV4%*aiXLu<9zea z72hv$O(*mT@1@gm?p@UWb0dC(SJn7pLRFFu)Oy-%y`lK{5^AE)s;jGsCGt2eh<`fG zmB2NaG4@$db)`4|7m5}W`S^%w8wAtly1iTI45m%i6B!@`lZ(Du+Ecjwj7Ns+LF9;4 z8d)=6iDS#o1xSv>f9>)+w%|b-IksWNJX9lbhSB?B?vA;qV%L4TX1{+Dx!fZ!*mmiAgm_F`ox59%Q-#ZO%$`n8ynK9 z`z;XJzF2rGc0}A4OBW*Yuvi@A6(ukMR3&iGI2x|4t7`-ojckdK7FJZb)d=v3WiFfT zkF3|9P^r|u!%21-x9)WDAII>R=Ma(;uOd@39nx!Ha_%JLkX!@9P|9PTwPO1ReUavS zcNhbpM8$%F-1-fbGfv+T6@4mW8q2G`Hq-b0rPW^_YzM1YBp0lPT)*=tA$t;oNsKg{ zoZVkCkb!Yf<+UTZ1KAJWzaWk8Pjp0I;H=<=yfIPq*H%?9Vodz{RQ$ttr9=m>-@~P2 z(4++CkC!na3|4tacnoRYfJ#p57vl_tY(`{`^@r=|c=UHYM+0&?Yy14^zWS4&`$kN! zm>Wr`LoLz!nNH_MkEu>bMGkGd#*ZN)YO}GkQo=_?&q9O?&?P)~-uv_;17jCb&v?nRHtLlK{qO#nQo0lj3Qliq>S4A%7K%>X83gV{ zZRgtfE@6>meF|AjKxK)(>TpJ!!pv;l=1Jrb{yLsRB48}bD^B(t&Yy(}j^8NP{W_&= zY!;;_%E4#J%y-WTjO(9AxF#Bwqil6h%k0odf`{4~SG8fcTgyK!n#oLr#{``KlG=Bjnnj4zJUI_Lpp|LPXysWtA%&bp-~*GLqACz@U1GpaD#G6;!?h9HKztDJ%M)8Wfn8> z=Vik4@K}4{Yg|5bzhKzNa(=&tL^tboN(kTxoY)h3Hlytg@CJ*Gj)|zpgjc8ySYogG z_|wb0gT`#AMtij1*OR}sJ>eOANDVl(il+x^z{uIa!6YJAV~MqRP4C>g!0lu_GZqwN zQ#-F~diF}(x)~d!;`UbEL zx&))w5&{KCotQ z$>M>0L~i>+hVSO#{{I_Hd2l1qPhCl4%;7=(^r)ufhW?D#{7jR9zy1w5zqO6kaG8g< zvq$o8`&<3F1_%Jx!mWJ%P)h^txF_vFMkQ7--c0_;FtDJu@l)~}i3G{+*M8f^_C49y zj6}HHC+QC8ga6%)?@q9z8v8!|l!rUok7LSTbX)Ul(bwt};sgBMlQnBnl zvCetLG>eefqvp9r5iH48W2AoU;kWI$qjm4Et+t%g-O71ecR5r-_*46YaN^I|q;vp6I~V0_`j56NTmgmX5!B(+p?JhSnc1hp$xCVTJ5?X zfSk;+HT3F>>Zz)Pro8zrhPi;?4yEeZk1lhmqp#8nP2pfPPrG*N1?QhPL`di{6p1kp zm%<^wrpo#RfZ%b??3lhOPuLSl)?Qu-vi$N)#svz@fYo$1DgOHrztzFvf)JlnyC(sc zba}bc&z=yK@^rq)r}T27l2D$xoTd9Cw98*U{(GDbE)@LH1^jIo1rmb5HdhEgcwanI zW-*VM$!5YqC81a%Sw|lFV{Yd17Y@o4Z*!D%u@dQD%ZX6{B#|bmf9E8VvwVjd8Q{uB ztWWsa$#T94f(}V&FoV9Uj;f+rj#Pcm6~%gb!J~&8VA=o@nWX!dXM;=F=VBFU%VC$W z<7AWFex?y4JgB3m-ZSa8=yJQBF$BEBoGRyQ|2X8750Gr5`T4&_cSw|yeKQFj;^k89 z9JBly8oLdxSDpR8N?;H{$4P5#o9wSAj77mcnXY(tC?f)XFULTwmtO~!iN0nKeD)j> z%qdzZ*{ajHdNLe?u3L9GZI?-u*f9woF7J}DYqeajQV8=G`5g;|>533CeqK=HAY4o+n zeU(#nT3B{7GkA9`1#2*`Plh^ z$(c>S$MOGq`;jczIHA+FiqR53Ms&3Xx?6_yD8{+^vMf8dAlvBeaUS zspnf{Ty-dlu?uK@pZ>kJ4{~8`o%tIM>or0#n02*Mo!Qtyoh+o2X_`4XQEy!&@mZtU zd=y=Q6Vg}q!=H17>ZnVhrw0RsNh_gocwA3m0+CX=gt0F?!a=aV2z@3+*>l-Y6Lt~*n-RkzOm z*L|(wM4mC;EO+>fpXy^uD-VGkBpmV9pej%t)LxT}YOl+PsC8E5-_ELnf*P8uj{mbi zyqX$-Kzfpg_zo&-HQ|^rjHmP9jCDRNMZaXBn(Auga+r&TWhf9ND|LvX5XCY-1p_*~bAX!!=Ivu)C9~VZ?FHPn! z-lzStBg5me{Hpx|{B!oRfBf@o_~#|AoJ@zy)`?N|JT`-Mxy**M)^MhUicDg*NWS02 zs$7N-mi!gg(LiEI0}k+DH5Ji8{x!CUzPio|T*Nap7dcdnP2Ud4rWi78u60tI^%`gU6R9}WvT~5JP&1=7B_=Gf)AccryN%ce5g% zCYd$N>>vyyh^h(nea@l3D!i%HhMwsClXy88aN3{1Qqm%6Ef1px1pB>=Uyl@U5xXn_ zuWw%|Wp^MQF71J?n5$U?UC1s><<9n$*=Q^1t97NT1mA>Lp#9?&+K@=Ff9XZ{K`>l; z_rX9;e;MjsL&#N8DO0lcyFMoff@5)Wul>JgMiIei`1F1{r0!sgKiK?&0)FB-+PyBx z#5=;_=?sC%CZE1OCX`(BzX&Z6depV9Z=`=@;#dyFuz+oD?pfr>&I9t*E@t?OPL=|u z?>RSiCojgd;tVTq(;}ae6jz-=Wmg>(dstPz=*K@Eqk%9*Of+cEAEZ?@dqpDnbKE(lNGReyDaq~dA zkSrv#JDl_>;VhrRSX4UxJ}5s^kmtB8&66R|A@$VrR)7p^P;!ZDzXEN;JVF5mGZDFHr5y^^j3Hu)Ezc5GT0kcumSw2#)&@q(cOShmyTq^V?ix5TAqoV zMb5q@4462gXLjf8dNKR+wDtbpCZREX*r%O)2T_7UMUB*nFo;dJgYf;1Tu;XT=;-+avvdLa-?lU#H_m?7MsV9r%j5O5?Cdh`l44>& zt@IcbL}che=_Uxe0M7a7s;k1Do#Aaj)0aE#T=UNs=ImZBq_UqLn|1mZUznf(s5ru! z{^7kXJ&+he*Z>FdG>e1;xa;eeh-!g0}F^9_S5RQY|)Zf070g znBqWM1LU0=aXN6rEPj@5ngB_J-L`~NGJ6vWBU|H8w5;CmZy!aO>bp$ET5m-~G|8yh z@f5aJ@<>gU6~eG0&88s>^Vq`0CK>?~zpX+tZXoJ+aE!Y5v~j!NpDf+nj&N5L)O2%m zE7^%k&mG<=3{$>-`qZheQMuTwf?cDJyu94@%eSnjMtieWQ{4sZ7Ka$1N=m#|eKt6L z>W+wr81Ocd06z)cIO|}ekCf7s2-GhDry#wz!*69Hv-5tV_v40-3s)yxW8KHT>Vtk^U7vdkAS@@DIpOqQ@n4WAwT54zuOUa^Z5CKKy*)4Ob|;1vV0C-*~l}x0vp?zv#z;mZiT*Qa@bzW zK~(~{y?{Ud{|@mBk2{2VUIuxqNBQEHHSl98c zKb#2>Aibfpp+=qgvPOGF=noj=e+6vb8qdi9E4@o;Zb35 zw3`41KHqm0sBqxH;6&3QY(VJBCV0dMsc4=hDRfL=`IMq5#XYc6^D0L6Qc?v{HEPum z<9KZiwA3=x&DyV%f5+BBH7sZ)ER7ky&-T`G-5X%^m~O9I12}pXJcos%UK@$yptghE zJW_JEgz>t|msjmwT&PHiLh<{;YmxqfMV*F{h0p3%EXTDvlF*sC{c8S*e4w#fW9C}` zh1wp>{`X}c#noGr1-e#oOimY9n^B0Rji^qEn7nm8gN5~zpJla8xjM`?CqXW}I6ZK) zFwoIcb*lGjwf$9VN#e@koz>8o7#1L=65B?o+EFN1hY!bItxgdz*p(KnW{fTSDe0=7 zT>?l4z$#HgqZ%1~xx3rE36fM{fRdfT?at+4Zkd0&9l5a!;#*CHZ31)Dg0`kttI_9P zShPc9ipKn!II7%~c}8!|e;8sprt5jlhLWM5vEUpyck%yKlmT3TG`hKB$bCskB2=?X zxC7w?z_JO}GJ62y5Xgwi*x3Wla;+-4Ga^GYCrbhHWLvv!AfmIg1(*TbT-7!EHG?%C zT3Qj}5Ay92gu@&-77^|Wu~%^{7iD))wYN}F@`y-L@vicuECoV`vzDX?sESn&XkODN zLgB0!)c0EDs+LFs^nn$an1LX0&Qr7t5_<>}Zl>#km#YNi2q(e9dh_G>agmeBtBGE_ zKm++xBS;F6waDz>mkW1D_hR~28t^c&L4rtoJj=`k(_6Q^5Ly_5@l!Rsb^A5~wYCBx zfw-w@7E2wpMTdF}`U06uzHk*PMHV?kf}~0+XLtIYwdo4CR$j&EQ!Py91NjtI4zV7* z{5MQ`m?8j;gG^^OeB{0}PBFRUzF!Vaiz@24y|czYrcRbonrz|9LIe~14FAhYOHaDh z)`~K97J2(c+nWF=Ro#ErLXUPdu>ey<;NdYypa)ZRnG!|)gFb!~RxR#_J3jL{{t?Kc znDjJAipix+q$`)}snTCXYe)%puofmN?TVKf^t%;n_*wFsOTl z-KYDimtz|k-tdfG=4Pzlg3(&!pJ_SeSPt^5AorgJ%uuQ}(G1qCEkYw~0msX_RFI`3 zb9fdpvsrMOjM92YaEO>*rlqC1@cTBz&>?t%Ow>Dvh)Vmw_OBAe%nZQP3{2|6K~e&U z{ta~#E% z4$wrLfMK#MuP|SBn_=kB$7JFZAepI3CqJi(L{no)(~E5)(h_b%wfHKik$QJqApPyb z;@7{W4-dMN1jaJOfG$U<#372%Q#c^RA#%X!ju_M)9wr$0`1nb1%Yxv)@#CoSN8ruN z^>6akCZk_@kyGN6Kd#r=U?$p@t(X(=BXjURmkLx9Fdtl|=1Yp=GmZ9JP%rltyUu>( zXW=bMqlMxL^?%RSw}Rz~}OTXcCWr{BB|+pjFh% z>0=b)&`-2c^uQ7C-eeV5!pXEzX;n>0?`sQ}` zpkjCs3m*Ovx`|C7F2lvouTI8kOama3Ya@feM>!Dj4xj^M1h(QB%pVDRA-H$FUc_Z@ zbJ_|3v_y+kj!spW2op6pAE5|D&F%ejJjtn{aizP5A%O+$DrvNFF?7zzk~0n^k&b+_ zhbj*Is2$8vTLDTK*@v{MLPTBQA)hCNsO0Fg_*DQo)GL1loPQXc73$0sf|?L}Fx%P> z^?R@giJKcerdP}|h8YU8xG*yV%-CLc#<{4^2`{j{g@EDzaoFE6JZ~{H!t^;gKojUr zoV$3D8Nk>aKD1Eb8Il--W@QHe4Bi6rq!>po6&eLgOB%lVoM$j0e-VWekCUwG?kvT6z7VTN|s-CW5CqbwNf^5>0p+KNaRbx%k=vtM} zJRZzm;U?(V_nH`ZS~O9JCNTu4zy9z^)=Y}@BlK}ZrIb1i{JDIY-GVWJ1mu6Exk8a# zW)m>8t)ImbggQI&b?$7a^IZuJ$qZj>=(G4*eYHoL*h(ZU=RiOQyxV z<#QIf&j0WC6p-Ho(7P(E?KoZ*z?fH{lg#T!4X-t%`2cthD?lsIFPBycDc#tPEEqqb z{*vFGw!tu7o$AJ2?^$NOsYT3!ub+$)d2Bx<00a;!5+r{|b{?rXrElmXU%sRS8BIGw z1<)fKzQe`D)U3sX21kYz-G10M90*_62Wwkjb4q;u`jt^NvDaSc2i z$6nJjG__E6b}3A|mD7NAnlaut|NrQ^>bR`dtSbnJB1j`CBHbO5ih!ijASofz2uMj9 zC?Fv%C6W@-AyTgjN_V#?-Kq4qk5})^+{^dJ{3e|1d(Ly7U2Ctsw)Fg#;6ED;NYO^% zV5#Z?$=!OFB9}HKyQS?JghQ-YO;B8b2lb6$gQ&UOhKR zDEN4nha~7JM3JWo>%GL})%Ow(ZFsTjw~NjceM;Bpycyx}50C_^O;)rRQgeh2@sh_> zHqUq7F(1)!&j}j@z-wPS875F1VZd5X82#i)^Odn`ZjuyKeTkXD^TYz%_iL=Ox9SIm z%&i(@q3hp2=q0;x>lfDjIr^CD^aT1C^F&ul?)wrp2?+`9FHA{pR}of{eaW30*gva~ z%{f!BQ@geAYpc+BB;*piRjRj7D2+%+lbLa)jospIw-X;tU4HSvs^rDX2h)w=7{xx< z)MLEGN8Dls+VA1Sf8?Hc`9Icn@1@XSi*Wx15R|7%5 zORy%UVk!Wbl@UOjd+)#?ra+>hIj+;Ko>#8@JVKIxmdQHAHhgV3gB%U(6mc&T@Q}Ds z$5d;cS5W3MgTTL6MEIHlnq+9O@t~7zWbhKY1RFPS)pct;-OKjIK@t|@)TzDP;2gmk zXhT7cG$UP0E?xv^!7^n$aN-ab8j+VE6xW}xB1CSU7{Z~QoBPkc7`)rhK;P!TA|%wp zP{;KAF5G{G@ft6$`Xn#9i3oIrOaR+}=!dHj8Y;5db*zKf5cRPmk*ExOiPg25yggMP+zJ-TUa<2wkhQ{Q3*JBH$;3K;Ms2 zSCluws)%30t@A*7*2qxi+beZ@CEYyZ{{`S~%t1wM_2;}>fy?v&SjCW6&NMwdDM{Iy zrBzhaE9COdxp4YlfnSQ&0xgEb{Lcufqdu}^(i}FOSFyphMMJxsbYM6LT&8>gnwgzq_ftT(5p)&pj&af0&)(%S@4<)xL{yOtv*NUY6YciExZV!}6uj}ZXUx7}i=e1<*d_x${{jBGr_xdU( zOg#sOG7nU?Ld!d<{q4g=^M#U}##s=CbPlbO%UF)%aN6eJeMv{azzTyF9qJq?A`GdS11E2=<`GO_it)rU$+Vmr~)dpkRgekbo7-0*tF*8jGx zoO5z_#7d+B>M~Xg&g@xG!mD*LmL^m8k zERe^=NbO-~#4XKgX<2}^`(Z6kE2X`DomcXQ6AR9Z4lMH*%r>e10X9P}fpSM)?kO%M zBZ!W-yF3BaTtW(p`ThBqkTBD5Ai4s9R+?d>17)`Hh~`)74~s98t_g#wL50nD7UPFg z(-t7gm$mo#j?PhLVBsEa&^v1Dvd$Q{UZ5F^FRAa2=ejv7GYCVj$WqabS|VORvEw6`A{-9^snLG|Aizu21SQqoIhBOnI(cDZlDlWlzgD-EXtcR~~HIrP}6n zznza<$cPwDV4cjqnmbRa$NOv>U$)~P?FitP7b9UuIgbAYpGDh9(LPwUgQly zxeJlFtv526!*bj5+&qX6j;j+_gbYfno7KFGG}NG-1?o%8gl~#F{8sco zXsSqF$t;Fk1(?ucgrWU+=9x8a6nU$LLN{bl2N)VF0|`UK^z`)a#vj`1s}7a&8)zI@ zH4~@iUODu8e}1@ZC{cyHC)AhkoY9Sm)tc|0UZZZ{ctOd5dw+4dopefGQr{f%%=ZYo|RZ-?xWivRy&lN6+prnHNbM z)qzs;nv6_^9S^5l7qlWlj_~W_K}lJGpu4#@Dri6~bB-==o|2M=aQdOa+J6hO{*{3{ z$Re@poWxJ5F_3by>EDKNq+eQVE$;(h=9P=!W{hW6b4?K?JWFti?QkEPiwFPCJI?IG zcR!d?4>UMcRmn`*h`Cmr34Rd3(89Z`Ua2$q|J#T}YSlb4uouDdniu&syV+u^sFQi) z;y11VZ(*YGmq7#_iFKk#lNMxUr#uTR|YZ^X42uuWC<~ zE_|R$y^a52`v27?7(+mYrSaO@D#%%uIqK&Dc9g>C%QIjD$hcMT2ki2@2ov#2eq#M3 z@-vHiHi?eZOi#IJ_&oIc8}N4N@8#f^=M3U})zTEW z6i8&Qg=O2w|i>L6mNN(S6`pB>vmRBAS@rX=HM@ty9AXB zI==4-4B8WDfBxepOLBbL;z)&4di=p`1YT-WE()p+nRp@l3>dUboc#8U<>Ey@D5jVh z8U2A6s{mPbCgfjt${tWzn4`;uP`$95Hpi78^!gFXoTG35bhMj(yx=BB;pH+uYN8yI zim}{jdb^h{J^5G3)*W2>ooVF*BS(uPB7rDzR&N4ycX|NzdGx5qNp1Uc@vs8#cE_tP0%*0RemrTY#8SFSL{Ii1Q7*^}WP$=w>r+e& zj1G_?3y`F<(U#(1$tfqAeSyJFr%qdKO)?+H@5}l{&h9OMQ3osbeml$ScO|7kpMd<&!fI5l>y8rsg-jNstS? zOLMgAEJvO3yO7%Q!nDJ)#bLy(>y1qV;!GyLs9|R1|p2v@6d2 zKVHU05oIH0!x#(gfcb`vsb;w^p%-GxV2JYE*7E3Z zS}|1TWH6E6l;)Mf*Ng+oR*@3>tJ0574#Jj`C=R_o_D5nHKU2b=i~ndhSDwj9D6dj; zoVeX{sW97x0gG&ErsyqN7^5vKO%kH{#e2CTAD zP*I5vsq5@~A?zN18EUP_;SSip8)nNlf!pw$;d$}W_gP^*jCW^0@2%9@7eIDx9}yH3 z)YxA6Z5fS$e9z+hc-*ett+bkO9nillD9RR;x53C@cz1`rKV*vH_(uw(GcHSGk71Yy zuIfnvYpUB~Ac!V;78;sK$e{2B@8gFLe#_&vNA~ex{PSJuIEf-ojC!ZQV_C%Unk$qg zolK0^HU<=}2NDctrYVw6*Of7WIb+VJ`rxy_97*J4jTiZ)U*j#qk@+mg(m1e3a87`_ zKkd4BdfkDGA5 zhOmosSPKwEslHR$NYM_kFkjE8Nfa?b;E0iOs*5>A*JcG*U zDfzsrqAT*bpBW|kd$f@#bfEV3?h|3VrTey18jkPxSQ`gI(#Lw8@s7(0e%pbdEd_^R z)xaA;``u6SqK~IAKrcfE%u|zE3XtWwh8LH5K(}$SHMRt+KYNN^KS|8}&Nip}rlQ7?tUL4S8B z7dVX^=F2>?-4&uycBzrVt1fFj#|KMa-@))A{Zr1cmRPpF+-_6>hC}&=@NkQ6NR>JA zY>|6;dNLc;c-FDSm&(G(P6qe#3G|&ZY>)Hp zvrgY)hhESb*gGGvKHX})83qYXH^9&u!?%mMQlD$}8h>wiQ34mi*%a^08M-|CT!ub_ z@oajnPj&u=w^BY?uiWex8tQ&esb^WgvQSEOm8NYOj>-Dv_WxtI_+dyO5cS@7yH#lN zq?3)uZbTShznH%a0<>N;IP^+v9n5TqJ#ltH{7XqD$f~k_52Q2FVRv+n%fkG;g3tci zDUr*UDMZB$%hCPNPGWVy#8aGIn!f8#=!0hS32*-(Pd{8(x!5nzS|VH1q+qgz6(jtv zAUsL@T(`4+W&bVa9IFHIvoT{GJ*SV0?@0R^$yLEeAYxjntCwV-)2ejQvNLsno~b!e zey)FfJS8+oLRdB4Bv<5gXWmc;{QG&?j0?c&f^aQ2xlr--&^Kltm2x-VYK&mQRhhU_ zX9S5xqHC|VW+v6XRmi>quV7|net2Cqv8N`H(tXt---yDghlc(Cp9PSj6*C}xOJ$Jc z;kle~QQE%)u*Tpr=|_u1cl&b54XU#_EYk%8TOv~?-WMg*1qTGECPD-1R2F~|gHL^v zS{YGO3TLBOCW^=aV))rEY*^*_n%*=s}lm;l4bhF*|tQ_HW~eIex9taO%w z|5=&cXtoFQ`0^o$-I`@Qpi1TQ1FheVt%bSfb7{&=b`_<1EF!DIj6Ws$+zwO;NqoYu z-8RH?e)o8|HosbL-*#TFhHvd&kPMx+qOh*R2&sftc%j8nMP#0G&PIFIUg3bxt6IugrQymdd1{Kybf1(*_1QyF zo31^QabdSet<&huHg>-MKZ(Du)Ey-8pcb@=E&3W!IN^~2khehJ*?fx#DK|G^crMQF z>bwF9%B`I%Lrtfnv+egWWAYFFdL@7yMw_UR_6L7q@&px6@#rz7cc{`4_ktdAK9 z_WgmQRqn;AsQ?RhlNov5E}^C{3q>srmuFph)Y9MiT{92lv6{Lj4)-^1z=w{ux}cx> z4!V)Lm(St#J@tJZHOR?O-B|gF?OMn>PqcUB^=|JF{(%W^Um|5src+Nm8bz@;H?_4s zm$3{gUBEw&dCY^jT!IJ5jlTRkcPv|zEl$#>W>o(~wQ{78);#pgGW@py!0ZMsW#0QX z^N$Q`Jmp~)ISrA2H3ILN0sqBpM}HPogzgy}M8=h5hhOuGltIp(srQ3>JyUn+c)Afw zykkcqt;LJjt=HJ0n*oC~_ReWFCMUUtn6#VGCl-&nQUmFTgGZ`zI0;G_yP*;mFQ_Pf zIe6?sb5Sz8BsW#mpUIw0*!AdcCErS}m_uhxr?W8Pfb!IcyJrT22+jlP`V z&Plz$Rn=CK_W*O=uvD~{)3^0&i%--&*<jiRByIb6J6m%A5luNL;x!_h&e0)64Y z>O;fD{{S$*^XxL@X4(8$9-RX*0NJTA(2$($jl*un24-Xw^rO;tzSGdqG~M@_A}M5v zIQ>XllXAEr2edi)fl@`3L}Kt#Zvt3VJ#<Dk6etwE96zxM58) zD_eYL^Y<8qO8MGrY86idutMFt^2JGToRZ(%Ur3`(O1Y*0r`>njU-h_4PxR}-76)Fa zBnaOo4jyhz5b6H)TqqC(eFFQXC2;HI<)QHb2wZ2j@}5D5+u*-6D4nSN*=M_Xc4r!=J!(~ zH6kDV?8$$hln?SiNSz3*Wm}EdW-4g-4gU2+fFotay{XJ%pb)gV4w6Z|UHsj)z$Lt) zPjiLi9oBN1d;~AJ^}D)$;K90(%_Y=zpzqr-IQUXxK+rc&ygIAINl_ugT~ell?dwr( zhRqNjdcD=&Op3ljiGtdAjxOJsSl;@g6T+g$`BN68UIL(84n(N=0!P3$DS)5{7HRC^ z2SOdJ+IdtUE1c!BJUN*X$uSX^H%PAk-dFMbnOf&HnC;8 z_Gp1e2d-yG$GHqY*PRy|>+Ftrc+Er*_WQDERRz%EyehM8wBNkD@afaDe|rr4f?J45 zf+JT!0E#mLAlF6#oWQ?wR=xW9t2KCBhH16p2}EYljJ#y{+A0KO-3d$WMu#SJ)Y^_f z#=Qe}I+%xiouFbQorpuJYbaprS9?TNRad851QX??y?R#1UcEogXl(gO-ZRnBM9^f- zBv9NzYACdQZzbZ@3pH}aq|5Ig9dmFY$idlmrJXjY^&Vvw=*Oo9(RAd=s?iZ>88Gqy z{eGVa1Fzjp)#_0(QCYy5*mq&Cdb&Y;YK^T+3yv2d$E}iQcUodEroZ#t;oaHY%~q=q z94frXYX4n$ra3c`7yDpc(Zl=uvyyzOl%)HdYj-fv|8@1jdzqCZ0W!GGZbtt?myQzt z7WIS8+1t6~hC+`}pw<`}Tn26;s<;}~b(Fx;B#4Q8p9YVPSb*j?3&>msD63M4t-x}M z>(GnhTZnbw?Z$>}yJ3i4s-*=Pr+&xg7HP2)lelJ<@`76K`6<$XgUrc2#gWE{u8p0* z6>*WZj4(@1P7l9-pOX|T;`JeQ3UE~uA_e^_bvtdjS!rMG7DthjDh(j+F12$v0K~VL z@2&UVbeKcuyzL7B?ctGx>$3hF3bIE<;0DJrl2%(1iL0|bnb68Oiy62fP9l)=O+%2n zWw4xUC-Btq#}b1a3jh)s;DF92eu0sNH;~Oi-r#p|`YdqfK?Gs_Rlr978T-wt#YGz* zT0!n_fX;Qp&Ve*Ok^A$+Q;iXF8%pl#`P`}*Ql!gKZ0f$uPYLLni0gtp>Wdm!1S>a| z#tb&xJMoYGEY|=M90VRf2lN}voozrC99fV>Vfz$on+czg@G1}k=(M%9vvrFZOKk?j zS%c`~VaMyi?SY2p70zfe++p>w^o6(TvZ%=*?-}j6ZfVaY45hehH?F;W_}IEXZKjRE zigjkTr%^VI2ltp{V3Qs>df*z(b*9S6&a{`Nw}2ZuinJ81Ps>cm8UK3%LdcE+Fp8lfr9Uk!}zZZNJ<-Vx>{LkPXLiH zab5=ioWb7S9()JC0HCiq(C7GBwyDRO)8{|{E@PN*Lb=AR zm`fKZxnY6CEa7wV8=sA;&|=v=hsqc(6#D5G4AgPTn=?qph)&RR9(z$@uOc4`7LwhB ziI(|TsQs0J^D9_i)o}`g))*7LN+DXixoHy877dt1U~m1Nr87rS>{VG3N=3)Au+=8o z6gWu6YEOmP5_`okn9{!V_{*J%M}w--cSkwC0<5n^kbSizpypEYz>w`O?hW-AFyf!4J>SD^V5|^;b8)0 zUI{!&M4KnTj~Xzc5Ya%-#Hi+QbV%&FoKRA$|H=P_bz`^!%Sk(XW~zilmf3~;#%f3N zi03$o|L)(>8vhFJ(Zm5Epvb2A^*1iPxWa1u8NWc?Z>l+_8@8_loDM0_+7CSSdd0$9 zuY|S&YaL~V(#I`cy>P1WR4~yZ#Y;+x)T6&M3IJAbN5{G2f;D0>?Bfp;!ordjMCBJ9 z#sGK|o&2J4(RdtP@?et)$}fdLlt4yBUkS@2p$!i@!s38(d&SDFqkSjGmKTq%)-~zs z3QxDlSIF#O_V*hJO|5p29rr`D$vJ6@KxW8-IN^c{VYzw&oxQ-an-K|b#HP^bsY}11 zL@n=gkWPOG%Hc>CYHqK~BEpx|8X8`7394MVqF~Zjj}iakrANr@xnu6y!I@cBmU!x% z$xX%37tl!oKsxgO@^<1B8Y06QX1$5=0`Yh@@|P363bc*Y@hw zLt!4h0$NVyV;&s8gC2Qu64jZ`FJI)kQAo$Az#DC>0YGL$Qu(HJd7?Z+O|6z1Q0@=8 zSU%v%J-24+A?RLI60G?3W7D)zoBO)Xk<5p)$0XnlE=XU_DRB2WjF2>KpZVOFT~~Xi26Vo{&l0!Y??AqHFFd&pS2B`eXAwtQ{AHgIpjnQ*ge%lEkLhedPO^t$ypvrS0 zn`M1V(Q=`&n}o$7V`GEjW}D}ZF$fYI=xz?D$rIfIas`RH$t=FFlq}}q&u{0fU{l*> z0Tc{3LG71s$Tnl>3(e(g7eD#Shu%MPR)es((B!`TyEhlvaDFI6Mb_m$%CXM)?Dy!H z<0Kz$m>A_Os< zFY1B#`3C&d9g={tq9;kp3C!Y|K{^%90fTQ!tyxTV94$rLFW+arncm~4%k(7TnD$*V z+b;(d&7nv@K+x651*2}`a75Ee!OkC;1kJoN5;}0Mb6hE?wN4h?N7u3tW!_EN7r+AGb{4bNIA>G{(ECL z`~pfpusL;Dw)J5LVpcc;y%Gd9^yaYGv{B7fj5ft&j*NSzmIMsFQypr{k-<3=%il=n zgpxldH|@woyg5+uQlYCyso~({lnQy@ygGI&bpMMqrIsFi0^pPdm>z>3-lc7qqB+wY zqJ|2VHFH?m?z{>}vxW@4E3az&LFoRMkkSD$2b1GMIMQvgfsVx7*H2HeEZW(o02_VH zMgANM9iKZ$3c%|$`zDYK_k(4ZExdSx@*nH12A-|d#)N!Gb+J7YCls0#LZi%6=^{V8 z<+1v6dec==d=#+{ECT zE^%>j6^DH3X#7~`Z}1{VOa9AO7Q$vfJ`1&m%vWlQekZ$JMBY2U)|d9z@sv3K@09Qa zdNc|0W6;2MhW7QNVql62<5CHC6cHjNlre!H#K3OAz;Kh|#~bcBIuq_F+pf^bE zdm9l_pX2UyCRXg_L%^(O#Ja@{x}Oy`FTSkDZS+ta9VI*F}nk zhCT2Kb@$%zQJjEvmvTZxVNvf^w3?dLm&5g-%}ssLKKmZ#Go<#s^#LC5iW)?WPwZ?j zT4q^JR2}mZIyy-5fWY@?jkeYMo?zx2N`Bo?HAmw^`xFaueCE+C0|NsXchQSJA3iVg zDui5`N7Pke*kNfPfsTceoiKkbhEslcisEvlqw{iZ<<4!XV}8i27I_zFk7kHJ*iMUo zL8JZ2TvD_R^8Yk!PoRzfOp@zNyS%)-2}GhgHja%3j#KT9LJ=i-t9tejb`rn^fz zYqF6y;swD$s+!Xre)|$pKCp;?++TZujo4wj0*MF6nOz=)aoJ8730#t+;(KxeUjY7|beNt>r`*cPuTcOvNU+tW z0|)Ny{lD!_~+dUb4T3r zgCJ#l7;lNNOWRqWN`(+(;f*Cs2+`fckJr5EriO;bd-t={mm~eplADlhDDG~wAN7VD zEO5=aoy<^SVDj-{;8El6xdo1(hjRdF}a>no3_y`-Z(giR0+tlnQN?bXzJfuc*4* zg@t@QXNhCI*&u>7vgfm{v~1zV}So?6&L(nqZxuZ%gTDxVvN%z?AauE(}@%{aU zyRc&vs~50OSzHSK0$kM=sF)fGd~GhFAaZs?Wab@tWr*kI{T&+Ehvy_^C%h!M1 zLC%-9^sbCOKlXmhOLZ>wPr}F8Ps2mRejtOns8V%45Jcf`!s`@s<5HbL!`3O50u_T< zm;s;5SRJy?Cm*5hh?}OU^r`h&8bC>zGb}o()?9>aY_4adDMoup#LZ2ody_}&U%u=F z##zMcJlL34hJ~yzJ_K<~*#utFlL^Yf0=Hiy1tcYe_ch08^;W>VTZLXW@~-Mz>UgdT zm;sNi7sslJIVGAt8uScI)v=3Q9y%n$yo3EO`z*MPSj=Dn)M=5iv9Tc$5v9<`s>bCr zwSr70P6`Mrvk=4P;(*o?P8vA8ZF@0A##X;~sPG96TfpF~ay;|ZslC@=|HS-0H5_5a zc>lD?6KItr+}3K*3!leoyhN#8USEB3)^6RjTpN?>+tklv5a`?M$g_|c(BoM~Ts(3gy3j}Pp|I}vxjnzRv&dod-(%WchrKb{*X`~{UJ z-uM#oUC89IGR1ARe}50XU*CfODDKx0P-^C-q>uMykUo8T+0+m|`n6ZS5?<2pW#jg4lrALuQio^=}Wk=^}XhKGlDB++#kZ`9rF1j|Y4&M`4D zO{Fe6ndV#1UAj-nagZ+ja;}*s)6Z81qa`VFX{3S=$*)Gu5)%_aOjPmv(vmF!b^qbj^K0c-4pvPmc9R?ZL+UXpZ6ilHC62`Y$T~S z^AXPVFOw*^;s=B1lfbKa8s5+)z3K)m+DJK1&;8n0nfvjt6t7?Z*}kx^-?Xt$A*nX~ z`9ef^_~C(T(+o@Fb&kdxcJbREPD^`p+M1{>IAw*J{)og#qsc@247E0k{A5p~ej8=F zw}Ye5lGDDubh|~V?VV89d-pC%pQB-tY(Jn|)J84J5B8cwP!8J711&NQEN*zE7u9mn z*a96CbW`%{Id=U`fKj>$l#rn(*Wbii_k0fSs$h-x@H!L`C+GH^RCyI$)-2*cyR$ue zo9s?3{hx@{cM0XHF!t`=BXHSyVuy!&_JPlyC9keJOc790?yZ=)5zR(o_-AG^0Ydl` zY(x$dhcxZ#lQS&x%HEupFUJ8xY<6d3rfF?|qJ8Iu;LEshTCn-4y1Pw}B2u!5Qu|Va zUO*`6V@Jtbl%~BMvSu0Q>h@L=VPsf~zkIJXzmae_fp+?oPwjN5r`!VU=A8qkg<8#c z#$i&U{XPZ;#!WwT%x6N&-cwQ9v!(rpsq-mkFSMV2tqez^dx*B*r)N)2Wq|N(VE4+9 zY={=z&|aKKPJ>%JPlj#|3{U&CU+WU^SkRgim{P8G^jbfS8B}Le^)5$>bcFF~B7O1O zL&+12f4;IR+TphYK);&4fqMGp&oxuZM3xN9UsoUtQ}`tU1Z5l5N(fkXJ^pF${a7D) z2pR=QBUoT|b>aD#Y)_t#9qsN+Wx3PO zIalR%*_oD89ThN$v9_GfzJE{u0Fd+l!|8%3H$ zKtRp_{%-8@W33)_q;|>G(WDEag0(RK{)3;srW&D5dPu|+?%Eu!#qV?$l83*lXKUgK z%>s~?q2pBlQv2=VZ*#E3d}o7Ty0b7TtllI*d&p$`B5hG<+*6vb{geRU};bQ}x@vif_$DVEF{kpn8 z^=E^GA0*)&0N%m6)%%04gqwdIj35JQ3inoEt$C)>%d0T(DkxCiqV$`{gRwcIs>N|z{=z~&eSa-s(zW`&&?O!}HaTl4*)V)MP~L)C7(8cig^ z7I^M`Z>`%CV*l=JF_Qj-#c8v!*^&QVeqVng;MGO1mFGvlstY!K4P|N1^yZw}hzxcy z%THh2O!D~RS~@z8yJb2nLZjZayvdTk;Uq@p?Et&hj`k*6J=G2qcb&XdwkafE?Y=1T zyCwTdv3l*+P&@8{=%w~_o5hT+)Ge?3CUy87PoQA zC42kiwW8aQwQPHOal2vl+E ztE)GcV<$&z-L+T1Ap{cE&OG+_SA%`Jj_en{O;2Ym;w4>fd|8y^HlNtA<7C%-p<+Dp z)GMZ`548_6#Hy;QBJZV9efpBV6x#l&{r1y)5nkl8HJ9Et4nHsZcCEC~RIOZoXQac) zN`A5AOFDf6E<;NsbL^qb#ByEVj?ZV+05D_qfhd<8e>5k_>){TzT#9pR~Re z*5zM&Vf|69_WF-ohY7VuYu`Z5;AV}s1PRXLq@Y>@K1!fxXn5zXj;U{-Ck2iU^<|B2 zSqVr{(}A!({H^pu!bM{z^p&7nZxEt#oAuAtulx=ZQt|PwcbGQSdd$Do*?cUu?&5R| za3wXUKgX-m!pKAq89(hI{@1$P2lat3sn3M`>6M|{Fk$;)MkHH-_lKPcPNX! zm{HRz%rxvwTGyWsWy!au&Sx23Gvv|lnoiNV=?p_(m)+OR{E14X{m))(BO21vVP~m? z`3)0i4j!0zunJ17E4}#|7sHtibu_+nRLwp{%qHP;xMMLIGOl*=0RiFF4|J-D4hzxF z*xspf5x>#m5D`b_0NwJgbPfTM1hPMt&qn+V$X$mw;lNz|<=V>|YoV6VFc>NP6pDF=`(iU@=_ zER2bzX7>WB6Roo?f2S;{Hz=Ta+>QM?`p{mz^*XdH9{vnnfJWe*@7yJj+JU>GB>n|W zz?$Xm`9WY3u{P>Ia3^Xvf#7kOl0(b&t!}aGMhulzi&e%|Y3$jnz6(AAcRPIFMd#j9 zN)UblbwWlE&%%BDfFCPtY_}t5B%|?ojOR57>sx2%VBhkv@JxF?{hdUaV8Qy>3yl@Qg0$l}VS- zG@rxQ9dq63w)*vydH`j&yzIs!;W7V{@tUEZyH=5gaKj`gT~C{KrYn+7ghgJVw$=tM!E;M1p1cc$2rA`v=0tj6I|M{($tr9m5oxzrLsGv6sp z@7+13Ne`Z{U%$$p+W2tlLWgry+Urid#dlXmb~Y4(2fx1){&Xhg@s;H#I4oE83vlB3 z5f+VVHz`Y0PR!PmHBm4cME>;KJ`v1P3*^0{6x3hYON9c%#)| z-Ubo^==i71egB>BSz86k`eRPk{b*sL<55fz41Mi@Uw#fNpw4Fh2@WwQVSbSV*^?d- zp61fKf5U?Vy&c$GBAbZO5Tv-l|(Mwq6baACuynV+3^y~?p&8A-ykqwLa)ME0j~9pgs|X{kiPFzlap6* zWKs$M-UKf0i}$FFOLELQBik2o^)sd%ymF;I7Y<1hdL0PF#It=PmEb-5VZ_U!NG{4!$IdMd19LTJi z^08FBZ^7CvpP#Amyf8VXsOyH%ZA{9|{x;ujCI@vJ#vxemfQ&+@Bx$p( zSuy}02_}LK)Y5Ej(G)G?*lGl};B5?zRSaYj2QB+9WeVx9$KiO?6BD|7gmD+RWW*bK&PlhYSDCh6P^S@VD>+gTcR6+H zsn3z+tP^BIUzx4sGY(yc+SLtj9H=fid2{3-CEFvfhNK%JMzV(ej&E%%aP7aZ!WDv~ zD9yU57UoZKJq_*%06#l3l5KT+yUj{lc+15WlUM&#-^P0Ake;e>$fNGxahE*t`#aH!Vrm77in?Ekxs_{J9S27rmH3I< zdi=dY(|QZcTqr>RqpVBSp|It;4cAO^|c{PUQ9Qr>(E@Bl*H)Le5F1>A&(sH~r)K z7NwGH28)OZ2yQ!M>|^ag#kC}brvCVsafoAYF7$`GWbePdm8Hf2;eI!$7rz^8eA+PDn=y;2h|yT#{<*s4B*QQNO3fc6x~q8Z*ElO0)aD=&i* z@(V?#v6E?te&JPJTs9n`!iOT)BYE9e?PNT?VYiAwTc`w`QDHOh-{gg1;)yOh&&=f4 zI+ZRQn)!yKf=nU0zZ!17cE6lCB0k~l3B(zNo$el2q6HUTS*(oVH1^PVp{+PE_oAXt z6!4dI#Gs&UpG7=5Z9qt{OY}^q=a*ym>{vaf&f;loe8r4f!rD_OWt}LaOye_P_#k=v2YJ;oIE^WIl zaGZ(ddGxTJb>=6Vb{f$J5u24)-8q@R-BQ`5n|~Sr7Y*H!-j(?|^gnKi5FI40GHFuM zlGp=DITTK5G_C2HfC5UUCcU{j zuJGUj%a=D^{F}F$Jk@ujS|yhj{O27Sten!sxb_-m;D4W=>GHN)6!0GH;9+UE_7cCp zSE7}bFEeBvJ;XD$n=T=-bYIEKR!uND!pm!QBWw8l`#ZO4Lb|*S(hn~yk>9v`ml@KB zr)Nmn-_Yw;klLuJ5sHY4s>6KJ(Z(u_-Zl7KDCw<`n$6WEW|;rj_)(o$t)1bJ8$9*o zD<6enOr=BxL*@8+&$9D0e=wHM7;y-(@9YS}x9{K6a>HeQJ1_QMBgegjm?UgkX^=7N zdBo~ouGM5T?`CWimfu_bDxF^S0TP7BQ1DVs970({_aGS~#>bb^Cyu?aFJiA$$A%{I zH4w?yjC0W2>+qsF;|1k2XBZBJfv%O9^sH_XXU$84)X&IUK51)Vn3ZVyFE9hY0LKps zln&^&bhVa3Zdr2s6ILZRivCyhkUBz#CPD^)F^Z>}VAQkimbH$TTHmd&Ja)*%pC)y? zd>g&qW|&c&BZg_!vR_61H(>`t(E1zIPa~hc{7pON_Co;~+!6{btOvKMJp`bQ+>Bvy zh3qd!;+Ko#fWZAl6Yqc%VjD6Ti%T8R4eD^)PNIsqxRYRmFy*Cnr^a;AJn<;Xgl z^^F;O_uFzUIq|M;Q#TS>@2GYYag)nZd|l<9Cmk2hhL8jGeHRV`dy^o z>j}|`on?1xTzd1jTTQn|kmulK!C#-tB+e;PHwS-A9~vhBxiYhd%_@6H3L_8GozXG3 zOA)E4+kf(AovX=ajp4*(WHHM<0(A!5k^mzz_&;{~-7-l-ugWC0-(?6|so4ub$lp1{ z*VOu0xhS!40o$RqM*ncZN2xuO>V?bX@LS4?D6ShHr2VfC3kSF|i0~``uc8m@QR<&u zi8~0%Zn9uKFIKw%%=k@emi(qf`Ho=>1@JyV_*=rcq#U<8`X^V^tk1%Gt!3Z-RU;L# z(hB}?<8`2|hYi*@TDIq;^JIel;?=b6tg{5@#yrFCz1>3g?BV+LYTrhsKoMBM=pKGU?MTk^U39la2gt$ed0E&7?HSGKK3(+chD@~_o16^7qMv&vM+nDp^jsC47viT@#I7^|Vx)NdfkYyZqILYk%^y1*Q52l-z{ zN=t+enOZU&HKka%Q9SqUtBf9{ix=TG_Fb?*Qd8r5eq`-Q0MtL0JPZq|x39xiAdUBa z;@w1$36DPwQtMqy2fgFvDbM0u$5FBrQKdCXfKgx&mz(b(VCJe&Q6-Y@B-jX00a~3y)#AjXa>1NSs>bUhx&%r4gWM7EzEmj$T3qAUaxX`n)HmM znCs!A^x`wI5{ZO)Mwty!Z0WXQlmaQJmwdL@vDANaYjw&|e5!c}#U6`kt^0;#Crl=o zj}q0*UNruM4&4GI1fIdgO$SX)57>`r>sA&^f$<$38ZWP*te~_p4o-Iqi>%lF3(?z` z^Cil=Q5QHEbNja1ODR=7!Q~e6z+2@iL!WcZ70=+aS^r%&=@?FgxP2>y$x5tKh*a*R zM=_Y3ln*+L|7P0P?0_T)D<2|RnEw4b6e^oS#?P_Q2ib3CD3J#S1}eBlLzxf7zrNtB z(UQ?iEY`PfY$9JC#fUMXbk+;)ox08{}*TS{B zUw7KPK9`+pWR#`+rwq4aD}{M)F1zQ0&Ey2S4}TN5P`v1&G~y{xBv6Wpgcn6uFbcC_ zn4u$Xx9E(P;?JKyJ76HTL7qKUN(x1T(c_(Tf3E8ZGT|z47A&|m{iD<`=OjC^V_&Pf z+VQ$8LUg*}$`zA(o4U#R&HVu$%gTgB7qgj)=!P0mZD4It31OK8g6vxehO$)@FIf>-b z#v*agcdB0iB&5%_QRn4 z$h#LXHDQy<8!L#h$q<&1pak#9n8%VM0Ld34$BmTIb0v>_1x{}+4aY!JF3PUK&d$ym z`oTFb&x99gIc0I*L|z4E=?4oRC52G4Q9mwbenZ3U#Q3B&PG(Iz@A~jgFolf7(y*Qj z@1LO#ptYVM<5YsuOi5@1n*D5BY=2=VFspbSsQoP+Qa7~)rS&ats=GV7nz~>0emW&rxO^W5v2}8ez`^o~k;FE9lx?B!l`KXMoRGH@8{wDUv ziDCP}K6_PA)VPdeo%7*o&}lS1Qen4MT2Qj!kXF}!@5~|qQAzqsG7kn=2H3X-sHQzq z*C{ePEdX-9tQk+!ay9iC&jO7DVN#|D+9cmBOpzt!lnDy2)luDZ-gi?VT-j`ob)n1o6C(J0Vuqu6zM|N41@ zWQ{B}VoJ(*I|`7IkZ6tN`Sia(UxPtcA5w7J$eV>aGUq4S+z-et=v;!m2&mX?$(X&r zZbnvp%E~7<<^TQi3uIxoG{nTj*DTr+3J*`4VBr@y`V|y#XRBx8t$p?+4*(9%in+{C%5D_!TCYPXb)m&A)1uu}@J5 zhdq>e`znUDR%iNf*V-}P(BQvn8$m{H)kxY&T)!^=)YMCBZNzvc)b9eD!V|)rE ziFant^ZWa9V8b}%=LrKE=*&7F9eU-&(!nje_mcZMa?5s!pW$zL{3@&3s?`|Qmqz0s zLP!Yz_6@hp$-$LLrRBZmo8)$R6OG^RO-XQG+=CwgSjJJC+_`f)loiCWSQuTWq5tq0 zz^5x9NI~9}Wl$*yohH^_XK!<50?N48FHKS{rPn4toczZFkYJNZp1o9aWSA8DRx8-i zdH&i56L2Sgb7&S^Q_la6_o${n+-*f6oZQILb)2BD!;ewKg{qwPHzPaGb8X+7g#iiK zbJ7ps$bE-0+`y3>Ox6D%RbLquW%s=ep^BISDqeg5nBuEjS|?>P54dtbHxRtu6PNJ%^^&ZyOgxCbk*8f;|#Le!yN zZt2MzkzKg|t?FbW$;6YRv$F!guB6@sZR3H%p8=PEKw9g=vut3AQr_1jZ)$A(3d|48 zz=bQ_m(2r(OBn-)4@lydmMZmX{}bIq={&B)*&5}U@QuT%a{M$RkR z1cKAX_GWANyeYB$!P`YZC5`2!*|#2@uoj+EYWabkYfKYw#Ql`Y(>zu`~nc@ZLwzI*u9DI@i+vz{0GB02)9x_0JH-L zjS?@vh!IuGt6%nrJd>|ZR(Fy0@sfocr~x)Lz2b5!j6L3(zJ3-HKY7jAg><`tCjo3M zw*el5J=bEP=*(f5`uN3AbiEUs<{MzOngTlQW~Qjoe^s~(yBbKC0^%)+@yM^k!;t`L zFJ6l=vjQUw0)W+09mqQcl)nP&o7c&u6P``Ca9x&XnEg9Vjo`A;Pc)HuDJTFMm|qNz!%&aTz-i>qZ@% zFV;W+hsq)dpUIlAo_a;|KQCV+AR3RJ*={@R)u->mbNdBs z^Xytv1@rxjHOnZ#U1BUB6IMO8eI}^`T$uIOEGgLs!xmWe zA=l&si5#}IWla>0rYVX!#t9#rHk`zXLAr-%aBwhLcQUU9rYkX)|H=Qi{tajz^27-9 zP`GbKxG+7uJk2Fh&D221ECiQUGgJTvS!QtO(|^|@yHc3xo1>m9tDx$;Gr=+t_aMpw z^=-}LjxSK*7%-Pvy7|?w^3fD`LdJH>FX`5`8O0O}E$&giz(VMCbaA-9#Ha5dJiKtflO+LNFAC45QV{dy6qSNDHQ zmY3-;p=k6b|LMalz&@x+Rbf0p07t$70BtXsl*+2SB(B z7^q|RiSOc3#m^1>A>j8>5$HC;Lq|`3>c4z3zhyp}_NC z@%{XYPJ4(cB-ORLUjRXJ)z!>+P#g>LDOPFtltqLe)(h*(|3=9m| zj}bLA#NLZ%>Ldg5TWa$CTx_00dO_|B!ic&p79Br%Nz`?Y_z!2IJHn%J8F|t?09~r> zyE^r>TYCk%4w(`4~J#npY^=A){vyvl&lKuh~;nyFUlD8}{k*9a}zHjsn(-CXJ6NQt255qSLm$waYe5oC&Hu+ea0dEJeMlgD>VQUWpU=E`=;Y0F@DzDKR}u-UbS zhe`?UZ#xD&@CHdgfre%5i|2SYD6K3;K9912iXFW>blA>z@`DWEFJxsv#Ule;gMxFM zeD{EFx}a2VgXm`>It~sFaJkaCZh!5>FYJ40C)uH^kvM3{u3xY8i%&*F`&SbB9Rwn6 z{0f4gMbrG80=0?LlOu`Qye4+OI{U!N`TnnVmo&@*Ujd>fwa(4-yGdCBv7Ovti=JgZ z1WJ|hQdmvIds-2l-%gQpCOPIanpL06^K*eJmLE*vv54b_LV4*r(l(B4oMDbl5dbPM z&r=MqmC=}@+Y@HF-Fp~9@KM338w(EOweG#%$au%KH?@)Njn{)MuD1UF4g;Djxjyft`3|W85zmD^Nlzz$W99kj34h}tW`pg%@k$<;W!GEf-VvS3>L0_q1=*)cT~^Tk>=|Z30s0H5ijk} zsb8h=b(h#$-~oHLr+}SJi(2x3a6>o*Y_|EJzp&;4wSl&Mi7fc*v-BMskn>?2vrYxg z@)nx``KM2FK;nNqh@FKG*eg%z0CTA|P`0gu(xF;>G{z3=aM}f^@blx=Q+q(sFfIo9 zpHpg{c;zQl^$FlKXLP?mx$cd~mRBcW1|}uzG|4K3fWq@&?EjSPl3qafl<+4c0p+08 z2qY}z^CRa@#=q{3m5JK?Jj4Q*XBoxxt)&AbnP+pET*G$UUVN;(W2e^ zDgU?q+_WP(a6YRxSJ1+5^8p_EUSog=RZIB`)dKZHp3O*WYKE;y+D}1W6@%07<8MK- zR_47LUc02$-_u4_qYgkXrZmsvRil9HTayitk+G(u54!-3`0o1ylruN@CjN+WW>0$M z_tDy|S?O@Z_B1fRE8Pp0WQBjC+9>mAIaAI+*q<82iR;RXv^MnaxV?UUVu{$;j#G=unEHK%0v~a@Zs) z(SRI)xICt1?vaUR`GHhD!s}b`O)?Q`+QS-vTZI>Rk|aq|8tTW%RsfbvL+87pcES*qpwJQ&CdJo3lII-Q3$t|F-rUN#%<#EwTFH4$REeW&Ax-oduta zeG-~hv4+g4?G-}gH^5f0J%_3QGki{c7aQ@wd@#HBW~6{ZHsOKc%dG-RU=}x7#gT^z zhwGOhF82!W-)B?#A^<3}NEe5FKrZtH7{2k!vTK3XSR(*HvKjywidgzG!ib8BLk%B$ zY0Hvgyd7ll_GR`=ZZ=4eWFi}3tjaz>ubNryjigAuWaIeZHcxv)3;>K|NuR3E$Dl&a z8wTUf{M{7ivdTRiA>1GST!&M{j0FyI92>w*B2t6?JyLL6Cr(-GE9emw+ z+nP88FssM0y3Fyj1crNTjVr>R;&U#ICIy#xG-Lo5eA$0`{0?fATR&o`5HE;`Q3Z1b z7O6eCU!W%&_zRJ)P8RgqFOHN8Nf#)k#D2S1)7bqPfTzm#omAqWD)P`;1E{pXsl&a` z{K^DUxp1O$wS|YCAdTevLj?K=%mI(<-_e$2(6gjzN&SPiXIXJi$5sE#&nV)TGb+Z) zee@!v)rR(Wfi@KrpUslWz_7-(bo*Z{NtPV)l5inNrTZW)O(iF0^f2PH9tzN5%7NFa zP38NoE7&@7Mv=D0Re$o)a{x>neb6cU27)Tkuqm^yW_8bY6|3%dgDi%8Yx&l(2J7*H z)VZ9PYs`Nb4I|1*0(hJ{(*n3)uWl11rM%r@Dkawk5(oty-V=T*QzCP&(2k@7ee7KC zT3G|LyoC%$-oK8np4IW{+{x?D^)IbLAuz&VRl*T~Gm=wK(8|dI?oK_Il3dIsAv>LZUsb7ilEt*T0sFK^gYpm=Z+H z-6P}e-sIqxLN`y6{MVm;SZrx*WKMfU#QKc6<;_v1uj+eI1%zD>)F$75gQyRa+Ra)P zR0;|TMT>56T%e2Lo}-#>*lY$7phXytVlZE6b>h~!RDvrnY*6KTyK)QO9$3+sL1E8n za;GYi+I~zn@-T+$nEl#|ssBv7qlIV(nE$a6a6QRERFT%F+WS%ZX{cT6G|@81D!y)@ zVzuHz5IMlfM{4(C0JYT=l>SXmd4=sB^Mg9O7T~r&PfqwZSni$WPln)7i@33agj$jL zz90g?H-K2eB2X!eDL4+p>ZVV*K@D^2NW_hLdu9Fc9ehVWUYu+WkC}Z;6)H?pS3kM! z2c93Pc&qFQX0Z5C{>_7)qCEs>y9R)*o}mr4^t?1gY<$r?$SN*BpPm3Pub4WSUJm;a zyYB-5xqWTvJKu);fI>{Am5eMZfS}4?ZE|ps&5YoSxh>~xM~QPCbb3=j+gV0Y!pdwO z0y0XnK-sSF!1~^2AMin3+7i|v2s7hjh$@JYzU}A6^(V%j;!|LD1KQ6nPO%hwV6-f4 zSl=Y@_VpTPLcqJqW;Nwgsyhe6oUDM(>kK0ZCQXBNE2YtPBM;{>>&10wv#97~!~nQ* zzV*d!&!S^Gx2&Y3G9vBoS&N&UHNj0vuf+TbB`B(X?-;{x|LrV=TgoIcaj#$nt6CP)QP~vG z18kBe{`k^a66z_LGL<%c%I_ z9U{~k42Bb?iX@k=(h2}^+;dGY3uE){0)`0y@=xXE)dX{Y9v!K>DeAN^!c;jy)s_n^ zEEH7u2l&gnd+x>+PMbqyHuLpm1>aw$pe>~XpC|_e=>0U?-jZV4&UD}_z&Lcs>~7n} z4pwNO3|Sz;)Z4d1?@JaT@+uMkU^%HCBl%GRfHvyFew*IHx!|`sAn8!P`uP?{L7FjM zx7sR>fb(;Y3o!Y>8W_Aj5ZJQ%lIT|&2bAk1I!8_cy(<2Q0tZ5p0cw-lGOU!&Su16u zmkq5sZs3Z^MDL`|mq>!vmj#S1TRB0yN1o^1KKc@1Oj{+dtNzw&z0mG5b=7VTR-02Z zpSe0s{04=n`-+#?>0)UhonvsOX_WkLmziZ2fC%Viit>1Cvs6re^k+r{hnXd;BD{S# zhLI}}Ce;~)jM5#%%*?u3O2djzcqf^g7Lzp$bF&@qfjVigk;V-lXR@$Myi(O*a`{^t~@ z^3ToXAlRz7!1!JsDj}l`kmu>`*_pG#{w@s+@CBON__F#rR-mY(4M7MBTTP&LN#W ztlN|9ynZ*{Qkym7{#4ykXjJR959b*l27pNo>Of#fl<=4o>Kj(Aa0A)=iMRq9Jd6n& zCe)x=Oe~2HmVHzYdbrxzT`ers@$$?q6tay%%nzDv>F8Ed5!dPujg625ML)EQRA!bz z$Ux5- z_VW1Oe>=hKJUL8B73RQKY6ZC}s=*?dTw)N}PB3u>f20Si2`jm;pa-ATI*i zNQS*1Ne#0tibTjFF?Zp686A$U-6zmC%9hsg$(e00?A2Q&lXXU%pW= z69aG^vhO`sLyK}(4^C2T%a4AC++fS8Pd$H68Tt2WB%vRY*kkfvWO8U>k)(bZz_rZu znL7E+KkRH(NLE9p??9E6;Ka%x2|@fEas{Mr4CceZU;;Ld1UQiduTm>p)T15d-@wYM zT%{hr!Nv;Eia7ub!!e*_kpNPQgM19IBN{*1{8gl$Yx)Lj_cai<^ogpJ-kI2m^oI8c z9aly~L=Cx=ip{QBEGD?UV^R=~q_A(4s-(&Q3mjub;N`DHcR4$8U~OnRo3qWpo@Ceu z3mn6ZI{xpPtwMkH=QN33-J~8Q;VR>#_??Vuz>j(!`iv__M$Eb--B?G~$x^@ld%M5U zpWR&55EgH}_%u=>=oOGU-Ee>^`2~y(@dQYTvQ#i_F7xj%&f}#XVAp$Bim~!AJVLML zT(SLiHoB^llhY7Z0D44@Udvv!;*ePnFVd9vs0;}V8+kBT$H-Hre%bd@7drvhCrWq~ zJq3(C&8^E~CNISTq1NAu#3*8r&?TdTxhXin>~n#~w@*|Of=uJD1k)vZrVsx#IDI!~ zbt_XS!_Kl$>Q@*tS*ff8b;<0Q8L-($ z#`cBj&S6T)+}XtiWXWrfjeBf6tSLQK0-Ql{E@Jn^jlme#-xZntZjKD8_;fPMAPFx< zG!jO%qy}!$)sdWZa@pt}PEG%G%kQ4?!Zh*B{DczPp@Pk=2Pk};v40=9F!ZVA5O?qamLX5;;qQAIqz~!V2>|1aqoNgPTBGczpqw~ zev#s`-*X$Cip0X5opoZYOGsF?HyJRM{Ak)522l$kW~~9&L_fasmBL(j%W`Cw%73Ghl^$s;!+Ew+WYq?4o;v zP0e{s;eia}WA#KX!oOFAk4}ngPRaq6e|hPUi=}5OmB!DVl7f+~y}BgAB{%&J?cVRV z@5}=|e&_50b8#v?hh&90FL|^o*E}c7R8Q}aB>S;-hIn2?Kc>)leFU%v_Jd^I(kCMPJ$u5L(NJn?vg`i6 zC}IyPBcIdB03$Izi#tAE!VhmBM}P+|^PfFFdb9eQ9-Hem8Z5zI{&%4IGQ)HYs`ss5 zjVm7|Q};1|w;2$`RH?Bn68_$scZZzztK|nt{oKiAr`PO;HHBk>bN%NS$kVKJtCoi9 zqwRDruHW8#!4*AyV~`ORw<|XBp!(Z^&8a)C+PzVtRkom+KfdG;IJ#M4SZxw3S`GSB z*Gt?S<$e}@E&eEWz-y^HFL`d2>HoQVz2qVoR?^%WvqHR*1h{oO^3gRv5FP$AwukdW z|5fIz9}mIYn#D!V2jAw_t|;^C$kSzkJa_#yjyUd&CbxVC2Qney9_YL$>;W~?96=>A zwI3Zh_dW-nySmx=_f!mgoTb#z%s$CAYZ((8N8faT{2V`D_h}vu^tIqlO7HDT#&?v> z+KG}_cQ`#b!#_M$8D&>9&n2HNX1$vDu5Bu*26BW#Eji}k`58Vz|zIDn~OW9gGZqc-ZO(!GXcN_58rQR>>T)QXTN=9 ze_!#_gHzP8{3IhAk#4+;HbIL4!g;sQB_uZ#K!Y?60j~5&w10I`sSBw^y?gW^a%Er?Cpk$s{_f`3o%Kt^h}nqkqR*1uTP8rcv)_p=3T}* zfAMp0?U5?B3gS0IA7>fx6(!y!i)9|fn0!QRU2qU;lVVJ4($9=ZbQrBlOh?vAUbgCd zee>E>g}L@MTtkSg+RE=+FiANDB6*uIq)cTsUQ;Cov|+;5y}79GI_#S@ zt$<58@fdI!X&n-T)66P#T4i!fD(P0N#yP?>pn&5z45y*~dQ_KAH=XmNs>U-PDiq`*$^?tRYTCXVTO z3}Y_DzVbk=&N2JSXNU)*{R<7(p$A9S8P1hQE)<%e$nN$I>S>ss)()kqrlTNgIlhVj z)esi%bm{6lkssXUo_ml)3=rb~(U4Ddq`hbvV?^wi!F=27>@0+9k>jM-ry5N(K>d8! zIxjz;3}O$0*V5fgMDV#8D|gFVWQV`XqPE2SiYs`cs9w+V{dk69#lM5~`sdx3HZ5V9 zGmj9FLyb#3Zrp}~v;k@a%wsL5Y!xkET<($W=)}*JraT);dofqAfkGl5FpMHsMCdeb?=t#l`iIa$Zq`sZEKtMvY5x zn*F=EoUbI9zB1u2T^i6Zg?QwRBimHm=Byt)my)am-NZ4xFTHTN%9z5KFB z$4g}+q102MXCJKRPWP(%sH=gZ`5u#$dcE}sR+I`P`@vy>m*MKCCHq}9^K3BJx`fho zLOuJr5Q!v2Ss_clA*-ym|7-vDgo0zI!SCx|1>kUtm|8(Q=*?1bv(`fyzVV36i_7>@c7@MFgrgB`=g+3Jp2?SCqPcn$g;f4n zzVOo`U|^(|esceu%#;7>kC)vEse17ApKje6Ft9{YJ#YTKqU9HtW~E$18{ambcD;|Z z2ajB?o8K2Y(CVsI^KX1}7?sbQ&{mR)2>scokY4CzLh&v3xHOxN9#MPoVE!B)N z)>l&}&!U-or3Y_FX-ndj@4$fo*ekyM&&{jX*~|kMQb}gflKA)?Z)qcrGr=5YosvT4 zT}%>+IDeLax+qb)lG;Omn7P{zb`34Ygg>4la<=-OB_jzrMW=b?atd0X z--Vgvbf!-ndq$oS8SVaA#xT~&Wg(5W!m>4cIg8(`R*_Zd7bbz+!;aTZXenRG}WrnkHSf-Q(rvaLPu3^Dhal*`~2sQ)+3oc^!-Q-0f zGiC0ZDKC0kEA8rMWmiU0)6#Zr*dMf2-#O|11!7u%*cg=bHl95K;}-4sTzF(>u99L- zFG83o7eEzJ&5vErY_AIOHdm*ytN3`vOPw-v)Ik$KioORlx9Sf3+?s-@MSD*npJi7F z%67zIe8*t+%D(k?9b4@sfRKruT08*z*)~*r`DIjT(=Q`UQJBaN=1DIp_{OD9k>B*g z3z-0^+e0~87`pRp-5*y!uO)RQVVB9c6X_L7L(FtV=K6i7Ag5L$;+w70J`UjxLTgyX zIrfL{PvmTRS#wvjFEaPt^x&EP(Dzf*f<`!1P*J(6kIRa9><`W`0FoU8WVzglEalU` z2(R^j0}S1+Zyp>$kq|AiN@)x!b})zMyyd1VN6k)?^A0g8sGNoDA(GuMqWwuAmN|Q1 zHE@9`Xt_zW6lLJRqPQo3^8_-A(IJEZ!)hGIs&Q!u*ylU63jBlj8Y8cgqGQDCtnP)SG&#j%+!a`@r}~SH0(=wT69Szk`FQ zW=Yxb1^jfl~VVT?%9%`@SMnv5+ z(<+UVV3|r3p5_xHX}O0<^m(VYBhO;{NAZ-7ku}WxCt#0b5JL~CHb0b<^A6{@*0~8{ ziy_0^{Xm3^XqnlIkJ;RIbNmXbs=p>A#xR1n-UGUMoabj9I*mQA@w74fw~2b=w^VN2 z)#he~I_xi9=iC9F;2g9x5x`9`)$#kI#_~w?_kJ2=kQSB$7sZ6k4fpIH55>DGM(ite zpg|Bb4OZ@T?P|wjH~Z`Z9c2O#6JBsrV1w^%CB6f*4wJ?A8_M`5bB;ziQTQ;O;lVkH zO)tEcSYKF-VLs;erumTrcu&vYlIovzqB%);UC2_9ok9B}lx@{2T@&=SOI@R@lB;Gd z$Ihno8O;VcIJWfjyUJ&O$xS^7xh%#WMpmQT0*(b&vE}r1N>631uXc5l+U1vmdn?_K zzX91x(thn>#f~%cK~*trjdTvl}!QUiEV%mH!<=AOB8&8Sw|S`(@Ht`;d^)@Cd4E|xRy?MU;Zsh z;(%D8C2lvFXG19jzd|hz+FEFPH>q5{qV|0lrHdUDP%K@La(cgT2Rpi+6Ej6JK3I63 zn^UuWE?fF-ug{{WT3}x+@^Pxj?+gSnra)#JOv$rp<+CtM>@IzK|gaV z#Q<>A>W#X8-^ywz{@%&=Z|nGx9bkySi)Zb%yk!k~eD!IIfC~#`O#qunKmmQFLAcaP z*CP8~(CiSW;oYd&XVUqhR>f5nfDY3R_!dgZASbPxI=JzgPg5uPnSLWTH}{0kgj<_FW=atQ5G4dyR{|U=6JKmGDiBKV;Y6dhYd|kqn3r7pnz5ZfJ(5 z&~VsnMa^k*a96+}mMt%D2@&JzZ7@Ba4Zt@|nV+0XqX}lrqQuM<;zyiXE!Deu`=!(c z`(M0$i6s^QglXhGjgIcFN2@*Wr}==8c@0~YHB6Qpv^@}M<6`X<8QD143`WhYmktS8 zO-_pDzhkBsaOK3XDqQp3fq_-8ujyjH_=9E)hDB?_ns;nq$ge1g{P*Y#eLiD3w9QUQ zOu;E@!l%JGBdxX<9xqA0FY_}_eIzDeHMM)G)U?rks+f%D((p| zV-#4vFIua?K06-GmwTk#9Y@(!8NaE*GgM*%y431Ee#-$CU*nX66(8ueF|z+U?Tm^p zN~=5151?$I;**tTAh0kuw_1`4>(K5z=s5597d;;0yQWTE3y$sp%^K-x0rJvdt9g_V z6F~bS71H{il0#-JUyJmrc!v#Tt=zfmo*u)9I8)I%10K~qfMJ?URP2550ES)p8Q_l5wEDXp?KMsIpWr<3g!%0lI+bQl)C-qqNIdpn4I1dLqREGoymAJ0s9*@G3x)ldMk{TL5v@BUiZ# zv;-eAG*i;fsfu<;dpk+FrXTcvgImY0CC0YH@uq*zRLnn}Zr;66bxhpU4{Ljv(hVPFvj+e@)uA{SMeFKBRoRf(E1WY3;OBzwA zO|2DX(Ch%1T$sVnYNz9US@!*S_??82o}sgX2k~%9ECN(V!icweLkytu;h$kT081^a zVeX%?VViyn%dUfjX`NSvpL9L8&P@q#tlH8^wsU%OehNzBOIOl&1R4lu_F z-H;@a-{*4?ZbN_y!mR(Ah7$B7B&1Tk64QL}<54e#+aRxZ!nX>_-faM*#Ki0{I*O+W z*jk2ETJU(-nPFFUIBH^TfGjG(Fn5!r;%VD$+tc1jpep#tp5cS<-=Tf+kg_bRS^rgB zfh6d(S&EL6F_e*Rq-#Vi&5gtFw)&h+UYv={ zQML@8VNF2Hx4RB&$^hgUubO3Ph0?4$WTSBBqS*7#S?uG2>-al(KO24p2@5(X`U+I5n?-Jn7QDw5kFKo*9~H z?ZDpYyhHV8re0FS5Sw4ItAaOx8Z_Vjn(aifY_kHU1OXDY-c@bkt9@X9t;}Xg#^jSv zPGFl8Zu(x3w)bZ17(*5bWy)j`kHb;A5XegcjCf>bB{Qj2IN{LBjjq9Z4DYIxN3I`e zq!BG4t}jGO4;Q%$Uf1I$LKq~~V^?G4`J+k0IOY`3_o)Fgq9*rvpjPG^gvV3QiJkC~ zr{)>ai_~kKMmDkDy^=a$9USvQR-s$c7DS`=$fBVyGf|6ob#{x*y%z*K=l+ty_h2W` z1O!bgw=(aU)c1DHvzZ+abMV>d7gy->akO>( zE$Pmake2jmdx>qGvOQ3)+GB{Y(jbd{l*cC8)}v{4QQ|vR>BJXJqXywq-F#lZesF;K zZVM~8l_QUx?xSM(ORB5KI2rOa1Wd}hxz%^vAxw#hBvPED#uOsZ);CX~A0#5HIb9Pt zO?ty@OJc%|YTods|G2KMPPU%eCZ1mw43X}v6q|+D46iy1mzn{A?7KeM*!Wp(x4zev zCPnCgQMz9ZLebW%R2%?6k=sb!PBvOVo;f5uh0O5}-lAC6u%+j8(@ zkaow$#{9QMl0va`RNvH2c#7YQNgL(7O|;M1tekI@Y1N$yn0X72Jk4Wc5G@_(MYcS} zrt!#fh?GnauA3{}C1`#=n2NGTyz?rhd<;_RGl2>{L(z81^X&r(DbBeS50=opR|3%P zVj)!o*Q5{O^h^SN@!@km^IR&DdRC7`DaU%Onh5I_UvKeND5#0iz5{{o1WJdc#Y^Qt z3}^6)f6jhec&va#bi?#;;k_WxB|g+?VCF+0?@35uO*Cfp+75HcGI}j;8a3vj-;eE> zlyE~(Zp$@!L5PKyRPfMD^=!>r^$Gv*8DF*OX-v6{%@yVXT)%w2g>7@VhKjc?tAlx) zDExWZzSNEYH`|Gf`qaIib?flGXN1oKCBvWKpSualNE&okNnGyL+{2EtI|f+k7cZ1% z$H>#wa4tO+*EG9&Jh;P~1OvKW5bDUDWZ)c1-%gUDPK34j>HjyLWa^vZ^)Vxjbn!%zo0#Kj{FsD(= znSV#ys|_p>28n5PgPgM3a8X{(!BYqxS+zj(#vJDg*OE5MY{WaN{nU#y(XjXI+Nw)$ zq|~Q`x+$4epew-(?S6g%?luf7XyKT##_%~rdY4} z)D)c9K{x!aqyD`o(=1-gb}-TpcBUP}*{|<~RnnoW@<=cv#S!uO6ZE3Wj2v;hx}9&9 z#KG=MvsNk3oSt-MBY5JDc*z)h^*5yY01|S_hT?(39AF}pNk_CyT+^%kDs=iiqxC`y zG{t)91w06?YBhV<@-7`ff62kxbKv34D{u1xHee*^s-4@}vpfnBvD6^K)`KLXAovm4>YpEqv9_1F>#icrjoa z_TME=2&r@rzzu(^<@BUtS9yA1MOM2stg4bNM5lDLtE@!e)sVuvb^Y_SqqPkF(~rYn zSmi%C)PP<4lu7^%j1vc<+E~B~!l-|{a1;oEu^3FrhU53Eb8;T5rC$K(ItB=F)DeSH zKP@4(_nop-V`5Ec|kIsQWAR?<&gurv*5ettreaC=mQjXRPHk1$$AJ#1p=1 z1Q6fns#y*{L!BX!k5@oAS7w&(^G}ix$}7v))Sx}}eIwldl|YiI3t`v65%I|277;ut zjK`u0NCw0>)r|#lFssJ#aejU6v)WXti8Y#B%r1C=J=HCQB$MM^nR><9;& zfGmSQ#1W|0u2AK=mmkKi1^#>95`Q7nAO^KkEpr_MpStgJV=jZqTHh)nh6Upu6IqUn zxX8ajIW7+(iA}lYI%9P zb+1lDswdYfQ^Km6^kxcqa&5jnrk5s$wYwqfrwZzQWh*pt^=J`4@}^!2cinlu#QkN; zG#<2>2O8b#DK#m$USw=Y?W&Obu8wU1VM zYD9k2lpoa4N{eC3GXVfX>DSx03>jhpb;&&`!I$%P6t7a%qu$Ty)*9 zfRz6_g1aU67ymzmPKjR>l{TMhkGmGs***|Z=j5fMs{S?eiTQ@n+8Sdd3=4=Z(8ZBG zdLBo(#>(ti3Xth_qY$Iun#cIe5tf z7ryMHa_={JOGO-C>`cu7CPRYs)^#9M)F0s^>l*3~CCHbdpG|Fi&o2TVS@#oTcaEJV z{-=;Z(6(%V=>(D1d%fFA>h(O#$D|4}NKD5Fl>!h60^DubYp1@MACpnxlzhchp#v*G z07sm;U9|W+v*_~?}WxlO{Ho_hjN3`p>d;!fromspttYIalrIX4GTxbKc zuN#z-aONc$?7UDa@}O0vKcq+wJO z#8Q$p!}C87=+-swol1;9cbkb%r=+JR_N^iV(6V6pbimYtUwf%Gj>7|W$Dg0aoKLJC zC{uhK1~U+$;;%+m5ljY1a1yvk_mKRjJUV=umFp{4^x?x?)@4R>_~BP1!s%Ll5*e7t zWAFD+1N;sun0K)qDRBJ7wWzUxO>ZLv4!WOcC1^B9IM{~e9hQwg{Q2E?^4ojSYfg{v z$t{0|s|wKq_;&?q362E4v`nWZYcCz2Afw3qNVZs1oy`CttVAX#{mCE}XLO*Zs_R&- z!W_F^t^653i|`r1rEj%i=0>8-w@Nk8XV4mJxBlEndY+h3dnWtex+Qsp$V!U#Q-Xq# zyf0UqcgwLBQ-w{yhSAH2H3?`qwq-7t%XD%@JLOmCQ4ySj)YqwpklGM&ISV zdoOvQv!xmCXS-jWC|;yqtiA*Gnb${}8XD_D!@dZx=5}@HBBqF{dF?7MTHz&9L=swj z`f0N!DlLUH--a!5`28@PRzeI1VeG3tOpa9{)m+T}U4ALz{sZA{5qH8@nB)}ou zAJpkYlDTxGw@@s*i0lJ?RStc-I;{vfw<(`s;&_%REGzKZr&WOHl*gy-cQox79TfG~ z7pqDlus$_$nY9#|%zG34e&;*99obv(%pgs}f1+R5{0QduEm-5?M@zl!m$4ieuDJ;Z z!J9@<3R#ThDP*_#-@EhTOUz%v;SJR2FMw-aBr(oB(EG==i=F`wIYdNmdrG9Fald{Z z9z4(RxHmsmGM7L%hi(kv{;Sv|c3gZxy7lLwp}Pam9^(A_v?>{l znFiii|3Z_2we>4>$U*wc=j|F6+2vZdbHdjti4+i@N~G!vutEy*27M?g@evVj4MQ~S zWTGCG@aFFYZISwZSzy_7GFG(PKXOYA>n`%QC*}}XD_O~lTjdqPehR)sz}udD90fSU z6w9O@?m(3MWCm(Xm*ICOuc#BV_oTV9?uzU{f+F|WrIV#levnxZ$#GVs2o@Y^)OHc69 zaA3nU2RYkxDEP2t6zeykexxVf#|RD>o&dc%=YZ$z-7|9nw%#y> zDQuA|TXlb`C$x>sA1>B#V2|L*&q^{P4J9LjnJIc3)vpH-Emo0cJ77NY96GQPf@2D{8n&>jRO2DBuCl2*J7>Yl=)apEneczFwSNsb|%6T@BOb!gug6U(a&FLY)d>kx# zzVbS7AE&3M=iR#n6)biTp)hhtfS7lMq9-?zS}>}mW5@_-J;z*XQF{7M{i#$1Fdg3) z!<<@|an-OIrRmo;n{~t$YxOqE(Jg;&A_rch(Sw&ojC|fr$5yW!9(93d-JI6lA2unc zi)kb?W%zqswOZGwVfU#bhq}34`^Q>pAr)To;;*^)w;1P0fkiMLI1VIs4iV@-&2GqT z5d?0}gvOt4SH2*OSibgg%w`sv%xqRB?H4W==pK~D+~8*0Y&7C4GUnHy>1|@=XSBXR zGL%Od3KIC`WUB7*#-{uK-PQ0a(Ie@fgoJaGebKcad0LVY4imlmt-!>e22b7n9bpD<6oIIsUTbtQl zJ9e^e7nI??H^DrW$4FD$9?$E-5G=G{DlJ=av5CQ^*UMh}OrTwpGwgeR(R2vB3~ziR z4gT%T&bS@eGJ9^3#E6lwwRZD@hcy3J3m88bFcoV|8wUq0q;5G~!uVZnaS6JEXz80e=C2g0CXoU- zVhkmxy`_e=Uw_SQrYfW{JAtOSA9NCwt`E;kGsRxH<*+C0{)N%xjUgbwAO`RopIn0F zgRrD?@MLD8zA?_$%F-R7%vkDhutD0TVxVppjffsc7=UI)w&$We)$a8^T1&A!;RtJ} ztE=mqhHX$TPKuA*|I_+L-boI77a^XxBSm407|sH1l>iE==T8PiPbWn*uYajcV0PJk zg}@{cty%mWT+VLD^M1ZeJ(E&04X*VyI^kLXxBl-%_svhVC4*1mRkTJwW?U2T-SVYkMm|ejPGq5qx$PI8_6JKQMmwl4 zm%-qpb>IxScP#^doI%L>=JrJE5D0+TY`vk|8HKdykg)5ncnuY7Oa2GFgIf>Z{|WjD zcPnAZiDOM>nax!qJq&TZPCocASqo!b$T`)<#s;tVx#QqtxG(iFVcAfG>*luh&w{XE zy;fiu;*1#)zhvjslyo~BPxT4Tl){+dp&{4?hH9*V_^IJsFmb{e^r3@-^YFF71)D@J zq0+l6q1%i!rIN|RGhVh_i?hI7L6Ze^yG)ebGpzTQ&}vRzl09axHv2@aXn2CNe@9 z*&~Vn`?Q|t`Tl>;<#L^_$9?Ym{*3qMJzlTZyANlP!~>x!I|db3y-4we1nCkNU_=Uf zAKZNdl=tuI5m8es?SvKFfp@Q0MNwBN1TW-Wet}_fQBc_+tc> zLBXgCtduu^Fn*g5A{^-gR=W#rji0a?jQ&VM_ALUzU~R-fAZiP2e}B9T>lt5@507(? zLtO$oAO8fya`Z*z9xc)X{h_?mtNeoM3(NeP`ek0FkM3rdvRehvD?U`Z=pdk#k31^L zqT4hL+sibD3jgD%Y$%yo$JIB>CCaJ2yi}yyW#&gxN9g}@p_OaXo6W$eU9tO#m*#@+XOfB|<+$I9+ zaJIT{-li&`kb?lH%E+TpC)yWOCB3<#?|yk6FQT`Bw_jm8aRA4beZAc!YH8^X8x*)Z zJ_J@0C(AW%;l@z=AvmCA*3X=5Sa`VYqEQnj)+jm~0HekKDnv}s*T6=2<2I(yH_(uj z2k{qndY}ELXkJ2bWKesjWQQCdH^X6Q{-q=Sz_F#Kqs{Y%*_PQ9`TXH{KcjJnpG6_0 z>Bt>Rlo5d(SJ~3t9Rg82w^x}Am#0oQTRop5;L}cbtnYl+?=QpCm(c0I=FsgDAEei8 zj4xvFGZO{Y07np$B^<5xubvZ{83!n%>(Mz)c6Pw*a7+?=!+*wssS8vGbRDcZ)_|ub z`U#RK!gvC-nG*zM+T+)xZ_^4{K77W@k#QH&p%Qm!tOI!*?GB`02R^x6C~(DlE|`dx z8gPO;AvjQ29(e;LZPEcT*VG$D`WB=$Vev-(V;eK+;3AGtm%Pj-;G6xParwSEp!m}Y zoHI@EzP^W4NkwtRqcsgiQr`j}tm^p|vugQkYcFNvbohe!lk=%I&~g7XNv?(`HM5Y; zM^Dp;l}R_zz|n^LL}4zu(mQ;^M&bop(M2u}&x*%z*%b@I`G^J&=L8Z{-KO-`jb3q1 zjkGuzpvvSViTeLg_nIjX;7$k>(FYi%jP_CmLkc0d;-EcITOKa%1h6l=3Ld+ zPm(@-sq%7Q-Jaba)dApR32V;Iqd<&@Oh&2*>}&>~x^u-rW(*_(|*?#k;6ZUsj!cP1)k^9!xd4=aBvb}hv`0Y~hNh3EF?Tciq`Li}v9dBK>N>%gXS zyPJEfHTcc)Qq977BB^b)I!*jrqu8=Cm2K7bHJJ3e{5#a0l`et`C3E$wr!J}Qe>u?p ze9p-WHQB7=&i8P27(=}YLT~v6VZ74bM4^uNVzli`;FUDpT^{bWyL~ggBV>(G^ux4! z4>az4qnHXc@=UlkrSB6*KIrE#gT54S=9WW{=2YcS`<< ze8laTmF6~xUy3(MECt8fn}EP&G}i@o3>D^z8k)6n&FTk`^KkCe2QqSW1d4^G1Z58C7ct6Q7{itkuOd#3ru0qJ$arktkfdiuqHm8<4!OhROhHI~LAmS(RiNLx^sFZ)lJ<9iW ze>BW z%+IF<_i0OnRgpYC8F1QN(lP0mrgzbHyA6pFU2z z-5jKSh4E0|&H%Ds{#G`?$6W5uqyf{)EQN-Hc#g}kj1_8|otQgirh^qv zJ5p^qB%kvbR9AQd%iY@cO{$g#<9qXD%qM6Qm3D*@ z9n0`%$QK#t)QhR=*AvLdLZ6+)tI%8T8pyP=ZI1}=7!+fJy>|iu{5_h)vL~00K4(-Z zk$9&=s=sGcFEV+e`!(26kV#sOf&(oycU#=jE0Am%O=3-p+C zODfkdelu^?;N^zEkJ~D2ivT?`C?B6jFYq85i{7X{p1k~WHu{}4IWnT};&;@@RvC#! z*$!c&d09Io>mrym?4G%;P05Sc6#75ZLB)LjP*?Fq&3Um;__ezE;swIce>xs=lsN*&ju*y&k8||t&b(iZQ!KQEND}UjW^(zi{T;^qwDgQ#l2B`Fur(Alw z+SG}4rzf|dAeL1>5MS>L`1!%CftuGXOSZT*kCcTg#?EVH+<0aMWJX%g!b&II!~W&7 zV^LU&)5o}jUp_ulZ%`I8E1=-ne8_giOELdh0gGGHk4L!O zFREt0lX3^Iw0y09X5@SE`p?))8nMB!4&EJA{jJ_vXxl@&Vn?V9b;s_+S;;GC7dCvQ z^QOOH*r?amF0qgr$EcP=+taK28K3u~kw%2PyU=y_{(UgAe(u$D<%_iKO!cXRbauWScN+iVxzYb`Q~y- z6W*cZ4;%?~@(w>fuE4rr%vWeU_uhFzA$9UC@lVlL%z+G))*dm8tM}BdTw;d8;|**4 zYcH>q>!dW!)T5a`kW0Nlu3VN~GsuUeXHY#6Amrtds!!g`zKh1w@>Gwud|_0XVB8`z zkV%mTR8$Pl1gJFS7)e&$efP+H|gTw1+Z9^3V16v&OFCB70fjz3yQsj9(iY@eSR>cVg@&qtxHEsi}L2KKy^B%udb+G zT6{jnPL}bfcH(+q$e~eS#UXy39&zMUm&@4M1ypPFGS%W^{S>}D)n}#7Y>fRpTJ~&) zY$cv!sV#>hQ{;$umP$2WX>R{b9IHY4y$AXU+)bNT2L_@u_0(Ms_H4*`2GgtS9*myp zckYJz#u;3#{L|EeW-~O)!h+QwHjjDmsJ$9JX@ypP+|em|)Rc+RQ+Y=d*cshh%@Ibu zTP2a|3$TXfq-G`evAj>_hSh&4wk25AQyw-0leK&e>j5i}l{F5rd*lOkG%ShJNu5{$ zoLw!VpR4q7hPZ2`YOLH^|?`#Fqhye07A^qZa-X+1{)ku=TMMjLG()D}QB$ftCA5HwnAE9B64QFzt zUtJs_ z=X%?`&2E!@eD*L;s-8@<1eSGx>M1ICvmw7?j#_#Mbb(cs3pf3X|00`0=` z`c|GiWOdm*>zG;56qc^A^`mnqC2mzmkSljDf4np%;PivVL^(s&zNe^e?P8wOZSetz zW&$#k8Hx!NA+s{<^vehzq=Wtnms26&85K%TJouBrx+Z4=?V;r%`zakj#EsQT30Zje zVX;MN5}bUFF%F)q$w<%6mb;O3sVnh*X?uvsm4}5dwO{m(aIb{(KOdWy0k8DFU^9SAD$@#A&iAT3CMa>cG}* zu<>7aYsz?ArPoV7=>ICRkN>3H7=M~@pZHt!K1Wcm;Hy2QoA~|%$NW-@4GNG;)azyttnIA(jqhATBa}b!DYnAsgp5el&(YRK2WBW zK`SIHKfkN`8|18+vDpl`(HTpHwgCnXX6Eq+?zR$7JqV+pPAG)uyk=U+dH(zjbcn!i z>o_FHDWN|*5JhnN(&E&h8RLEXok_Q3Rc5*4_GND4`XILtjN&gM&^bs3jT^?i1;Wot zKi4g06;}=l6YG+mmpHf$r9nlfWU`U<(O1Hlq!s`ry-vI5toe9wBLk)Q+wzNGIY@a| z`dm7IjD2SH3b;MXN$i&cRMkZkt?oN3;UHAy#vs(bJpKKP0??jxA!qQlL(P%)L;$nk zMYnP5oSn!MQ5x*p#5p!GnMP+xm&737VLIN3G2;;>wYwhC2F^D(z4vy^s=MV76J(JX z)(5M?K~k88Ua`|;S0b2z$`mKR?4+PRq*IP`L-b0HfrrY2W|=<|xb@1fySn5S^BL4yBA7VU23kRMvz^voRjejS~~}| z^J@Z%83H)d6_h(CQ`#YuzyNrp{DB43ui~*ZLV!eC28miS!M{yD%1SflPqT%YY=QyI zAB@xx6%_i_!L5`Xud!dlCuow>Ge4hXOSpbv=J3#q`Tl^4R$Kg!%uJ^48IY?~@~^8g zs?Fm(Yg-6t6RNQyA8bMUm}@8sG!5+5iFf?dr#&I2*K<{{AMw zB(-4tDs}MrS$lGFVoddf(&EAbbsV-%TLL;aOJ=zX?_1z~o zjAMZ6H$gsuM#L_rIQN}gO>zH9SD>e}Ua}*>$;tU}macPnhim<+ zBC}83oCi>-*qvllgxWqnc5{Pl(s-D3!hD!z($PeYA` zCPnOYNg*dO8rS!YjneP5PuT5rBd+1h3WPTAPIE;B;g~Q;=10S$;pVqo8xQl3+CW6o0q0!nL)xuaw<( z8U33{q-TmVbJ8ABhx6RE3|AaU6~I3Dc1M>q_lD4YtN`h0$b`h-C%Vu%q-BDMRglH~ z^3`wXCj({^?(_>lJCy~{((0gFfF=r<1%C{&-`)TTn+r~K{O@qZ$Sh*ULhkJP1m4VC z(OI$qaEANj0b^Hob~bgu6y~Y3CiOk&yr*47E>;v~Gt}#K(4Ay(y_C&xKRlrkzN5u` zrEp{Gm(ggFQ?7YF^F>qCJ|gi`q^4?x%#Ku z>dObOysT@CDrYdpxXznnj%?neT|qjLtasH^XgdkfP5iC_V&G(iiai=h2~2OROFheH z43bps;oKe9^kFmWUGlCwL|QPe%qZV`y)|@No!nrfjP;|E*ao&-^*OH_MJ?7k`9qZJ zXM^0Xd3d~t&6}uxH7t!fQ;8qCO;|Hi0>YoJ9~>3xi-TYK-P~$>b@6E5OdN@&L zcSmo(Ew@nCtGe^#S#^wjYcOFf$iUSukrWAh&0?aNP|A3}El*<$SSO7dJ;?ZL%$8-~ z%jUL7tUcDE$J)!fh->H-OPu?DZ%{kQ|7P&gw!V4GwXDxp3dQ7BsEb~;=BUQH(^(&91Ab~kTLS#l}F+>0TvE9~PPSROIN|nM)00UH$pUNeWG<_YK zP?qMglowF+-6wEh1Z%+?Vx2;_PCyC{sc-P=UaRF9y;UuOGl2|MrnL;Z937N#dbiWv zm73~BkQ=b&0|-`iXTe1#BlUMCMxO%c0x`_Gcd|uSl~#XLeCL$eY3m${l}u4jN){v= z!h+t5pbDMH>=j-=q5y2F-1kBWA2%D;5RO|wO+_Or?)=( zD}aem#vl(OVN-E%QCpE+g_xq?;$>SEb&*`F;4M5J%pAno>MUl7!KhH}$CH5P!3yeF z!p|)WE$7I>q6q|*K5=8Za_&{U^jA#;RJ1xWd|{7&LbRi7hL8paCKgDWX;r!fTM7ze z_ovMUH9pOs8m#)$T#edFWNxA(hL}l1ZEXwB9>x0y#!aeWkA~9dhqj*g4MytUJa z4qxSs&8eLWdl`EM*;G@{*BY0tlXAIl=1u`@ALjxZ*Q57+dq5*gwC0XZp@Wps{<#{l zA9vr-@He~MbY<|*K#I*j*5u|gR7kc0Z{p#>iPD$9*(}k1GzhfD5?YdI6HpIzUo1zz z?mI?&UCMAo!2m=$h~IT0cHr!i(UoQ0hfZg&2{_5s$z|9D&q}x~RZdAZgq4?Gc85ed zE$#zCibl|Lz{7LV!(PBU16`Shs4(Z`9V2=1`>>J9SnF*t`G&Gn*C-25eZoj=!d_Z5McWWmcrG4WDjb1hV z?drsVQK$}n@;^lv4Pv$utL4TL=9F_TGc0L3GtWWkT{Wq^*B2}94!L)tC8g&BNuGoe zwy^8v@nrxVK4ilP52!l0r@h(5rIE8{RLsOGXEO9ogO8y6tZq*&b#jDK1}=_?6;YVa zljUo8qGeH2eyxO#5Hgt^EGfJCRq%!2@mU& zk+aLEu%@0xUbu?Jhj+9-ou;V1?s4vY@T|S+TIu*ppR?D+5~+s=0U;N{8&Z=U(mAs7 zYFK|X`ZD4&qgu9TDFYx^HiDMVJ^xHtn(}flPGrQG>s$}f-QFnLfNLf%$nR}G^2QPv zv3}KSLNdMbD+@9!haqgh&~Cbz881yt<+^vE&N1G-F*g*FiE8L{`jEvsE&q76K+hZ< z5%v_qDnV|Px=6|i`A`Q_sFNdD1nHhdESkr3zDMbP&cD@U7AfBTz6P*J{c$(WFTYu9 zj`Jbqb*6?&TZIWPy4ln-UZh5h5jD@i4lr-Y8;Vn~cpsuARFeG(n??a?_D1X`nh6v8 zbj0TVTt;U|B1Qw~bBM2$wxWd6mro}pC2^Ksq9nQ`PcdWJJ&y+1>62+ve#J5I6b&2; zD`|8Z*=QQ>jg(N;&r{&JkChZAZKRh-nkS_k{5^I;vA17z1y?_>7hEUe#Acy> z$+=oZ8*g+2YEir5YWt5DV>TRYf0+|rT!womO}X)uJP8e*Gu>UYIO;|m14g4VQOJJ0 zMbbM6JK3?76;z_AeOj{&L)HRBCL#d<5w0O`uKUR6q0ro!x+kI((QL zv=_@=sp?7>o4+}99~4&f5jPyA1jjnlQQ?a+sU-x?q)8W9`tS|W5R!fLS#GS@i4ej@#Zd?kR=pm43*g>GtZU~rAPWHKODb@KxDF0=pJGtGpar0?$1lrjhK zar z)XLl{)NKjp2%lA4G{9l8lhrd9W2!KPwH9STrD0%T^WjJN=5;x8-oTZBfPmbN3t&YE zXWnswt~m>Ro&sC-mwULR{P&M}0&gGE(4QAO)hQNqOPm|?1D5PPT^wEQXj!?dI8U$9 zBC}&A37?KAWjG`ZE%%@Z_OWLq#mCYDn5>XVsj?8#eZrqCe@Mebu!p6FWu0f)qjRAL z!`?k`fwQ)TQl#gH|JZ$i6LM&W2bg*vpL3qEH#$aAd7LPHesHce-|sTwjbd{FfB2g9 z=+0dTg;<$IiWAXE#z%3@(7ZUpMnANyc6gUr&G%FQs_?>ndglit5LnO2#m%wt`16OB zcSg!#auyIwmYH>QL1$OmRD~LY??oqFW^wWRb@caaxBshi)Qi>i@)4P3B@`uld}_CL~uB+b=jdu=U6zeY1Tx7(s13D<5@3KlEQ zXy#^kGL7mSK&Z(_P52>gG)#j;S{9J=Zl9ONCwq~!WjaYB;abjSqDv}y+`!oG;q7e+ zDZI+TS${o``(SI{sG5MHywjLP{FqNkSUau+!29pQ4U}CU8eT##0v2w}m4=5nWq>BA zE?NEnicAp)te_#eQAu*7(F9RPem=~mKk z&?zE0qsmP%J%qRR?zX>-x+`5CR6^sWO$vwaOsqfH(fIbRgn|=Yj8jDf`Y=bzp>@fP9{G(j!2LCCUa z{en^d548+Dxg3+@X_o2UuzP&l2~R(Nq9mO7WaCJK^9osShU-8FU_JGo9$UZDx|hA$ z>g?T5G=JTBzwVCw#JDYJ%Iv2iYu>};Jgi(fJnQo9pa#?sO0cee^jy0cjwo7KX4Tk! z`8;td%Q{=M_W%MFV?Qd$j$IHop?ePlW0v2Lblm0ERxp&f^(z$ z+%09VwW*gQRsQijfeJWF8?^%?4uVKBg$Qca#U&BD8h<8B4%84O=DQzgKLjAg-<-ry z_Ws9QUyD5=AQwk1O19)Vp1D8n$=N4Hxc>pP&HAjJt1B2V?DcRe){}OKZHwzwH&J2V z?@`5j6UY0}lVhK|ckjJn(+abJgmCce;|I!#T+Eoxh*84e)hr+5$8!rlAm!>L0To(cY6y3qPbclclTOFFE!-lo(%YIGkFdB#ioEPULkB zVw}KajADU}W|y3y>lKSjd*LD{eL_wV-^$O=f2i>3BPc$}`rJHr+c}PyJcE||0@04USwAQ+dFHav-Fhvr}0z&(+ zypM0VK<;wVR5Z7=C2)bxanAlqgg4u9ewc2*wtaKkKK6_+!d1quby0v>)Vpw8!L#qp z8g+Hvv2V$78u(vvsM0_muXn>DCy7B?H2s2`|Z;! zJlMDRmgVCF1<%iPC#9yYT7>Q#NbU@3%5M;U=-n2A#1$WMZSI`@tjl>&u~iPoD-eFw zTHBb4FlI)^IDTD0B#L#4$hQ-;UP6$02;tFHbee7xuMPsQtl|e1%iCyaaOsb2)Tdt^ zun3ZSnKHh9&wIawk9a-38Qf)?(2D)Y-|8U@nCw^}`*%xsfH9F!g8q>>M;F`H*y8w{ zJcdCYpyE`_CZsEGPrj&XI9Mt`VD|L$Zw&_`B|yohHA+au@uT-1)ya>9Ck&{Y#m0@S zLW{y}C3$aAVJ_oTfJ%s{q=Mt&`}gk?qF=ESPAo%HpSvF`R6pJ*n}zlxcUk1ec`_lF z@KX=E^j0hNbL6Q)g64VfifWR_J^JsnADk!E-q;IV<#qKBFe@YFuAsS;n9g@2J&$#% zzt9cO&`j|i4H?q1;?bdUqKyOY_^VQm{St>8Pa+g*$pW~4^l+)6!6E26$p$Ni#0f9H zSBnCNb7d3g+T>5Ge+Hqr)MBR{S_XSa>=iW2&E&p`$AV->?3?2G7d*{9#iwE}eu1ZF z-qHi~hJ^AzFc%1KT2PK<<(>!4V1;@rPJUZ7_byS;qU%MEw)xUj=0s}D85*8uGGj9x ze^WAv)ymja>Q^Lkuhg_qPzR`9WhP{(e%8fbZMssonC95aDIdpy<;D+F5Hlw(Pu&uR z&@0Gw_@Z#KBpHN^!&ajb>PbqNaLU$WBS@`n+_~MiTe_OL89vXhy|-6BDQcs-T@4Iy z7G)`S*89r&QvxCU$zyfSnP#&GDmawn*vAjbTs)k6Y(9Oa@F896dbf8IoIdFRr2Foe z72)>+Xvreni{-BMt0>RL?#HcbczVu%dCz^V+IAD$GXXtk5(-1c#@Q5^{ov8aWAHY1uW86p&aQwFxdnX36KO?ADdvk;ORqN@#+(UP znFGHW_s}hs+}pXUOIgBvq`7GqtwWP!6#4MBS9Gf=l~*rftfo^j_=!R#P`G3?v^Te% zcn?2o<{Rk6>ya*1T#$d^;X|I!pZv5$U49eEF_6rPG&3vXz~CW`xKEipRAsZ-Ja<)z zVH!&0=f4)W&DoM@w=8b*r}k%10#v>KL)vdN7z zl-MsXxUM9qEvp8$F$_@XHFa(W2Vu#6LSxq_45ArVSsbn)+P=_vZ>wL4j>P)f1F5IE zG|4BaXX9;$+0_J{v$>nLHLmM2bjl{8s)N+d*K(lfQ?J$R`=X23pEPxKIdX^m)7|+SNHRE< zQ)xZnyuymckd+)I(#7V*iRS5o2OH(Zoxs%!3Vx2w>A{qo_|6^c>fMlLrya>%;!=LU zCz#xXln>-E5GdJ)5p9_aa&8<9T;$jd9MkN>Hh~37bckB2@Kp2BpuqI~qmyN15)DkJ zaWD+*>Ym?S8hlgxlur4nYG`@wz3@}6ltahXyK9Q|!QM-I9Zk=Ed|Yvh*^No(7$0AE zdzThoS#T`0x%TPaki&D9=@g7W`G)wx;|DYnF$zBx*Vhi3q7IvmzMp}Ez_)>3&WGaO zTG(On(ed)$gTwk6U7h2SKCDGB2h;eN>_Lsu59+`<|L!D7 z1aoYnnxPxCK{jGIhkGW>=W>GF8GiYFTqr@8azHn`GT9_cE9uZ6hUD==J?<-Id_VnY z0?g1_CGVM@CIXuP<pYO42}sTp62I@Xp`r}TT=LtT_;6;GN{17^5V&}ZWP4As2GdIw@?%QV(HbebxL%pJ&7j(b+d{>$2FDD){qnk`pKn{i`u;hVQFoTfx}^Me-bFEjk>w?DJAx`;zgAPMOEga$RE z>7!6ss-H)$)7XNn40p(_o3Jb6v4&MsIScISdo4Q)oEN=tnvG@Md z7%GE&IWN-))Xpgd9h6=A#WJF{qkrFq1*wQ2wK#E4U+f%wT?y7t0R>^@ZqCLZy9U^RdgrSVAQRUM!t!iA*;1KBEJpy{Asckuxix@oi-!9N+in ze0lJu?y>K_x*KTOL1zbt!=Dk-Z5+>t~l>dvRrQ;fo(z-A6=G(vpcZ z6r}p1^iTQz*GRFP1<5{Kx2tsw#EN!^j%B$cAZeK5&OlNo2670WPPPrjN@L&@4$c~Z z(AlCj8xLQtG@h!|kmgNSr=P0S1SPtynHjmAdhFpk)*ws*Dp+Qk){G=V*NJ`}^S`Gb zX$KSE>U|{U31HfjSOD7Pgs`jhlOQx*v>wVQ8v_akmS1z2<6PE$8--MF)=+{#`>tDX z6IPd1e;ku8X~Rw&-w7*JkPZ|2#1DiLwilZNm7;l|V9_CzHpm$BkX&RsY(srP|%rGL-?%yWU_17O?n7 zBXwOj+R}uCCR9^6>Q2#7K6-M}CTS>~yokii=0?e`h0~bl$}L^ePrF}N|G)Vrj)5D< zN){NB;Iat#fB#y49dzpKm8M%yUwRDKOYR5f9KWz2RS?QU>}V39)U{%VF48x^XT9zn zTc!zsBN|iG8yfrlYOm1J^@qJv-fkb;KS}>*2SQ8^Zst%H$MQ)1f4I^tTBGW4?Jtxh`_a`y^ z``&&Mu)HQWOl@HP{YZ3c9iDDiZwN>l%VD|qqp9HmN*SPp56wOV+=`cRv#YGla4Hg0 zFVuZazD>*7c+kc1K^x5y<>3+L>o4W-qr@NngI@o$={we&t|KBO?mWC=-EfNRe)J#W<yGepuBCJxA zE*}}(I1*2k_d-DIY&ZG}<)gDJ&GNbbc0n8X&fU(jzfu@BX9hpx#Kx*?Up$Zsd)zJ#} z#+_9y&-g9Jk#@ah#4@APX-Tzl)s)XKZXz#efgjpr%5BFoG`N4^`C;p6Q52q_gxju* zA<-|@{J)0N!x@u&UIzL|ga#x>9%)z9kC>=e3Y-$2lk&HdV zPoC5nTOQpCQCfDKGu*SuCwji*O$dbJXHkc#GI#QCsbdI;z+(JCoBRwO@!uO)j7eI3 z_zar}tVA3d|BElk_9&9WR?#}spkc*{Ql9ftV)%mFtU%UMsCA>>@|_AkW;L}?yGv91 zlG+XRGG4CgJFgHoPbcdGFAcV+qRrU*kuq`0|J)<`-`g}AS-Vo+{RvLYniN}LIy3-+ zw)~t>n~al=_%-5vU#M#Oaw{uDZU<&f4{AOKp>y{oni5qGOY$;~TrQrS9sVz?6D1^O znu0>!w8{7X=XKm+*$vZ(?xJ5u%>TM3SNL{Oji8UZGI zbiYg#VmoQvLtu|1JQ4Msot@DjSSWqr?q`#c$Nj*T!its#h*J6Cdu6HK!XV3W5qil{ z&5ybgWKHVY!;lWEdk2>#1fZ8Vbp9`Q$Cc6Y zD-#b0p$1Y68oa;XM+L!J(!kVR@}g_tlfIEx8Ka4a{2;fUDNb42K(~BdHIJ_SMY0Lq{j7G`kslo-yW^5d{irNV5qmd)7&mlF{RFONPNQY&)hYMZ z&M=-%yr*a7xV11G|_^HuUoP+#{Ip+ChkAa zJuMQbJ4%{0fIq==v6}s_wT2J=&1g?BLG#rE*io)0IEcKplBi;q%-2CXHU>HOVzuJ#5R#_;c9ku`zG|Vt^ z{tHL{{eDOXvTYtV15X?3!XK?v97e?+^_V-b4~otTDAHCTQa2#HTd$YpV>lO zh1rt6PJlkzrs*-+$I79bQn*U`#mT1oPAu>YZ0w~=)f48cgL%b^8@?;4xGCCO-#gN+ zORPV#yvx?k0`;mh5Ab+8iJ7uAZa*Pc;?(1e$s*2toEf2Wl~uM37yhS(3;it}={e#f{J!aDaFlJJ&uM&6x1S^FAwf%BH7)`Bx8qspj z@YEKjMysa0z&T4NAQS1m`C$IatCFfu2?CEQP-D){nnY*CmMIF1_npOmtiD=z~E&3zy@bghh4RG4qI;PZ8&OQ!+ci3nJaVmN21 z1!W_-!Z8bCDrB(hq;V_Gg%D9~sngOFcTSW(h4)xYvT3Qp9s!p8UrPfY9L|8B%lm>- zB?un40SgLC%;>foxcRth0H1!$t*3#Gs6hDE&0Tb137+E&y94Af#RY8Q<|WJL`}y+N zRdv&HBp8o&CnCB=KM3FXtU4q1pIb2ab1=Zp!Q*9$f_-EX(Y(7lF%P=IPHkj2aHze| z6fV>I&Hjzvthc5lZ=9``P8JEaLiKIV8^xTC{r9t?A2$wiSXTF(MgQEvABT9fWaX+V zuRduE!R+RIY(PFIcy_zQtW1wi08r)6-~IgHa0*`bYb{Yvz#k{PnGx~*anp9*T9eyt z(U_GkPHb4VW3>(UXeZ*KUDtokn%a1{_ntA0<=-O}NrcGX_&BAS%Hp`Q>D5-S-4kBCB*jUp>Q5akLPKY1D@m4_ITCh;>Ru?cJns~1wiCX*sU8=l0iIAMFLx$duDj z{6W?K9)wV1ShUaf#y8D>uVQHg89Bd>tcklKy7buz}iHxh5LqWy|{q8vFZh)7RkkFYiqz2>-cQIuw`1 zcHA5Xmip-s_xXzMr=}uDkrI76{c*gsaZ# z*+3YnP?N>%zmICij&W=EZ9z#_;$(e9sZxklqNkRR^e8{0@N7Bw`pS)>?`a-`Bnojt@Na5T&F(#G4{VE zz6HEaR4uNv_n+a}=aNcU%qFmP`ZD~dZz8}6(mrb-A~VT(Q-s(7_Ahx#)NKP>?cJ6txC)m`;>c_}iG z_{Tz9R;Xut@1-)MbfuPYEbaa@4E*&naj=-H0>khB>!R~mkB+}BqIL?2Z)={WC+f{) zE1(>z=o)9Rzkf1vrQ^RZ>WAe8VRg6LzrqpOgysh&jgPQc-?ANThBGIYdJLcG`S9QT z(IGKhBzo$fH>?e8{&MLk8cSO|d}*vQi$wvHFAJFy>Tv)06PT40bTQ^5@}GH_7DQOH zU#D*2Hdaa&5r0Jce@sO)oEmZVkbn7OFC7H@U(@@Ze?1mh=S4N+}UkNyJ zv}f_q*qtu4HHpFLoxLRD>n?%y|g zrwUJ5dGl5p@Ctuz69zUM7U;c%Q~99ahJ>rJPXC4Ar2m{gvQ)4{)Lk#%JNsue{72cM zEAMTMwVNzGNs6AvA%KgZUC_TbfGqlGSHCN8?@yyZ7)V9-XxD{@j6E_LQegPZOyGqm z@7T%yD|0)23+>r>Z6sXyX97PX#ePiKFE&`QvdURqeQTyGMRQ(;_urNd*#_e#ztJ}T z?w{Su!0bOb*U_&}{}T<(^u4Ikos7UU~AnKeKFYa|E z3gyg+J6-`-^D~2Ae>|y0TVTnTlFG_TKi>|q3W0r}c8c52k0(dcU7Dhx=cl8dvFovC zHEIm21e~vQPm4p(j7!W>J&r4*0%Op#zHWqQ=Qsd2Uws8Su{dsIWuWetr-&wJPLeP2k&e6x8G8qIshoLuk_ zm!?q`dGnai)9M5B+|iNK)k`U<_o(E~aBZEKH+8w@YjyX#Z-0-}TyjtRC~1#xcTdaG zRHF}u*Zh6Q#5QT1(9pY#0$Y1Oen>r@8*o;n5Oi@~7wsDncNyLm?tdSGe@a3oL*x0? z_ocV4SijGDFj#P-KSt`A1xZ->J15qAM1K}1M3iSRwR&2{rvo?Bu8r03$rdE>wJzy7 z%b$got|YopO+3s_!Y($b>2rS?_P2i9i1V1&XdG!ZQEAN#+C@~1i4X*J*Zey%>vt1@ z3vK3xDsmq4&uM{yI`{rV2v{;*sJNn=hqf;RBJuT~^&E$L-hRpuU9QX1E{L12D--n3 zL=_rZr~PcG_iLpFFhn1Y+=R8Q`Q$i3GiGfene~{~O>ycZVaoWU@6pmK#G@}<3RFN^ zAG*<>Tcjed^)Kmls5w8QWG)4;v$HAcA#EyJw+ijqhGI}l?m{vp>ccsq`%39SEo zTWw_Xmz`xon-igx*7Y1t|>MnRBB`*H0VGXv%!X-1i z1K;jLG8@Z7`^4jis_O*Ap;-Q?vGNB`ZtSj%*+xZa9#3VjS-8;NbUyK;W_xF#!~DbP zW1hE1REw5$A$2&DB|7a(#nu*v?PdGU3pYG`UK~rk^{}*=apn~k9&)!h+ydQ-`OX;T zcANe*DUdxP|E4^qGvfkk=F!Kx=$Hi(&^!Q##{V{MY!IDUI8scx_1Ax3z@#8i)QUU# z1uS#+nhg#q6+eiVn6y5v1hlB zi7r!Q0fUJDGp8|04O}aO>3v(|C-dNi+bbP>b;92AS_^xoPi9pml8x#CDFjtrco8 zik@E*#Qrt+@zP80o;k@#k;D9-$E`T)T3|Ia=WrX2vc*(TT*c?M@5W_87GVMYT=dIe zUMz4MY)Hh!~qf-k^bQzY{5 zP}vA~h8Ega{)Rj27yX58hC2Zn!v#v}mEH-^3Hc2WdvAL--eA{w3AUPH^7!_so6OG?t;8c ztebuGk!Y5i^LCNEmsbNi)$IhDG6tzjUp8P0y}u<${xgN{$<0(l{7jRcA{J}L%OSYg z9y$*y*3-fLcUei9@j={ff1j_-^$qxUC{}#s0CeXf^Z7?SCMmznnF%rhs*TX{RmTTl zb;`1DS%{tAA^CKGBKtok%}{mv6Lh-*@3BaC=63e)xeCR=(v#GlKgCqSSY zS<;I9op$nf#zKo)-Tq|3N(ViVptr`2LY0keU6`UqFO@&U7BHEaQPP{$w(>jND})+E z^wmDnFez5;RO)gjozaZwChB?@HN(ky2rlm;JopSOJJ9e2_|d~fD?n@>ZuNH?<6plL zK`neWNz|T>MC@Ew`)i8@#(%A}WGv#wqjBVI5?if9CBqa&{iLG%i}my5t>b=E71isG z8d$i8px+Ybo5-V{8OYc^1w_v?Jt+pi1f*n{{Q*f%)3Sos%l z)v=}W&%`4wupWunUbrEZoD^;HkzicMksDfP!Yn?q(_|8+Mr ztoMB>0w_W?DNlWEEPbNnS?*nde5)s7$-w{SLGN8K*l3m`q+5z!4y7*rkOT$#)s3@% zto19T9|yjp4m*f&;^!IE6!)q1M?U3P9#igk{mx zrdetAa|+<^o-9nOdKg90qKKhg0%|nF<4+4c=v$ZnCT&%T-QfhC2h_XhWI0IV2;SQ? zA8<6Lg9x_!MpWIe;r(^`DUQDZB^yr}?YC^UA8x0HUUMX;nb%}Wn33vU(p&x@&YXpX z)}pvBxe+*=1ci_|XiRY@VxHl*gMcH9IT!*rQ?cBVQ?LnpUl_&%XK`7%L3VG zanBPH9Z{MHTYdhaiuE+@Yq69p)93v|=sXkw%4+$-_Nh$JC(yxvj7P?q5IK+W=j$o_ zVe@p2mYJR4z4=U@5N@tos}Z{Y0-P=%+=PE;b)<7~v*@JmX!T_Vh<3TewKHjx^@r5l>%rVp8J)t#7Y+nhB4gYtJs`iO= zm;VXanpoqXRwsCJsN#ikM(=QByM{IG=sXD7<1Vn`abCo7MqD6lbjn>?d#)Vc)kbj> z)ySam+o|!pf(2gYC4c^Uvksyr37_XjA6LV;iXAwZ7pq~howfP;$F)Mg)-*99M{DGs zE=`JIWv8*cNb>!8l@fF?zA?MIyTDD{DLu_+(f_X2(M*%=ouRe4hda@)Sk6Hh?OP~9 zlfNGeqt&(s(BdJXpx=aD9Kz>ZM-YShJ4Mo3NU;jf8pgg%4|3mXYR5V!C4G%YL)Pu? z&pgPdDt4A9lKPdPKnf>7EVOcAWq1h6&|UrcxW-;yl23mRjvp5;S^xvOft*jTv$!GJ z3Y{PL_V>7xz;vEBx|Rm1&%f!4W)V!SUYQIzvZA6=11W>XhIf<%KX;DY#cXzT6Ss2H zwlF^efQfNHf652es*=Afyk9*o>c+4J6i?QZKY@4&ZxINQ?lE#(DyR=L@e}$DhGIgnGND%9Tb(RD&^O;4x);8Xlz|0O0zN5~iJ8F)Q&B$nI- za6R?XWn<5|NOqST(exW)~q?_Irp>gy{~-*8snAtYk@5Q*BCX7eU5|Y<{*V>F_ z*T#2R#VV~I-=CqM{Z#&vCe;0E*Tgf4)Nef6sK2 z>mEr8Yg|4vi&0h>_KsS*N`S6Z`sxR#yMu9|$|rvN@y~E6vL2A?^e20-bNBl6GLO0{ z7~7=^*u^5lm{3>2#29&nxHvsj{}Zd3>CyV|7Z(7v5c^h^q~Xt3)UR7|ZTgdUlYiD- zH-aC$+C(|)4|~nQ;aPEo>6^&XkpNS%`sjItbcjk9? zkl?jzoxI`BCR=+oWQMXvK!$Y<>eo>-qCtmAT<}J_{$DtX_Y)boGm!YU;TX3`eFgHW zG7}4R$Rf2-BXaxi!T#ef*39wM4$m~jaD#<~7~A=CMJHrMzrSbi-@C?WCY9i#Gi>G_ zQ+jNcUahLzodFPQwnJw}8=-A~(%y&HkA~{t7DwvaTGw;r$dfAnq8DrvBfWNeA>PNo z0Pl|BQU48jSTKhczZ3Z1YlVWX5H0fo>LT^yS5x2a1lDBTtaZMz$DyqJT2f^7Wy*Qr zf%DTV$*X=g9T8AoA3wfutR@oXXla90wcPKwti;&6CpWc9+el59HoR;6E@*bh93bq_e zhxK6B^4KK59?3sP{%Lc<0Dm#t8IS@eSL2ehF$5Of@b3cpJFu31!psCYmVjn67=>&-sR#(hHzz2mJLemU}< zusuJcBO$v14)rl!c#`yglr5P=;+U0gG#1K+o-s@WkXz+ox!xs(yZp6jv`F_gWm@Ne<}B6NhKKThNeM6plVV= z0w~)W(6EvVsC~`bTKlX3=XcpocUYe+wShDgI#F!xKX=K&B^X{?pSeNyReD=6Q{q7~ z#3z5=n+C$kIq@#a-``0yhIrr8qd#z@YM-j*#Krq7iGtq6Gk^ulTrQ`2e0iek369}s zi3E~MP5TK~{m*KiqTS~OL*NUKW%Mr0s3wYX4(Jt=_rC9JJOn2aHbS$rE}(zsgEyYV zU~tr*U4x7$_WM#}{U2L%*)~z&KK>4r=N%0-OisXT!w?YpZBYSqtN41`7>m2{=6e*8 z<_J3^Ts7!Ep4V(dRg40d%wCV*-78Ahyq6y~7`8qa09M z|LLL(Ma;XqlcmXVL@Asp`I%x&2&vc04Gk~`dwUOa1PdFtKT2Me;Ir5ozm0^k1M2vl zqC@+PbOu(+496opXg{I1=6^}i4ScQJoPB@k-GaUPZ1kU3jhwPM@OyS=-G`4&i09t) zp^K!V@4)fwdw@IjKjaw+45VYImzp?WRbxwY$ay3WBwugM&k}thuz$+u<`!Ctit$0x zbIl-|zWegUlf&!lUDOIexE!{7@5^Z4a%`rH8|xZ%Y7gt{=)??>^O|k6TukoR?(b%I2CgF?|sGFYr%==7l(|fb9}u{y!x;Hab+!8 z`@yp0nOma_E}y{I)BV-#U62n%{>G(^w^h0sgfWdT;6tF{V5WbiBmaT71;|t}Vt=xZJ)o_$x?YY2vI+0l> z^&^v;weWW8Q#<2FugzfTr{=PMcnWf`_q)rrl=-(Kwc~bEych9%!RAA@bTPRX!grp6 zi0J37LhwW#0}WGMexKxDWkNU@l#K6e>G8Gl7G6Q{RqY&k#$OHhe_oOy=s)a+;a1j_ z^|PJg=}*tq66EF^)$4L7TbmfhuC~8M{z}QD*(er3rnVI`@rEQyF|FNC-g!eB`f<-8 zhXffgYZpr(xgFF5Lg})h?B2h+l1sr5(1+9;R^bg6pU>Hj7pRG=)_dUrN@GUF^4}%n zpW{=8N#$EY``bLGj<|83)(myhV7`0Ld6=aC;e!O}v-xIRH(?F*YgG>;31~TX5WC&| zL`7OZkik0Zx%pS7`=`SHY~V3&&x5B(Jm^+k4Dx+q> z+)Xqs+Tek4c_~!zIr^Vx4nuJs@P;H%zaN=cL2=e9Gik_~j9apftbCe3-2A^e1}Y>2 z2FAP?t{XXBwO5DNfpeM3uRBtHU1VOhmwbm_ZM8_i|MawKxh4{(ucdo4W4n?fw^B<> zxWpf9ZU`iS=G7GD+^>KAzZEjt;IgxZAPR(?by_03_KipiUb>x()FA0#us7}n#>l2S z8p0k5X>n_6{|&7~&lyY$@xRx}tL7;(yVrkZ9AqgTYy_hxr}P#e?6mLd4X^06UVHhG z`t9=2U7sy;*0!OAuWzr>H9oH*seKklN{J0WI z`kx1*kk|(JiFLFisTfRLV!r!DPgRj%b4=d6wh>G?;VV6Z2iWu9;_~zJxkxS$&~X6| zDCb;`hgw;4(gqS)f4ffsm%KWVeGjX8+q{Nk28T2rFnI3UG5ybaDulvY7cT{Ctb5SV zUN?&c6Z@BUqu9zDA0fn&Q@#Mrh~kt#O^iVl$v83-$8kp@X2Fnc3-Bj0MQ%%tLsD(K ztnum1U*F^N2>Kr(@jwMZu0hiJfNjmge>*}~b7UC|&n(k6rP6)DLn?YN%sMJA<$VYS zvcq{Wm_wdSqgA=~QvxK^PDNNuQ)2kR&T}Tn|(}6udAox&4vUC@sanzGN7QcL1 zqSxgcL{@}g17;N2S`c90hhVHAtlib&d;YP$GtUI|%G@Rpx|m7B&+~L%X;u0jI1XC^ zl=b_NjO-7nf-w&IK`ZrU@U^qwFo!Wl9$zXVOYzyY!YdZ-Xkxi^ri$8vnQS=$5xgJX z)D4Y<$6dZ=9^`+t5N5awz+;$9{2%minG)i!V=toy(u7pkj{wuyJvKxLJ%3EY6cjm~ zDSgh(Ygm~NqO$JSl5)-9R<1#^?EBl9n!k^>ZK`&drKXE7SQ2XLMt-tXrn_DuQ*4%d zdb^YE)vFs58>0~2gF^R%6;IGhpU6wv&$k8hTXckQ6(_T4$_0QCCgD~$^hOvN zf7JBn;0B4**dp1AR4t>hf^f53FPdS3tbXZ|TmdjB)J+?D`HBDyEH*Aj=x;EoD;r#usjn-Hw{*8%} z*dCXmN}FZ5gZ?`ih;2_Nq}%K+5Qy!R2{O9?K3kZqrX9rn+=$deo&v}aTE66E;}kpv z;Rwt}nAgFCCw8TCP^pa`wdr~oJ~hkU%AmwOB{=_h7UVI}8kob^Sc9^U!E!pCVBnhN zwp=<9wlxV2B7b0c_gryPOKdxxe+kV!Bcxj9v4t_m{WWrHhL@+YmeCfP`eQD1v8T4-Z-FYAHQd zKPtFhz2q{dJjcen%&!1&o|J010lO2nzQTo0OXMIWeV7G&Tck-8Q7`AT8hhUb)%d;N z&x;Cn#`$8LJHR%Uxy#xYbft;|+W9ezAk?W$l;1It=3tbIb1$Gl*S*pb@mg;vlB_c+ za@o_k+McoXC*fc@5P6SPW;EYwUA=l$>2ULt4H)et$DTpdFBVk+1VkoaXuQUkz|Ra? z?xwWq90PbEbAeB61wLz15~sdnHf>gOi?nJD#k|Z-thO(U1?euk4O33#%`EksW_Xd6 zW=)O*f4Bquw;QLq8t?UUU(D(8c3gZ`6%gCeK3 z-e;)8WGNDLj04@pYbqib3YWcK+Qy3a;aEa(cTpOBN(1=0o#a?!z?rY=iEKEWl2{Xu zQN`pHw`Cvn@?l!|&~K}cPdw+l&fP%b#T&hcB@N)zJJ$-KZQnfChp?+1l$Dd8VIh2fd~k~CHit>t=(ET? z#zd)KiZ9phK$&U5I=Sz@Cj04tK*3^%R1T={q@}dir^DC1E~Cv*fg zd%;*A0fUx**R?ngTN^=C9f#cAPby2j&w94i%FLP@lN>aqgoT83(-48w;16c~EhBXg zB4~`#I@^ax+77tyv@{LJNO*i@I7__KMDaMcgrc0v{lA2#KWaA?iIRk8AEDijN~OU| z`}{I0-xtsI(tP)49j*284e^}NCoClF8t&^Ap1{NbtH}i9E z#8BNoJ=)>=xVSR}3)dSQ+&w>@TwFpYkYs@6==%?Q5S5t>2FZp%Cc1GjiF;2#tTaS4 z9D|=wCa?T@qG@yzn|498=0XJGUg*2o2KVJxg;|x+xd7^oz0zjw-xF>3LHpxwqt{bG z+8#7Pk37Um`iPdjFBIiU%70qYKmQqQz!DT{{td0P=!S(JQ|j7G)6^Zfdyicjy4Gr? zd+0Sj$6`}`&KFZj;t!dToH8Lvcv#A#r5-T~5_!V{*;$|vKPcf@eYLZ$Q}YAv-7W3J zAD)EQe4u<|24vt7yD|lnaq3ZuT-Lz1XD-vv4t&OXo7{lvt?x8ZZM!q*s7geCyh|^H zWuo-Gw?4cAdkAVD)3i8 zgS?>uY{PGIig<6uQj4g=fb&8q>#-7p7KZfEJo;rp`}pPW*+9Bf&8kio*=`E~ZLl(| zQn>BF?pxQe0xT1JG6*lD!4fJl@cfvye}&M=Vs)VluIsMi?u_3mO4~99ap1Wj@%y}* zq8#1jJIPh}2*3uu*y;=mJ6ik9?PK563ERt4xjKryp{t`i*e#}0`U85vUZDUE55`+~ z+PU`yZ`{9M$=GyS^4VA%HPF;RY)Mb;1E9&6Xx^>JtblE^Dg36^*5egw*#rL)pl8$C zv~-hPdVU;D$tMR0EN$_$^ zx22HKR#P?|hU$a-q>;-oLbi2IIxex98hsgu-CcHR_b6y^nDTBosP(_(D2v3WVQYBL z8@6ys2j_+5JNJ#M+?x~ts$_1n4Z2I`K$pPp68Bo*@fp< z=%oVKV?5YlEBW~g;wwx@y0qmNg~sTixl11}k@(&+4kllC4MD%*8~URbUilkN3#HJ&K;-(@mYKN>I+*mwYK@1Z14dK;Wyl%ZfJs5;&1Dk#Xp3 zPclB|#y*W}WA`Lk1Jk;A$X-%U@1@lJMBo%>5cOhh&j+@bMm;Z(fConJMDn{X)$81}|@bX31YUuaQ$^z|GABj*ipTTZ2ck*rGi-8&k zDtn_(W}IKsKx*!gpRiwVf^BEa7AsrumP~7akriLjS6p5tkVuWw-SeD>E!?KQe{lRb zXz+?v8+|3|mO)YYv4-i4*5%G9p$0GLTOzxIZmP8P|Xr_>{hE=Vqf zLs{=F+TA4s58nhjDc=yQkKv^-RoDlQAV}2Gg_D5Hs}GG|yo?fd2{14!2Bu43U9>X5 z4!66IOV&J}&l^6luk%@ZRajkkxHi#0=KcMNskp|}*wu8$E5}IJE=U;qKKASyH!U)A z;;CVkt<7Z>O}#L>p5HnbXu^W%(SV#uU3-Dh{@Jge{rs$e=^YOjWJ=%laZx`=l}PiH z%^57Cd%RCkaVO{+ZnjD0y9eWHp_#G(A&7U@^t4HANncN@hk%-rg`1bT-Jp4CfO~Ek zb~^<(AC=Do+MloSLax9{EC@qRalZbiQqZ$+3opW6<~^i8 zYUPKQ7`(p1(vO=#ArtgKvMoi{PrwLh;ZJTK;%=MI>Rp}L}`a37Cg-0#r&RYEbe zh+@6WyO#qXT4rU2-l9M z5FB)aho_iS56IXw+I}QM-4u|_AI=cVtLet=lg4a$HA>g)cPLEd`CRdp)=TT1FI{D% zh|vr#9v*d#-hSwmRkp#OL9kyYvT|iZ^uKiHKafXw!MTW(#5}$NQ_z>0)1t!>mR)NU zp9Pnd9fj`emN~;VOpKC?nE%FZ>#sgkX8)@WKNl=pMo~6GsY?nL+)shs6wM;jf=1>C z<;Gs=N5uXWY;5csNgJBWvNUWAjxtSm%gV?eV`N;Z@Lbnx02Pi+TrYl_xuRi4VfJoy z7I<(@j%u*SI?kAfn3u*}5&e4S;PR}J(7lkkYC~k0`xxN1RThkA0U+Wz1$*q>6yG)U ztvJ~0;&S*c5Jay9`q#E!q`?0~2z;*OrnQJjT;8UU?WWR_^RtGPG^cz3!1gis4ai9E)^Cq5d>Z?8% zi`HEiHJvz?^&6VHT}C-~jXx~}^t>=sgNFHGKp-r=Z!DV$hLoi^8+UoYdpzoDoz>2S z0Z8Y)S&X1*Tk;o#HlrgraclA;;}NU6LanXCSeeHz^ypE^;HQvU5YcxGZ6eh~kvaxP z!H&1o4+S#M3e?v`=L;2giYPk@xgQO3YVBRbr@Bh-zb%{moxShITBIvdJN>sm!Kqi` z@6QKaWt%h1^Zfx9CE2tSRSu~ykJ((i@$Z{@&4>jH^W3H*I{5l6K$kCy#k^7TD}PHLafQvY%{IRinUnPgZSp@4U3k!}5 zMh>wSs~lsWCH<##Qc7bOTnt~iShr6yeL$NitZ-LSQ^WTb#CmOyqYJiP6<2~VQJYE% zZ#}ER6X2)sS zCw-jwPLHjZd3|n0yli}0ZXwTJrqClwo#c$nSHjbft0+f?8VkD28i?TQ$37mm1T1Sg zewXwTDQt1c1*Q5QBWx~Ui^{ZRvys}bYeZB|TY+OX+MIo65brlIyk4BnI}sPdl(2p5 zSdCosr|ac)+@>Jg?}{YD^-|5=b5ncc_1)3C`^FUwZd|uYXeggfOI!MN&{N)iY<=ly z$K^vcyQL3i6`z#N;}<;*zumPmXk}MiRfOu1d3zR4$~z0;>db%}R>gCz~J+sujA(u;jPzn7xv_Q{DNvJ(F8*-A~JoJnVr3Nw*Wr+>tjH7Ulux26_Eh$+1$2ymC6!I^^H!>Dw(7+ z@YZ$|9@sq`wZ@+$Q|0y!H~###I|RlsYTY-l3C}rf_Ev{^k1iirR%lH|>Boruoqz%N ztUU=mec2mqXG8YcPA1f(b-r~-x5tb^^iS}VOLf@wlX$r&IKASyw_nvqkSH38 znBuSePFTN6D2&#wHynw`O1h>uOs<`bVb5So?tK-aHOzL!Hh`~1qVv>O$U{}ZAfAY^Z2B}lWcnSaUbB_KC(Vy*0e=vT#)^bNIwy9lsKR{Jy;rL@AKWQ zBNUxInY>KfLDJ04eDJ7nP16{sC1To`q ze*~tsZl2K5LfWy7G=wVh+mA4?YJH*OQ%8ww&%@zM#R_AK>Kjc5bM*7G!#m^e=j$2( zo0JuLL9qyEVrbkZn5&@|5ICU+;uC()qJHF@E_@e*?9?UBaRSjhwKgZ{J$S=u-u)N& z5Wc(Ll)$Xo2QZVQk2A2dnw)Q?{f)nXM9xVu9+hPcCaWn#M7)UZK)9*CKp8Y)ARB=h`1#ZI^a+thyPsRMg+W=#G30^`8l=+^@q6&uQ z)nB+j7T%^G77ppqMy)3zW83!GhHUCkop{NB)B0-12^D|>NZ-Gy1#AoL-W+^1s@r@f z-V0BrlLy^1q(1 zHf*%QfTMOoI}&oPiW<|5-9uG@SGzdXt}Wd$FW+u2tm0pm@G3zD&-M#SUZCE{tF66s z`H^x_yy8pe9GRNSlJ1Z+Pxpwn0R#Jp1%+|rMHrpdq3)wr@JR1q?_*(RR)%wG)7tpd znjAR1&mawS);ZOw1)||{OAP04i5jzYma!2OKLUe)Wq8=~374n_7%7g{)^5N^b^77s z*Rq94xAUxmdf>j=jOHr3s7Y+MI;}ls5zH3Ml9c|(s1C2aI~x1NOO!F~8nWq4chiqU z2ACcdWevVK-Hj~X{ML}f%J@h2IW$PNy)R^f(Lzy{y4tK-0H4N9{RtNP?1b##nazU+ zn87o!KvEo;XV)Q8*CZFqMI%poE*_ly8jP9O@nXJGPLs9Oww3I*zHW370{lLH6`}ni z-A8+tRNhKdXET(45_m~aY{|T5*A!rzU=0n5xV)6e3IJ5ZI%syWa2Wc~(nZvn@Pm^o zpSGaQX8+@L(f+HIWx0|&CqLtSDfx{$ExYTm6u<2!acDPhB`^O~_efQ*;%+Ix3SB)D zC-nrRq)bQy?bV^4kY@QD<2o09=yc*)Xk0XZKwj$oL7^%82rpP)B}060$iDxA!3NSn z1g3lp6Y=z)G*4EY;Kq>4LOTs9{X8$%5+}K<^v=EgktnOAi)Tl_$m+mQ7>D_ttOhgk zT=u>+Q_p~Zd~}c_5yDLJu0j|t;yM@4=uv}%ip4_5tpUwSYh{=)W2}5a9GOlNV(!!q zqLH~3MOz_NuU}gTN;hd;G|7+gG?Vu2y==%E?k^`m=7J`Y`Y9}EId?r@`XdquL{7kM zG|<{HbqW~13E}t#SBwc{&{2P1X28pPBoJ0vjIA%D(Ni-Xfpk@$m@-(!Yw12JHvh4! z4Qh?=E!3j_)$9Bj&_F;JT-k9Q= zKY%yNu*%}Jr5~F{Lyy5;wC3Ji3)gcq*LKX%7|bTIOgwL|&*0N)^tnWD@4j5(r)Ix8 zLHiMzglEsx#;HYJa{%=C>|v6BA*X!;5Ck-rY>5Xhd8h{9LD!kUg5iSosWEs5Y$?(= zU5yu^(wBTE!;RZa`&ISkbmB2stHqP;uX2R*6g-;BiJ+O@)UGRMj*6s==;2h;y*e6u!zK7CcN)` z#}nLjygDgcpr&;X;$;R6S8N(&9?bHu(AmsAwvBtf2%}>Pa8jnZ9gO+_i)J>V`A@R< zA1ifa3p*c$a;i&Egv0vABD|K+VZ7@DF>`e5YTFcExu`DVa*~n`nuD+VwTV6{YlqeX zNr=#p&a`PB6Laq)K(I%rP@aLiAyN#(Ej;>Dscdo~&whkrZAA^17U)@DftZTt(|J`O zB=2UN@Tng9f!s|S7Q}&uLu8*(W~jM(MCC^vbh&B2{DOis+KFwpQoYi&Z=!`4b6zAF z)?9ZP$Z@3m{AvLwyaN`UWCrZ1m{f(&h1dm+>svyD8(RO8gw)29ts!s#G)cUV zFA`iz{VES(&PW~nVpwnm_STmq#Pd1mJY&xKQ+Roc-ael9fxuK1uLJkcddU8;$#iVA zBZo)uZV@a1-xFie`)%+clRXBs9_*joDK5l?Om6E&*3T5)fgutaJ~PmNjNi?0l&SaG zvqege9Hc3)f&Whf5|iupbr?ZL#s~iNM#Ho$Eni776Qx!(y7)qdSuJ$G5Gh-f{% zg59@8kksWsbspDJOPQlE(QdO$L+xz-Rc0vxDY zn4~(n9VdbbPtUO)He#iVQ3$3Pl{V!Mb|`C->xK{(4WMN;+f$JZb?exQS)T^vR$4WH zl^@3E`d~D)V>sQk{nR3akmi^aG%;SWSfugdQPScEDqI3n!N#!&Sbb1Q=5cT9U~+^$ zJmU&2{$^Z%St}7=#G>r4yutrWX?!yC`9Ghywe~XgYKF;T*KLyszBT@&@#tP!D1lAR zvTt$UM>1t)!%&k9);KQx2^}*W9hSAoi!dm8*qp86ye69{3PvM)Cgr>DdJqg-It%ZJ zv?tGUx$Xyx@JQYtw4AMXL#~?B@ZFbAAQiX(X<<{~r+8)c-g^>;irOP+6)Ts*9CdVF ziW4AXZvBF2uD#Lc;!QIcb&X`%3XzrVuf6)6C5c@o6ECV2 zZyVI7cix#WTgk{IxABzpd&)$INq;@S|1D9TIJtg(W3T;S7%k;onBdw+z98 zx?Rr^A)W8@ZpP^E4rL~Qyey%~DlEU~PMh{fjmg71HPf-O;_dXu4qf|k0(O;LI(iY6 zb3V5cyLhLM6pdL&Jl}-ulGu8u%cSs_T7x18m4FYT>5*}8CJ#qod*UGU=)O^+nvzmH zyd>{{JA$^`|B4D79;9#yew7Cg10q**<}%y10$N(DDV!d0)f>yH(3ST=3v+8YbiL7G zoTZ10?iLBo0*cA6&M*Qy!yQ=Er$7Wmm@DgQGNhXRgXt}Urm4oD8-d!}$3%+e4DyVv zVRkCol02$g;RJ`_KfC;k31m+!nGJaKJ6@)Ifpy^r(|HPBGcMR&?T_uG78CrXqqt~| z9;oD9+bG7~a*M2O6e# z&~jm*c_kp^u9v1Y$)?J$dAfpezV>T=*?2|Yx7qQ-PN5=` zhRVqwPYG>2)8!N!otk5L@3r_JV+>YObz&XCiK6H0IJ-ClAp7??26i*HLE zBz}LGk@a<$g5Qb`?$BpIN)pdZ`w?(45fhgS%>zw0mXJI%n)JX2ZwMBvc=dN-5s#1i z7!skyo@c$L;KDUGH75r@CsOaw?)y1uGx~XacW%vhMGuGA^T>1B% z9y3Pl?M#la#316baBWN3A78qLTO!E>T3GJQ@%WUtntj<_dg{DJmLgKVW4E~VE%1D9 zYJbaVxiDl%M>jaNfNCh82)Gc2m8{D%cjAwtHo2csEWclgs+*oh9S9P&C$+*_p0ZZO? zA-P*2csIlxB^Z}3wf!v&!^<$CB*6Ey=N<>R<2F{6{fZ9kFg@v)W=n~(S3CWX^TC+7 z-_;9-4jOfLKMEh@WqsNa^rS*CzJkrgEu@>$&ArFp<@0XDEWuh5zy2OXmoCHECOgXS zcHEe2og*!w zDX7pf>%Czg(ZCK!5k==9VQgEVg4b`Lf}+BR8QY>6M#cMhgWH1WwDX`qv3hl&}Yzmm=(elF%-u}W^Lz!w;KCVe7Mkkk)^rhc`o)PKE_lG%OsO=f>@l`#@$klVPn z{ukkMe*a%*hc>_zGxBLIY>M)v{%p@p`A9Z6jide06E;3tw{(5hF*vR<8o{BUiazZFkvneS+Rck zq@zOU`Xx6p;$WVGqmpfAOPhg%d`k4qB!2`L)Jo6Aw9kSfU z5j9jz*BD2cLuk)?s~yHM$S=IW3a={43Z*oCsX``e=Y{2Ce}QyUW|7@Qzp5U98XGvR zww)b69_l!y>ki9*?WV+*cH+ID4|FsB!^G`xsqv!e(WRmaudFklL7VT52Y2hJ-|9={Dwj>=a4) zE20berGduN1AGOp-jwU2eEZxroOD|&6Efo%t6iomWakUlyJg6@cL5KzH5lt$Jl~cR zj)IQhk34W;F6X&lK*m{umrKwz5K?h1$X<_=$S|{(spiyc_(U(dc@&!s6oloj_N3(wZBbDM}HcSW*W|iB1wq@p_m5`!;g?zrQc5M zK;wj(eF2LDn?UVC7})ze+2IkafcgV!$A>nc{HsE#^e>3n@&P%a??E5my?+3@sZ2pV zA9qsUv<4Y`Q>5<(+OMIn|4$@q3{(=_U#5Nm&H+YyRY6}j)<=yEL;%<9E0V;wnb-7? zOrS#q>7ow3GOnROJbY}r3Z~m6-l?JD$fgBs*{+$^!gqUg!|N%Y!Q<4Ko1zPf$eM%e zqK<)6m>#RR+lcW&LRo023Awrkg90P=+;6l^4ZILZR=Q(Gvow5%!Y(YOQ6FYhuuj_h zol8O-E{0}H<~!%V7c;v5E-E;70~V^~dTU3DG?S?3k{4>ou}5=?%Ug_qfk5qA!`pHs zw>DYo_c^t?TJYQF<~QFKXT8ReDx{b9m;1a5vqgAE@;Vu37;Z)7AgBWBKqf)(?NUAC zHoStVWk|)04>a?)dY-t04;O&Y`@vUcKiAnyhjFaSp!yN$2s5P^#6fbZhQ{|YY9!>4 z{Gejf*M;VyEPY47O3+=@4cvd{VaCf05FvwjmqClY?dRf+vnE-#al^GpQUNp9#pFNm zt;eSY3+k{?t*_^_Yz1oREQI$2F3^dq|(IWHh8l<9{1abwQ1BhU;xq zNS=TM#tp0(TU4TNP|<{_$tSlKrM98#!I;gn?oFr!?6+bGmEJOZyyzT{6b?#CF#5$% z=8L@CzPn4x?f4v@I1B}^hp>89N6px$9zssCbweVcNc?GdzW?V@+TQKw?LXRCJj?o+ zaa&*6jW<-Lywz2|42S0dGa_ zb>izAupq@S9cm`6FbRr5=O~uHTtV0_Bou{gFwOjT6ss&O&ZMPzw*zoVi`bBtwOrOs zFk{$h;qz;POs?EYpqa26RG7bW-~RAOui1JFoP*ml>fz0v zW0*B4t&lOX-!!cxvv7GT9FdrGPD858DX6*`tseIre41Y@_WR*~yo>Fk^}a|`{z2rA zddPEe@c9Aznu&^{aO61nik-);r@N}-i;E92v%ea|L92m%`fx$Fl%#$J zC7pOSDB{PqU2yPW$&?GZO_LtnjAxnsdw-Xuzz$3SKNyCVe&C^zQjr@-)$aJrH+!AUa4G1@>!l-I%g+p~$3Nlj)@SlxM z5!kSvzyqP2V&UV{6gi8Jlh>u8dwg^8wTv6^NvLD$8B)WT=zNxl44b@Pe;cc~6cnRy zbrF88L@1o;1t?pepp!|B9j7&)OuY7xb~;{0vd8M^H64YQFTEprWmr}4O>5gfq`Z)fz)-O8QBb;}LCESKw8)}ILb%a>An6|n zbqEZEd7aUecci-ruX_eLiN6BeDUnlOouN+-Ypyl0b(HiH{v;IEtLA7Qadmp+u7>Gi zV0?GQM2PE`nK(2`I-}FU@^##8fd-{@&_nb3h%~jZbNtcKQGEU*sT~6;mn#@J(=0g& zb)b}GoSEv6Dlw{20mVb{LyQVz@KN4zC&J}}6!2_ed}fuzYX|#Y0`#!`X%QcY`5n#< z0?K9^@AsqSPj`@P8KgVHZGp#MFN|`IhzZaW##P82aRHMv&+g{b7F6Qrn-MH`iVWW4 z>u_~McFg4+g6204={XuIbD537zC&9`Cm3e}=&zXj+D|^oK~pn4!y?0_rluyuVPdi8 zx;-yj>ajiT2g=>*ZgD9r5fl%^9^_fE+hb7ljy#O(&?c9=QxUApO7& zp`E3NpWgUhvo7SkzIdo3DYOIcgHzn$Pnp2mmyv6*WlCd-&`38`{!3YC6poC zK(ftJ2u@W#);O*D1Q2ee3E$-ap4p_dDriY#dU6|}RJboF$PmvLbEA0p5yoe_CUWl;_c${zSOWk@F-=&{r{RMb-#LR^ zETPXmPw`BU`OcpNF|p2GR1gNiC0cH%gV0fiafgDKaoU-;F0d6wg2lLO?dqrv>56Rhg(4sO*AC0yY>Gn$O5wL^ zC`5PCV3{S(lYtJXh?SAloeJ~zAQ3;0J^316*uJQR<;hM!_y}YDQ{ub9)CBOa1k8%4 zLZ6_wtN?@gNQ?_)4;EFZ^lN~~Qi&vhWxOLcdO(1NA+>5SVht>P?Zoas!6C!=_5btb z%vmlRY|Ln9f$XAa0qwOVFcp)B7OmZxkKS6gYG8zLcrUK`qUG@+O)zfNWkKr(9Dp8= z3~h9za)*#}&=M)SD$-!AvLHH^eyc!BeZd=T{iq>yj}Yzy{u(T-Cxe)X4{myb>jF{8 zFsNeGzX47gNKyds2h>oFb)<2ek4-vz1^BnEdn>U{8E3ww{@t7EdM_=VIUK1ntKuFr9 zUcoe#1Z+)Y(bF{E2BD%y_nCh}p%(0X#6ZgSIpE|j_m19!IrAPMJ=|8+LEd@!;PKP$ zLXmt7+Yh0;mQP~-9Qm{j?vI#yfIu~Lnx4&-2}KR9NjhP0{spdnJj3OJC)FL|r011im*|wDe9ugkE>p=ZeKz|xj#ux6GRSPgYM({+aR?Qs+Ov4ktz@2b^v7IdLDc!q}B;DuO) zd)p?X75(TQPRXpWG&=gN4xa!0ofN zEZsnHvdGHvj-(LT;W{~sUikL&(xP24%sjPPNadi@$Y!rhP;dIjZ(#^1nn7+q!`g! z4{J3D3Nv5%-4PJBM1+#TP@AYs-<)A03O>VyGB0xf8xF7pvgY0Vi+A2@-&TeWuS8vd zHty0__~H0zSDj=`Ofq(q1k>tfVt}$w)lwN8;)o>#O-{`lMWt27VO8E{!FfN?hw_4a zkLk-kqUk<^UH7;OuI_t#9P(F`V)yfrL`c*+UW1Apq*80!zG-5lhP%y=R=1OIshMz_ zrwczvCcDN(@}i`jrce|s2Kdu2c9Y&+#h6=!hb-0aFPI`PFI5iHT)COp%0HP1?id3b zxJdhi5AS={N01)Bz;B3Hwvs795@=-@aCBu{C4j$Nx@^vl;uLJ&S+YwSQ!wJ%hyOG_ z-aP!Bc(APz;n^%XGMT29bxr@yLuP#wH${b56j`ExT3g-TZKqH>!~~qQd1m7zh z_1>h+Fb6MdPv;(GGO50)XVSBep`PU*AyHG2cm6MBj)=t-vO9ZWe{*U(3a&!3kMr#b1dZi{J_1J1 zMNbwDy$sp@V)M!2mPi_#A%1vFQBL*x!gC)$pnmoOxQ<>B-1Az~hW49GC%cF0R17E) zR9>nid4x&uUyA!#=RBk3RIaofM|}a=4?BNq6f)0(W`{(us&Z`);ba`oZ7lp;`eEZs zr!q|8TaR6}ais^_Z!B~?S$>4eL%98<4Yxl^N%!-Y3xpgmK5g&Oovvt)4HepDyBwzb73`vh-XT1~>Im?^Iwi&t1 zn(FWB6-jsH&FL+I4;YEg<ZDxti~iQ0AsiBq$fW}TB;~4Sw;%^=gGt1ska17MR$fG6W~9YZ^7X)g;8sEDz)^3U ziEo$DMV@ZEJN6JrklKZ{a!E63=x$Be!>9%=+I7RRp5ZUBr)%=%`hT31{#fx_#-Pxh zUD~(jmb?lSR$>8z`PC25gl3cJ*b%-G-YBX{C@QiXh@vEW@8=+4uH9d@nOah z>_tToq3BO&cLw_!JbGAIS^JR?ht8!njJHnV(=IqzrQTd7ta>E|jP)z(7dU)&1YV5i zuT>38SDl`3O_rt)r1Ev{D;<@{C6#>KU_E7a=_#hFMe*iEnxAOpD-pHcLWWd>)0_6& zyF_qsY`q7KN~49Fr!V2PtzOt*=D!%Sq7?Dzg(&zCX=p4_{rC9&`ImVVR7oECA~}4u z>;m=7H5r!88MK&a2Jti@!QCW2y7JKNuoT_w8KhW1BiNA{sRX=xUF(zQs4I3-Yw(u@ zRUV@7I+t)5Aha5RIhuy!Oy~Nzz0BUFF?bNQF>ce!M=++tYD2vX2DBIsGk>AKY##ea6Vx%&kzO z(&2t-xI+Kw>KbU*fUVlce~JX=kxH)zm#1R#*w!0WJ3{`S5lSTZPjF)6?kSRu0$@+^%G?ND0!>>XcHSK!K4F=ukv z>EuAcTHB-_a;vZo5{h<7E1CmI5h>916n8qN8gKS{a16Zzn)*$fd*D3q-Gyk^2kybANFH-6 zm=(I*HBbQ{a&)`J!>Q*8sdt65S=<5{j z!i9Aie?||+%O>-W#LjJYs$Kj-Ffhys$QX7@U*_^}`ze0RhCzTtEX} zk}zGw4+=O64LJ$Cdgw9c8hpjtgR60xAd!o)btoFZAuXbst+a_Ecl1`5+rZcN2i0^a z8wJ}en^_K%l)t`PGsC;wG)lDE^hKx)DHLYjvYcJ8kHmdj?%D-*E*wB|NQTvj!G|xI z4?YteMXdqzNs`5dyolk6%!bggmW0}g>y7X$uTVvG#>!><~!s#C0|hK!_k7__Gbg)~`J3j*OWj9?nb?f(h93$+v=+vMkn>4-kz z5Nwkr^UNvIdKt;MbnOunO17~nkv&LCk`bDN{PHzdCGRqJ$i3_CU(4GetOMB1wsxXn zD{qWMgkeB3opJkx(Z`r%65FsYPn-fvQZMuh3{eP4)O#!xc-%&gPS)Fq>V&Sd)N#og zj#1kP@-xT}<}6<;Qop5^CvrR^%~S zVC+{rbO8=bGz1|(J@mOIi9Yxw2U}B+7`2^952O7j0V@j&75?tXTTb9qjcFnwjBRu; zr?%FqloS`>6kw=PH2x5OEvt&US}FC-a-&vJLyqkei7D z7bR^LEY{0+hCq^-4~_4sFL^lx$7{h@3Mg>>hHHpTi9BITEl!7W{l0)J}M!H0Oo&J3&2%%``=2J!&)t!J?O8suXc4 zSOVMn5FeDbwPrTE+Q_s0zK77MPlxSo|WOeveH1lc`W z!3LNUlDk(*8$HTQ_sRr5Vbzc*NXk4QRf5>9sVG+{>~v z`PY_ROHfH(KS6TR1zcLpVXXI$L0<8M%bxN*1*j8k+k)_BH*Qvz(OtZ4AbE-4Tpfe! zCd0eXyvsB$G&zwvhb**I-)9`uS1?#NWN#x~dg*`PMj*vI*%*M>bK1XO*G}$EsDP=qu z6NqMMS38HR7z*C%Jn7|9N#Wt<)GrgHPF_ACJO-af9+0^uul`I6lGI={219`F2Mj|m z&}IktEkLc*U2l(b)Q?1Gi_Y=wa(4HizLN`*;pw+^psI zW!SP-=cFG4mz`2Wl7LmffIa7#f1^x>8}HHM77zq2%u26KAv;KDT_^T4kZU63Hl<*Z zpI~I?!lY?65D-Ec{6-ZizNtTjr_y`3?vw3@Yd8UY_LdYe!NZZT&l$8w*t6XFC>97{ zo;AFKkNOT=FYeL&NQll*ZE!)Bce_C?mLk*{@ulFO=>jGx@U=7fGf8f8?@&6%t zB6oNE;9tgD6*-iOk^F50ikv_itKmaIe?VconX1jOu-rh3C(Wyi<-XnBJpTx{$rWR2 z1&cEp+VZp&yF)voxay1RPB?Q0;RQtr3RU8qFPLx^y9u3fJ9eg90|uN83YQAQ!V4GXtz zA1@tqSuP6 zl*dyfm=4$9J#n5rlxe1~g2a1u*XZ`T)xyBC%i!|~n206ol^S7lD8eKxv18v#CV|l( zQE!jNg~HHrJ58{6`(^jscZ?DnGw%h=yhtgn;Jy{GbvmA8Z+~$6P2r_0N*e zp${)O3;tg>!ma>*(EC?T`QExHPR)kh>TpDQf7$g z`XJ(FC8T7_D5={Z8Kv|+?|U1!&!@lO+fVn=yI^%iRR$&qG<#YF1y#0?F zhg(HQb$o`0$|(#glFNX^E^R-hF@dwQ~&vI!MlD3hUgzjwd`u_mkh zUYQs@G2!^rwwH2^VrWZqKlS?U`*?Uu?O?UvpeOT+ zL1a%4lN6;@aBC7J$733XEi(9!yLRT2`-QyqPh1A;v;*9{+iW$N%V9lQLt_{J?SIzR zngo+^X?S=WQ}LM$*2o>vZnj8KN_hJt^YJ-p7(ob-OxzW=WuoZ8ciS4xB;~C0n^_-FoarPBDk>?v%M{{)?%uQHN8g9p-Y<2MqI_oOzt-()U~2F+QxV*K>_b z>+0Km!lxI%JhHc59)%juu3khtDWhJ6WHy zlID@>gd%4XEpO9^-C8U`_LySW`q%Ig>$;Z=_+FDS?Y!HD4I9paiJAT_e`dY?6#pPL zXd2}Sd)VIjUi&x89I68jaO$l1>ued`E4pT|B{k&a?AdB zRsqfP6qHodbnqeXHMMiNjD~Py0F>`QH22zT+J36w5r8=n5#-Em*q&_8<#5J)mN2(q zFWARM1CTyll@Mv!TNnV=J*rmUj7}j<^J_#i+~t+m_dtj*oeRkHZ1}t^A(mN@qD-2E zG~1TgX21gDF8}9EN$7rd_GknU3>~X}gyvZ7&WTWd{v(I#3qpH)6jpg%yb)kY z*KZ+h(LFCm7*);^9&rhZjfN}-iTqyudCdsw>4+$3GTLP7Fv_J6V<}7}EDhZ)c>q5D zbA=ALU*y*$+c#!B@Qc*+qX()y*cj?60cO^wh5N4VQb|?r4k|Nb1Lhs4nYJbX9j40` z!@%dJ4bB&%XKi?TRyS-jz_rVt-PWe=z<;FdlB#j6DK?Wu{mg;I?XYLdu&q}kvu0KReyy=YdV{}*s` zf9bV+YBbQ%Ko6u57^i{^a7KXDEB0f9=oBMjS$T+xiDi!5koP6qk>MdH$b-*^QWBfO zeIcv!^OF%QSHgI?cYy*pD}0r@365p0Ya`P7ty@A`R^$xiu(r0*1TS3(j+ zB(%m{q~F&R60a;qfdTr~sUuFUiG09@l99B>$;3Z-7-#cenpQP~sBDF9kylckK;h>@ zhr%1(F7FYtCpu%m?$YoYt-UqDlLcrVQxHutc_%6CYFU4V*5v0tfNo-pYLHk5}~M(d;u8t5A>a$9xXzwDLg|smxqd)U>EQ zV%>%#Ub7zul&Iqb>^%i34ilm!4Gn5mhYmrrMP#C4w!pdk=oZirewXXY$|S9UWv?rm4tb0rtam{AUsKec8 z1;OFh#^HCqz)QB`@@?YAe~RDj7zB649@xTWCp^v;WT1)UIpQ1w98?MF%SUifbFjFT zP+*X({k8RY29PGhx_5}2G-!-Vg1Qp$sz;ijPSgcRu}N!Sp+M-bAFbK2wgm5rhn|%X zAY|a+;6Oj%^h_-9x?LW3ihLacEEvBY6;UsU*5`KUFsle5dBzEx7f5_J%Ml1hO$%_; z;#S?ka)(y%ab;M0$!;|0;#_>g%}d6+)TimxK6dP!g7krotxEtw5e*iTtPqjBdQxVC z5far*kO|W{1wdKiZ$7_}S2h?9Nx}a)Cy@LAhecnI$PjYMDb$gPd(&u*Q7X%+?4EdR7$3^$rSbx)X^Q zejHj~!^|ZWGmBcRb^FjC%og1Y?t5)WjV8p!IWERIu2_*)a+|I@TXm1xr#>AtOX0O^ zJHSD=3--eT`}xm01Z6nj$h1BE^&QCV`$7#SVb1V@05C<-I`Moea$^u; zLAMtQnpr3@l^%~HaXababO=_0bnL5eY?^;!x^IAI7@qBjn2qx5RZkNo&gaI7xIgzw zI^I+JaF0dxZDl2RQCSnDiuJo{3kDRp$f#>*I|&+yX~BEQUbxKx_`j~jUX;it@#3s2 ziSfamB4U7Js>vvr_Zbs7V*-yZ zgp;T&NQD$mLgJX+HIeCauMG%7Z}NB|gk3W?I}VcX&CLq~z&WUUv+1VLZ~Y`z>7;Fp zKS_;MHc{sQG@max9E3bHyldD$l$|Wrv#7mMUWO*SLS{)+;549v`UX>l6+})YRf7}H z#LAR(5*@;QiBgQT%zWHX?~W~fZRMDja&YM*4^e{sqOvk$WBH&@b22Bo zvA$hmg+k?}RK$H3NkK1?xcP4RUZHT6_qZ83f9TJfSaftGT-fzVt#g~vZ`niO9PY9Gk`Q!zptn?`8QBN~oab)qDuNe?G?G)6mu|R$L!3(~#>8L2cIM@R< zfEwnF3baODH%|@3rIT2IB#%|7!4=34@Jg16PoQ_}s?X`=IQgDkMN+AVSjtnNp03>h z5;+*U+@P+}n`SA?A~N1QTVW#%hF*%xCLe5x&NzFoBH}(YkAv*aB!fQYtqQxcfZ|i< zH!!=U1So1FyOPpz0*}Bk$O0GKo_uwcwGytQntP2^I}920c~cJgkp7JLcZ~bvxHp%S zmhz?+L#=W;-b+tUZ#J;sKvdCVZ7U+lF`wv=(xE9NJ$C_nCo5pYeF_q;H-VlvwpCnO zNUAD!)FxBwK&x>oz_II9YbecMdpPT2clhvfuFy#clZ_c{Uc#$)M&nMcpcxeBqi zViu}3J11yWGzC|Y0a9IDSLd!L$i)spVP7PI1(a7VYK&!tx=p^zAgaSh41!$^hVNA5 zEs*aP6as==kc|B{70v%KhB;l;VP;o+T25L!Iw_4a>G1TV+-lKeP z2q3@1U~(II8Xmi~qOh?LtUhzaDHU(A26PC-F)*+5sz zDjk)>v%Bs^l8o$C(uA{Y1(#>* z+~eyyA&F@gP3H^BOzFrMV0gp{Udj1YRdSHwaPI<#G4YCR-Qf!gFdC_$ez?0{k}qKB z7?b<8;{^S#t8e==$t_Ombw}d$g0So{fV7SO;>6X4h{wLu)F3Okz{SrC`9yr+P2q&_ z+sJ8=LA?Bxl#|ZB<75(0GY?Ax{h;n5&BnqU0ZnrF+&1sAU|(4NS`AA)!d=b#sK7X4J@>MlTe zdR7V5_}v6}O?L1>0GbV26b*KR_;N^}f!P1%k-I+N$(l=4d6oshE&2HXf;m-m{c;!I zjKnBA&gI*Xi7~_AoyHY(=-`_Y_U9GoZ_tLsrq`v30ce_Gmj?nPAFRJ>E>E>*8a`#7 z3oOTmyMVRQKaY<>;>BDzAe8Jm^&T+`lK_&g8SkV|(PEc!`W#@8n4qL$O>v8EsUsEp|)KoexC0 zhCC>64jITo1^av;FvZ^*-`~)xVC}3hxP-MoM5j;#cBthg0?Azcse0&A@-)Xb`$5H6L5N}Ur{AC+hu z@Rz#h_G4@^haC8D1M14SZdL))jG}g3GN>6hmGX{QN$1OqvVs@;# zUF6F77culj1jI7CjTFdP|JR=~u))hC#?6(j zN$};r?&+`JVZy0}Tp6b=|Im)VhV6telhLtc-i6fwfg(8a`5Hxqu0ou2fv6XV3r66uN5Nx*I@ + +static unsigned int NUM_CHAMADAS = 0; + +unsigned long function1(unsigned int n) { + if (n == 1) + return 1; + + NUM_CHAMADAS++; + return function1(n / 2) + n; +} + +unsigned long function2(unsigned int n) { + if (n == 1) + return 1; + + NUM_CHAMADAS += 2; + return function2(n / 2) + function2((n + 1) / 2) + n; +} + +unsigned long function3(unsigned int n) { + if (n == 1) + return 1; + + if (n % 2 == 0) { + NUM_CHAMADAS++; + return 2 * function3(n / 2) + n; + } else { + NUM_CHAMADAS += 2; + return function3(n / 2) + function3((n + 1) / 2) + n; + } +} + +int main(void) { + unsigned int max_n; + printf("Calcular até: "); + if (scanf("%u", &max_n) != 1) + return 1; + + printf(" N | f1(N) | chamadas | f2(N) | chamadas | f3(N) | chamadas\n"); + printf("-----+-------+----------+-------+----------+-------+----------\n"); + for (unsigned int n = 1; n <= max_n; n++) { + printf("%4u", n); + + NUM_CHAMADAS = 0; + unsigned long f1_res = function1(n); + printf(" | %5lu | %8u", f1_res, NUM_CHAMADAS); + + NUM_CHAMADAS = 0; + unsigned long f2_res = function2(n); + printf(" | %5lu | %8u", f2_res, NUM_CHAMADAS); + + NUM_CHAMADAS = 0; + unsigned long f3_res = function3(n); + printf(" | %5lu | %8u\n", f3_res, NUM_CHAMADAS); + } + + return 0; +} diff --git a/2ano1/AED/aula05/guiao.norg b/2ano1/AED/aula05/guiao.norg new file mode 100644 index 0000000..4a34fa7 --- /dev/null +++ b/2ano1/AED/aula05/guiao.norg @@ -0,0 +1,161 @@ +@document.meta +title: Aula 05 +description: Análise da complexidade de algoritmos recursivos +author: João Capucho +@end + +* Experimentalmente + +** Função 1 + + O número de chamadas da função 1 parece seguir um crescimento logaritmico e + de facto se utilizarmos $\lfloor log_2(n) \rfloor$ nos valores de `n`, + obtemos o mesmo número de chamadas que o nosso program, logo a ordem de + complexidade é de $O(log_2(n))$. + +** Função 2 + + Se observarmos o número de chamadas, notamos que os resultados crescem + linearmente dois a dois, indicando uma ordem de complexidade de $O(n)$. + +** Função 3 + + A função 3 é bastante volátil mas conseguimos notar um padrão, todos os + números que são potências de 2, crescem de maneira mais lenta, sendo neste + caso o número de chamadas $log_2(n)$ e sendo assim a ordem de complexidade + $\Omega(log_2(n))$. Nos piores dos casos a função faz um número de chamadas + que aumenta linearmente com o $n$, sendo assim a ordem de complexidade + $O(n)$. + +* Formalmente + +** Função 1 + + @math + C_1(n) = \left\{ + \begin{array}{ll} + 0 & n = 1 \\ + 1 + C_1\left( \left\lfloor \frac{n}{2} \right\rfloor \right) & n \gt 1 \\ + \end{array} + \right. + @end + + Assumindo que $n = 2^k$ temos que: + + @math + \begin{align} + C_1(n) + &= 1 + C_1\left( \frac{n}{2} \right) \\ + &= 2 + C_1\left( \frac{n}{4} \right) \\ + &= 3 + C_1\left( \frac{n}{8} \right) \\ + &= \quad ... \\ + &= k + C_1\left( \frac{n}{2^k} \right) \\ + \end{align} + @end + + @math + C_1(n) + = k + C_1\left( \frac{2^k}{2^k} \right) + = k + C_1(1) + = k = \log_2(n) + @end + + Como $\log_2(n)$ é uma função "smooth" e acabamos de provar que $C_1(n) \in + \Theta\left( \log_2(n) \right)$ para $n = 2^k$, então e de acordo com a + /Smoothness Rule/, podemos dizer que $C_1(n) \in \Theta\left( \log_2(n) + \right)$ para todo o $n$. + +** Função 2 + + @math + C_2(n) = \left\{ + \begin{array}{ll} + 0 & n = 1 \\ + 2 + C_2\left( \left\lfloor \frac{n}{2} \right\rfloor \right) + + C_2\left( \left\lceil \frac{n}{2} \right\rceil \right) & n \gt 1 \\ + \end{array} + \right. + @end + + Assumindo que $n = 2^k$ temos que: + + @math + \begin{align} + C_2(n) + &= 2 + C_2\left( \frac{n}{2} \right) + C_2\left( \frac{n}{2} \right) \\ + &= 2 + 2C_2\left( \frac{n}{2} \right) \\ + &= 2 + 2\left( 2 + C_2\left( \frac{n}{4} \right) + C_2\left( \frac{n}{4} \right) \right) \\ + &= 6 + 4C_2\left( \frac{n}{4} \right) \\ + &= 6 + 4\left( 2 + C_2\left( \frac{n}{8} \right) + C_2\left( \frac{n}{8} \right) \right) \\ + &= 14 + 8C_2\left( \frac{n}{8} \right) \\ + &= \quad ... \\ + &= 2^{k+1} - 2 + 2^k C_2\left( \frac{n}{2^k} \right) + \end{align} + @end + + @math + \begin{align} + C_2(n) + &= 2^{k+1} - 2 + 2^k C_2\left( \frac{2^k}{2^k} \right) \\ + &= 2^{k+1} - 2 + 2^k C_2(1) \\ + &= 2^{k+1} - 2 \\ + &= 2\times2^k - 2 \\ + &= 2n - 2 + \end{align} + @end + + Como $n$ é uma função "smooth" e acabamos de provar que + $C_2(n) \in \Theta\left( n \right)$ + para $n = 2^k$, então e de acordo com a /Smoothness Rule/, podemos dizer que + $C_2(n) \in \Theta\left( n \right)$ para todo o $n$. + + +* Exercício 5 + + > No caso do terceiro algoritmo indique para que valores de N se obtém o + melhor e o pior caso e faça a respetiva análise da complexidade. + + O número de chamadas recursivas para um dado nível da terceira função depende + se o número é par ou ímpar. Se o número for par apenas é feita uma chamada + recursiva. No entanto, se o número for ímpar são feitas duas chamadas. + + @embed image + assets/ex03_calls.png + @end + + Logo o melhor caso é quando $N$ causa o ramo do número par ser sempre + seguido, para isto precisamos de um número que comece por ser par ou seja um + múltiplo de 2. Além disso sempre que este número for dividido o resultado + precisa de ser par também, mais uma vez múltiplo de 2. Se tivermos então um + número $N$ que precise de $k$ divisões para chegar a 1, seguindo sempre o + ramo par podemos definir o valor para todos os $k$ níveis utilizando a + seguinte expressão. + + @math + N(k) = \left\{ + \begin{array}{ll} + 1 & k = 0 \\ + 2N(k-1) & k > 0 + \end{array} + \right. + @end + + Que podemos transformar na forma fechada para $k > 0$: + + @math + \begin{align} + N(k) + &= 2N(k-1) \\ + &= 4N(k-2) \\ + &= 8N(k-3) \\ + &= \quad ... \\ + &= 2^k \\ + \end{align} + @end + + Ou seja a sequência do melhor caso são as potências de 2, onde temos uma + complexidade de $B(n) = \log_2(n)$ e comprova-se então que a ordem de + complexidade é $\Omega(\log_2(n))$. + + O pior caso então será quando $N$ será processado sempre no ramo ímpar. Isto + no entanto é impossível pois o último ramo terá sempre de ser sempre diff --git a/2ano1/AED/aula06/cache_stats.txt b/2ano1/AED/aula06/cache_stats.txt new file mode 100644 index 0000000..cba0629 --- /dev/null +++ b/2ano1/AED/aula06/cache_stats.txt @@ -0,0 +1,121 @@ +D(0, 0) = 1 (Adições = 0) +D(0, 1) = 1 (Adições = 0) +D(0, 2) = 1 (Adições = 0) +D(0, 3) = 1 (Adições = 0) +D(0, 4) = 1 (Adições = 0) +D(0, 5) = 1 (Adições = 0) +D(0, 6) = 1 (Adições = 0) +D(0, 7) = 1 (Adições = 0) +D(0, 8) = 1 (Adições = 0) +D(0, 9) = 1 (Adições = 0) +D(0, 10) = 1 (Adições = 0) +D(1, 0) = 1 (Adições = 0) +D(1, 1) = 3 (Adições = 2) +D(1, 2) = 5 (Adições = 4) +D(1, 3) = 7 (Adições = 6) +D(1, 4) = 9 (Adições = 8) +D(1, 5) = 11 (Adições = 10) +D(1, 6) = 13 (Adições = 12) +D(1, 7) = 15 (Adições = 14) +D(1, 8) = 17 (Adições = 16) +D(1, 9) = 19 (Adições = 18) +D(1, 10) = 21 (Adições = 20) +D(2, 0) = 1 (Adições = 0) +D(2, 1) = 5 (Adições = 4) +D(2, 2) = 13 (Adições = 8) +D(2, 3) = 25 (Adições = 12) +D(2, 4) = 41 (Adições = 16) +D(2, 5) = 61 (Adições = 20) +D(2, 6) = 85 (Adições = 24) +D(2, 7) = 113 (Adições = 28) +D(2, 8) = 145 (Adições = 32) +D(2, 9) = 181 (Adições = 36) +D(2, 10) = 221 (Adições = 40) +D(3, 0) = 1 (Adições = 0) +D(3, 1) = 7 (Adições = 6) +D(3, 2) = 25 (Adições = 12) +D(3, 3) = 63 (Adições = 18) +D(3, 4) = 129 (Adições = 24) +D(3, 5) = 231 (Adições = 30) +D(3, 6) = 377 (Adições = 36) +D(3, 7) = 575 (Adições = 42) +D(3, 8) = 833 (Adições = 48) +D(3, 9) = 1159 (Adições = 54) +D(3, 10) = 1561 (Adições = 60) +D(4, 0) = 1 (Adições = 0) +D(4, 1) = 9 (Adições = 8) +D(4, 2) = 41 (Adições = 16) +D(4, 3) = 129 (Adições = 24) +D(4, 4) = 321 (Adições = 32) +D(4, 5) = 681 (Adições = 40) +D(4, 6) = 1289 (Adições = 48) +D(4, 7) = 2241 (Adições = 56) +D(4, 8) = 3649 (Adições = 64) +D(4, 9) = 5641 (Adições = 72) +D(4, 10) = 8361 (Adições = 80) +D(5, 0) = 1 (Adições = 0) +D(5, 1) = 11 (Adições = 10) +D(5, 2) = 61 (Adições = 20) +D(5, 3) = 231 (Adições = 30) +D(5, 4) = 681 (Adições = 40) +D(5, 5) = 1683 (Adições = 50) +D(5, 6) = 3653 (Adições = 60) +D(5, 7) = 7183 (Adições = 70) +D(5, 8) = 13073 (Adições = 80) +D(5, 9) = 22363 (Adições = 90) +D(5, 10) = 36365 (Adições = 100) +D(6, 0) = 1 (Adições = 0) +D(6, 1) = 13 (Adições = 12) +D(6, 2) = 85 (Adições = 24) +D(6, 3) = 377 (Adições = 36) +D(6, 4) = 1289 (Adições = 48) +D(6, 5) = 3653 (Adições = 60) +D(6, 6) = 8989 (Adições = 72) +D(6, 7) = 19825 (Adições = 84) +D(6, 8) = 40081 (Adições = 96) +D(6, 9) = 75517 (Adições = 108) +D(6, 10) = 134245 (Adições = 120) +D(7, 0) = 1 (Adições = 0) +D(7, 1) = 15 (Adições = 14) +D(7, 2) = 113 (Adições = 28) +D(7, 3) = 575 (Adições = 42) +D(7, 4) = 2241 (Adições = 56) +D(7, 5) = 7183 (Adições = 70) +D(7, 6) = 19825 (Adições = 84) +D(7, 7) = 48639 (Adições = 98) +D(7, 8) = 108545 (Adições = 112) +D(7, 9) = 224143 (Adições = 126) +D(7, 10) = 433905 (Adições = 140) +D(8, 0) = 1 (Adições = 0) +D(8, 1) = 17 (Adições = 16) +D(8, 2) = 145 (Adições = 32) +D(8, 3) = 833 (Adições = 48) +D(8, 4) = 3649 (Adições = 64) +D(8, 5) = 13073 (Adições = 80) +D(8, 6) = 40081 (Adições = 96) +D(8, 7) = 108545 (Adições = 112) +D(8, 8) = 265729 (Adições = 128) +D(8, 9) = 598417 (Adições = 144) +D(8, 10) = 1256465 (Adições = 160) +D(9, 0) = 1 (Adições = 0) +D(9, 1) = 19 (Adições = 18) +D(9, 2) = 181 (Adições = 36) +D(9, 3) = 1159 (Adições = 54) +D(9, 4) = 5641 (Adições = 72) +D(9, 5) = 22363 (Adições = 90) +D(9, 6) = 75517 (Adições = 108) +D(9, 7) = 224143 (Adições = 126) +D(9, 8) = 598417 (Adições = 144) +D(9, 9) = 1462563 (Adições = 162) +D(9, 10) = 3317445 (Adições = 180) +D(10, 0) = 1 (Adições = 0) +D(10, 1) = 21 (Adições = 20) +D(10, 2) = 221 (Adições = 40) +D(10, 3) = 1561 (Adições = 60) +D(10, 4) = 8361 (Adições = 80) +D(10, 5) = 36365 (Adições = 100) +D(10, 6) = 134245 (Adições = 120) +D(10, 7) = 433905 (Adições = 140) +D(10, 8) = 1256465 (Adições = 160) +D(10, 9) = 3317445 (Adições = 180) +D(10, 10) = 8097453 (Adições = 200) diff --git a/2ano1/AED/aula06/ex01a.c b/2ano1/AED/aula06/ex01a.c new file mode 100644 index 0000000..3339795 --- /dev/null +++ b/2ano1/AED/aula06/ex01a.c @@ -0,0 +1,43 @@ +#include + +static size_t NUM_ADICOES = 0; + +// k = 13, 2s +unsigned long long int Delannoy(int m, int n) { + if (m == 0 || n == 0) + return 1; + + NUM_ADICOES += 2; + return Delannoy(m - 1, n) + Delannoy(m - 1, n - 1) + Delannoy(m, n - 1); +} + +int main(void) { + unsigned int max_k; + printf("Calcular até: "); + if (scanf("%u", &max_k) != 1) + return 1; + + FILE *stats = fopen("recursive_stats.txt", "w"); + + if (stats == NULL) { + perror("Error opening file"); + return 1; + } + + printf("Delannoy's Matrix - Recursive Function\n"); + for (unsigned int m = 0; m <= max_k; m++) { + for (unsigned int n = 0; n <= max_k; n++) { + NUM_ADICOES = 0; + unsigned long long int f1_res = Delannoy(m, n); + printf("%-7llu ", f1_res); + + fprintf(stats, "D(%u, %u) = %llu (Adições = %lu)\n", m, n, f1_res, + NUM_ADICOES); + } + printf("\n"); + } + + fclose(stats); + + return 0; +} diff --git a/2ano1/AED/aula06/ex01b.c b/2ano1/AED/aula06/ex01b.c new file mode 100644 index 0000000..080e0b1 --- /dev/null +++ b/2ano1/AED/aula06/ex01b.c @@ -0,0 +1,53 @@ +#include + +static size_t NUM_ADICOES = 0; + +// Perdemos precisão antes de se tornar muito demoroso +unsigned long long int Delannoy(unsigned int m, unsigned int n) { + unsigned long long int lut[m + 1][n + 1]; + + for (unsigned long long int j = 0; j <= n; j++) { + lut[0][j] = 1; + } + + for (unsigned int i = 1; i <= m; i++) { + lut[i][0] = 1; + for (unsigned int j = 1; j <= n; j++) { + NUM_ADICOES += 2; + lut[i][j] = lut[i - 1][j] + lut[i - 1][j - 1] + lut[i][j - 1]; + } + } + + return lut[m][n]; +} + +int main(void) { + unsigned int max_k; + printf("Calcular até: "); + if (scanf("%u", &max_k) != 1) + return 1; + + FILE *stats = fopen("cache_stats.txt", "w"); + + if (stats == NULL) { + perror("Error opening file"); + return 1; + } + + printf("Delannoy's Matrix - Cached Function\n"); + for (unsigned int m = 0; m <= max_k; m++) { + for (unsigned int n = 0; n <= max_k; n++) { + NUM_ADICOES = 0; + unsigned long long int f1_res = Delannoy(m, n); + printf("%-7llu ", f1_res); + + fprintf(stats, "D(%u, %u) = %llu (Adições = %lu)\n", m, n, f1_res, + NUM_ADICOES); + } + printf("\n"); + } + + fclose(stats); + + return 0; +} diff --git a/2ano1/AED/aula06/ex01c.c b/2ano1/AED/aula06/ex01c.c new file mode 100644 index 0000000..f8fe077 --- /dev/null +++ b/2ano1/AED/aula06/ex01c.c @@ -0,0 +1,59 @@ +#include +#include +#include +#include + +#define CACHE_SIZE 200 +#define RESULT_TYPE unsigned long long int + +static RESULT_TYPE CACHE[CACHE_SIZE][CACHE_SIZE]; + +static size_t NUM_ADICOES = 0; + +RESULT_TYPE Delannoy(unsigned int m, unsigned int n) { + if (m == 0 || n == 0) + return 1; + + if (m <= CACHE_SIZE && n <= CACHE_SIZE && CACHE[m - 1][n - 1] != 0) + return CACHE[m - 1][n - 1]; + + NUM_ADICOES += 2; + RESULT_TYPE res = + Delannoy(m - 1, n) + Delannoy(m - 1, n - 1) + Delannoy(m, n - 1); + + if (m <= CACHE_SIZE && n <= CACHE_SIZE) + CACHE[m - 1][n - 1] = res; + + return res; +} + +int main(void) { + unsigned int max_k; + printf("Calcular até: "); + if (scanf("%u", &max_k) != 1) + return 1; + + FILE *stats = fopen("memoized_stats.txt", "w"); + + if (stats == NULL) { + perror("Error opening file"); + return 1; + } + + printf("Delannoy's Matrix - Memoized Function\n"); + for (unsigned int m = 0; m <= max_k; m++) { + for (unsigned int n = 0; n <= max_k; n++) { + NUM_ADICOES = 0; + unsigned long long int f1_res = Delannoy(m, n); + printf("%-7llu ", f1_res); + + fprintf(stats, "D(%u, %u) = %llu (Adições = %lu)\n", m, n, f1_res, + NUM_ADICOES); + } + printf("\n"); + } + + fclose(stats); + + return 0; +} diff --git a/2ano1/AED/aula06/ex02a.c b/2ano1/AED/aula06/ex02a.c new file mode 100644 index 0000000..626ec19 --- /dev/null +++ b/2ano1/AED/aula06/ex02a.c @@ -0,0 +1,34 @@ +#include +#include + +unsigned int valor_maximo(size_t n, unsigned int *moedas) { + if (n == 0) + return 0; + + if (n == 1) + return moedas[0]; + + unsigned int adjacente = valor_maximo(n - 1, moedas); + unsigned int par = moedas[n - 1] + valor_maximo(n - 2, moedas); + return par > adjacente ? par : adjacente; +} + +int main(void) { + unsigned int max_k; + printf("Calcular até: "); + if (scanf("%u", &max_k) != 1) + return 1; + + unsigned int moedas[max_k]; + + srand(0); + for (size_t i = 0; i < max_k; i++) { + moedas[i] = rand() % 20 + 5; + } + + unsigned int f1_res = + valor_maximo(sizeof(moedas) / sizeof(unsigned int), moedas); + printf("%u\n", f1_res); + + return 0; +} diff --git a/2ano1/AED/aula06/ex02b.c b/2ano1/AED/aula06/ex02b.c new file mode 100644 index 0000000..ab56718 --- /dev/null +++ b/2ano1/AED/aula06/ex02b.c @@ -0,0 +1,23 @@ +#include + +unsigned int valor_maximo(unsigned int n, unsigned int *moedas) { + if (n == 0) + return 0; + + if (n == 1) + return moedas[0]; + + unsigned int adjacente = valor_maximo(n - 1, moedas); + unsigned int par = moedas[n - 1] + valor_maximo(n - 2, moedas); + return par > adjacente ? par : adjacente; +} + +int main(void) { + unsigned int moedas[] = {5, 1, 2, 10, 6, 2}; + + unsigned int f1_res = + valor_maximo(sizeof(moedas) / sizeof(unsigned int), moedas); + printf("%u\n", f1_res); + + return 0; +} diff --git a/2ano1/AED/aula06/memoized_stats.txt b/2ano1/AED/aula06/memoized_stats.txt new file mode 100644 index 0000000..cebc6ff --- /dev/null +++ b/2ano1/AED/aula06/memoized_stats.txt @@ -0,0 +1,10201 @@ +D(0, 0) = 1 (Adições = 0) +D(0, 1) = 1 (Adições = 0) +D(0, 2) = 1 (Adições = 0) +D(0, 3) = 1 (Adições = 0) +D(0, 4) = 1 (Adições = 0) +D(0, 5) = 1 (Adições = 0) +D(0, 6) = 1 (Adições = 0) +D(0, 7) = 1 (Adições = 0) +D(0, 8) = 1 (Adições = 0) +D(0, 9) = 1 (Adições = 0) +D(0, 10) = 1 (Adições = 0) +D(0, 11) = 1 (Adições = 0) +D(0, 12) = 1 (Adições = 0) +D(0, 13) = 1 (Adições = 0) +D(0, 14) = 1 (Adições = 0) +D(0, 15) = 1 (Adições = 0) +D(0, 16) = 1 (Adições = 0) +D(0, 17) = 1 (Adições = 0) +D(0, 18) = 1 (Adições = 0) +D(0, 19) = 1 (Adições = 0) +D(0, 20) = 1 (Adições = 0) +D(0, 21) = 1 (Adições = 0) +D(0, 22) = 1 (Adições = 0) +D(0, 23) = 1 (Adições = 0) +D(0, 24) = 1 (Adições = 0) +D(0, 25) = 1 (Adições = 0) +D(0, 26) = 1 (Adições = 0) +D(0, 27) = 1 (Adições = 0) +D(0, 28) = 1 (Adições = 0) +D(0, 29) = 1 (Adições = 0) +D(0, 30) = 1 (Adições = 0) +D(0, 31) = 1 (Adições = 0) +D(0, 32) = 1 (Adições = 0) +D(0, 33) = 1 (Adições = 0) +D(0, 34) = 1 (Adições = 0) +D(0, 35) = 1 (Adições = 0) +D(0, 36) = 1 (Adições = 0) +D(0, 37) = 1 (Adições = 0) +D(0, 38) = 1 (Adições = 0) +D(0, 39) = 1 (Adições = 0) +D(0, 40) = 1 (Adições = 0) +D(0, 41) = 1 (Adições = 0) +D(0, 42) = 1 (Adições = 0) +D(0, 43) = 1 (Adições = 0) +D(0, 44) = 1 (Adições = 0) +D(0, 45) = 1 (Adições = 0) +D(0, 46) = 1 (Adições = 0) +D(0, 47) = 1 (Adições = 0) +D(0, 48) = 1 (Adições = 0) +D(0, 49) = 1 (Adições = 0) +D(0, 50) = 1 (Adições = 0) +D(0, 51) = 1 (Adições = 0) +D(0, 52) = 1 (Adições = 0) +D(0, 53) = 1 (Adições = 0) +D(0, 54) = 1 (Adições = 0) +D(0, 55) = 1 (Adições = 0) +D(0, 56) = 1 (Adições = 0) +D(0, 57) = 1 (Adições = 0) +D(0, 58) = 1 (Adições = 0) +D(0, 59) = 1 (Adições = 0) +D(0, 60) = 1 (Adições = 0) +D(0, 61) = 1 (Adições = 0) +D(0, 62) = 1 (Adições = 0) +D(0, 63) = 1 (Adições = 0) +D(0, 64) = 1 (Adições = 0) +D(0, 65) = 1 (Adições = 0) +D(0, 66) = 1 (Adições = 0) +D(0, 67) = 1 (Adições = 0) +D(0, 68) = 1 (Adições = 0) +D(0, 69) = 1 (Adições = 0) +D(0, 70) = 1 (Adições = 0) +D(0, 71) = 1 (Adições = 0) +D(0, 72) = 1 (Adições = 0) +D(0, 73) = 1 (Adições = 0) +D(0, 74) = 1 (Adições = 0) +D(0, 75) = 1 (Adições = 0) +D(0, 76) = 1 (Adições = 0) +D(0, 77) = 1 (Adições = 0) +D(0, 78) = 1 (Adições = 0) +D(0, 79) = 1 (Adições = 0) +D(0, 80) = 1 (Adições = 0) +D(0, 81) = 1 (Adições = 0) +D(0, 82) = 1 (Adições = 0) +D(0, 83) = 1 (Adições = 0) +D(0, 84) = 1 (Adições = 0) +D(0, 85) = 1 (Adições = 0) +D(0, 86) = 1 (Adições = 0) +D(0, 87) = 1 (Adições = 0) +D(0, 88) = 1 (Adições = 0) +D(0, 89) = 1 (Adições = 0) +D(0, 90) = 1 (Adições = 0) +D(0, 91) = 1 (Adições = 0) +D(0, 92) = 1 (Adições = 0) +D(0, 93) = 1 (Adições = 0) +D(0, 94) = 1 (Adições = 0) +D(0, 95) = 1 (Adições = 0) +D(0, 96) = 1 (Adições = 0) +D(0, 97) = 1 (Adições = 0) +D(0, 98) = 1 (Adições = 0) +D(0, 99) = 1 (Adições = 0) +D(0, 100) = 1 (Adições = 0) +D(1, 0) = 1 (Adições = 0) +D(1, 1) = 3 (Adições = 2) +D(1, 2) = 5 (Adições = 2) +D(1, 3) = 7 (Adições = 2) +D(1, 4) = 9 (Adições = 2) +D(1, 5) = 11 (Adições = 2) +D(1, 6) = 13 (Adições = 2) +D(1, 7) = 15 (Adições = 2) +D(1, 8) = 17 (Adições = 2) +D(1, 9) = 19 (Adições = 2) +D(1, 10) = 21 (Adições = 2) +D(1, 11) = 23 (Adições = 2) +D(1, 12) = 25 (Adições = 2) +D(1, 13) = 27 (Adições = 2) +D(1, 14) = 29 (Adições = 2) +D(1, 15) = 31 (Adições = 2) +D(1, 16) = 33 (Adições = 2) +D(1, 17) = 35 (Adições = 2) +D(1, 18) = 37 (Adições = 2) +D(1, 19) = 39 (Adições = 2) +D(1, 20) = 41 (Adições = 2) +D(1, 21) = 43 (Adições = 2) +D(1, 22) = 45 (Adições = 2) +D(1, 23) = 47 (Adições = 2) +D(1, 24) = 49 (Adições = 2) +D(1, 25) = 51 (Adições = 2) +D(1, 26) = 53 (Adições = 2) +D(1, 27) = 55 (Adições = 2) +D(1, 28) = 57 (Adições = 2) +D(1, 29) = 59 (Adições = 2) +D(1, 30) = 61 (Adições = 2) +D(1, 31) = 63 (Adições = 2) +D(1, 32) = 65 (Adições = 2) +D(1, 33) = 67 (Adições = 2) +D(1, 34) = 69 (Adições = 2) +D(1, 35) = 71 (Adições = 2) +D(1, 36) = 73 (Adições = 2) +D(1, 37) = 75 (Adições = 2) +D(1, 38) = 77 (Adições = 2) +D(1, 39) = 79 (Adições = 2) +D(1, 40) = 81 (Adições = 2) +D(1, 41) = 83 (Adições = 2) +D(1, 42) = 85 (Adições = 2) +D(1, 43) = 87 (Adições = 2) +D(1, 44) = 89 (Adições = 2) +D(1, 45) = 91 (Adições = 2) +D(1, 46) = 93 (Adições = 2) +D(1, 47) = 95 (Adições = 2) +D(1, 48) = 97 (Adições = 2) +D(1, 49) = 99 (Adições = 2) +D(1, 50) = 101 (Adições = 2) +D(1, 51) = 103 (Adições = 2) +D(1, 52) = 105 (Adições = 2) +D(1, 53) = 107 (Adições = 2) +D(1, 54) = 109 (Adições = 2) +D(1, 55) = 111 (Adições = 2) +D(1, 56) = 113 (Adições = 2) +D(1, 57) = 115 (Adições = 2) +D(1, 58) = 117 (Adições = 2) +D(1, 59) = 119 (Adições = 2) +D(1, 60) = 121 (Adições = 2) +D(1, 61) = 123 (Adições = 2) +D(1, 62) = 125 (Adições = 2) +D(1, 63) = 127 (Adições = 2) +D(1, 64) = 129 (Adições = 2) +D(1, 65) = 131 (Adições = 2) +D(1, 66) = 133 (Adições = 2) +D(1, 67) = 135 (Adições = 2) +D(1, 68) = 137 (Adições = 2) +D(1, 69) = 139 (Adições = 2) +D(1, 70) = 141 (Adições = 2) +D(1, 71) = 143 (Adições = 2) +D(1, 72) = 145 (Adições = 2) +D(1, 73) = 147 (Adições = 2) +D(1, 74) = 149 (Adições = 2) +D(1, 75) = 151 (Adições = 2) +D(1, 76) = 153 (Adições = 2) +D(1, 77) = 155 (Adições = 2) +D(1, 78) = 157 (Adições = 2) +D(1, 79) = 159 (Adições = 2) +D(1, 80) = 161 (Adições = 2) +D(1, 81) = 163 (Adições = 2) +D(1, 82) = 165 (Adições = 2) +D(1, 83) = 167 (Adições = 2) +D(1, 84) = 169 (Adições = 2) +D(1, 85) = 171 (Adições = 2) +D(1, 86) = 173 (Adições = 2) +D(1, 87) = 175 (Adições = 2) +D(1, 88) = 177 (Adições = 2) +D(1, 89) = 179 (Adições = 2) +D(1, 90) = 181 (Adições = 2) +D(1, 91) = 183 (Adições = 2) +D(1, 92) = 185 (Adições = 2) +D(1, 93) = 187 (Adições = 2) +D(1, 94) = 189 (Adições = 2) +D(1, 95) = 191 (Adições = 2) +D(1, 96) = 193 (Adições = 2) +D(1, 97) = 195 (Adições = 2) +D(1, 98) = 197 (Adições = 2) +D(1, 99) = 199 (Adições = 2) +D(1, 100) = 201 (Adições = 2) +D(2, 0) = 1 (Adições = 0) +D(2, 1) = 5 (Adições = 2) +D(2, 2) = 13 (Adições = 2) +D(2, 3) = 25 (Adições = 2) +D(2, 4) = 41 (Adições = 2) +D(2, 5) = 61 (Adições = 2) +D(2, 6) = 85 (Adições = 2) +D(2, 7) = 113 (Adições = 2) +D(2, 8) = 145 (Adições = 2) +D(2, 9) = 181 (Adições = 2) +D(2, 10) = 221 (Adições = 2) +D(2, 11) = 265 (Adições = 2) +D(2, 12) = 313 (Adições = 2) +D(2, 13) = 365 (Adições = 2) +D(2, 14) = 421 (Adições = 2) +D(2, 15) = 481 (Adições = 2) +D(2, 16) = 545 (Adições = 2) +D(2, 17) = 613 (Adições = 2) +D(2, 18) = 685 (Adições = 2) +D(2, 19) = 761 (Adições = 2) +D(2, 20) = 841 (Adições = 2) +D(2, 21) = 925 (Adições = 2) +D(2, 22) = 1013 (Adições = 2) +D(2, 23) = 1105 (Adições = 2) +D(2, 24) = 1201 (Adições = 2) +D(2, 25) = 1301 (Adições = 2) +D(2, 26) = 1405 (Adições = 2) +D(2, 27) = 1513 (Adições = 2) +D(2, 28) = 1625 (Adições = 2) +D(2, 29) = 1741 (Adições = 2) +D(2, 30) = 1861 (Adições = 2) +D(2, 31) = 1985 (Adições = 2) +D(2, 32) = 2113 (Adições = 2) +D(2, 33) = 2245 (Adições = 2) +D(2, 34) = 2381 (Adições = 2) +D(2, 35) = 2521 (Adições = 2) +D(2, 36) = 2665 (Adições = 2) +D(2, 37) = 2813 (Adições = 2) +D(2, 38) = 2965 (Adições = 2) +D(2, 39) = 3121 (Adições = 2) +D(2, 40) = 3281 (Adições = 2) +D(2, 41) = 3445 (Adições = 2) +D(2, 42) = 3613 (Adições = 2) +D(2, 43) = 3785 (Adições = 2) +D(2, 44) = 3961 (Adições = 2) +D(2, 45) = 4141 (Adições = 2) +D(2, 46) = 4325 (Adições = 2) +D(2, 47) = 4513 (Adições = 2) +D(2, 48) = 4705 (Adições = 2) +D(2, 49) = 4901 (Adições = 2) +D(2, 50) = 5101 (Adições = 2) +D(2, 51) = 5305 (Adições = 2) +D(2, 52) = 5513 (Adições = 2) +D(2, 53) = 5725 (Adições = 2) +D(2, 54) = 5941 (Adições = 2) +D(2, 55) = 6161 (Adições = 2) +D(2, 56) = 6385 (Adições = 2) +D(2, 57) = 6613 (Adições = 2) +D(2, 58) = 6845 (Adições = 2) +D(2, 59) = 7081 (Adições = 2) +D(2, 60) = 7321 (Adições = 2) +D(2, 61) = 7565 (Adições = 2) +D(2, 62) = 7813 (Adições = 2) +D(2, 63) = 8065 (Adições = 2) +D(2, 64) = 8321 (Adições = 2) +D(2, 65) = 8581 (Adições = 2) +D(2, 66) = 8845 (Adições = 2) +D(2, 67) = 9113 (Adições = 2) +D(2, 68) = 9385 (Adições = 2) +D(2, 69) = 9661 (Adições = 2) +D(2, 70) = 9941 (Adições = 2) +D(2, 71) = 10225 (Adições = 2) +D(2, 72) = 10513 (Adições = 2) +D(2, 73) = 10805 (Adições = 2) +D(2, 74) = 11101 (Adições = 2) +D(2, 75) = 11401 (Adições = 2) +D(2, 76) = 11705 (Adições = 2) +D(2, 77) = 12013 (Adições = 2) +D(2, 78) = 12325 (Adições = 2) +D(2, 79) = 12641 (Adições = 2) +D(2, 80) = 12961 (Adições = 2) +D(2, 81) = 13285 (Adições = 2) +D(2, 82) = 13613 (Adições = 2) +D(2, 83) = 13945 (Adições = 2) +D(2, 84) = 14281 (Adições = 2) +D(2, 85) = 14621 (Adições = 2) +D(2, 86) = 14965 (Adições = 2) +D(2, 87) = 15313 (Adições = 2) +D(2, 88) = 15665 (Adições = 2) +D(2, 89) = 16021 (Adições = 2) +D(2, 90) = 16381 (Adições = 2) +D(2, 91) = 16745 (Adições = 2) +D(2, 92) = 17113 (Adições = 2) +D(2, 93) = 17485 (Adições = 2) +D(2, 94) = 17861 (Adições = 2) +D(2, 95) = 18241 (Adições = 2) +D(2, 96) = 18625 (Adições = 2) +D(2, 97) = 19013 (Adições = 2) +D(2, 98) = 19405 (Adições = 2) +D(2, 99) = 19801 (Adições = 2) +D(2, 100) = 20201 (Adições = 2) +D(3, 0) = 1 (Adições = 0) +D(3, 1) = 7 (Adições = 2) +D(3, 2) = 25 (Adições = 2) +D(3, 3) = 63 (Adições = 2) +D(3, 4) = 129 (Adições = 2) +D(3, 5) = 231 (Adições = 2) +D(3, 6) = 377 (Adições = 2) +D(3, 7) = 575 (Adições = 2) +D(3, 8) = 833 (Adições = 2) +D(3, 9) = 1159 (Adições = 2) +D(3, 10) = 1561 (Adições = 2) +D(3, 11) = 2047 (Adições = 2) +D(3, 12) = 2625 (Adições = 2) +D(3, 13) = 3303 (Adições = 2) +D(3, 14) = 4089 (Adições = 2) +D(3, 15) = 4991 (Adições = 2) +D(3, 16) = 6017 (Adições = 2) +D(3, 17) = 7175 (Adições = 2) +D(3, 18) = 8473 (Adições = 2) +D(3, 19) = 9919 (Adições = 2) +D(3, 20) = 11521 (Adições = 2) +D(3, 21) = 13287 (Adições = 2) +D(3, 22) = 15225 (Adições = 2) +D(3, 23) = 17343 (Adições = 2) +D(3, 24) = 19649 (Adições = 2) +D(3, 25) = 22151 (Adições = 2) +D(3, 26) = 24857 (Adições = 2) +D(3, 27) = 27775 (Adições = 2) +D(3, 28) = 30913 (Adições = 2) +D(3, 29) = 34279 (Adições = 2) +D(3, 30) = 37881 (Adições = 2) +D(3, 31) = 41727 (Adições = 2) +D(3, 32) = 45825 (Adições = 2) +D(3, 33) = 50183 (Adições = 2) +D(3, 34) = 54809 (Adições = 2) +D(3, 35) = 59711 (Adições = 2) +D(3, 36) = 64897 (Adições = 2) +D(3, 37) = 70375 (Adições = 2) +D(3, 38) = 76153 (Adições = 2) +D(3, 39) = 82239 (Adições = 2) +D(3, 40) = 88641 (Adições = 2) +D(3, 41) = 95367 (Adições = 2) +D(3, 42) = 102425 (Adições = 2) +D(3, 43) = 109823 (Adições = 2) +D(3, 44) = 117569 (Adições = 2) +D(3, 45) = 125671 (Adições = 2) +D(3, 46) = 134137 (Adições = 2) +D(3, 47) = 142975 (Adições = 2) +D(3, 48) = 152193 (Adições = 2) +D(3, 49) = 161799 (Adições = 2) +D(3, 50) = 171801 (Adições = 2) +D(3, 51) = 182207 (Adições = 2) +D(3, 52) = 193025 (Adições = 2) +D(3, 53) = 204263 (Adições = 2) +D(3, 54) = 215929 (Adições = 2) +D(3, 55) = 228031 (Adições = 2) +D(3, 56) = 240577 (Adições = 2) +D(3, 57) = 253575 (Adições = 2) +D(3, 58) = 267033 (Adições = 2) +D(3, 59) = 280959 (Adições = 2) +D(3, 60) = 295361 (Adições = 2) +D(3, 61) = 310247 (Adições = 2) +D(3, 62) = 325625 (Adições = 2) +D(3, 63) = 341503 (Adições = 2) +D(3, 64) = 357889 (Adições = 2) +D(3, 65) = 374791 (Adições = 2) +D(3, 66) = 392217 (Adições = 2) +D(3, 67) = 410175 (Adições = 2) +D(3, 68) = 428673 (Adições = 2) +D(3, 69) = 447719 (Adições = 2) +D(3, 70) = 467321 (Adições = 2) +D(3, 71) = 487487 (Adições = 2) +D(3, 72) = 508225 (Adições = 2) +D(3, 73) = 529543 (Adições = 2) +D(3, 74) = 551449 (Adições = 2) +D(3, 75) = 573951 (Adições = 2) +D(3, 76) = 597057 (Adições = 2) +D(3, 77) = 620775 (Adições = 2) +D(3, 78) = 645113 (Adições = 2) +D(3, 79) = 670079 (Adições = 2) +D(3, 80) = 695681 (Adições = 2) +D(3, 81) = 721927 (Adições = 2) +D(3, 82) = 748825 (Adições = 2) +D(3, 83) = 776383 (Adições = 2) +D(3, 84) = 804609 (Adições = 2) +D(3, 85) = 833511 (Adições = 2) +D(3, 86) = 863097 (Adições = 2) +D(3, 87) = 893375 (Adições = 2) +D(3, 88) = 924353 (Adições = 2) +D(3, 89) = 956039 (Adições = 2) +D(3, 90) = 988441 (Adições = 2) +D(3, 91) = 1021567 (Adições = 2) +D(3, 92) = 1055425 (Adições = 2) +D(3, 93) = 1090023 (Adições = 2) +D(3, 94) = 1125369 (Adições = 2) +D(3, 95) = 1161471 (Adições = 2) +D(3, 96) = 1198337 (Adições = 2) +D(3, 97) = 1235975 (Adições = 2) +D(3, 98) = 1274393 (Adições = 2) +D(3, 99) = 1313599 (Adições = 2) +D(3, 100) = 1353601 (Adições = 2) +D(4, 0) = 1 (Adições = 0) +D(4, 1) = 9 (Adições = 2) +D(4, 2) = 41 (Adições = 2) +D(4, 3) = 129 (Adições = 2) +D(4, 4) = 321 (Adições = 2) +D(4, 5) = 681 (Adições = 2) +D(4, 6) = 1289 (Adições = 2) +D(4, 7) = 2241 (Adições = 2) +D(4, 8) = 3649 (Adições = 2) +D(4, 9) = 5641 (Adições = 2) +D(4, 10) = 8361 (Adições = 2) +D(4, 11) = 11969 (Adições = 2) +D(4, 12) = 16641 (Adições = 2) +D(4, 13) = 22569 (Adições = 2) +D(4, 14) = 29961 (Adições = 2) +D(4, 15) = 39041 (Adições = 2) +D(4, 16) = 50049 (Adições = 2) +D(4, 17) = 63241 (Adições = 2) +D(4, 18) = 78889 (Adições = 2) +D(4, 19) = 97281 (Adições = 2) +D(4, 20) = 118721 (Adições = 2) +D(4, 21) = 143529 (Adições = 2) +D(4, 22) = 172041 (Adições = 2) +D(4, 23) = 204609 (Adições = 2) +D(4, 24) = 241601 (Adições = 2) +D(4, 25) = 283401 (Adições = 2) +D(4, 26) = 330409 (Adições = 2) +D(4, 27) = 383041 (Adições = 2) +D(4, 28) = 441729 (Adições = 2) +D(4, 29) = 506921 (Adições = 2) +D(4, 30) = 579081 (Adições = 2) +D(4, 31) = 658689 (Adições = 2) +D(4, 32) = 746241 (Adições = 2) +D(4, 33) = 842249 (Adições = 2) +D(4, 34) = 947241 (Adições = 2) +D(4, 35) = 1061761 (Adições = 2) +D(4, 36) = 1186369 (Adições = 2) +D(4, 37) = 1321641 (Adições = 2) +D(4, 38) = 1468169 (Adições = 2) +D(4, 39) = 1626561 (Adições = 2) +D(4, 40) = 1797441 (Adições = 2) +D(4, 41) = 1981449 (Adições = 2) +D(4, 42) = 2179241 (Adições = 2) +D(4, 43) = 2391489 (Adições = 2) +D(4, 44) = 2618881 (Adições = 2) +D(4, 45) = 2862121 (Adições = 2) +D(4, 46) = 3121929 (Adições = 2) +D(4, 47) = 3399041 (Adições = 2) +D(4, 48) = 3694209 (Adições = 2) +D(4, 49) = 4008201 (Adições = 2) +D(4, 50) = 4341801 (Adições = 2) +D(4, 51) = 4695809 (Adições = 2) +D(4, 52) = 5071041 (Adições = 2) +D(4, 53) = 5468329 (Adições = 2) +D(4, 54) = 5888521 (Adições = 2) +D(4, 55) = 6332481 (Adições = 2) +D(4, 56) = 6801089 (Adições = 2) +D(4, 57) = 7295241 (Adições = 2) +D(4, 58) = 7815849 (Adições = 2) +D(4, 59) = 8363841 (Adições = 2) +D(4, 60) = 8940161 (Adições = 2) +D(4, 61) = 9545769 (Adições = 2) +D(4, 62) = 10181641 (Adições = 2) +D(4, 63) = 10848769 (Adições = 2) +D(4, 64) = 11548161 (Adições = 2) +D(4, 65) = 12280841 (Adições = 2) +D(4, 66) = 13047849 (Adições = 2) +D(4, 67) = 13850241 (Adições = 2) +D(4, 68) = 14689089 (Adições = 2) +D(4, 69) = 15565481 (Adições = 2) +D(4, 70) = 16480521 (Adições = 2) +D(4, 71) = 17435329 (Adições = 2) +D(4, 72) = 18431041 (Adições = 2) +D(4, 73) = 19468809 (Adições = 2) +D(4, 74) = 20549801 (Adições = 2) +D(4, 75) = 21675201 (Adições = 2) +D(4, 76) = 22846209 (Adições = 2) +D(4, 77) = 24064041 (Adições = 2) +D(4, 78) = 25329929 (Adições = 2) +D(4, 79) = 26645121 (Adições = 2) +D(4, 80) = 28010881 (Adições = 2) +D(4, 81) = 29428489 (Adições = 2) +D(4, 82) = 30899241 (Adições = 2) +D(4, 83) = 32424449 (Adições = 2) +D(4, 84) = 34005441 (Adições = 2) +D(4, 85) = 35643561 (Adições = 2) +D(4, 86) = 37340169 (Adições = 2) +D(4, 87) = 39096641 (Adições = 2) +D(4, 88) = 40914369 (Adições = 2) +D(4, 89) = 42794761 (Adições = 2) +D(4, 90) = 44739241 (Adições = 2) +D(4, 91) = 46749249 (Adições = 2) +D(4, 92) = 48826241 (Adições = 2) +D(4, 93) = 50971689 (Adições = 2) +D(4, 94) = 53187081 (Adições = 2) +D(4, 95) = 55473921 (Adições = 2) +D(4, 96) = 57833729 (Adições = 2) +D(4, 97) = 60268041 (Adições = 2) +D(4, 98) = 62778409 (Adições = 2) +D(4, 99) = 65366401 (Adições = 2) +D(4, 100) = 68033601 (Adições = 2) +D(5, 0) = 1 (Adições = 0) +D(5, 1) = 11 (Adições = 2) +D(5, 2) = 61 (Adições = 2) +D(5, 3) = 231 (Adições = 2) +D(5, 4) = 681 (Adições = 2) +D(5, 5) = 1683 (Adições = 2) +D(5, 6) = 3653 (Adições = 2) +D(5, 7) = 7183 (Adições = 2) +D(5, 8) = 13073 (Adições = 2) +D(5, 9) = 22363 (Adições = 2) +D(5, 10) = 36365 (Adições = 2) +D(5, 11) = 56695 (Adições = 2) +D(5, 12) = 85305 (Adições = 2) +D(5, 13) = 124515 (Adições = 2) +D(5, 14) = 177045 (Adições = 2) +D(5, 15) = 246047 (Adições = 2) +D(5, 16) = 335137 (Adições = 2) +D(5, 17) = 448427 (Adições = 2) +D(5, 18) = 590557 (Adições = 2) +D(5, 19) = 766727 (Adições = 2) +D(5, 20) = 982729 (Adições = 2) +D(5, 21) = 1244979 (Adições = 2) +D(5, 22) = 1560549 (Adições = 2) +D(5, 23) = 1937199 (Adições = 2) +D(5, 24) = 2383409 (Adições = 2) +D(5, 25) = 2908411 (Adições = 2) +D(5, 26) = 3522221 (Adições = 2) +D(5, 27) = 4235671 (Adições = 2) +D(5, 28) = 5060441 (Adições = 2) +D(5, 29) = 6009091 (Adições = 2) +D(5, 30) = 7095093 (Adições = 2) +D(5, 31) = 8332863 (Adições = 2) +D(5, 32) = 9737793 (Adições = 2) +D(5, 33) = 11326283 (Adições = 2) +D(5, 34) = 13115773 (Adições = 2) +D(5, 35) = 15124775 (Adições = 2) +D(5, 36) = 17372905 (Adições = 2) +D(5, 37) = 19880915 (Adições = 2) +D(5, 38) = 22670725 (Adições = 2) +D(5, 39) = 25765455 (Adições = 2) +D(5, 40) = 29189457 (Adições = 2) +D(5, 41) = 32968347 (Adições = 2) +D(5, 42) = 37129037 (Adições = 2) +D(5, 43) = 41699767 (Adições = 2) +D(5, 44) = 46710137 (Adições = 2) +D(5, 45) = 52191139 (Adições = 2) +D(5, 46) = 58175189 (Adições = 2) +D(5, 47) = 64696159 (Adições = 2) +D(5, 48) = 71789409 (Adições = 2) +D(5, 49) = 79491819 (Adições = 2) +D(5, 50) = 87841821 (Adições = 2) +D(5, 51) = 96879431 (Adições = 2) +D(5, 52) = 106646281 (Adições = 2) +D(5, 53) = 117185651 (Adições = 2) +D(5, 54) = 128542501 (Adições = 2) +D(5, 55) = 140763503 (Adições = 2) +D(5, 56) = 153897073 (Adições = 2) +D(5, 57) = 167993403 (Adições = 2) +D(5, 58) = 183104493 (Adições = 2) +D(5, 59) = 199284183 (Adições = 2) +D(5, 60) = 216588185 (Adições = 2) +D(5, 61) = 235074115 (Adições = 2) +D(5, 62) = 254801525 (Adições = 2) +D(5, 63) = 275831935 (Adições = 2) +D(5, 64) = 298228865 (Adições = 2) +D(5, 65) = 322057867 (Adições = 2) +D(5, 66) = 347386557 (Adições = 2) +D(5, 67) = 374284647 (Adições = 2) +D(5, 68) = 402823977 (Adições = 2) +D(5, 69) = 433078547 (Adições = 2) +D(5, 70) = 465124549 (Adições = 2) +D(5, 71) = 499040399 (Adições = 2) +D(5, 72) = 534906769 (Adições = 2) +D(5, 73) = 572806619 (Adições = 2) +D(5, 74) = 612825229 (Adições = 2) +D(5, 75) = 655050231 (Adições = 2) +D(5, 76) = 699571641 (Adições = 2) +D(5, 77) = 746481891 (Adições = 2) +D(5, 78) = 795875861 (Adições = 2) +D(5, 79) = 847850911 (Adições = 2) +D(5, 80) = 902506913 (Adições = 2) +D(5, 81) = 959946283 (Adições = 2) +D(5, 82) = 1020274013 (Adições = 2) +D(5, 83) = 1083597703 (Adições = 2) +D(5, 84) = 1150027593 (Adições = 2) +D(5, 85) = 1219676595 (Adições = 2) +D(5, 86) = 1292660325 (Adições = 2) +D(5, 87) = 1369097135 (Adições = 2) +D(5, 88) = 1449108145 (Adições = 2) +D(5, 89) = 1532817275 (Adições = 2) +D(5, 90) = 1620351277 (Adições = 2) +D(5, 91) = 1711839767 (Adições = 2) +D(5, 92) = 1807415257 (Adições = 2) +D(5, 93) = 1907213187 (Adições = 2) +D(5, 94) = 2011371957 (Adições = 2) +D(5, 95) = 2120032959 (Adições = 2) +D(5, 96) = 2233340609 (Adições = 2) +D(5, 97) = 2351442379 (Adições = 2) +D(5, 98) = 2474488829 (Adições = 2) +D(5, 99) = 2602633639 (Adições = 2) +D(5, 100) = 2736033641 (Adições = 2) +D(6, 0) = 1 (Adições = 0) +D(6, 1) = 13 (Adições = 2) +D(6, 2) = 85 (Adições = 2) +D(6, 3) = 377 (Adições = 2) +D(6, 4) = 1289 (Adições = 2) +D(6, 5) = 3653 (Adições = 2) +D(6, 6) = 8989 (Adições = 2) +D(6, 7) = 19825 (Adições = 2) +D(6, 8) = 40081 (Adições = 2) +D(6, 9) = 75517 (Adições = 2) +D(6, 10) = 134245 (Adições = 2) +D(6, 11) = 227305 (Adições = 2) +D(6, 12) = 369305 (Adições = 2) +D(6, 13) = 579125 (Adições = 2) +D(6, 14) = 880685 (Adições = 2) +D(6, 15) = 1303777 (Adições = 2) +D(6, 16) = 1884961 (Adições = 2) +D(6, 17) = 2668525 (Adições = 2) +D(6, 18) = 3707509 (Adições = 2) +D(6, 19) = 5064793 (Adições = 2) +D(6, 20) = 6814249 (Adições = 2) +D(6, 21) = 9041957 (Adições = 2) +D(6, 22) = 11847485 (Adições = 2) +D(6, 23) = 15345233 (Adições = 2) +D(6, 24) = 19665841 (Adições = 2) +D(6, 25) = 24957661 (Adições = 2) +D(6, 26) = 31388293 (Adições = 2) +D(6, 27) = 39146185 (Adições = 2) +D(6, 28) = 48442297 (Adições = 2) +D(6, 29) = 59511829 (Adições = 2) +D(6, 30) = 72616013 (Adições = 2) +D(6, 31) = 88043969 (Adições = 2) +D(6, 32) = 106114625 (Adições = 2) +D(6, 33) = 127178701 (Adições = 2) +D(6, 34) = 151620757 (Adições = 2) +D(6, 35) = 179861305 (Adições = 2) +D(6, 36) = 212358985 (Adições = 2) +D(6, 37) = 249612805 (Adições = 2) +D(6, 38) = 292164445 (Adições = 2) +D(6, 39) = 340600625 (Adições = 2) +D(6, 40) = 395555537 (Adições = 2) +D(6, 41) = 457713341 (Adições = 2) +D(6, 42) = 527810725 (Adições = 2) +D(6, 43) = 606639529 (Adições = 2) +D(6, 44) = 695049433 (Adições = 2) +D(6, 45) = 793950709 (Adições = 2) +D(6, 46) = 904317037 (Adições = 2) +D(6, 47) = 1027188385 (Adições = 2) +D(6, 48) = 1163673953 (Adições = 2) +D(6, 49) = 1314955181 (Adições = 2) +D(6, 50) = 1482288821 (Adições = 2) +D(6, 51) = 1667010073 (Adições = 2) +D(6, 52) = 1870535785 (Adições = 2) +D(6, 53) = 2094367717 (Adições = 2) +D(6, 54) = 2340095869 (Adições = 2) +D(6, 55) = 2609401873 (Adições = 2) +D(6, 56) = 2904062449 (Adições = 2) +D(6, 57) = 3225952925 (Adições = 2) +D(6, 58) = 3577050821 (Adições = 2) +D(6, 59) = 3959439497 (Adições = 2) +D(6, 60) = 4375311865 (Adições = 2) +D(6, 61) = 4826974165 (Adições = 2) +D(6, 62) = 5316849805 (Adições = 2) +D(6, 63) = 5847483265 (Adições = 2) +D(6, 64) = 6421544065 (Adições = 2) +D(6, 65) = 7041830797 (Adições = 2) +D(6, 66) = 7711275221 (Adições = 2) +D(6, 67) = 8432946425 (Adições = 2) +D(6, 68) = 9210055049 (Adições = 2) +D(6, 69) = 10045957573 (Adições = 2) +D(6, 70) = 10944160669 (Adições = 2) +D(6, 71) = 11908325617 (Adições = 2) +D(6, 72) = 12942272785 (Adições = 2) +D(6, 73) = 14049986173 (Adições = 2) +D(6, 74) = 15235618021 (Adições = 2) +D(6, 75) = 16503493481 (Adições = 2) +D(6, 76) = 17858115353 (Adições = 2) +D(6, 77) = 19304168885 (Adições = 2) +D(6, 78) = 20846526637 (Adições = 2) +D(6, 79) = 22490253409 (Adições = 2) +D(6, 80) = 24240611233 (Adições = 2) +D(6, 81) = 26103064429 (Adições = 2) +D(6, 82) = 28083284725 (Adições = 2) +D(6, 83) = 30187156441 (Adições = 2) +D(6, 84) = 32420781737 (Adições = 2) +D(6, 85) = 34790485925 (Adições = 2) +D(6, 86) = 37302822845 (Adições = 2) +D(6, 87) = 39964580305 (Adições = 2) +D(6, 88) = 42782785585 (Adições = 2) +D(6, 89) = 45764711005 (Adições = 2) +D(6, 90) = 48917879557 (Adições = 2) +D(6, 91) = 52250070601 (Adições = 2) +D(6, 92) = 55769325625 (Adições = 2) +D(6, 93) = 59483954069 (Adições = 2) +D(6, 94) = 63402539213 (Adições = 2) +D(6, 95) = 67533944129 (Adições = 2) +D(6, 96) = 71887317697 (Adições = 2) +D(6, 97) = 76472100685 (Adições = 2) +D(6, 98) = 81298031893 (Adições = 2) +D(6, 99) = 86375154361 (Adições = 2) +D(6, 100) = 91713821641 (Adições = 2) +D(7, 0) = 1 (Adições = 0) +D(7, 1) = 15 (Adições = 2) +D(7, 2) = 113 (Adições = 2) +D(7, 3) = 575 (Adições = 2) +D(7, 4) = 2241 (Adições = 2) +D(7, 5) = 7183 (Adições = 2) +D(7, 6) = 19825 (Adições = 2) +D(7, 7) = 48639 (Adições = 2) +D(7, 8) = 108545 (Adições = 2) +D(7, 9) = 224143 (Adições = 2) +D(7, 10) = 433905 (Adições = 2) +D(7, 11) = 795455 (Adições = 2) +D(7, 12) = 1392065 (Adições = 2) +D(7, 13) = 2340495 (Adições = 2) +D(7, 14) = 3800305 (Adições = 2) +D(7, 15) = 5984767 (Adições = 2) +D(7, 16) = 9173505 (Adições = 2) +D(7, 17) = 13726991 (Adições = 2) +D(7, 18) = 20103025 (Adições = 2) +D(7, 19) = 28875327 (Adições = 2) +D(7, 20) = 40754369 (Adições = 2) +D(7, 21) = 56610575 (Adições = 2) +D(7, 22) = 77500017 (Adições = 2) +D(7, 23) = 104692735 (Adições = 2) +D(7, 24) = 139703809 (Adições = 2) +D(7, 25) = 184327311 (Adições = 2) +D(7, 26) = 240673265 (Adições = 2) +D(7, 27) = 311207743 (Adições = 2) +D(7, 28) = 398796225 (Adições = 2) +D(7, 29) = 506750351 (Adições = 2) +D(7, 30) = 638878193 (Adições = 2) +D(7, 31) = 799538175 (Adições = 2) +D(7, 32) = 993696769 (Adições = 2) +D(7, 33) = 1226990095 (Adições = 2) +D(7, 34) = 1505789553 (Adições = 2) +D(7, 35) = 1837271615 (Adições = 2) +D(7, 36) = 2229491905 (Adições = 2) +D(7, 37) = 2691463695 (Adições = 2) +D(7, 38) = 3233240945 (Adições = 2) +D(7, 39) = 3866006015 (Adições = 2) +D(7, 40) = 4602162177 (Adições = 2) +D(7, 41) = 5455431055 (Adições = 2) +D(7, 42) = 6440955121 (Adições = 2) +D(7, 43) = 7575405375 (Adições = 2) +D(7, 44) = 8877094337 (Adições = 2) +D(7, 45) = 10366094479 (Adições = 2) +D(7, 46) = 12064362225 (Adições = 2) +D(7, 47) = 13995867647 (Adições = 2) +D(7, 48) = 16186729985 (Adições = 2) +D(7, 49) = 18665359119 (Adições = 2) +D(7, 50) = 21462603121 (Adições = 2) +D(7, 51) = 24611902015 (Adições = 2) +D(7, 52) = 28149447873 (Adições = 2) +D(7, 53) = 32114351375 (Adições = 2) +D(7, 54) = 36548814961 (Adições = 2) +D(7, 55) = 41498312703 (Adições = 2) +D(7, 56) = 47011777025 (Adições = 2) +D(7, 57) = 53141792399 (Adições = 2) +D(7, 58) = 59944796145 (Adições = 2) +D(7, 59) = 67481286463 (Adições = 2) +D(7, 60) = 75816037825 (Adições = 2) +D(7, 61) = 85018323855 (Adições = 2) +D(7, 62) = 95162147825 (Adições = 2) +D(7, 63) = 106326480895 (Adições = 2) +D(7, 64) = 118595508225 (Adições = 2) +D(7, 65) = 132058883087 (Adições = 2) +D(7, 66) = 146811989105 (Adições = 2) +D(7, 67) = 162956210751 (Adições = 2) +D(7, 68) = 180599212225 (Adições = 2) +D(7, 69) = 199855224847 (Adições = 2) +D(7, 70) = 220845343089 (Adições = 2) +D(7, 71) = 243697829375 (Adições = 2) +D(7, 72) = 268548427777 (Adições = 2) +D(7, 73) = 295540686735 (Adições = 2) +D(7, 74) = 324826290929 (Adições = 2) +D(7, 75) = 356565402431 (Adições = 2) +D(7, 76) = 390927011265 (Adições = 2) +D(7, 77) = 428089295503 (Adições = 2) +D(7, 78) = 468239991025 (Adições = 2) +D(7, 79) = 511576771071 (Adições = 2) +D(7, 80) = 558307635713 (Adições = 2) +D(7, 81) = 608651311375 (Adições = 2) +D(7, 82) = 662837660529 (Adições = 2) +D(7, 83) = 721108101695 (Adições = 2) +D(7, 84) = 783716039873 (Adições = 2) +D(7, 85) = 850927307535 (Adições = 2) +D(7, 86) = 923020616305 (Adições = 2) +D(7, 87) = 1000288019455 (Adições = 2) +D(7, 88) = 1083035385345 (Adições = 2) +D(7, 89) = 1171582881935 (Adições = 2) +D(7, 90) = 1266265472497 (Adições = 2) +D(7, 91) = 1367433422655 (Adições = 2) +D(7, 92) = 1475452818881 (Adições = 2) +D(7, 93) = 1590706098575 (Adições = 2) +D(7, 94) = 1713592591857 (Adições = 2) +D(7, 95) = 1844529075199 (Adições = 2) +D(7, 96) = 1983950337025 (Adições = 2) +D(7, 97) = 2132309755407 (Adições = 2) +D(7, 98) = 2290079887985 (Adições = 2) +D(7, 99) = 2457753074239 (Adições = 2) +D(7, 100) = 2635842050241 (Adições = 2) +D(8, 0) = 1 (Adições = 0) +D(8, 1) = 17 (Adições = 2) +D(8, 2) = 145 (Adições = 2) +D(8, 3) = 833 (Adições = 2) +D(8, 4) = 3649 (Adições = 2) +D(8, 5) = 13073 (Adições = 2) +D(8, 6) = 40081 (Adições = 2) +D(8, 7) = 108545 (Adições = 2) +D(8, 8) = 265729 (Adições = 2) +D(8, 9) = 598417 (Adições = 2) +D(8, 10) = 1256465 (Adições = 2) +D(8, 11) = 2485825 (Adições = 2) +D(8, 12) = 4673345 (Adições = 2) +D(8, 13) = 8405905 (Adições = 2) +D(8, 14) = 14546705 (Adições = 2) +D(8, 15) = 24331777 (Adições = 2) +D(8, 16) = 39490049 (Adições = 2) +D(8, 17) = 62390545 (Adições = 2) +D(8, 18) = 96220561 (Adições = 2) +D(8, 19) = 145198913 (Adições = 2) +D(8, 20) = 214828609 (Adições = 2) +D(8, 21) = 312193553 (Adições = 2) +D(8, 22) = 446304145 (Adições = 2) +D(8, 23) = 628496897 (Adições = 2) +D(8, 24) = 872893441 (Adições = 2) +D(8, 25) = 1196924561 (Adições = 2) +D(8, 26) = 1621925137 (Adições = 2) +D(8, 27) = 2173806145 (Adições = 2) +D(8, 28) = 2883810113 (Adições = 2) +D(8, 29) = 3789356689 (Adições = 2) +D(8, 30) = 4934985233 (Adições = 2) +D(8, 31) = 6373401601 (Adições = 2) +D(8, 32) = 8166636545 (Adições = 2) +D(8, 33) = 10387323409 (Adições = 2) +D(8, 34) = 13120103057 (Adições = 2) +D(8, 35) = 16463164225 (Adições = 2) +D(8, 36) = 20529927745 (Adições = 2) +D(8, 37) = 25450883345 (Adições = 2) +D(8, 38) = 31375587985 (Adições = 2) +D(8, 39) = 38474834945 (Adições = 2) +D(8, 40) = 46943003137 (Adições = 2) +D(8, 41) = 57000596369 (Adições = 2) +D(8, 42) = 68896982545 (Adições = 2) +D(8, 43) = 82913343041 (Adições = 2) +D(8, 44) = 99365842753 (Adições = 2) +D(8, 45) = 118609031569 (Adições = 2) +D(8, 46) = 141039488273 (Adições = 2) +D(8, 47) = 167099718145 (Adições = 2) +D(8, 48) = 197282315777 (Adições = 2) +D(8, 49) = 232134404881 (Adições = 2) +D(8, 50) = 272262367121 (Adições = 2) +D(8, 51) = 318336872257 (Adições = 2) +D(8, 52) = 371098222145 (Adições = 2) +D(8, 53) = 431362021393 (Adições = 2) +D(8, 54) = 500025187729 (Adições = 2) +D(8, 55) = 578072315393 (Adições = 2) +D(8, 56) = 666582405121 (Adições = 2) +D(8, 57) = 766735974545 (Adições = 2) +D(8, 58) = 879822563089 (Adições = 2) +D(8, 59) = 1007248645697 (Adições = 2) +D(8, 60) = 1150545969985 (Adições = 2) +D(8, 61) = 1311380331665 (Adições = 2) +D(8, 62) = 1491560803345 (Adições = 2) +D(8, 63) = 1693049432065 (Adições = 2) +D(8, 64) = 1917971421185 (Adições = 2) +D(8, 65) = 2168625812497 (Adições = 2) +D(8, 66) = 2447496684689 (Adições = 2) +D(8, 67) = 2757264884545 (Adições = 2) +D(8, 68) = 3100820307521 (Adições = 2) +D(8, 69) = 3481274744593 (Adições = 2) +D(8, 70) = 3901975312529 (Adições = 2) +D(8, 71) = 4366518484993 (Adições = 2) +D(8, 72) = 4878764742145 (Adições = 2) +D(8, 73) = 5442853856657 (Adições = 2) +D(8, 74) = 6063220834321 (Adições = 2) +D(8, 75) = 6744612527681 (Adições = 2) +D(8, 76) = 7492104941377 (Adições = 2) +D(8, 77) = 8311121248145 (Adições = 2) +D(8, 78) = 9207450534673 (Adições = 2) +D(8, 79) = 10187267296769 (Adições = 2) +D(8, 80) = 11257151703553 (Adições = 2) +D(8, 81) = 12424110650641 (Adições = 2) +D(8, 82) = 13695599622545 (Adições = 2) +D(8, 83) = 15079545384769 (Adições = 2) +D(8, 84) = 16584369526337 (Adições = 2) +D(8, 85) = 18219012873745 (Adições = 2) +D(8, 86) = 19992960797585 (Adições = 2) +D(8, 87) = 21916269433345 (Adições = 2) +D(8, 88) = 23999592838145 (Adições = 2) +D(8, 89) = 26254211105425 (Adições = 2) +D(8, 90) = 28692059459857 (Adições = 2) +D(8, 91) = 31325758355009 (Adições = 2) +D(8, 92) = 34168644596545 (Adições = 2) +D(8, 93) = 37234803514001 (Adições = 2) +D(8, 94) = 40539102204433 (Adições = 2) +D(8, 95) = 44097223871489 (Adições = 2) +D(8, 96) = 47925703283713 (Adições = 2) +D(8, 97) = 52041963376145 (Adições = 2) +D(8, 98) = 56464353019537 (Adições = 2) +D(8, 99) = 61212185981761 (Adições = 2) +D(8, 100) = 66305781106241 (Adições = 2) +D(9, 0) = 1 (Adições = 0) +D(9, 1) = 19 (Adições = 2) +D(9, 2) = 181 (Adições = 2) +D(9, 3) = 1159 (Adições = 2) +D(9, 4) = 5641 (Adições = 2) +D(9, 5) = 22363 (Adições = 2) +D(9, 6) = 75517 (Adições = 2) +D(9, 7) = 224143 (Adições = 2) +D(9, 8) = 598417 (Adições = 2) +D(9, 9) = 1462563 (Adições = 2) +D(9, 10) = 3317445 (Adições = 2) +D(9, 11) = 7059735 (Adições = 2) +D(9, 12) = 14218905 (Adições = 2) +D(9, 13) = 27298155 (Adições = 2) +D(9, 14) = 50250765 (Adições = 2) +D(9, 15) = 89129247 (Adições = 2) +D(9, 16) = 152951073 (Adições = 2) +D(9, 17) = 254831667 (Adições = 2) +D(9, 18) = 413442773 (Adições = 2) +D(9, 19) = 654862247 (Adições = 2) +D(9, 20) = 1014889769 (Adições = 2) +D(9, 21) = 1541911931 (Adições = 2) +D(9, 22) = 2300409629 (Adições = 2) +D(9, 23) = 3375210671 (Adições = 2) +D(9, 24) = 4876601009 (Adições = 2) +D(9, 25) = 6946419011 (Adições = 2) +D(9, 26) = 9765268709 (Adições = 2) +D(9, 27) = 13560999991 (Adições = 2) +D(9, 28) = 18618616249 (Adições = 2) +D(9, 29) = 25291783051 (Adições = 2) +D(9, 30) = 34016124973 (Adições = 2) +D(9, 31) = 45324511807 (Adições = 2) +D(9, 32) = 59864549953 (Adições = 2) +D(9, 33) = 78418509907 (Adições = 2) +D(9, 34) = 101925936373 (Adições = 2) +D(9, 35) = 131509203655 (Adições = 2) +D(9, 36) = 168502295625 (Adições = 2) +D(9, 37) = 214483106715 (Adições = 2) +D(9, 38) = 271309578045 (Adições = 2) +D(9, 39) = 341160000975 (Adições = 2) +D(9, 40) = 426577839057 (Adições = 2) +D(9, 41) = 530521438563 (Adições = 2) +D(9, 42) = 656419017477 (Adições = 2) +D(9, 43) = 808229343063 (Adições = 2) +D(9, 44) = 990508528857 (Adições = 2) +D(9, 45) = 1208483403179 (Adições = 2) +D(9, 46) = 1468131923021 (Adições = 2) +D(9, 47) = 1776271129439 (Adições = 2) +D(9, 48) = 2140653163361 (Adições = 2) +D(9, 49) = 2570069884019 (Adições = 2) +D(9, 50) = 3074466656021 (Adições = 2) +D(9, 51) = 3665065895399 (Adições = 2) +D(9, 52) = 4354500989801 (Adições = 2) +D(9, 53) = 5156961233339 (Adições = 2) +D(9, 54) = 6088348442461 (Adições = 2) +D(9, 55) = 7166445945583 (Adições = 2) +D(9, 56) = 8411100666097 (Adições = 2) +D(9, 57) = 9844419045763 (Adições = 2) +D(9, 58) = 11490977583397 (Adições = 2) +D(9, 59) = 13378048792183 (Adições = 2) +D(9, 60) = 15535843407865 (Adições = 2) +D(9, 61) = 17997769709515 (Adições = 2) +D(9, 62) = 20800710844525 (Adições = 2) +D(9, 63) = 23985321079935 (Adições = 2) +D(9, 64) = 27596341933185 (Adições = 2) +D(9, 65) = 31682939166867 (Adições = 2) +D(9, 66) = 36299061664053 (Adições = 2) +D(9, 67) = 41503823233287 (Adições = 2) +D(9, 68) = 47361908425353 (Adições = 2) +D(9, 69) = 53944003477467 (Adições = 2) +D(9, 70) = 61327253534589 (Adições = 2) +D(9, 71) = 69595747332111 (Adições = 2) +D(9, 72) = 78841030559249 (Adições = 2) +D(9, 73) = 89162649158051 (Adições = 2) +D(9, 74) = 100668723849029 (Adições = 2) +D(9, 75) = 113476557211031 (Adições = 2) +D(9, 76) = 127713274680089 (Adições = 2) +D(9, 77) = 143516500869611 (Adições = 2) +D(9, 78) = 161035072652429 (Adições = 2) +D(9, 79) = 180429790483871 (Adições = 2) +D(9, 80) = 201874209484193 (Adições = 2) +D(9, 81) = 225555471838387 (Adições = 2) +D(9, 82) = 251675182111573 (Adições = 2) +D(9, 83) = 280450327118887 (Adições = 2) +D(9, 84) = 312114242029993 (Adições = 2) +D(9, 85) = 346917624430075 (Adições = 2) +D(9, 86) = 385129598101405 (Adições = 2) +D(9, 87) = 427038828332335 (Adições = 2) +D(9, 88) = 472954690603825 (Adições = 2) +D(9, 89) = 523208494547395 (Adições = 2) +D(9, 90) = 578154765112677 (Adições = 2) +D(9, 91) = 638172582927543 (Adições = 2) +D(9, 92) = 703666985879097 (Adições = 2) +D(9, 93) = 775070433989643 (Adições = 2) +D(9, 94) = 852844339708077 (Adições = 2) +D(9, 95) = 937480665783999 (Adições = 2) +D(9, 96) = 1029503592939201 (Adições = 2) +D(9, 97) = 1129471259599059 (Adições = 2) +D(9, 98) = 1237977575994741 (Adições = 2) +D(9, 99) = 1355654114996039 (Adições = 2) +D(9, 100) = 1483172082084041 (Adições = 2) +D(10, 0) = 1 (Adições = 0) +D(10, 1) = 21 (Adições = 2) +D(10, 2) = 221 (Adições = 2) +D(10, 3) = 1561 (Adições = 2) +D(10, 4) = 8361 (Adições = 2) +D(10, 5) = 36365 (Adições = 2) +D(10, 6) = 134245 (Adições = 2) +D(10, 7) = 433905 (Adições = 2) +D(10, 8) = 1256465 (Adições = 2) +D(10, 9) = 3317445 (Adições = 2) +D(10, 10) = 8097453 (Adições = 2) +D(10, 11) = 18474633 (Adições = 2) +D(10, 12) = 39753273 (Adições = 2) +D(10, 13) = 81270333 (Adições = 2) +D(10, 14) = 158819253 (Adições = 2) +D(10, 15) = 298199265 (Adições = 2) +D(10, 16) = 540279585 (Adições = 2) +D(10, 17) = 948062325 (Adições = 2) +D(10, 18) = 1616336765 (Adições = 2) +D(10, 19) = 2684641785 (Adições = 2) +D(10, 20) = 4354393801 (Adições = 2) +D(10, 21) = 6911195501 (Adições = 2) +D(10, 22) = 10753517061 (Adições = 2) +D(10, 23) = 16429137361 (Adições = 2) +D(10, 24) = 24680949041 (Adições = 2) +D(10, 25) = 36503969061 (Adições = 2) +D(10, 26) = 53215656781 (Adições = 2) +D(10, 27) = 76541925481 (Adições = 2) +D(10, 28) = 108721541721 (Adições = 2) +D(10, 29) = 152631941021 (Adições = 2) +D(10, 30) = 211939849045 (Adições = 2) +D(10, 31) = 291280485825 (Adições = 2) +D(10, 32) = 396469547585 (Adições = 2) +D(10, 33) = 534752607445 (Adições = 2) +D(10, 34) = 715097053725 (Adições = 2) +D(10, 35) = 948532193753 (Adições = 2) +D(10, 36) = 1248543693033 (Adições = 2) +D(10, 37) = 1631529095373 (Adições = 2) +D(10, 38) = 2117321780133 (Adições = 2) +D(10, 39) = 2729791359153 (Adições = 2) +D(10, 40) = 3497529199185 (Adições = 2) +D(10, 41) = 4454628476805 (Adições = 2) +D(10, 42) = 5641568932845 (Adições = 2) +D(10, 43) = 7106217293385 (Adições = 2) +D(10, 44) = 8904955165305 (Adições = 2) +D(10, 45) = 11103947097341 (Adições = 2) +D(10, 46) = 13780562423541 (Adições = 2) +D(10, 47) = 17024965476001 (Adições = 2) +D(10, 48) = 20941889768801 (Adições = 2) +D(10, 49) = 25652612816181 (Adições = 2) +D(10, 50) = 31297149356221 (Adições = 2) +D(10, 51) = 38036681907641 (Adições = 2) +D(10, 52) = 46056248792841 (Adições = 2) +D(10, 53) = 55567711015981 (Adições = 2) +D(10, 54) = 66813020691781 (Adições = 2) +D(10, 55) = 80067815079825 (Adições = 2) +D(10, 56) = 95645361691505 (Adições = 2) +D(10, 57) = 113900881403365 (Adições = 2) +D(10, 58) = 135236278032525 (Adições = 2) +D(10, 59) = 160105304408105 (Adições = 2) +D(10, 60) = 189019196608153 (Adições = 2) +D(10, 61) = 222552809725533 (Adições = 2) +D(10, 62) = 261351290279573 (Adições = 2) +D(10, 63) = 306137322204033 (Adições = 2) +D(10, 64) = 357718985217153 (Adições = 2) +D(10, 65) = 416998266317205 (Adições = 2) +D(10, 66) = 484980267148125 (Adições = 2) +D(10, 67) = 562783152045465 (Adições = 2) +D(10, 68) = 651648883704105 (Adições = 2) +D(10, 69) = 752954795606925 (Adições = 2) +D(10, 70) = 868226052618981 (Adições = 2) +D(10, 71) = 999149053485681 (Adições = 2) +D(10, 72) = 1147585831377041 (Adições = 2) +D(10, 73) = 1315589511094341 (Adições = 2) +D(10, 74) = 1505420884101421 (Adições = 2) +D(10, 75) = 1719566165161481 (Adições = 2) +D(10, 76) = 1960755997052601 (Adições = 2) +D(10, 77) = 2231985772602301 (Adições = 2) +D(10, 78) = 2536537346124341 (Adições = 2) +D(10, 79) = 2878002209260641 (Adições = 2) +D(10, 80) = 3260306209228705 (Adições = 2) +D(10, 81) = 3687735890551285 (Adições = 2) +D(10, 82) = 4164966544501245 (Adições = 2) +D(10, 83) = 4697092053731705 (Adições = 2) +D(10, 84) = 5289656622880585 (Adições = 2) +D(10, 85) = 5948688489340653 (Adições = 2) +D(10, 86) = 6680735711872133 (Adições = 2) +D(10, 87) = 7492904138305873 (Adições = 2) +D(10, 88) = 8392897657242033 (Adições = 2) +D(10, 89) = 9389060842393253 (Adições = 2) +D(10, 90) = 10490424102053325 (Adições = 2) +D(10, 91) = 11706751450093545 (Adições = 2) +D(10, 92) = 13048591018900185 (Adições = 2) +D(10, 93) = 14527328438768925 (Adições = 2) +D(10, 94) = 16155243212466645 (Adições = 2) +D(10, 95) = 17945568217958721 (Adições = 2) +D(10, 96) = 19912552476681921 (Adições = 2) +D(10, 97) = 22071527329220181 (Adições = 2) +D(10, 98) = 24438976164813981 (Adições = 2) +D(10, 99) = 27032607855804761 (Adições = 2) +D(10, 100) = 29871434052884841 (Adições = 2) +D(11, 0) = 1 (Adições = 0) +D(11, 1) = 23 (Adições = 2) +D(11, 2) = 265 (Adições = 2) +D(11, 3) = 2047 (Adições = 2) +D(11, 4) = 11969 (Adições = 2) +D(11, 5) = 56695 (Adições = 2) +D(11, 6) = 227305 (Adições = 2) +D(11, 7) = 795455 (Adições = 2) +D(11, 8) = 2485825 (Adições = 2) +D(11, 9) = 7059735 (Adições = 2) +D(11, 10) = 18474633 (Adições = 2) +D(11, 11) = 45046719 (Adições = 2) +D(11, 12) = 103274625 (Adições = 2) +D(11, 13) = 224298231 (Adições = 2) +D(11, 14) = 464387817 (Adições = 2) +D(11, 15) = 921406335 (Adições = 2) +D(11, 16) = 1759885185 (Adições = 2) +D(11, 17) = 3248227095 (Adições = 2) +D(11, 18) = 5812626185 (Adições = 2) +D(11, 19) = 10113604735 (Adições = 2) +D(11, 20) = 17152640321 (Adições = 2) +D(11, 21) = 28418229623 (Adições = 2) +D(11, 22) = 46082942185 (Adições = 2) +D(11, 23) = 73265596607 (Adições = 2) +D(11, 24) = 114375683009 (Adições = 2) +D(11, 25) = 175560601111 (Adições = 2) +D(11, 26) = 265280226953 (Adições = 2) +D(11, 27) = 395037809215 (Adições = 2) +D(11, 28) = 580301276417 (Adições = 2) +D(11, 29) = 841654759159 (Adições = 2) +D(11, 30) = 1206226549225 (Adições = 2) +D(11, 31) = 1709446884095 (Adições = 2) +D(11, 32) = 2397196917505 (Adições = 2) +D(11, 33) = 3328419072535 (Adições = 2) +D(11, 34) = 4578268733705 (Adições = 2) +D(11, 35) = 6241897981183 (Adições = 2) +D(11, 36) = 8438973867969 (Adições = 2) +D(11, 37) = 11319046656375 (Adições = 2) +D(11, 38) = 15067897531881 (Adições = 2) +D(11, 39) = 19915010671167 (Adições = 2) +D(11, 40) = 26142331229505 (Adições = 2) +D(11, 41) = 34094488905495 (Adições = 2) +D(11, 42) = 44190686315145 (Adições = 2) +D(11, 43) = 56938472541375 (Adições = 2) +D(11, 44) = 72949645000065 (Adições = 2) +D(11, 45) = 92958547262711 (Adições = 2) +D(11, 46) = 117843056783593 (Adições = 2) +D(11, 47) = 148648584683135 (Adições = 2) +D(11, 48) = 186615439927937 (Adições = 2) +D(11, 49) = 233209942512919 (Adições = 2) +D(11, 50) = 290159704685321 (Adições = 2) +D(11, 51) = 359493535949183 (Adições = 2) +D(11, 52) = 443586466649665 (Adições = 2) +D(11, 53) = 545210426458487 (Adições = 2) +D(11, 54) = 667591158166249 (Adições = 2) +D(11, 55) = 814471993937855 (Adições = 2) +D(11, 56) = 990185170709185 (Adições = 2) +D(11, 57) = 1199731413804055 (Adições = 2) +D(11, 58) = 1448868573239945 (Adições = 2) +D(11, 59) = 1744210155680575 (Adições = 2) +D(11, 60) = 2093334656696833 (Adições = 2) +D(11, 61) = 2504906663030519 (Adições = 2) +D(11, 62) = 2988810763035625 (Adições = 2) +D(11, 63) = 3556299375519231 (Adições = 2) +D(11, 64) = 4220155682940417 (Adições = 2) +D(11, 65) = 4994872934474775 (Adições = 2) +D(11, 66) = 5896851467940105 (Adições = 2) +D(11, 67) = 6944614887133695 (Adições = 2) +D(11, 68) = 8159046922883265 (Adições = 2) +D(11, 69) = 9563650602194295 (Adições = 2) +D(11, 70) = 11184831450420201 (Adições = 2) +D(11, 71) = 13052206556524863 (Adições = 2) +D(11, 72) = 15198941441387585 (Adições = 2) +D(11, 73) = 17662116783858967 (Adições = 2) +D(11, 74) = 20483127179054729 (Adições = 2) +D(11, 75) = 23708114228317631 (Adições = 2) +D(11, 76) = 27388436390531713 (Adições = 2) +D(11, 77) = 31581178160186615 (Adições = 2) +D(11, 78) = 36349701278913257 (Adições = 2) +D(11, 79) = 41764240834298239 (Adições = 2) +D(11, 80) = 47902549252787585 (Adições = 2) +D(11, 81) = 54850591352567575 (Adições = 2) +D(11, 82) = 62703293787620105 (Adições = 2) +D(11, 83) = 71565352385853055 (Adições = 2) +D(11, 84) = 81552101062465345 (Adições = 2) +D(11, 85) = 92790446174686583 (Adições = 2) +D(11, 86) = 105419870375899369 (Adições = 2) +D(11, 87) = 119593510226077375 (Adições = 2) +D(11, 88) = 135479312021625281 (Adições = 2) +D(11, 89) = 153261270521260567 (Adições = 2) +D(11, 90) = 173140755465707145 (Adições = 2) +D(11, 91) = 195337931017854015 (Adições = 2) +D(11, 92) = 220093273486847745 (Adições = 2) +D(11, 93) = 247669192944516855 (Adições = 2) +D(11, 94) = 278351764595752425 (Adições = 2) +D(11, 95) = 312452576026177791 (Adições = 2) +D(11, 96) = 350310696720818433 (Adições = 2) +D(11, 97) = 392294776526720535 (Adições = 2) +D(11, 98) = 438805280020754697 (Adições = 2) +D(11, 99) = 490276864041373439 (Adições = 2) +D(11, 100) = 547180905950063041 (Adições = 2) +D(12, 0) = 1 (Adições = 0) +D(12, 1) = 25 (Adições = 2) +D(12, 2) = 313 (Adições = 2) +D(12, 3) = 2625 (Adições = 2) +D(12, 4) = 16641 (Adições = 2) +D(12, 5) = 85305 (Adições = 2) +D(12, 6) = 369305 (Adições = 2) +D(12, 7) = 1392065 (Adições = 2) +D(12, 8) = 4673345 (Adições = 2) +D(12, 9) = 14218905 (Adições = 2) +D(12, 10) = 39753273 (Adições = 2) +D(12, 11) = 103274625 (Adições = 2) +D(12, 12) = 251595969 (Adições = 2) +D(12, 13) = 579168825 (Adições = 2) +D(12, 14) = 1267854873 (Adições = 2) +D(12, 15) = 2653649025 (Adições = 2) +D(12, 16) = 5334940545 (Adições = 2) +D(12, 17) = 10343052825 (Adições = 2) +D(12, 18) = 19403906105 (Adições = 2) +D(12, 19) = 35330137025 (Adições = 2) +D(12, 20) = 62596382081 (Adições = 2) +D(12, 21) = 108167252025 (Adições = 2) +D(12, 22) = 182668423833 (Adições = 2) +D(12, 23) = 302016962625 (Adições = 2) +D(12, 24) = 489658242241 (Adições = 2) +D(12, 25) = 779594526361 (Adições = 2) +D(12, 26) = 1220435354425 (Adições = 2) +D(12, 27) = 1880753390593 (Adições = 2) +D(12, 28) = 2856092476225 (Adições = 2) +D(12, 29) = 4278048511801 (Adições = 2) +D(12, 30) = 6325929820185 (Adições = 2) +D(12, 31) = 9241603253505 (Adições = 2) +D(12, 32) = 13348247055105 (Adições = 2) +D(12, 33) = 19073863045145 (Adições = 2) +D(12, 34) = 26980550851385 (Adições = 2) +D(12, 35) = 37800717566273 (Adições = 2) +D(12, 36) = 52481589415425 (Adições = 2) +D(12, 37) = 72239609939769 (Adições = 2) +D(12, 38) = 98626554128025 (Adições = 2) +D(12, 39) = 133609462331073 (Adições = 2) +D(12, 40) = 179666804231745 (Adições = 2) +D(12, 41) = 239903624366745 (Adições = 2) +D(12, 42) = 318188799587385 (Adições = 2) +D(12, 43) = 419317958443905 (Adições = 2) +D(12, 44) = 549206075985345 (Adições = 2) +D(12, 45) = 715114268248121 (Adições = 2) +D(12, 46) = 925915872294425 (Adições = 2) +D(12, 47) = 1192407513761153 (Adições = 2) +D(12, 48) = 1527671538372225 (Adições = 2) +D(12, 49) = 1947496920813081 (Adições = 2) +D(12, 50) = 2470866568011321 (Adições = 2) +D(12, 51) = 3120519808645825 (Adições = 2) +D(12, 52) = 3923599811244673 (Adições = 2) +D(12, 53) = 4912396704352825 (Adições = 2) +D(12, 54) = 6125198288977561 (Adições = 2) +D(12, 55) = 7607261441081665 (Adições = 2) +D(12, 56) = 9411918605728705 (Adições = 2) +D(12, 57) = 11601835190241945 (Adições = 2) +D(12, 58) = 14250435177285945 (Adições = 2) +D(12, 59) = 17443513906206465 (Adições = 2) +D(12, 60) = 21281058718583873 (Adições = 2) +D(12, 61) = 25879300038311225 (Adições = 2) +D(12, 62) = 31373017464377369 (Adições = 2) +D(12, 63) = 37918127602932225 (Adições = 2) +D(12, 64) = 45694582661391873 (Adições = 2) +D(12, 65) = 54909611278807065 (Adições = 2) +D(12, 66) = 65801335681221945 (Adições = 2) +D(12, 67) = 78642802036295745 (Adições = 2) +D(12, 68) = 93746463846312705 (Adições = 2) +D(12, 69) = 111469161371390265 (Adições = 2) +D(12, 70) = 132217643424004761 (Adições = 2) +D(12, 71) = 156454681430949825 (Adições = 2) +D(12, 72) = 184705829428862273 (Adições = 2) +D(12, 73) = 217566887654108825 (Adições = 2) +D(12, 74) = 255712131617022521 (Adições = 2) +D(12, 75) = 299903373024394881 (Adições = 2) +D(12, 76) = 350999923643244225 (Adições = 2) +D(12, 77) = 409969538193962553 (Adições = 2) +D(12, 78) = 477900417633062425 (Adições = 2) +D(12, 79) = 556014359746273921 (Adições = 2) +D(12, 80) = 645681149833359745 (Adições = 2) +D(12, 81) = 748434290438714905 (Adições = 2) +D(12, 82) = 865988175578902585 (Adições = 2) +D(12, 83) = 1000256821752375745 (Adições = 2) +D(12, 84) = 1153374275200694145 (Adições = 2) +D(12, 85) = 1327716822437846073 (Adições = 2) +D(12, 86) = 1525927138988432025 (Adições = 2) +D(12, 87) = 1750940519590408769 (Adições = 2) +D(12, 88) = 2006013341838111425 (Adições = 2) +D(12, 89) = 2294753924380997273 (Adições = 2) +D(12, 90) = 2621155950367964985 (Adições = 2) +D(12, 91) = 2989634636851526145 (Adições = 2) +D(12, 92) = 3405065841356227905 (Adições = 2) +D(12, 93) = 3872828307787592505 (Adições = 2) +D(12, 94) = 4398849265327861785 (Adições = 2) +D(12, 95) = 4989653605949792001 (Adições = 2) +D(12, 96) = 5652416878696788225 (Adições = 2) +D(12, 97) = 6395022351944327193 (Adições = 2) +D(12, 98) = 7226122408491802425 (Adições = 2) +D(12, 99) = 8155204552553930561 (Adições = 2) +D(12, 100) = 9192662322545367041 (Adições = 2) +D(13, 0) = 1 (Adições = 0) +D(13, 1) = 27 (Adições = 2) +D(13, 2) = 365 (Adições = 2) +D(13, 3) = 3303 (Adições = 2) +D(13, 4) = 22569 (Adições = 2) +D(13, 5) = 124515 (Adições = 2) +D(13, 6) = 579125 (Adições = 2) +D(13, 7) = 2340495 (Adições = 2) +D(13, 8) = 8405905 (Adições = 2) +D(13, 9) = 27298155 (Adições = 2) +D(13, 10) = 81270333 (Adições = 2) +D(13, 11) = 224298231 (Adições = 2) +D(13, 12) = 579168825 (Adições = 2) +D(13, 13) = 1409933619 (Adições = 2) +D(13, 14) = 3256957317 (Adições = 2) +D(13, 15) = 7178461215 (Adições = 2) +D(13, 16) = 15167050785 (Adições = 2) +D(13, 17) = 30845044155 (Adições = 2) +D(13, 18) = 60592003085 (Adições = 2) +D(13, 19) = 115326046215 (Adições = 2) +D(13, 20) = 213252565321 (Adições = 2) +D(13, 21) = 384016199427 (Adições = 2) +D(13, 22) = 674851875285 (Adições = 2) +D(13, 23) = 1159537261743 (Adições = 2) +D(13, 24) = 1951212466609 (Adições = 2) +D(13, 25) = 3220465235211 (Adições = 2) +D(13, 26) = 5220495115997 (Adições = 2) +D(13, 27) = 8321683861015 (Adições = 2) +D(13, 28) = 13058529727833 (Adições = 2) +D(13, 29) = 20192670715859 (Adições = 2) +D(13, 30) = 30796649047845 (Adições = 2) +D(13, 31) = 46364182121535 (Adições = 2) +D(13, 32) = 68954032430145 (Adições = 2) +D(13, 33) = 101376142530395 (Adições = 2) +D(13, 34) = 147430556426925 (Adições = 2) +D(13, 35) = 212211824844583 (Adições = 2) +D(13, 36) = 302494131826281 (Adições = 2) +D(13, 37) = 427215331181475 (Adições = 2) +D(13, 38) = 598081495249269 (Adições = 2) +D(13, 39) = 830317511708367 (Adições = 2) +D(13, 40) = 1143593778271185 (Adições = 2) +D(13, 41) = 1563164206869675 (Adições = 2) +D(13, 42) = 2121256630823805 (Adições = 2) +D(13, 43) = 2858763388855095 (Adições = 2) +D(13, 44) = 3827287423284345 (Adições = 2) +D(13, 45) = 5091607767517811 (Adições = 2) +D(13, 46) = 6732637908060357 (Adições = 2) +D(13, 47) = 8850961294115935 (Adições = 2) +D(13, 48) = 11571040346249313 (Adições = 2) +D(13, 49) = 15046208805434619 (Adições = 2) +D(13, 50) = 19464572294259021 (Adições = 2) +D(13, 51) = 25055958670916167 (Adições = 2) +D(13, 52) = 32100078290806665 (Adições = 2) +D(13, 53) = 40936074806404163 (Adições = 2) +D(13, 54) = 51973669799734549 (Adições = 2) +D(13, 55) = 65706129529793775 (Adições = 2) +D(13, 56) = 82725309576604145 (Adições = 2) +D(13, 57) = 103739063372574795 (Adições = 2) +D(13, 58) = 129591333740102685 (Adições = 2) +D(13, 59) = 161285282823595095 (Adições = 2) +D(13, 60) = 200009855448385433 (Adições = 2) +D(13, 61) = 247170214205280531 (Adições = 2) +D(13, 62) = 304422531707969125 (Adições = 2) +D(13, 63) = 373713676775278719 (Adições = 2) +D(13, 64) = 457326387039602817 (Adições = 2) +D(13, 65) = 557930580979801755 (Adições = 2) +D(13, 66) = 678641527939830765 (Adições = 2) +D(13, 67) = 823085665657348455 (Adições = 2) +D(13, 68) = 995474931539956905 (Adições = 2) +D(13, 69) = 1200690556757659875 (Adições = 2) +D(13, 70) = 1444377361553054901 (Adições = 2) +D(13, 71) = 1733049686408009487 (Adições = 2) +D(13, 72) = 2074210197267821585 (Adições = 2) +D(13, 73) = 2476482914350792683 (Adições = 2) +D(13, 74) = 2949761933621924029 (Adições = 2) +D(13, 75) = 3505377438263341431 (Adições = 2) +D(13, 76) = 4156280734930980537 (Adições = 2) +D(13, 77) = 4917250196768187315 (Adições = 2) +D(13, 78) = 5805120152595212293 (Adições = 2) +D(13, 79) = 6839034929974548639 (Adições = 2) +D(13, 80) = 8040730439554182305 (Adições = 2) +D(13, 81) = 9434845879826256955 (Adições = 2) +D(13, 82) = 11049268345843874445 (Adições = 2) +D(13, 83) = 12915513343175152775 (Adições = 2) +D(13, 84) = 15069144440128222665 (Adições = 2) +D(13, 85) = 17550235537766762883 (Adições = 2) +D(13, 86) = 1957135425483489365 (Adições = 2) +D(13, 87) = 5234003084062330159 (Adições = 2) +D(13, 88) = 8990956945490850353 (Adições = 2) +D(13, 89) = 13291724211709959051 (Adições = 2) +D(13, 90) = 18207634086458921309 (Adições = 2) +D(13, 91) = 5371680599968860823 (Adições = 2) +D(13, 92) = 11766381078176614873 (Adições = 2) +D(13, 93) = 597531153610883667 (Adições = 2) +D(13, 94) = 8869208726726337957 (Adições = 2) +D(13, 95) = 18257711598003991743 (Adições = 2) +D(13, 96) = 10453038008941020353 (Adições = 2) +D(13, 97) = 4053733165872584155 (Adições = 2) +D(13, 98) = 17674877926308713773 (Adições = 2) +D(13, 99) = 14609460813644895143 (Adições = 2) +D(13, 100) = 13510583615034641129 (Adições = 2) +D(14, 0) = 1 (Adições = 0) +D(14, 1) = 29 (Adições = 2) +D(14, 2) = 421 (Adições = 2) +D(14, 3) = 4089 (Adições = 2) +D(14, 4) = 29961 (Adições = 2) +D(14, 5) = 177045 (Adições = 2) +D(14, 6) = 880685 (Adições = 2) +D(14, 7) = 3800305 (Adições = 2) +D(14, 8) = 14546705 (Adições = 2) +D(14, 9) = 50250765 (Adições = 2) +D(14, 10) = 158819253 (Adições = 2) +D(14, 11) = 464387817 (Adições = 2) +D(14, 12) = 1267854873 (Adições = 2) +D(14, 13) = 3256957317 (Adições = 2) +D(14, 14) = 7923848253 (Adições = 2) +D(14, 15) = 18359266785 (Adições = 2) +D(14, 16) = 40704778785 (Adições = 2) +D(14, 17) = 86716873725 (Adições = 2) +D(14, 18) = 178153920965 (Adições = 2) +D(14, 19) = 354071970265 (Adições = 2) +D(14, 20) = 682650581801 (Adições = 2) +D(14, 21) = 1279919346549 (Adições = 2) +D(14, 22) = 2338787421261 (Adições = 2) +D(14, 23) = 4173176558289 (Adições = 2) +D(14, 24) = 7283926286641 (Adições = 2) +D(14, 25) = 12455603988461 (Adições = 2) +D(14, 26) = 20896564339669 (Adições = 2) +D(14, 27) = 34438743316681 (Adições = 2) +D(14, 28) = 55818956905529 (Adições = 2) +D(14, 29) = 89070157349221 (Adições = 2) +D(14, 30) = 140059477112925 (Adições = 2) +D(14, 31) = 217220308282305 (Adições = 2) +D(14, 32) = 332538522833985 (Adições = 2) +D(14, 33) = 502868697794525 (Adições = 2) +D(14, 34) = 751675396751845 (Adições = 2) +D(14, 35) = 1111317778023353 (Adições = 2) +D(14, 36) = 1626023734694217 (Adições = 2) +D(14, 37) = 2355733197701973 (Adições = 2) +D(14, 38) = 3381030024132717 (Adições = 2) +D(14, 39) = 4809429031090353 (Adições = 2) +D(14, 40) = 6783340321069905 (Adições = 2) +D(14, 41) = 9490098306210765 (Adições = 2) +D(14, 42) = 13174519143904245 (Adições = 2) +D(14, 43) = 18154539163583145 (Adições = 2) +D(14, 44) = 24840589975722585 (Adições = 2) +D(14, 45) = 33759485166524741 (Adições = 2) +D(14, 46) = 45583730842102909 (Adições = 2) +D(14, 47) = 61167330044279201 (Adições = 2) +D(14, 48) = 81589331684644449 (Adições = 2) +D(14, 49) = 108206580836328381 (Adições = 2) +D(14, 50) = 142717361936022021 (Adições = 2) +D(14, 51) = 187237892901197209 (Adições = 2) +D(14, 52) = 244393929862920041 (Adições = 2) +D(14, 53) = 317430082960130869 (Adições = 2) +D(14, 54) = 410339827566269581 (Adições = 2) +D(14, 55) = 528019626895797905 (Adições = 2) +D(14, 56) = 676451066002195825 (Adições = 2) +D(14, 57) = 862915438951374765 (Adições = 2) +D(14, 58) = 1096245836064052245 (Adições = 2) +D(14, 59) = 1387122452627750025 (Adições = 2) +D(14, 60) = 1748417590899730553 (Adições = 2) +D(14, 61) = 2195597660553396517 (Adições = 2) +D(14, 62) = 2747190406466646173 (Adições = 2) +D(14, 63) = 3425326614949894017 (Adições = 2) +D(14, 64) = 4256366678764775553 (Adições = 2) +D(14, 65) = 5271623646784180125 (Adições = 2) +D(14, 66) = 6508195755703812645 (Adições = 2) +D(14, 67) = 8009922949300991865 (Adições = 2) +D(14, 68) = 9828483546498297225 (Adições = 2) +D(14, 69) = 12024649034795914005 (Adições = 2) +D(14, 70) = 14669716953106628781 (Adições = 2) +D(14, 71) = 17847144001067693169 (Adições = 2) +D(14, 72) = 3207659811033972625 (Adições = 2) +D(14, 73) = 7758352922652586893 (Adições = 2) +D(14, 74) = 13184597770625303605 (Adições = 2) +D(14, 75) = 1192993068801017449 (Adições = 2) +D(14, 76) = 8854651241995339417 (Adições = 2) +D(14, 77) = 17928182173694507269 (Adições = 2) +D(14, 78) = 10203808449348355261 (Adições = 2) +D(14, 79) = 4401219458208564577 (Adições = 2) +D(14, 80) = 834240754027743905 (Adições = 2) +D(14, 81) = 18309817073408183165 (Adições = 2) +D(14, 82) = 1900443151659211333 (Adições = 2) +D(14, 83) = 7418480766968686937 (Adições = 2) +D(14, 84) = 16956394476562510761 (Adições = 2) +D(14, 85) = 12682286307038393077 (Adições = 2) +D(14, 86) = 13742913196579093709 (Adições = 2) +D(14, 87) = 2487307632415361617 (Adições = 2) +D(14, 88) = 16712267661968542129 (Adições = 2) +D(14, 89) = 2101460671750248301 (Adições = 2) +D(14, 90) = 15154074896209577045 (Adições = 2) +D(14, 91) = 1839901435218255945 (Adições = 2) +D(14, 92) = 531219039654180025 (Adições = 2) +D(14, 93) = 12895131271441678565 (Adições = 2) +D(14, 94) = 3915127078069348573 (Adições = 2) +D(14, 95) = 12595303329090126657 (Adições = 2) +D(14, 96) = 4412564788616035521 (Adições = 2) +D(14, 97) = 472591889720088413 (Adições = 2) +D(14, 98) = 3754458908191834725 (Adições = 2) +D(14, 99) = 17592053574435892025 (Adições = 2) +D(14, 100) = 8818609855696325065 (Adições = 2) +D(15, 0) = 1 (Adições = 0) +D(15, 1) = 31 (Adições = 2) +D(15, 2) = 481 (Adições = 2) +D(15, 3) = 4991 (Adições = 2) +D(15, 4) = 39041 (Adições = 2) +D(15, 5) = 246047 (Adições = 2) +D(15, 6) = 1303777 (Adições = 2) +D(15, 7) = 5984767 (Adições = 2) +D(15, 8) = 24331777 (Adições = 2) +D(15, 9) = 89129247 (Adições = 2) +D(15, 10) = 298199265 (Adições = 2) +D(15, 11) = 921406335 (Adições = 2) +D(15, 12) = 2653649025 (Adições = 2) +D(15, 13) = 7178461215 (Adições = 2) +D(15, 14) = 18359266785 (Adições = 2) +D(15, 15) = 44642381823 (Adições = 2) +D(15, 16) = 103706427393 (Adições = 2) +D(15, 17) = 231128079903 (Adições = 2) +D(15, 18) = 495998874593 (Adições = 2) +D(15, 19) = 1028224765823 (Adições = 2) +D(15, 20) = 2064947317889 (Adições = 2) +D(15, 21) = 4027517246239 (Adições = 2) +D(15, 22) = 7646224014049 (Adições = 2) +D(15, 23) = 14158187993599 (Adições = 2) +D(15, 24) = 25615290838529 (Adições = 2) +D(15, 25) = 45354821113631 (Adições = 2) +D(15, 26) = 78706989441761 (Adições = 2) +D(15, 27) = 134042297098111 (Adições = 2) +D(15, 28) = 224299997320321 (Adições = 2) +D(15, 29) = 369189111575071 (Adições = 2) +D(15, 30) = 598318746037217 (Adições = 2) +D(15, 31) = 955598531432447 (Adições = 2) +D(15, 32) = 1505357362548737 (Adições = 2) +D(15, 33) = 2340764583177247 (Adições = 2) +D(15, 34) = 3595308677723617 (Adições = 2) +D(15, 35) = 5458301852498815 (Adições = 2) +D(15, 36) = 8195643365216385 (Adições = 2) +D(15, 37) = 12177400297612575 (Adições = 2) +D(15, 38) = 17914163519447265 (Adições = 2) +D(15, 39) = 26104622574670335 (Adições = 2) +D(15, 40) = 37697391926830593 (Adições = 2) +D(15, 41) = 53970830554111263 (Adições = 2) +D(15, 42) = 76635448004226273 (Adições = 2) +D(15, 43) = 107964506311713663 (Adições = 2) +D(15, 44) = 150959635451019393 (Adições = 2) +D(15, 45) = 209559710593266719 (Adições = 2) +D(15, 46) = 288902926601894369 (Adições = 2) +D(15, 47) = 395653987488276479 (Adições = 2) +D(15, 48) = 538410649217200129 (Adições = 2) +D(15, 49) = 728206561738172959 (Adições = 2) +D(15, 50) = 979130504510523361 (Adições = 2) +D(15, 51) = 1309085759347742591 (Adições = 2) +D(15, 52) = 1740717582111859841 (Adições = 2) +D(15, 53) = 2302541594934910751 (Adições = 2) +D(15, 54) = 3030311505461311201 (Adições = 2) +D(15, 55) = 3968670959923378687 (Adições = 2) +D(15, 56) = 5173141652821372417 (Adições = 2) +D(15, 57) = 6712508157774943007 (Adições = 2) +D(15, 58) = 8671669432790370017 (Adições = 2) +D(15, 59) = 11155037721482172287 (Adições = 2) +D(15, 60) = 14290577765009652865 (Adições = 2) +D(15, 61) = 18234593016462779935 (Adições = 2) +D(15, 62) = 4730637009773271009 (Adições = 2) +D(15, 63) = 10903154031189811199 (Adições = 2) +D(15, 64) = 138103251194929153 (Adições = 2) +D(15, 65) = 9666093576743884831 (Adições = 2) +D(15, 66) = 2999168905522325985 (Adições = 2) +D(15, 67) = 17517287610527130495 (Adições = 2) +D(15, 68) = 16908950032616867969 (Adições = 2) +D(15, 69) = 1868594466491975967 (Adições = 2) +D(15, 70) = 10116216380684967137 (Adições = 2) +D(15, 71) = 5739589187440185855 (Adições = 2) +D(15, 72) = 8347648925832300033 (Adições = 2) +D(15, 73) = 866917585809307935 (Adições = 2) +D(15, 74) = 3363124205377646817 (Adições = 2) +D(15, 75) = 17740715044803967871 (Adições = 2) +D(15, 76) = 9341615281890773121 (Adições = 2) +D(15, 77) = 17677704623871068191 (Adições = 2) +D(15, 78) = 8916207099494827489 (Adições = 2) +D(15, 79) = 5074490933342195711 (Adições = 2) +D(15, 80) = 10309951145578504193 (Adições = 2) +D(15, 81) = 11007264899304879647 (Adições = 2) +D(15, 82) = 12770781050662722529 (Adições = 2) +D(15, 83) = 3642960895581069183 (Adições = 2) +D(15, 84) = 9571092065402715265 (Adições = 2) +D(15, 85) = 2316284701584515871 (Adições = 2) +D(15, 86) = 10294740131492451041 (Adições = 2) +D(15, 87) = 8078216886777354751 (Adições = 2) +D(15, 88) = 8831048107451706881 (Adições = 2) +D(15, 89) = 9198032367460945695 (Adições = 2) +D(15, 90) = 8006823861711219425 (Adições = 2) +D(15, 91) = 6554056119429500799 (Adições = 2) +D(15, 92) = 8925176594301936769 (Adições = 2) +D(15, 93) = 3904782831688243743 (Adições = 2) +D(15, 94) = 2268297107489719265 (Adições = 2) +D(15, 95) = 331983440939642879 (Adições = 2) +D(15, 96) = 17339851558645805057 (Adições = 2) +D(15, 97) = 3778264163272377375 (Adições = 2) +D(15, 98) = 8005314961184300513 (Adições = 2) +D(15, 99) = 10905083370102475647 (Adições = 2) +D(15, 100) = 422258652815589505 (Adições = 2) +D(16, 0) = 1 (Adições = 0) +D(16, 1) = 33 (Adições = 2) +D(16, 2) = 545 (Adições = 2) +D(16, 3) = 6017 (Adições = 2) +D(16, 4) = 50049 (Adições = 2) +D(16, 5) = 335137 (Adições = 2) +D(16, 6) = 1884961 (Adições = 2) +D(16, 7) = 9173505 (Adições = 2) +D(16, 8) = 39490049 (Adições = 2) +D(16, 9) = 152951073 (Adições = 2) +D(16, 10) = 540279585 (Adições = 2) +D(16, 11) = 1759885185 (Adições = 2) +D(16, 12) = 5334940545 (Adições = 2) +D(16, 13) = 15167050785 (Adições = 2) +D(16, 14) = 40704778785 (Adições = 2) +D(16, 15) = 103706427393 (Adições = 2) +D(16, 16) = 252055236609 (Adições = 2) +D(16, 17) = 586889743905 (Adições = 2) +D(16, 18) = 1314016698401 (Adições = 2) +D(16, 19) = 2838240338817 (Adições = 2) +D(16, 20) = 5931412422529 (Adições = 2) +D(16, 21) = 12023876986657 (Adições = 2) +D(16, 22) = 23697618246945 (Adições = 2) +D(16, 23) = 45502030254593 (Adições = 2) +D(16, 24) = 85275509086721 (Adições = 2) +D(16, 25) = 156245621038881 (Adições = 2) +D(16, 26) = 280307431594273 (Adições = 2) +D(16, 27) = 493056718134145 (Adições = 2) +D(16, 28) = 851399012552577 (Adições = 2) +D(16, 29) = 1444888121447969 (Adições = 2) +D(16, 30) = 2412395979060257 (Adições = 2) +D(16, 31) = 3966313256529921 (Adições = 2) +D(16, 32) = 6427269150511105 (Adições = 2) +D(16, 33) = 10273391096237089 (Adições = 2) +D(16, 34) = 16209464357137953 (Adições = 2) +D(16, 35) = 25263074887360385 (Adições = 2) +D(16, 36) = 38917020105075585 (Adições = 2) +D(16, 37) = 59290063767904545 (Adições = 2) +D(16, 38) = 89381627584964385 (Adições = 2) +D(16, 39) = 133400413679081985 (Adições = 2) +D(16, 40) = 197202428180582913 (Adições = 2) +D(16, 41) = 288870650661524769 (Adições = 2) +D(16, 42) = 419476929219862305 (Adições = 2) +D(16, 43) = 604076883535802241 (Adições = 2) +D(16, 44) = 863001025298535297 (Adições = 2) +D(16, 45) = 1223520371342821409 (Adições = 2) +D(16, 46) = 1721983008537982497 (Adições = 2) +D(16, 47) = 2406539922628153345 (Adições = 2) +D(16, 48) = 3340604559333629953 (Adições = 2) +D(16, 49) = 4607221770289003041 (Adições = 2) +D(16, 50) = 6314558836537699361 (Adições = 2) +D(16, 51) = 8602775100395965313 (Adições = 2) +D(16, 52) = 11652578441855567745 (Adições = 2) +D(16, 53) = 15695837618902338337 (Adições = 2) +D(16, 54) = 2581946645589008673 (Adições = 2) +D(16, 55) = 9580929110973698561 (Adições = 2) +D(16, 56) = 275997650008898049 (Adições = 2) +D(16, 57) = 12161647460605213473 (Adições = 2) +D(16, 58) = 9099080977460974881 (Adições = 2) +D(16, 59) = 10479044058023965569 (Adições = 2) +D(16, 60) = 17477915470806239105 (Adições = 2) +D(16, 61) = 13109598104859568673 (Adições = 2) +D(16, 62) = 17628084057386068001 (Adições = 2) +D(16, 63) = 14815131024639598593 (Adições = 2) +D(16, 64) = 7409644233314787329 (Adições = 2) +D(16, 65) = 17213841061253601313 (Adições = 2) +D(16, 66) = 11432359469810260513 (Adições = 2) +D(16, 67) = 13502071912150165377 (Adições = 2) +D(16, 68) = 11034821407875060609 (Adições = 2) +D(16, 69) = 11365621833274352929 (Adições = 2) +D(16, 70) = 4903688606741744417 (Adições = 2) +D(16, 71) = 2312750101157345793 (Adições = 2) +D(16, 72) = 16399988214429831681 (Adições = 2) +D(16, 73) = 7167810652361888033 (Adições = 2) +D(16, 74) = 11397852443548842785 (Adições = 2) +D(16, 75) = 14054947620020905857 (Adições = 2) +D(16, 76) = 4243789799296543617 (Adições = 2) +D(16, 77) = 12816365631348833313 (Adições = 2) +D(16, 78) = 2516789207295625761 (Adições = 2) +D(16, 79) = 16507487240132648961 (Adições = 2) +D(16, 80) = 13445185245343797249 (Adições = 2) +D(16, 81) = 16315657216517629473 (Adições = 2) +D(16, 82) = 3200215019066128417 (Adições = 2) +D(16, 83) = 1167212891600368513 (Adições = 2) +D(16, 84) = 14381265852584152961 (Adições = 2) +D(16, 85) = 7821898545861832481 (Adições = 2) +D(16, 86) = 1986179305229247777 (Adições = 2) +D(16, 87) = 1912392249789501953 (Adições = 2) +D(16, 88) = 374913170309011969 (Adições = 2) +D(16, 89) = 18403993645221664545 (Adições = 2) +D(16, 90) = 17162105800684278049 (Adições = 2) +D(16, 91) = 13276241708115446657 (Adições = 2) +D(16, 92) = 10308730348137332609 (Adições = 2) +D(16, 93) = 4691945700417961505 (Adições = 2) +D(16, 94) = 10865025639595924513 (Adições = 2) +D(16, 95) = 13465306188025286657 (Adições = 2) +D(16, 96) = 12690397113901182977 (Adições = 2) +D(16, 97) = 15361768762109813793 (Adições = 2) +D(16, 98) = 8698603812856940065 (Adições = 2) +D(16, 99) = 9162258070434164609 (Adições = 2) +D(16, 100) = 2042856019642678145 (Adições = 2) +D(17, 0) = 1 (Adições = 0) +D(17, 1) = 35 (Adições = 2) +D(17, 2) = 613 (Adições = 2) +D(17, 3) = 7175 (Adições = 2) +D(17, 4) = 63241 (Adições = 2) +D(17, 5) = 448427 (Adições = 2) +D(17, 6) = 2668525 (Adições = 2) +D(17, 7) = 13726991 (Adições = 2) +D(17, 8) = 62390545 (Adições = 2) +D(17, 9) = 254831667 (Adições = 2) +D(17, 10) = 948062325 (Adições = 2) +D(17, 11) = 3248227095 (Adições = 2) +D(17, 12) = 10343052825 (Adições = 2) +D(17, 13) = 30845044155 (Adições = 2) +D(17, 14) = 86716873725 (Adições = 2) +D(17, 15) = 231128079903 (Adições = 2) +D(17, 16) = 586889743905 (Adições = 2) +D(17, 17) = 1425834724419 (Adições = 2) +D(17, 18) = 3326741166725 (Adições = 2) +D(17, 19) = 7478998203943 (Adições = 2) +D(17, 20) = 16248650965289 (Adições = 2) +D(17, 21) = 34203940374475 (Adições = 2) +D(17, 22) = 69925435608077 (Adições = 2) +D(17, 23) = 139125084109615 (Adições = 2) +D(17, 24) = 269902623450929 (Adições = 2) +D(17, 25) = 511423753576531 (Adições = 2) +D(17, 26) = 947976806209685 (Adições = 2) +D(17, 27) = 1721340955938103 (Adições = 2) +D(17, 28) = 3065796686624825 (Adições = 2) +D(17, 29) = 5362083820625371 (Adições = 2) +D(17, 30) = 9219367921133597 (Adições = 2) +D(17, 31) = 15598077156723775 (Adições = 2) +D(17, 32) = 25991659563764801 (Adições = 2) +D(17, 33) = 42692319810512995 (Adições = 2) +D(17, 34) = 69175175263888037 (Adições = 2) +D(17, 35) = 110647714508386375 (Adições = 2) +D(17, 36) = 174827809500822345 (Adições = 2) +D(17, 37) = 273034893373802475 (Adições = 2) +D(17, 38) = 421706584726671405 (Adições = 2) +D(17, 39) = 644488625990717775 (Adições = 2) +D(17, 40) = 975091467850382673 (Adições = 2) +D(17, 41) = 1461164546692490355 (Adições = 2) +D(17, 42) = 2169512126573877429 (Adições = 2) +D(17, 43) = 3193065939329541975 (Adições = 2) +D(17, 44) = 4660143848163879513 (Adições = 2) +D(17, 45) = 6746665244805236219 (Adições = 2) +D(17, 46) = 9692168624686040125 (Adições = 2) +D(17, 47) = 13820691555852175967 (Adições = 2) +D(17, 48) = 1121091964104407649 (Adições = 2) +D(17, 49) = 9068918293727040643 (Adições = 2) +D(17, 50) = 1543954826844191429 (Adições = 2) +D(17, 51) = 16461288763777856103 (Adições = 2) +D(17, 52) = 18269898232319837545 (Adições = 2) +D(17, 53) = 8724826145658640395 (Adições = 2) +D(17, 54) = 8555866336440435789 (Adições = 2) +D(17, 55) = 2271998019293591407 (Adições = 2) +D(17, 56) = 12128924780276188017 (Adições = 2) +D(17, 57) = 6119825817180747923 (Adições = 2) +D(17, 58) = 8933810181537384661 (Adições = 2) +D(17, 59) = 10065191143312773495 (Adições = 2) +D(17, 60) = 1128662524723874937 (Adições = 2) +D(17, 61) = 13269432026680131099 (Adições = 2) +D(17, 62) = 7113626041506664541 (Adições = 2) +D(17, 63) = 2663352976113227903 (Adições = 2) +D(17, 64) = 6441384160358062209 (Adições = 2) +D(17, 65) = 12618125381216899235 (Adições = 2) +D(17, 66) = 4370837764861657829 (Adições = 2) +D(17, 67) = 10858525073112532103 (Adições = 2) +D(17, 68) = 16948674319428206473 (Adições = 2) +D(17, 69) = 2455629413158516779 (Adições = 2) +D(17, 70) = 278195779465062509 (Adições = 2) +D(17, 71) = 7494634487364152719 (Adições = 2) +D(17, 72) = 7760628729241778577 (Adições = 2) +D(17, 73) = 12881683522323946675 (Adições = 2) +D(17, 74) = 13000602544525125877 (Adições = 2) +D(17, 75) = 1559914460675771287 (Adições = 2) +D(17, 76) = 1411907806283669145 (Adições = 2) +D(17, 77) = 25319163219494459 (Adições = 2) +D(17, 78) = 15358474001863953533 (Adições = 2) +D(17, 79) = 15936006375582676639 (Adições = 2) +D(17, 80) = 8995190713640019617 (Adições = 2) +D(17, 81) = 1862545028082343107 (Adições = 2) +D(17, 82) = 2931673189956549381 (Adições = 2) +D(17, 83) = 7299101100623046311 (Adições = 2) +D(17, 84) = 4400835771098016169 (Adições = 2) +D(17, 85) = 8157256095834449995 (Adições = 2) +D(17, 86) = 17965333946925530253 (Adições = 2) +D(17, 87) = 3417161428234728367 (Adições = 2) +D(17, 88) = 5704466848333242289 (Adições = 2) +D(17, 89) = 6036629590154367187 (Adições = 2) +D(17, 90) = 4709240888641206549 (Adições = 2) +D(17, 91) = 16700844323731379639 (Adições = 2) +D(17, 92) = 3392328232565055673 (Adições = 2) +D(17, 93) = 18393004281120349787 (Adições = 2) +D(17, 94) = 15503231547424684189 (Adições = 2) +D(17, 95) = 2940075227626792127 (Adições = 2) +D(17, 96) = 10649034455843710145 (Adições = 2) +D(17, 97) = 1807712184435603683 (Adições = 2) +D(17, 98) = 7421340685692805925 (Adições = 2) +D(17, 99) = 6835458495274358983 (Adições = 2) +D(17, 100) = 18040572585351201737 (Adições = 2) +D(18, 0) = 1 (Adições = 0) +D(18, 1) = 37 (Adições = 2) +D(18, 2) = 685 (Adições = 2) +D(18, 3) = 8473 (Adições = 2) +D(18, 4) = 78889 (Adições = 2) +D(18, 5) = 590557 (Adições = 2) +D(18, 6) = 3707509 (Adições = 2) +D(18, 7) = 20103025 (Adições = 2) +D(18, 8) = 96220561 (Adições = 2) +D(18, 9) = 413442773 (Adições = 2) +D(18, 10) = 1616336765 (Adições = 2) +D(18, 11) = 5812626185 (Adições = 2) +D(18, 12) = 19403906105 (Adições = 2) +D(18, 13) = 60592003085 (Adições = 2) +D(18, 14) = 178153920965 (Adições = 2) +D(18, 15) = 495998874593 (Adições = 2) +D(18, 16) = 1314016698401 (Adições = 2) +D(18, 17) = 3326741166725 (Adições = 2) +D(18, 18) = 8079317057869 (Adições = 2) +D(18, 19) = 18885056428537 (Adições = 2) +D(18, 20) = 42612705597769 (Adições = 2) +D(18, 21) = 93065296937533 (Adições = 2) +D(18, 22) = 197194672920085 (Adições = 2) +D(18, 23) = 406245192637777 (Adições = 2) +D(18, 24) = 815272900198321 (Adições = 2) +D(18, 25) = 1596599277225781 (Adições = 2) +D(18, 26) = 3055999837011997 (Adições = 2) +D(18, 27) = 5725317599159785 (Adições = 2) +D(18, 28) = 10512455241722713 (Adições = 2) +D(18, 29) = 18940335748972909 (Adições = 2) +D(18, 30) = 33521787490731877 (Adições = 2) +D(18, 31) = 58339232568589249 (Adições = 2) +D(18, 32) = 99928969289077825 (Adições = 2) +D(18, 33) = 168612948663355621 (Adições = 2) +D(18, 34) = 280480443737756653 (Adições = 2) +D(18, 35) = 460303333510031065 (Adições = 2) +D(18, 36) = 745778857519239785 (Adições = 2) +D(18, 37) = 1193641560393864605 (Adições = 2) +D(18, 38) = 1888383038494338485 (Adições = 2) +D(18, 39) = 2954578249211727665 (Adições = 2) +D(18, 40) = 4574158343052828113 (Adições = 2) +D(18, 41) = 7010414357595701141 (Adições = 2) +D(18, 42) = 10641091030862068925 (Adições = 2) +D(18, 43) = 16003669096765488329 (Adições = 2) +D(18, 44) = 5410134810549358201 (Adições = 2) +D(18, 45) = 16816943903518473933 (Adições = 2) +D(18, 46) = 14809033699300198661 (Adições = 2) +D(18, 47) = 1428405732419311521 (Adições = 2) +D(18, 48) = 16370189252375895137 (Adições = 2) +D(18, 49) = 8113455436497791813 (Adições = 2) +D(18, 50) = 279584483359472269 (Adições = 2) +D(18, 51) = 18284828073981519801 (Adições = 2) +D(18, 52) = 16122526922660110217 (Adições = 2) +D(18, 53) = 6223763153219484925 (Adições = 2) +D(18, 54) = 5057711561609009493 (Adições = 2) +D(18, 55) = 15885575917343036689 (Adições = 2) +D(18, 56) = 11839754643203264497 (Adições = 2) +D(18, 57) = 11641761166950648821 (Adições = 2) +D(18, 58) = 8248653091959229789 (Adições = 2) +D(18, 59) = 8800910343099836329 (Adições = 2) +D(18, 60) = 1548019937426933145 (Adições = 2) +D(18, 61) = 15946114488830939181 (Adições = 2) +D(18, 62) = 17882428483308183205 (Adições = 2) +D(18, 63) = 9212663427218524033 (Adições = 2) +D(18, 64) = 18317400563689814145 (Adições = 2) +D(18, 65) = 483421957845672357 (Adições = 2) +D(18, 66) = 17472385103924229421 (Adições = 2) +D(18, 67) = 14255003868188867737 (Adições = 2) +D(18, 68) = 5168715113310503081 (Adições = 2) +D(18, 69) = 6126274772187674717 (Adições = 2) +D(18, 70) = 8860099964811254005 (Adições = 2) +D(18, 71) = 16632930231640469233 (Adições = 2) +D(18, 72) = 13441449374536848913 (Adições = 2) +D(18, 73) = 15637017552393022549 (Adições = 2) +D(18, 74) = 4625815471822991869 (Adições = 2) +D(18, 75) = 739588403314337417 (Adições = 2) +D(18, 76) = 3711410670273777849 (Adições = 2) +D(18, 77) = 5148637639776941453 (Adições = 2) +D(18, 78) = 2085686731150837829 (Adições = 2) +D(18, 79) = 14933423034887916385 (Adições = 2) +D(18, 80) = 2971131976691509409 (Adições = 2) +D(18, 81) = 13828867718413872133 (Adições = 2) +D(18, 82) = 176341862743213005 (Adições = 2) +D(18, 83) = 10407116153322808697 (Adições = 2) +D(18, 84) = 3660308951334319561 (Adições = 2) +D(18, 85) = 16218400818266785725 (Adições = 2) +D(18, 86) = 5447502713607662741 (Adições = 2) +D(18, 87) = 8383254015058369745 (Adições = 2) +D(18, 88) = 17504882291626340401 (Adições = 2) +D(18, 89) = 10799234656404398261 (Adições = 2) +D(18, 90) = 3098361061490420381 (Adições = 2) +D(18, 91) = 6061702200153454953 (Adições = 2) +D(18, 92) = 7708130682740338649 (Adições = 2) +D(18, 93) = 11046719122716192493 (Adições = 2) +D(18, 94) = 8049466803842123237 (Adições = 2) +D(18, 95) = 8046029505184047937 (Adições = 2) +D(18, 96) = 3188395114944998593 (Adições = 2) +D(18, 97) = 15645141755224312421 (Adições = 2) +D(18, 98) = 6427450551643170413 (Adições = 2) +D(18, 99) = 2237505658900783705 (Adições = 2) +D(18, 100) = 8666792665816792809 (Adições = 2) +D(19, 0) = 1 (Adições = 0) +D(19, 1) = 39 (Adições = 2) +D(19, 2) = 761 (Adições = 2) +D(19, 3) = 9919 (Adições = 2) +D(19, 4) = 97281 (Adições = 2) +D(19, 5) = 766727 (Adições = 2) +D(19, 6) = 5064793 (Adições = 2) +D(19, 7) = 28875327 (Adições = 2) +D(19, 8) = 145198913 (Adições = 2) +D(19, 9) = 654862247 (Adições = 2) +D(19, 10) = 2684641785 (Adições = 2) +D(19, 11) = 10113604735 (Adições = 2) +D(19, 12) = 35330137025 (Adições = 2) +D(19, 13) = 115326046215 (Adições = 2) +D(19, 14) = 354071970265 (Adições = 2) +D(19, 15) = 1028224765823 (Adições = 2) +D(19, 16) = 2838240338817 (Adições = 2) +D(19, 17) = 7478998203943 (Adições = 2) +D(19, 18) = 18885056428537 (Adições = 2) +D(19, 19) = 45849429914943 (Adições = 2) +D(19, 20) = 107347191941249 (Adições = 2) +D(19, 21) = 243025194476551 (Adições = 2) +D(19, 22) = 533285164334169 (Adições = 2) +D(19, 23) = 1136725029892031 (Adições = 2) +D(19, 24) = 2358243122728129 (Adições = 2) +D(19, 25) = 4770115300152231 (Adições = 2) +D(19, 26) = 9422714414390009 (Adições = 2) +D(19, 27) = 18204031850561791 (Adições = 2) +D(19, 28) = 34441804691444289 (Adições = 2) +D(19, 29) = 63894595682139911 (Adições = 2) +D(19, 30) = 116356718921844697 (Adições = 2) +D(19, 31) = 208217738981165823 (Adições = 2) +D(19, 32) = 366485940838832897 (Adições = 2) +D(19, 33) = 635027858791266343 (Adições = 2) +D(19, 34) = 1084121251192378617 (Adições = 2) +D(19, 35) = 1824905028440166335 (Adições = 2) +D(19, 36) = 3030987219469437185 (Adições = 2) +D(19, 37) = 4970407637382541575 (Adições = 2) +D(19, 38) = 8052432236270744665 (Adições = 2) +D(19, 39) = 12895393523976810815 (Adições = 2) +D(19, 40) = 1977386042531814977 (Adições = 2) +D(19, 41) = 13561958743180344231 (Adições = 2) +D(19, 42) = 12766720057928562681 (Adições = 2) +D(19, 43) = 2517992038137016703 (Adições = 2) +D(19, 44) = 5485051871742311617 (Adições = 2) +D(19, 45) = 9265386512100592135 (Adições = 2) +D(19, 46) = 3997875967500161497 (Adições = 2) +D(19, 47) = 1788571325510120063 (Adições = 2) +D(19, 48) = 1140422236595775105 (Adições = 2) +D(19, 49) = 7177322851759910439 (Adições = 2) +D(19, 50) = 15570362771617174521 (Adições = 2) +D(19, 51) = 15688031255248614975 (Adições = 2) +D(19, 52) = 13201898104471141761 (Adições = 2) +D(19, 53) = 17101444106641185287 (Adições = 2) +D(19, 54) = 9936174747760128089 (Adições = 2) +D(19, 55) = 12432718153002622655 (Adições = 2) +D(19, 56) = 3264560566129820609 (Adições = 2) +D(19, 57) = 8299332302574182311 (Adições = 2) +D(19, 58) = 9743002487774509305 (Adições = 2) +D(19, 59) = 8345821849124023807 (Adições = 2) +D(19, 60) = 248008055941241665 (Adições = 2) +D(19, 61) = 17742142482199113991 (Adições = 2) +D(19, 62) = 14677197306919133145 (Adições = 2) +D(19, 63) = 4878801070026737151 (Adições = 2) +D(19, 64) = 13962120987225523713 (Adições = 2) +D(19, 65) = 14316199435051458599 (Adições = 2) +D(19, 66) = 13825262423111808761 (Adições = 2) +D(19, 67) = 8659163247805802687 (Adições = 2) +D(19, 68) = 9636138155595621889 (Adições = 2) +D(19, 69) = 2484383967384248071 (Adições = 2) +D(19, 70) = 17470758704383176793 (Adições = 2) +D(19, 71) = 6070300753415796799 (Adições = 2) +D(19, 72) = 17697936285883563329 (Adições = 2) +D(19, 73) = 9882915065394331559 (Adições = 2) +D(19, 74) = 11699004015900794361 (Adições = 2) +D(19, 75) = 17064407891038123647 (Adições = 2) +D(19, 76) = 3068662890916687297 (Adições = 2) +D(19, 77) = 11928711200967406599 (Adições = 2) +D(19, 78) = 716291498185634265 (Adições = 2) +D(19, 79) = 17735401264224388479 (Adições = 2) +D(19, 80) = 17193212202094262657 (Adições = 2) +D(19, 81) = 15546467823490092583 (Adições = 2) +D(19, 82) = 11104933330937626105 (Adições = 2) +D(19, 83) = 3241647273294096191 (Adições = 2) +D(19, 84) = 17309072377951224449 (Adições = 2) +D(19, 85) = 294294000133226503 (Adições = 2) +D(19, 86) = 3513453458298123353 (Adições = 2) +D(19, 87) = 17344210186964155839 (Adições = 2) +D(19, 88) = 6338858346229762753 (Adições = 2) +D(19, 89) = 16196231220550949799 (Adições = 2) +D(19, 90) = 11647082864736216825 (Adições = 2) +D(19, 91) = 2360402052670540543 (Adições = 2) +D(19, 92) = 16130234935564334145 (Adições = 2) +D(19, 93) = 16438340667311313671 (Adições = 2) +D(19, 94) = 17087782520160077785 (Adições = 2) +D(19, 95) = 14736534755476697343 (Adições = 2) +D(19, 96) = 7524215301896192257 (Adições = 2) +D(19, 97) = 7911008098355951655 (Adições = 2) +D(19, 98) = 11536856331513882873 (Adições = 2) +D(19, 99) = 1755068468348285375 (Adições = 2) +D(19, 100) = 12659366793065861889 (Adições = 2) +D(20, 0) = 1 (Adições = 0) +D(20, 1) = 41 (Adições = 2) +D(20, 2) = 841 (Adições = 2) +D(20, 3) = 11521 (Adições = 2) +D(20, 4) = 118721 (Adições = 2) +D(20, 5) = 982729 (Adições = 2) +D(20, 6) = 6814249 (Adições = 2) +D(20, 7) = 40754369 (Adições = 2) +D(20, 8) = 214828609 (Adições = 2) +D(20, 9) = 1014889769 (Adições = 2) +D(20, 10) = 4354393801 (Adições = 2) +D(20, 11) = 17152640321 (Adições = 2) +D(20, 12) = 62596382081 (Adições = 2) +D(20, 13) = 213252565321 (Adições = 2) +D(20, 14) = 682650581801 (Adições = 2) +D(20, 15) = 2064947317889 (Adições = 2) +D(20, 16) = 5931412422529 (Adições = 2) +D(20, 17) = 16248650965289 (Adições = 2) +D(20, 18) = 42612705597769 (Adições = 2) +D(20, 19) = 107347191941249 (Adições = 2) +D(20, 20) = 260543813797441 (Adições = 2) +D(20, 21) = 610916200215241 (Adições = 2) +D(20, 22) = 1387226559025961 (Adições = 2) +D(20, 23) = 3057236753252161 (Adições = 2) +D(20, 24) = 6552204905872321 (Adições = 2) +D(20, 25) = 13680563328752681 (Adições = 2) +D(20, 26) = 27873393043294921 (Adições = 2) +D(20, 27) = 55500139308246721 (Adições = 2) +D(20, 28) = 108145975850252801 (Adições = 2) +D(20, 29) = 206482376223837001 (Adições = 2) +D(20, 30) = 386733690827821609 (Adições = 2) +D(20, 31) = 711308148730832129 (Adições = 2) +D(20, 32) = 1286011828550830849 (Adições = 2) +D(20, 33) = 2287525628180930089 (Adições = 2) +D(20, 34) = 4006674738164575049 (Adições = 2) +D(20, 35) = 6915701017797120001 (Adições = 2) +D(20, 36) = 11771593265706723521 (Adições = 2) +D(20, 37) = 1326244048849150665 (Adições = 2) +D(20, 38) = 14349083922502436905 (Adições = 2) +D(20, 39) = 16850165609040440769 (Adições = 2) +D(20, 40) = 13276201101839514945 (Adições = 2) +D(20, 41) = 10368801813842122537 (Adições = 2) +D(20, 42) = 18250736541241477833 (Adições = 2) +D(20, 43) = 15088704563597505601 (Adições = 2) +D(20, 44) = 4645004399767282305 (Adições = 2) +D(20, 45) = 948698709900634441 (Adições = 2) +D(20, 46) = 14211961189501388073 (Adições = 2) +D(20, 47) = 1551664408802118017 (Adições = 2) +D(20, 48) = 4480657970908013185 (Adições = 2) +D(20, 49) = 12798403059263698729 (Adições = 2) +D(20, 50) = 17099344608931232073 (Adições = 2) +D(20, 51) = 11464250488377918337 (Adições = 2) +D(20, 52) = 3460691700678571841 (Adições = 2) +D(20, 53) = 15317289838081347273 (Adições = 2) +D(20, 54) = 5461420545063557417 (Adições = 2) +D(20, 55) = 9383569372116756545 (Adições = 2) +D(20, 56) = 6634104017539648193 (Adições = 2) +D(20, 57) = 18197996886243651113 (Adições = 2) +D(20, 58) = 17793587602882791113 (Adições = 2) +D(20, 59) = 17435667866071772609 (Adições = 2) +D(20, 60) = 7582753697427486465 (Adições = 2) +D(20, 61) = 7126160161858290505 (Adições = 2) +D(20, 62) = 2652011803557434409 (Adições = 2) +D(20, 63) = 3761266106793753089 (Adições = 2) +D(20, 64) = 4155444090336462337 (Adições = 2) +D(20, 65) = 13987020438903893033 (Adições = 2) +D(20, 66) = 5234994149648057161 (Adições = 2) +D(20, 67) = 9272675746856116993 (Adições = 2) +D(20, 68) = 9121233076547989953 (Adições = 2) +D(20, 69) = 2795011125818308297 (Adições = 2) +D(20, 70) = 4303409723876181545 (Adições = 2) +D(20, 71) = 9397725107965603521 (Adições = 2) +D(20, 72) = 14719218073555412033 (Adições = 2) +D(20, 73) = 5406581277414203689 (Adições = 2) +D(20, 74) = 8541756284999777993 (Adições = 2) +D(20, 75) = 411680044519592769 (Adições = 2) +D(20, 76) = 2098006752764852097 (Adições = 2) +D(20, 77) = 17095380844648945993 (Adições = 2) +D(20, 78) = 11293639470092435241 (Adições = 2) +D(20, 79) = 11298588158792906369 (Adições = 2) +D(20, 80) = 9333713477692454273 (Adições = 2) +D(20, 81) = 5179905355857706281 (Adições = 2) +D(20, 82) = 13384562436575873353 (Adições = 2) +D(20, 83) = 9284398967098044033 (Adições = 2) +D(20, 84) = 11388374544633813057 (Adições = 2) +D(20, 85) = 10544996849008712393 (Adições = 2) +D(20, 86) = 14352744307440062249 (Adições = 2) +D(20, 87) = 16763663878992789825 (Adições = 2) +D(20, 88) = 3553244264767605185 (Adições = 2) +D(20, 89) = 7641589757838766121 (Adições = 2) +D(20, 90) = 17038159769416381129 (Adições = 2) +D(20, 91) = 12598900613113586881 (Adições = 2) +D(20, 92) = 12642793527638909953 (Adições = 2) +D(20, 93) = 8317880983095454537 (Adições = 2) +D(20, 94) = 4950516023147742761 (Adições = 2) +D(20, 95) = 18328089225074966273 (Adições = 2) +D(20, 96) = 3695351135028752641 (Adições = 2) +D(20, 97) = 683830461571344937 (Adições = 2) +D(20, 98) = 1684950817731627849 (Adições = 2) +D(20, 99) = 14976875617593796097 (Adições = 2) +D(20, 100) = 10944566805298391745 (Adições = 2) +D(21, 0) = 1 (Adições = 0) +D(21, 1) = 43 (Adições = 2) +D(21, 2) = 925 (Adições = 2) +D(21, 3) = 13287 (Adições = 2) +D(21, 4) = 143529 (Adições = 2) +D(21, 5) = 1244979 (Adições = 2) +D(21, 6) = 9041957 (Adições = 2) +D(21, 7) = 56610575 (Adições = 2) +D(21, 8) = 312193553 (Adições = 2) +D(21, 9) = 1541911931 (Adições = 2) +D(21, 10) = 6911195501 (Adições = 2) +D(21, 11) = 28418229623 (Adições = 2) +D(21, 12) = 108167252025 (Adições = 2) +D(21, 13) = 384016199427 (Adições = 2) +D(21, 14) = 1279919346549 (Adições = 2) +D(21, 15) = 4027517246239 (Adições = 2) +D(21, 16) = 12023876986657 (Adições = 2) +D(21, 17) = 34203940374475 (Adições = 2) +D(21, 18) = 93065296937533 (Adições = 2) +D(21, 19) = 243025194476551 (Adições = 2) +D(21, 20) = 610916200215241 (Adições = 2) +D(21, 21) = 1482376214227923 (Adições = 2) +D(21, 22) = 3480518973469125 (Adições = 2) +D(21, 23) = 7924982285747247 (Adições = 2) +D(21, 24) = 17534423944871729 (Adições = 2) +D(21, 25) = 37767192179496731 (Adições = 2) +D(21, 26) = 79321148551544333 (Adições = 2) +D(21, 27) = 162694680903085975 (Adições = 2) +D(21, 28) = 326340796061585497 (Adições = 2) +D(21, 29) = 640969148135675299 (Adições = 2) +D(21, 30) = 1234185215187333909 (Adições = 2) +D(21, 31) = 2332227054745987647 (Adições = 2) +D(21, 32) = 4329547032027650625 (Adições = 2) +D(21, 33) = 7903084488759411563 (Adições = 2) +D(21, 34) = 14197284855104916701 (Adições = 2) +D(21, 35) = 6672916537357060135 (Adições = 2) +D(21, 36) = 6913466747151352041 (Adições = 2) +D(21, 37) = 1564559987997674611 (Adições = 2) +D(21, 38) = 17239887959349262181 (Adições = 2) +D(21, 39) = 11545649343473036623 (Adições = 2) +D(21, 40) = 4778527906933889105 (Adições = 2) +D(21, 41) = 9976786748905974971 (Adições = 2) +D(21, 42) = 1702836956570472109 (Adições = 2) +D(21, 43) = 16595533987699903927 (Adições = 2) +D(21, 44) = 17882498877355140217 (Adições = 2) +D(21, 45) = 5029457913313505347 (Adições = 2) +D(21, 46) = 1743373739005976245 (Adições = 2) +D(21, 47) = 17506999337309482335 (Adições = 2) +D(21, 48) = 5092577643310061921 (Adições = 2) +D(21, 49) = 3924894599772222219 (Adições = 2) +D(21, 50) = 15375898194257601405 (Adições = 2) +D(21, 51) = 7046005144147648583 (Adições = 2) +D(21, 52) = 3524203259494587145 (Adições = 2) +D(21, 53) = 3855440724544954643 (Adições = 2) +D(21, 54) = 6187407033980307717 (Adições = 2) +D(21, 55) = 2585652877451070063 (Adições = 2) +D(21, 56) = 156582193397923185 (Adições = 2) +D(21, 57) = 6541939023471670875 (Adições = 2) +D(21, 58) = 5640035365179009869 (Adições = 2) +D(21, 59) = 3975802686714470359 (Adições = 2) +D(21, 60) = 10547480176504177817 (Adições = 2) +D(21, 61) = 6809649962080403171 (Adições = 2) +D(21, 62) = 16587821927496128085 (Adições = 2) +D(21, 63) = 4554355764137763967 (Adições = 2) +D(21, 64) = 12471065961267979393 (Adições = 2) +D(21, 65) = 12166786416798783147 (Adições = 2) +D(21, 66) = 12942056931641181725 (Adições = 2) +D(21, 67) = 9002982754435804263 (Adições = 2) +D(21, 68) = 8950147504130359593 (Adições = 2) +D(21, 69) = 2419647632787106227 (Adições = 2) +D(21, 70) = 9518068482481596069 (Adições = 2) +D(21, 71) = 4772459240613829519 (Adições = 2) +D(21, 72) = 10442658348425293457 (Adições = 2) +D(21, 73) = 12121713625685357563 (Adições = 2) +D(21, 74) = 7623307114389787629 (Adições = 2) +D(21, 75) = 16576743443909158391 (Adições = 2) +D(21, 76) = 639686167484051641 (Adições = 2) +D(21, 77) = 1386329691188298115 (Adições = 2) +D(21, 78) = 11328605932220127733 (Adições = 2) +D(21, 79) = 15474089487395917727 (Adições = 2) +D(21, 80) = 17659647050171726753 (Adições = 2) +D(21, 81) = 13726521810012335691 (Adições = 2) +D(21, 82) = 13844245528736363709 (Adições = 2) +D(21, 83) = 18066462858700729479 (Adições = 2) +D(21, 84) = 1845748223013483337 (Adições = 2) +D(21, 85) = 5332375542946457171 (Adições = 2) +D(21, 86) = 11783372625685680197 (Adições = 2) +D(21, 87) = 6006292664699429039 (Adições = 2) +D(21, 88) = 7876456734750272433 (Adições = 2) +D(21, 89) = 624546683647092123 (Adições = 2) +D(21, 90) = 6857552137192687757 (Adições = 2) +D(21, 91) = 18047868446013104151 (Adições = 2) +D(21, 92) = 6396074439346497753 (Adições = 2) +D(21, 93) = 8910004876371310627 (Adições = 2) +D(21, 94) = 3731657808904956309 (Adições = 2) +D(21, 95) = 8563518983418113727 (Adições = 2) +D(21, 96) = 12140215269812281025 (Adições = 2) +D(21, 97) = 16519396866412378603 (Adições = 2) +D(21, 98) = 441434072005799773 (Adições = 2) +D(21, 99) = 17103260507331223719 (Adições = 2) +D(21, 100) = 6131214782804308329 (Adições = 2) +D(22, 0) = 1 (Adições = 0) +D(22, 1) = 45 (Adições = 2) +D(22, 2) = 1013 (Adições = 2) +D(22, 3) = 15225 (Adições = 2) +D(22, 4) = 172041 (Adições = 2) +D(22, 5) = 1560549 (Adições = 2) +D(22, 6) = 11847485 (Adições = 2) +D(22, 7) = 77500017 (Adições = 2) +D(22, 8) = 446304145 (Adições = 2) +D(22, 9) = 2300409629 (Adições = 2) +D(22, 10) = 10753517061 (Adições = 2) +D(22, 11) = 46082942185 (Adições = 2) +D(22, 12) = 182668423833 (Adições = 2) +D(22, 13) = 674851875285 (Adições = 2) +D(22, 14) = 2338787421261 (Adições = 2) +D(22, 15) = 7646224014049 (Adições = 2) +D(22, 16) = 23697618246945 (Adições = 2) +D(22, 17) = 69925435608077 (Adições = 2) +D(22, 18) = 197194672920085 (Adições = 2) +D(22, 19) = 533285164334169 (Adições = 2) +D(22, 20) = 1387226559025961 (Adições = 2) +D(22, 21) = 3480518973469125 (Adições = 2) +D(22, 22) = 8443414161166173 (Adições = 2) +D(22, 23) = 19848915420382545 (Adições = 2) +D(22, 24) = 45308321651001521 (Adições = 2) +D(22, 25) = 100609937775369981 (Adições = 2) +D(22, 26) = 217698278506411045 (Adições = 2) +D(22, 27) = 459714107961041353 (Adições = 2) +D(22, 28) = 948749584925712825 (Adições = 2) +D(22, 29) = 1916059529122973621 (Adições = 2) +D(22, 30) = 3791213892445982829 (Adições = 2) +D(22, 31) = 7357626162379304385 (Adições = 2) +D(22, 32) = 14019400249152942657 (Adições = 2) +D(22, 33) = 7805287696230453229 (Adições = 2) +D(22, 34) = 11458912966385229877 (Adições = 2) +D(22, 35) = 13882370285137655097 (Adições = 2) +D(22, 36) = 9022009495936515657 (Adições = 2) +D(22, 37) = 17500036231085542309 (Adições = 2) +D(22, 38) = 17857740104722927485 (Adições = 2) +D(22, 39) = 9749789260126123057 (Adições = 2) +D(22, 40) = 7627222436823497169 (Adições = 2) +D(22, 41) = 3935793018953809629 (Adições = 2) +D(22, 42) = 15615416724430256709 (Adições = 2) +D(22, 43) = 15467043594991081129 (Adições = 2) +D(22, 44) = 13051588312627022041 (Adições = 2) +D(22, 45) = 17516801029586115989 (Adições = 2) +D(22, 46) = 5842888608196045965 (Adições = 2) +D(22, 47) = 6646517610801952929 (Adições = 2) +D(22, 48) = 10799350517711945569 (Adições = 2) +D(22, 49) = 1370078687084678093 (Adições = 2) +D(22, 50) = 2224127407404950101 (Adições = 2) +D(22, 51) = 6199286672100648473 (Adições = 2) +D(22, 52) = 16769495075742884201 (Adições = 2) +D(22, 53) = 5702394986072874373 (Adições = 2) +D(22, 54) = 15745242744598136733 (Adições = 2) +D(22, 55) = 6071558582319962897 (Adições = 2) +D(22, 56) = 8813793653168956145 (Adições = 2) +D(22, 57) = 15512314870038550205 (Adições = 2) +D(22, 58) = 9247545184979679333 (Adições = 2) +D(22, 59) = 416639163163607945 (Adições = 2) +D(22, 60) = 14939922026382256121 (Adições = 2) +D(22, 61) = 13850308091257285493 (Adições = 2) +D(22, 62) = 354291833414713517 (Adições = 2) +D(22, 63) = 3049725451339053953 (Adições = 2) +D(22, 64) = 1628403103035245697 (Adições = 2) +D(22, 65) = 7819511407392456621 (Adições = 2) +D(22, 66) = 14481610682122869877 (Adições = 2) +D(22, 67) = 17979906294490304249 (Adições = 2) +D(22, 68) = 17486292479346916489 (Adições = 2) +D(22, 69) = 10409343542554830693 (Adições = 2) +D(22, 70) = 3900315584113981373 (Adições = 2) +D(22, 71) = 18190843307209406961 (Adições = 2) +D(22, 72) = 14959216822538978321 (Adições = 2) +D(22, 73) = 630100649230526109 (Adições = 2) +D(22, 74) = 1928377315596119685 (Adições = 2) +D(22, 75) = 7681683800185514089 (Adições = 2) +D(22, 76) = 6451369337869172505 (Adições = 2) +D(22, 77) = 8477385196541522261 (Adições = 2) +D(22, 78) = 2745576746240396493 (Adições = 2) +D(22, 79) = 11101528092146890337 (Adições = 2) +D(22, 80) = 7341776482295431585 (Adições = 2) +D(22, 81) = 1834457195060390797 (Adições = 2) +D(22, 82) = 10958480460099538581 (Adições = 2) +D(22, 83) = 5975700700117528537 (Adições = 2) +D(22, 84) = 7441167708122189737 (Adições = 2) +D(22, 85) = 14619291474082130245 (Adições = 2) +D(22, 86) = 13288295569004715997 (Adições = 2) +D(22, 87) = 12631216785680273617 (Adições = 2) +D(22, 88) = 8067222111420423473 (Adições = 2) +D(22, 89) = 16568225529817788029 (Adições = 2) +D(22, 90) = 5603580276948016293 (Adições = 2) +D(22, 91) = 12062256786444256585 (Adições = 2) +D(22, 92) = 18059455598094306873 (Adições = 2) +D(22, 93) = 14918790840102563637 (Adições = 2) +D(22, 94) = 9113709451669278957 (Adições = 2) +D(22, 95) = 2962142170282797377 (Adições = 2) +D(22, 96) = 5219132349803640513 (Adições = 2) +D(22, 97) = 15432000412318748525 (Adições = 2) +D(22, 98) = 13946087277027375285 (Adições = 2) +D(22, 99) = 13044037782654847161 (Adições = 2) +D(22, 100) = 17831768999080827593 (Adições = 2) +D(23, 0) = 1 (Adições = 0) +D(23, 1) = 47 (Adições = 2) +D(23, 2) = 1105 (Adições = 2) +D(23, 3) = 17343 (Adições = 2) +D(23, 4) = 204609 (Adições = 2) +D(23, 5) = 1937199 (Adições = 2) +D(23, 6) = 15345233 (Adições = 2) +D(23, 7) = 104692735 (Adições = 2) +D(23, 8) = 628496897 (Adições = 2) +D(23, 9) = 3375210671 (Adições = 2) +D(23, 10) = 16429137361 (Adições = 2) +D(23, 11) = 73265596607 (Adições = 2) +D(23, 12) = 302016962625 (Adições = 2) +D(23, 13) = 1159537261743 (Adições = 2) +D(23, 14) = 4173176558289 (Adições = 2) +D(23, 15) = 14158187993599 (Adições = 2) +D(23, 16) = 45502030254593 (Adições = 2) +D(23, 17) = 139125084109615 (Adições = 2) +D(23, 18) = 406245192637777 (Adições = 2) +D(23, 19) = 1136725029892031 (Adições = 2) +D(23, 20) = 3057236753252161 (Adições = 2) +D(23, 21) = 7924982285747247 (Adições = 2) +D(23, 22) = 19848915420382545 (Adições = 2) +D(23, 23) = 48141245001931263 (Adições = 2) +D(23, 24) = 113298482073315329 (Adições = 2) +D(23, 25) = 259216741499686831 (Adições = 2) +D(23, 26) = 577524957781467857 (Adições = 2) +D(23, 27) = 1254937344248920255 (Adições = 2) +D(23, 28) = 2663401037135674433 (Adições = 2) +D(23, 29) = 5528210151184360879 (Adições = 2) +D(23, 30) = 11235483572753317329 (Adições = 2) +D(23, 31) = 3937579553869052927 (Adições = 2) +D(23, 32) = 6867861891691748353 (Adições = 2) +D(23, 33) = 10245805763365592623 (Adições = 2) +D(23, 34) = 11063262352271724113 (Adições = 2) +D(23, 35) = 17957801530085057471 (Adições = 2) +D(23, 36) = 3968693163740124993 (Adições = 2) +D(23, 37) = 12043994817052631343 (Adições = 2) +D(23, 38) = 10508283005441997905 (Adições = 2) +D(23, 39) = 1222324222871945215 (Adições = 2) +D(23, 40) = 152591846112013825 (Adições = 2) +D(23, 41) = 11715607301889320623 (Adições = 2) +D(23, 42) = 12820072971563835345 (Adições = 2) +D(23, 43) = 7009045143566069951 (Adições = 2) +D(23, 44) = 17080932977474621505 (Adições = 2) +D(23, 45) = 10755834172268656303 (Adições = 2) +D(23, 46) = 15668779736341266641 (Adições = 2) +D(23, 47) = 9711441881629713919 (Adições = 2) +D(23, 48) = 8710565936434060801 (Adições = 2) +D(23, 49) = 2433251067521132847 (Adições = 2) +D(23, 50) = 6027457162010761041 (Adições = 2) +D(23, 51) = 14450871241516359615 (Adições = 2) +D(23, 52) = 526164841940789057 (Adições = 2) +D(23, 53) = 4551310830046996015 (Adições = 2) +D(23, 54) = 7552204487008455505 (Adições = 2) +D(23, 55) = 10922261740217003519 (Adições = 2) +D(23, 56) = 7360869901996370945 (Adições = 2) +D(23, 57) = 13240234351494325679 (Adições = 2) +D(23, 58) = 1106606259093451985 (Adições = 2) +D(23, 59) = 10770790607236739263 (Adições = 2) +D(23, 60) = 7680607723073051713 (Adições = 2) +D(23, 61) = 18024093767003041711 (Adições = 2) +D(23, 62) = 13781949617965489105 (Adições = 2) +D(23, 63) = 17185966902719256575 (Adições = 2) +D(23, 64) = 3417351383384004609 (Adições = 2) +D(23, 65) = 12865265893811706927 (Adições = 2) +D(23, 66) = 16719643909617481809 (Adições = 2) +D(23, 67) = 12287672738811552703 (Adições = 2) +D(23, 68) = 10860383365229670209 (Adições = 2) +D(23, 69) = 1862531239712314159 (Adições = 2) +D(23, 70) = 16172190366381126225 (Adições = 2) +D(23, 71) = 1369861110285411327 (Adições = 2) +D(23, 72) = 16073177166324244993 (Adições = 2) +D(23, 73) = 13215750564384197807 (Adições = 2) +D(23, 74) = 15774228529210843601 (Adições = 2) +D(23, 75) = 6937545571282925759 (Adições = 2) +D(23, 76) = 2623854635628060737 (Adições = 2) +D(23, 77) = 17552609170038755503 (Adições = 2) +D(23, 78) = 10328827039111122641 (Adições = 2) +D(23, 79) = 5729187803788857855 (Adições = 2) +D(23, 80) = 5725748304521628161 (Adições = 2) +D(23, 81) = 14901981981877450543 (Adições = 2) +D(23, 82) = 9248175563327828305 (Adições = 2) +D(23, 83) = 7735612649835343807 (Adições = 2) +D(23, 84) = 2705736984365510465 (Adições = 2) +D(23, 85) = 6319452092860278831 (Adições = 2) +D(23, 86) = 15780295062237573457 (Adições = 2) +D(23, 87) = 4806319269503459839 (Adições = 2) +D(23, 88) = 7058014092894605313 (Adições = 2) +D(23, 89) = 13246717660423265199 (Adições = 2) +D(23, 90) = 16971779393479517905 (Adições = 2) +D(23, 91) = 16190872383162239167 (Adições = 2) +D(23, 92) = 9419096620281699393 (Adições = 2) +D(23, 93) = 5503854911059466671 (Adições = 2) +D(23, 94) = 11089611129121757649 (Adições = 2) +D(23, 95) = 4718718677364282367 (Adições = 2) +D(23, 96) = 12899993197450720257 (Adições = 2) +D(23, 97) = 15104381885863557679 (Adições = 2) +D(23, 98) = 7588981427790578257 (Adições = 2) +D(23, 99) = 16132362413763249087 (Adições = 2) +D(23, 100) = 10114681048079820609 (Adições = 2) +D(24, 0) = 1 (Adições = 0) +D(24, 1) = 49 (Adições = 2) +D(24, 2) = 1201 (Adições = 2) +D(24, 3) = 19649 (Adições = 2) +D(24, 4) = 241601 (Adições = 2) +D(24, 5) = 2383409 (Adições = 2) +D(24, 6) = 19665841 (Adições = 2) +D(24, 7) = 139703809 (Adições = 2) +D(24, 8) = 872893441 (Adições = 2) +D(24, 9) = 4876601009 (Adições = 2) +D(24, 10) = 24680949041 (Adições = 2) +D(24, 11) = 114375683009 (Adições = 2) +D(24, 12) = 489658242241 (Adições = 2) +D(24, 13) = 1951212466609 (Adições = 2) +D(24, 14) = 7283926286641 (Adições = 2) +D(24, 15) = 25615290838529 (Adições = 2) +D(24, 16) = 85275509086721 (Adições = 2) +D(24, 17) = 269902623450929 (Adições = 2) +D(24, 18) = 815272900198321 (Adições = 2) +D(24, 19) = 2358243122728129 (Adições = 2) +D(24, 20) = 6552204905872321 (Adições = 2) +D(24, 21) = 17534423944871729 (Adições = 2) +D(24, 22) = 45308321651001521 (Adições = 2) +D(24, 23) = 113298482073315329 (Adições = 2) +D(24, 24) = 274738209148561921 (Adições = 2) +D(24, 25) = 647253432721564081 (Adições = 2) +D(24, 26) = 1483995132002718769 (Adições = 2) +D(24, 27) = 3316457434033106881 (Adições = 2) +D(24, 28) = 7234795815417701569 (Adições = 2) +D(24, 29) = 15426407003737736881 (Adições = 2) +D(24, 30) = 13743356653965863473 (Adições = 2) +D(24, 31) = 10469675706878682113 (Adições = 2) +D(24, 32) = 2828373078729931777 (Adições = 2) +D(24, 33) = 1495296660077721137 (Adições = 2) +D(24, 34) = 4357620702005486257 (Adições = 2) +D(24, 35) = 14931940510652716225 (Adições = 2) +D(24, 36) = 18411691130768347073 (Adições = 2) +D(24, 37) = 15977635037851551793 (Adições = 2) +D(24, 38) = 1636424712927077809 (Adições = 2) +D(24, 39) = 13367031941241020929 (Adições = 2) +D(24, 40) = 14741948010224979969 (Adições = 2) +D(24, 41) = 8163403084516762801 (Adições = 2) +D(24, 42) = 14252339284260367153 (Adições = 2) +D(24, 43) = 15634713325680720833 (Adições = 2) +D(24, 44) = 2831203299302309057 (Adições = 2) +D(24, 45) = 12221226375336035249 (Adições = 2) +D(24, 46) = 1752352136526854961 (Adições = 2) +D(24, 47) = 8685829680788283905 (Adições = 2) +D(24, 48) = 8661093425142507009 (Adições = 2) +D(24, 49) = 1358166355388149041 (Adições = 2) +D(24, 50) = 9818874584920042929 (Adições = 2) +D(24, 51) = 11850458914737611969 (Adições = 2) +D(24, 52) = 8380750924485209025 (Adições = 2) +D(24, 53) = 13458226596472994097 (Adições = 2) +D(24, 54) = 7114997839818894001 (Adições = 2) +D(24, 55) = 7142719993334801409 (Adições = 2) +D(24, 56) = 6979107561838624257 (Adições = 2) +D(24, 57) = 9133467741619769265 (Adições = 2) +D(24, 58) = 5033564278497995313 (Adições = 2) +D(24, 59) = 16910961144828186561 (Adições = 2) +D(24, 60) = 16915615401428425921 (Adições = 2) +D(24, 61) = 5726828744085416113 (Adições = 2) +D(24, 62) = 639383981634843697 (Adições = 2) +D(24, 63) = 13160556428610037761 (Adições = 2) +D(24, 64) = 15317130641003747329 (Adições = 2) +D(24, 65) = 13153003844489907249 (Adições = 2) +D(24, 66) = 5844425500499992753 (Adições = 2) +D(24, 67) = 16404998075219475649 (Adições = 2) +D(24, 68) = 2659566031841595329 (Adições = 2) +D(24, 69) = 15382480636783579697 (Adições = 2) +D(24, 70) = 14970458169167468465 (Adições = 2) +D(24, 71) = 14065765572124454401 (Adições = 2) +D(24, 72) = 13062059775024559105 (Adições = 2) +D(24, 73) = 5457499358313898673 (Adições = 2) +D(24, 74) = 16000734378199388465 (Adições = 2) +D(24, 75) = 1819020331274054593 (Adições = 2) +D(24, 76) = 11380420538185041089 (Adições = 2) +D(24, 77) = 13110140270142305713 (Adições = 2) +D(24, 78) = 4098088331873080625 (Adições = 2) +D(24, 79) = 1709359101063509505 (Adições = 2) +D(24, 80) = 13164295209373995521 (Adições = 2) +D(24, 81) = 15345281422063522609 (Adições = 2) +D(24, 82) = 2601950819849698225 (Adições = 2) +D(24, 83) = 1138994959303318721 (Adições = 2) +D(24, 84) = 11580344593504172993 (Adições = 2) +D(24, 85) = 2158789597020410673 (Adições = 2) +D(24, 86) = 5811792678408711345 (Adições = 2) +D(24, 87) = 7951662936440193025 (Adições = 2) +D(24, 88) = 1369252225128706561 (Adições = 2) +D(24, 89) = 3227239904737025457 (Adições = 2) +D(24, 90) = 14998992884930256945 (Adições = 2) +D(24, 91) = 11268156514152910785 (Adições = 2) +D(24, 92) = 18431381443887297729 (Adições = 2) +D(24, 93) = 14907588901518912177 (Adições = 2) +D(24, 94) = 13054310867990584881 (Adições = 2) +D(24, 95) = 10415896600767073281 (Adições = 2) +D(24, 96) = 9587864401872524289 (Adições = 2) +D(24, 97) = 698751337767698993 (Adições = 2) +D(24, 98) = 4945370577712283313 (Adições = 2) +D(24, 99) = 10219970345556559041 (Adições = 2) +D(24, 100) = 18020269733690077121 (Adições = 2) +D(25, 0) = 1 (Adições = 0) +D(25, 1) = 51 (Adições = 2) +D(25, 2) = 1301 (Adições = 2) +D(25, 3) = 22151 (Adições = 2) +D(25, 4) = 283401 (Adições = 2) +D(25, 5) = 2908411 (Adições = 2) +D(25, 6) = 24957661 (Adições = 2) +D(25, 7) = 184327311 (Adições = 2) +D(25, 8) = 1196924561 (Adições = 2) +D(25, 9) = 6946419011 (Adições = 2) +D(25, 10) = 36503969061 (Adições = 2) +D(25, 11) = 175560601111 (Adições = 2) +D(25, 12) = 779594526361 (Adições = 2) +D(25, 13) = 3220465235211 (Adições = 2) +D(25, 14) = 12455603988461 (Adições = 2) +D(25, 15) = 45354821113631 (Adições = 2) +D(25, 16) = 156245621038881 (Adições = 2) +D(25, 17) = 511423753576531 (Adições = 2) +D(25, 18) = 1596599277225781 (Adições = 2) +D(25, 19) = 4770115300152231 (Adições = 2) +D(25, 20) = 13680563328752681 (Adições = 2) +D(25, 21) = 37767192179496731 (Adições = 2) +D(25, 22) = 100609937775369981 (Adições = 2) +D(25, 23) = 259216741499686831 (Adições = 2) +D(25, 24) = 647253432721564081 (Adições = 2) +D(25, 25) = 1569245074591690083 (Adições = 2) +D(25, 26) = 3700493639315972933 (Adições = 2) +D(25, 27) = 8500946205351798583 (Adições = 2) +D(25, 28) = 605455381093055417 (Adições = 2) +D(25, 29) = 4819914126538942251 (Adições = 2) +D(25, 30) = 15542933710532990989 (Adições = 2) +D(25, 31) = 2862477923958433343 (Adições = 2) +D(25, 32) = 16160526709567047233 (Adições = 2) +D(25, 33) = 2037452374665148531 (Adições = 2) +D(25, 34) = 7890369736748355925 (Adições = 2) +D(25, 35) = 8733186875697006791 (Adições = 2) +D(25, 36) = 5183330369698966857 (Adições = 2) +D(25, 37) = 2679168390899762491 (Adições = 2) +D(25, 38) = 1846484067968840477 (Adições = 2) +D(25, 39) = 16849940722136939215 (Adições = 2) +D(25, 40) = 8065432526183836881 (Adições = 2) +D(25, 41) = 12524039547216028035 (Adições = 2) +D(25, 42) = 16493037842283606373 (Adições = 2) +D(25, 43) = 9486602304805591127 (Adições = 2) +D(25, 44) = 9505774856079069401 (Adições = 2) +D(25, 45) = 6111460457007862091 (Adições = 2) +D(25, 46) = 1638294895161200685 (Adições = 2) +D(25, 47) = 12076476712476339551 (Adições = 2) +D(25, 48) = 10976655744697578849 (Adições = 2) +D(25, 49) = 2549171451518683283 (Adições = 2) +D(25, 50) = 13726212391826875253 (Adições = 2) +D(25, 51) = 16948801817774978535 (Adições = 2) +D(25, 52) = 286523509578696297 (Adições = 2) +D(25, 53) = 3678756956827347803 (Adições = 2) +D(25, 54) = 5805237319409684285 (Adições = 2) +D(25, 55) = 1616211078853828079 (Adições = 2) +D(25, 56) = 15738038634027253745 (Adições = 2) +D(25, 57) = 13403869863776095651 (Adições = 2) +D(25, 58) = 9124157810184308613 (Adições = 2) +D(25, 59) = 12621939159800938871 (Adições = 2) +D(25, 60) = 9555027558638448121 (Adições = 2) +D(25, 61) = 13750727630442738539 (Adições = 2) +D(25, 62) = 1670196282453446733 (Adições = 2) +D(25, 63) = 15470136692698328191 (Adições = 2) +D(25, 64) = 7054335614893010049 (Adições = 2) +D(25, 65) = 17077726026677113011 (Adições = 2) +D(25, 66) = 17628411297957461397 (Adições = 2) +D(25, 67) = 2984346726257826567 (Adições = 2) +D(25, 68) = 3602166759609345929 (Adições = 2) +D(25, 69) = 3197469354524969339 (Adições = 2) +D(25, 70) = 15103664086766465885 (Adições = 2) +D(25, 71) = 7246399680639285519 (Adições = 2) +D(25, 72) = 15927480954078747409 (Adições = 2) +D(25, 73) = 16000296013707653571 (Adições = 2) +D(25, 74) = 565041602801837477 (Adições = 2) +D(25, 75) = 18384796312275280535 (Adições = 2) +D(25, 76) = 13137493108024824601 (Adições = 2) +D(25, 77) = 734565768933068171 (Adições = 2) +D(25, 78) = 17942794370948454509 (Adições = 2) +D(25, 79) = 5303497730175493023 (Adições = 2) +D(25, 80) = 1730407966903446433 (Adições = 2) +D(25, 81) = 11793240524631412947 (Adições = 2) +D(25, 82) = 11293728692835082165 (Adições = 2) +D(25, 83) = 15034674471988099111 (Adições = 2) +D(25, 84) = 9307269951086039209 (Adições = 2) +D(25, 85) = 4599660067901071259 (Adições = 2) +D(25, 86) = 12570242343330193277 (Adições = 2) +D(25, 87) = 7886953884469546031 (Adições = 2) +D(25, 88) = 17207869046038445617 (Adições = 2) +D(25, 89) = 3357617102194626019 (Adições = 2) +D(25, 90) = 3137105818152356805 (Adições = 2) +D(25, 91) = 10957511143525972919 (Adições = 2) +D(25, 92) = 3763560954147078201 (Adições = 2) +D(25, 93) = 209043152134184875 (Adições = 2) +D(25, 94) = 9724198847934130317 (Adições = 2) +D(25, 95) = 14747662242982236863 (Adições = 2) +D(25, 96) = 16304679171912282817 (Adições = 2) +D(25, 97) = 8144550837842954483 (Adições = 2) +D(25, 98) = 13788672753322936789 (Adições = 2) +D(25, 99) = 10507269602882227527 (Adições = 2) +D(25, 100) = 1854021534709760457 (Adições = 2) +D(26, 0) = 1 (Adições = 0) +D(26, 1) = 53 (Adições = 2) +D(26, 2) = 1405 (Adições = 2) +D(26, 3) = 24857 (Adições = 2) +D(26, 4) = 330409 (Adições = 2) +D(26, 5) = 3522221 (Adições = 2) +D(26, 6) = 31388293 (Adições = 2) +D(26, 7) = 240673265 (Adições = 2) +D(26, 8) = 1621925137 (Adições = 2) +D(26, 9) = 9765268709 (Adições = 2) +D(26, 10) = 53215656781 (Adições = 2) +D(26, 11) = 265280226953 (Adições = 2) +D(26, 12) = 1220435354425 (Adições = 2) +D(26, 13) = 5220495115997 (Adições = 2) +D(26, 14) = 20896564339669 (Adições = 2) +D(26, 15) = 78706989441761 (Adições = 2) +D(26, 16) = 280307431594273 (Adições = 2) +D(26, 17) = 947976806209685 (Adições = 2) +D(26, 18) = 3055999837011997 (Adições = 2) +D(26, 19) = 9422714414390009 (Adições = 2) +D(26, 20) = 27873393043294921 (Adições = 2) +D(26, 21) = 79321148551544333 (Adições = 2) +D(26, 22) = 217698278506411045 (Adições = 2) +D(26, 23) = 577524957781467857 (Adições = 2) +D(26, 24) = 1483995132002718769 (Adições = 2) +D(26, 25) = 3700493639315972933 (Adições = 2) +D(26, 26) = 8970232353223635949 (Adições = 2) +D(26, 27) = 2724928124181855849 (Adições = 2) +D(26, 28) = 11831329710626709849 (Adições = 2) +D(26, 29) = 17256699218258707517 (Adições = 2) +D(26, 30) = 726058907911537525 (Adições = 2) +D(26, 31) = 684726468693410241 (Adições = 2) +D(26, 32) = 1260987028509339201 (Adições = 2) +D(26, 33) = 1012222039031983349 (Adições = 2) +D(26, 34) = 10940044150445487805 (Adições = 2) +D(26, 35) = 9116856689181298905 (Adições = 2) +D(26, 36) = 4586629860867720937 (Adições = 2) +D(26, 37) = 12449128621466450285 (Adições = 2) +D(26, 38) = 16974781080335053253 (Adições = 2) +D(26, 39) = 17224461796731281329 (Adições = 2) +D(26, 40) = 5246346897632954193 (Adições = 2) +D(26, 41) = 7389074897323267493 (Adições = 2) +D(26, 42) = 17959408213113350285 (Adições = 2) +D(26, 43) = 7045560212783444553 (Adições = 2) +D(26, 44) = 7591193299958553465 (Adições = 2) +D(26, 45) = 4761684539335933341 (Adições = 2) +D(26, 46) = 12511439891504996117 (Adições = 2) +D(26, 47) = 7779467425432984737 (Adições = 2) +D(26, 48) = 12385855808897351521 (Adições = 2) +D(26, 49) = 7464938931404062037 (Adições = 2) +D(26, 50) = 5293578701040068957 (Adições = 2) +D(26, 51) = 17521848836932371129 (Adições = 2) +D(26, 52) = 16310430090576494345 (Adições = 2) +D(26, 53) = 1828966483272986829 (Adições = 2) +D(26, 54) = 11312960759510018917 (Adições = 2) +D(26, 55) = 287665084063979665 (Adições = 2) +D(26, 56) = 17641914796945061489 (Adições = 2) +D(26, 57) = 9890335147329307653 (Adições = 2) +D(26, 58) = 13971618747580160301 (Adições = 2) +D(26, 59) = 17270971643855856169 (Adições = 2) +D(26, 60) = 2554450214876139929 (Adições = 2) +D(26, 61) = 7413461330247774973 (Adições = 2) +D(26, 62) = 4387641169434408629 (Adições = 2) +D(26, 63) = 3081230070876631937 (Adições = 2) +D(26, 64) = 7158958304758418561 (Adições = 2) +D(26, 65) = 12844275872618990005 (Adições = 2) +D(26, 66) = 10656925049834461181 (Adições = 2) +D(26, 67) = 12822939000340197529 (Adições = 2) +D(26, 68) = 962708412497818409 (Adições = 2) +D(26, 69) = 7762344526632133677 (Adições = 2) +D(26, 70) = 7616733894214017285 (Adições = 2) +D(26, 71) = 11520053587910217073 (Adições = 2) +D(26, 72) = 16247190148918698385 (Adições = 2) +D(26, 73) = 11281478969285996133 (Adições = 2) +D(26, 74) = 9400072512085935565 (Adições = 2) +D(26, 75) = 9903166353453501961 (Adições = 2) +D(26, 76) = 4531967626334503865 (Adições = 2) +D(26, 77) = 18404026503292396637 (Adições = 2) +D(26, 78) = 187898495754816085 (Adições = 2) +D(26, 79) = 4987446523169212001 (Adições = 2) +D(26, 80) = 12021352220248151457 (Adições = 2) +D(26, 81) = 7098256638073459221 (Adições = 2) +D(26, 82) = 11738481781830402717 (Adições = 2) +D(26, 83) = 1173396799234480761 (Adições = 2) +D(26, 84) = 7068597148599067465 (Adições = 2) +D(26, 85) = 2528783093876626317 (Adições = 2) +D(26, 86) = 1251941431398339237 (Adições = 2) +D(26, 87) = 3262393585488526929 (Adições = 2) +D(26, 88) = 9910472442286966961 (Adições = 2) +D(26, 89) = 12029214516810486981 (Adições = 2) +D(26, 90) = 77193363447918189 (Adições = 2) +D(26, 91) = 14171810325126247913 (Adições = 2) +D(26, 92) = 10446138349089747417 (Adições = 2) +D(26, 93) = 14418742455371010493 (Adições = 2) +D(26, 94) = 5905240381729774069 (Adições = 2) +D(26, 95) = 11930357398936589633 (Adições = 2) +D(26, 96) = 6089210666412006081 (Adições = 2) +D(26, 97) = 12091696602457691765 (Adições = 2) +D(26, 98) = 15578176119914031421 (Adições = 2) +D(26, 99) = 2980630328700092505 (Adições = 2) +D(26, 100) = 15341921466292080489 (Adições = 2) +D(27, 0) = 1 (Adições = 0) +D(27, 1) = 55 (Adições = 2) +D(27, 2) = 1513 (Adições = 2) +D(27, 3) = 27775 (Adições = 2) +D(27, 4) = 383041 (Adições = 2) +D(27, 5) = 4235671 (Adições = 2) +D(27, 6) = 39146185 (Adições = 2) +D(27, 7) = 311207743 (Adições = 2) +D(27, 8) = 2173806145 (Adições = 2) +D(27, 9) = 13560999991 (Adições = 2) +D(27, 10) = 76541925481 (Adições = 2) +D(27, 11) = 395037809215 (Adições = 2) +D(27, 12) = 1880753390593 (Adições = 2) +D(27, 13) = 8321683861015 (Adições = 2) +D(27, 14) = 34438743316681 (Adições = 2) +D(27, 15) = 134042297098111 (Adições = 2) +D(27, 16) = 493056718134145 (Adições = 2) +D(27, 17) = 1721340955938103 (Adições = 2) +D(27, 18) = 5725317599159785 (Adições = 2) +D(27, 19) = 18204031850561791 (Adições = 2) +D(27, 20) = 55500139308246721 (Adições = 2) +D(27, 21) = 162694680903085975 (Adições = 2) +D(27, 22) = 459714107961041353 (Adições = 2) +D(27, 23) = 1254937344248920255 (Adições = 2) +D(27, 24) = 3316457434033106881 (Adições = 2) +D(27, 25) = 8500946205351798583 (Adições = 2) +D(27, 26) = 2724928124181855849 (Adições = 2) +D(27, 27) = 14420088601587347647 (Adições = 2) +D(27, 28) = 10529602362686361729 (Adições = 2) +D(27, 29) = 2724143144152675863 (Adições = 2) +D(27, 30) = 2260157196613369289 (Adições = 2) +D(27, 31) = 3670942573218317055 (Adições = 2) +D(27, 32) = 5616656070421066497 (Adições = 2) +D(27, 33) = 7889865137962389047 (Adições = 2) +D(27, 34) = 1395387253730308585 (Adições = 2) +D(27, 35) = 3005544019647543679 (Adições = 2) +D(27, 36) = 16709030569696563521 (Adições = 2) +D(27, 37) = 15298044978321183127 (Adições = 2) +D(27, 38) = 7828466532703583433 (Adições = 2) +D(27, 39) = 5134221262350814783 (Adições = 2) +D(27, 40) = 9158285883005498689 (Adições = 2) +D(27, 41) = 3346963604252168759 (Adições = 2) +D(27, 42) = 10248702640979234921 (Adições = 2) +D(27, 43) = 16806926993166478143 (Adições = 2) +D(27, 44) = 12996936432198924545 (Adições = 2) +D(27, 45) = 6903070197783859735 (Adições = 2) +D(27, 46) = 5729450554915237577 (Adições = 2) +D(27, 47) = 7573613798143666815 (Adições = 2) +D(27, 48) = 9292192958764451457 (Adições = 2) +D(27, 49) = 10696243625356313399 (Adições = 2) +D(27, 50) = 5008017184090892777 (Adições = 2) +D(27, 51) = 9376700648353781247 (Adições = 2) +D(27, 52) = 6315491428443543489 (Adições = 2) +D(27, 53) = 6008143928583473047 (Adições = 2) +D(27, 54) = 703327097656927177 (Adições = 2) +D(27, 55) = 12303952941230925759 (Adições = 2) +D(27, 56) = 11786788748530415297 (Adições = 2) +D(27, 57) = 2425550545385681207 (Adições = 2) +D(27, 58) = 7840760366585597545 (Adições = 2) +D(27, 59) = 2189862610602510783 (Adições = 2) +D(27, 60) = 3568540395624955265 (Adições = 2) +D(27, 61) = 13536451940748870167 (Adições = 2) +D(27, 62) = 6890810366721502153 (Adições = 2) +D(27, 63) = 14359681607032542719 (Adições = 2) +D(27, 64) = 6153125908958041601 (Adições = 2) +D(27, 65) = 7709616012625898551 (Adições = 2) +D(27, 66) = 12764072861369798121 (Adições = 2) +D(27, 67) = 17797192837834905215 (Adições = 2) +D(27, 68) = 13136096176963369537 (Adições = 2) +D(27, 69) = 3414405042383770007 (Adições = 2) +D(27, 70) = 346739389520369353 (Adições = 2) +D(27, 71) = 1036782797935052095 (Adições = 2) +D(27, 72) = 10357282461054415937 (Adições = 2) +D(27, 73) = 992463431840007223 (Adições = 2) +D(27, 74) = 3227270839502387305 (Adições = 2) +D(27, 75) = 4083765631332273215 (Adições = 2) +D(27, 76) = 72155537410727425 (Adições = 2) +D(27, 77) = 4561405593328076311 (Adições = 2) +D(27, 78) = 4706586518665737417 (Adições = 2) +D(27, 79) = 9881931537589765503 (Adições = 2) +D(27, 80) = 8443986207297577345 (Adições = 2) +D(27, 81) = 9116850991909636407 (Adições = 2) +D(27, 82) = 9506845338103946729 (Adições = 2) +D(27, 83) = 3971979845459278591 (Adições = 2) +D(27, 84) = 12213973793292826817 (Adições = 2) +D(27, 85) = 3364609962058968983 (Adições = 2) +D(27, 86) = 7145334487333934537 (Adições = 2) +D(27, 87) = 11659669504220800703 (Adições = 2) +D(27, 88) = 6385791458286742977 (Adições = 2) +D(27, 89) = 9878734343674645303 (Adições = 2) +D(27, 90) = 3538398150223498857 (Adições = 2) +D(27, 91) = 17787401838797664959 (Adições = 2) +D(27, 92) = 5511862365594557057 (Adições = 2) +D(27, 93) = 11929999096345763351 (Adições = 2) +D(27, 94) = 13807237859736996297 (Adições = 2) +D(27, 95) = 13196091566693808383 (Adições = 2) +D(27, 96) = 12768915558332852481 (Adições = 2) +D(27, 97) = 12503078753492998711 (Adições = 2) +D(27, 98) = 3279463328445618665 (Adições = 2) +D(27, 99) = 3391525703350190975 (Adições = 2) +D(27, 100) = 3267333424632812353 (Adições = 2) +D(28, 0) = 1 (Adições = 0) +D(28, 1) = 57 (Adições = 2) +D(28, 2) = 1625 (Adições = 2) +D(28, 3) = 30913 (Adições = 2) +D(28, 4) = 441729 (Adições = 2) +D(28, 5) = 5060441 (Adições = 2) +D(28, 6) = 48442297 (Adições = 2) +D(28, 7) = 398796225 (Adições = 2) +D(28, 8) = 2883810113 (Adições = 2) +D(28, 9) = 18618616249 (Adições = 2) +D(28, 10) = 108721541721 (Adições = 2) +D(28, 11) = 580301276417 (Adições = 2) +D(28, 12) = 2856092476225 (Adições = 2) +D(28, 13) = 13058529727833 (Adições = 2) +D(28, 14) = 55818956905529 (Adições = 2) +D(28, 15) = 224299997320321 (Adições = 2) +D(28, 16) = 851399012552577 (Adições = 2) +D(28, 17) = 3065796686624825 (Adições = 2) +D(28, 18) = 10512455241722713 (Adições = 2) +D(28, 19) = 34441804691444289 (Adições = 2) +D(28, 20) = 108145975850252801 (Adições = 2) +D(28, 21) = 326340796061585497 (Adições = 2) +D(28, 22) = 948749584925712825 (Adições = 2) +D(28, 23) = 2663401037135674433 (Adições = 2) +D(28, 24) = 7234795815417701569 (Adições = 2) +D(28, 25) = 605455381093055417 (Adições = 2) +D(28, 26) = 11831329710626709849 (Adições = 2) +D(28, 27) = 10529602362686361729 (Adições = 2) +D(28, 28) = 17032549253250519489 (Adições = 2) +D(28, 29) = 11839550686380005465 (Adições = 2) +D(28, 30) = 16823851027146050617 (Adições = 2) +D(28, 31) = 4308206723268185345 (Adições = 2) +D(28, 32) = 13595805366907568897 (Adições = 2) +D(28, 33) = 8655582501581472825 (Adições = 2) +D(28, 34) = 17940834893274170457 (Adições = 2) +D(28, 35) = 3895022092942471105 (Adições = 2) +D(28, 36) = 5162852608577026689 (Adições = 2) +D(28, 37) = 276440009175670105 (Adições = 2) +D(28, 38) = 4956207446490885049 (Adições = 2) +D(28, 39) = 17918895241545283265 (Adições = 2) +D(28, 40) = 13764658313192045121 (Adições = 2) +D(28, 41) = 7823163726740160953 (Adições = 2) +D(28, 42) = 2972085898262013017 (Adições = 2) +D(28, 43) = 11580971458698174465 (Adições = 2) +D(28, 44) = 4491346736644473921 (Adições = 2) +D(28, 45) = 5944609292917706585 (Adições = 2) +D(28, 46) = 130385971907252281 (Adições = 2) +D(28, 47) = 13433450324966156673 (Adições = 2) +D(28, 48) = 11852513008164723329 (Adições = 2) +D(28, 49) = 13394205518575936569 (Adições = 2) +D(28, 50) = 10651722254313591129 (Adições = 2) +D(28, 51) = 6589696013048713537 (Adições = 2) +D(28, 52) = 3835144016136486657 (Adições = 2) +D(28, 53) = 16158779373163503193 (Adições = 2) +D(28, 54) = 4423506325694351801 (Adições = 2) +D(28, 55) = 17430786364582204737 (Adições = 2) +D(28, 56) = 4628039906924442561 (Adições = 2) +D(28, 57) = 393635127130987449 (Adições = 2) +D(28, 58) = 10659946039102266201 (Adições = 2) +D(28, 59) = 2243824942580822913 (Adições = 2) +D(28, 60) = 8002227948808288961 (Adições = 2) +D(28, 61) = 6660476211472562777 (Adições = 2) +D(28, 62) = 8640994445233383481 (Adições = 2) +D(28, 63) = 11444742345277876737 (Adições = 2) +D(28, 64) = 13510805787558909441 (Adições = 2) +D(28, 65) = 8926803635433297977 (Adições = 2) +D(28, 66) = 10953748435719443033 (Adições = 2) +D(28, 67) = 4621525987505043137 (Adições = 2) +D(28, 68) = 17108070928593766273 (Adições = 2) +D(28, 69) = 15211828074231354201 (Adições = 2) +D(28, 70) = 526228432425941945 (Adições = 2) +D(28, 71) = 1909750619881363393 (Adições = 2) +D(28, 72) = 13303815878870831425 (Adições = 2) +D(28, 73) = 6206817698055702969 (Adições = 2) +D(28, 74) = 10426551969398097497 (Adições = 2) +D(28, 75) = 17737588440232758017 (Adições = 2) +D(28, 76) = 3446765535266207041 (Adições = 2) +D(28, 77) = 8080326666005010777 (Adições = 2) +D(28, 78) = 17348318777998824505 (Adições = 2) +D(28, 79) = 13490092760544775809 (Adições = 2) +D(28, 80) = 13369266431722567041 (Adições = 2) +D(28, 81) = 12483359557220229177 (Adições = 2) +D(28, 82) = 12660311813524260697 (Adições = 2) +D(28, 83) = 7692392923377934401 (Adições = 2) +D(28, 84) = 5431602488420488193 (Adições = 2) +D(28, 85) = 2563442170062732377 (Adições = 2) +D(28, 86) = 13073386619455635897 (Adições = 2) +D(28, 87) = 13431646537300819521 (Adições = 2) +D(28, 88) = 13030363426098811585 (Adições = 2) +D(28, 89) = 10848145154350648249 (Adições = 2) +D(28, 90) = 5818533574539240793 (Adições = 2) +D(28, 91) = 8697589489850852993 (Adições = 2) +D(28, 92) = 13550109620533523393 (Adições = 2) +D(28, 93) = 12545227008764292185 (Adições = 2) +D(28, 94) = 1388975817427948601 (Adições = 2) +D(28, 95) = 9945561170149201665 (Adições = 2) +D(28, 96) = 17463824221466310913 (Adições = 2) +D(28, 97) = 5842330385873058873 (Adições = 2) +D(28, 98) = 3178128394102124633 (Adições = 2) +D(28, 99) = 9849117425897934273 (Adições = 2) +D(28, 100) = 16507976553880937601 (Adições = 2) +D(29, 0) = 1 (Adições = 0) +D(29, 1) = 59 (Adições = 2) +D(29, 2) = 1741 (Adições = 2) +D(29, 3) = 34279 (Adições = 2) +D(29, 4) = 506921 (Adições = 2) +D(29, 5) = 6009091 (Adições = 2) +D(29, 6) = 59511829 (Adições = 2) +D(29, 7) = 506750351 (Adições = 2) +D(29, 8) = 3789356689 (Adições = 2) +D(29, 9) = 25291783051 (Adições = 2) +D(29, 10) = 152631941021 (Adições = 2) +D(29, 11) = 841654759159 (Adições = 2) +D(29, 12) = 4278048511801 (Adições = 2) +D(29, 13) = 20192670715859 (Adições = 2) +D(29, 14) = 89070157349221 (Adições = 2) +D(29, 15) = 369189111575071 (Adições = 2) +D(29, 16) = 1444888121447969 (Adições = 2) +D(29, 17) = 5362083820625371 (Adições = 2) +D(29, 18) = 18940335748972909 (Adições = 2) +D(29, 19) = 63894595682139911 (Adições = 2) +D(29, 20) = 206482376223837001 (Adições = 2) +D(29, 21) = 640969148135675299 (Adições = 2) +D(29, 22) = 1916059529122973621 (Adições = 2) +D(29, 23) = 5528210151184360879 (Adições = 2) +D(29, 24) = 15426407003737736881 (Adições = 2) +D(29, 25) = 4819914126538942251 (Adições = 2) +D(29, 26) = 17256699218258707517 (Adições = 2) +D(29, 27) = 2724143144152675863 (Adições = 2) +D(29, 28) = 11839550686380005465 (Adições = 2) +D(29, 29) = 3818162478591427187 (Adições = 2) +D(29, 30) = 14034820118407931653 (Adições = 2) +D(29, 31) = 16720133795112615999 (Adições = 2) +D(29, 32) = 16177401811578818625 (Adições = 2) +D(29, 33) = 1535301532648757115 (Adições = 2) +D(29, 34) = 9684974853794848781 (Adições = 2) +D(29, 35) = 13074087766301938727 (Adições = 2) +D(29, 36) = 3685218394111884905 (Adições = 2) +D(29, 37) = 9124511011864581699 (Adições = 2) +D(29, 38) = 14357158467531136853 (Adições = 2) +D(29, 39) = 338773008148201935 (Adições = 2) +D(29, 40) = 13575582489175978705 (Adições = 2) +D(29, 41) = 16716660455398633163 (Adições = 2) +D(29, 42) = 9065166006691255517 (Adições = 2) +D(29, 43) = 5171479289941891383 (Adições = 2) +D(29, 44) = 2797053411574988153 (Adições = 2) +D(29, 45) = 13233009441137168659 (Adições = 2) +D(29, 46) = 861260632252575909 (Adições = 2) +D(29, 47) = 14425096929125984863 (Adições = 2) +D(29, 48) = 2817572114837761633 (Adições = 2) +D(29, 49) = 9617546567868869915 (Adições = 2) +D(29, 50) = 15216730267048845997 (Adições = 2) +D(29, 51) = 14011404460701599047 (Adições = 2) +D(29, 52) = 5989500416177247625 (Adições = 2) +D(29, 53) = 7536679731767685859 (Adições = 2) +D(29, 54) = 9672221356915989237 (Adições = 2) +D(29, 55) = 13079769973482994159 (Adições = 2) +D(29, 56) = 16691852171280089841 (Adições = 2) +D(29, 57) = 3266783131625968235 (Adições = 2) +D(29, 58) = 14320364297859221885 (Adições = 2) +D(29, 59) = 8777391205832759383 (Adições = 2) +D(29, 60) = 576700023512319641 (Adições = 2) +D(29, 61) = 15239404183793171379 (Adições = 2) +D(29, 62) = 12094130766789566021 (Adições = 2) +D(29, 63) = 13733123483591274623 (Adições = 2) +D(29, 64) = 1795183469008957569 (Adições = 2) +D(29, 65) = 5786048818291613371 (Adições = 2) +D(29, 66) = 7219856815734802765 (Adições = 2) +D(29, 67) = 4348387165249737319 (Adições = 2) +D(29, 68) = 7631240007638995113 (Adições = 2) +D(29, 69) = 3057650863045012355 (Adições = 2) +D(29, 70) = 348963295992756885 (Adições = 2) +D(29, 71) = 2784942348300062223 (Adições = 2) +D(29, 72) = 17998508847052257041 (Adições = 2) +D(29, 73) = 615654276559688203 (Adições = 2) +D(29, 74) = 17249023944013488669 (Adições = 2) +D(29, 75) = 8519676206225240951 (Adições = 2) +D(29, 76) = 11257286108014654393 (Adições = 2) +D(29, 77) = 4337634235576320595 (Adições = 2) +D(29, 78) = 11319535605870604261 (Adições = 2) +D(29, 79) = 5264458996995101343 (Adições = 2) +D(29, 80) = 13677074115552892577 (Adições = 2) +D(29, 81) = 2636211957076585563 (Adições = 2) +D(29, 82) = 9333139254111523821 (Adições = 2) +D(29, 83) = 11239099917304167303 (Adições = 2) +D(29, 84) = 5916351255393038281 (Adições = 2) +D(29, 85) = 13911395913876258851 (Adições = 2) +D(29, 86) = 11101480629685075509 (Adições = 2) +D(29, 87) = 713025639022427695 (Adições = 2) +D(29, 88) = 8728291528712507185 (Adições = 2) +D(29, 89) = 14160056035452415403 (Adições = 2) +D(29, 90) = 12379990690632752829 (Adições = 2) +D(29, 91) = 8449369681313294999 (Adições = 2) +D(29, 92) = 12250324717988119769 (Adições = 2) +D(29, 93) = 1452173199866832115 (Adições = 2) +D(29, 94) = 15386376026059072901 (Adições = 2) +D(29, 95) = 8274168939926671551 (Adições = 2) +D(29, 96) = 17236810257832632513 (Adições = 2) +D(29, 97) = 3649476717752899067 (Adições = 2) +D(29, 98) = 12669935497728082573 (Adições = 2) +D(29, 99) = 7250437244018589863 (Adições = 2) +D(29, 100) = 15160787150087910121 (Adições = 2) +D(30, 0) = 1 (Adições = 0) +D(30, 1) = 61 (Adições = 2) +D(30, 2) = 1861 (Adições = 2) +D(30, 3) = 37881 (Adições = 2) +D(30, 4) = 579081 (Adições = 2) +D(30, 5) = 7095093 (Adições = 2) +D(30, 6) = 72616013 (Adições = 2) +D(30, 7) = 638878193 (Adições = 2) +D(30, 8) = 4934985233 (Adições = 2) +D(30, 9) = 34016124973 (Adições = 2) +D(30, 10) = 211939849045 (Adições = 2) +D(30, 11) = 1206226549225 (Adições = 2) +D(30, 12) = 6325929820185 (Adições = 2) +D(30, 13) = 30796649047845 (Adições = 2) +D(30, 14) = 140059477112925 (Adições = 2) +D(30, 15) = 598318746037217 (Adições = 2) +D(30, 16) = 2412395979060257 (Adições = 2) +D(30, 17) = 9219367921133597 (Adições = 2) +D(30, 18) = 33521787490731877 (Adições = 2) +D(30, 19) = 116356718921844697 (Adições = 2) +D(30, 20) = 386733690827821609 (Adições = 2) +D(30, 21) = 1234185215187333909 (Adições = 2) +D(30, 22) = 3791213892445982829 (Adições = 2) +D(30, 23) = 11235483572753317329 (Adições = 2) +D(30, 24) = 13743356653965863473 (Adições = 2) +D(30, 25) = 15542933710532990989 (Adições = 2) +D(30, 26) = 726058907911537525 (Adições = 2) +D(30, 27) = 2260157196613369289 (Adições = 2) +D(30, 28) = 16823851027146050617 (Adições = 2) +D(30, 29) = 14034820118407931653 (Adições = 2) +D(30, 30) = 13441058641697738877 (Adições = 2) +D(30, 31) = 7302524407799183297 (Adições = 2) +D(30, 32) = 3306571867071514689 (Adições = 2) +D(30, 33) = 2572531137589538813 (Adições = 2) +D(30, 34) = 13792807524033144709 (Adições = 2) +D(30, 35) = 18105126070420380601 (Adições = 2) +D(30, 36) = 16417688157124652617 (Adições = 2) +D(30, 37) = 10780673489391567605 (Adições = 2) +D(30, 38) = 15815598895077734541 (Adições = 2) +D(30, 39) = 12064786297047521713 (Adições = 2) +D(30, 40) = 7532397720662150737 (Adições = 2) +D(30, 41) = 931152517817659373 (Adições = 2) +D(30, 42) = 8266234906197996437 (Adições = 2) +D(30, 43) = 4056136129121591721 (Adições = 2) +D(30, 44) = 12024668830638471257 (Adições = 2) +D(30, 45) = 9607987609641076453 (Adições = 2) +D(30, 46) = 5255513609321269405 (Adições = 2) +D(30, 47) = 2095127096990278561 (Adições = 2) +D(30, 48) = 891052067244473441 (Adições = 2) +D(30, 49) = 13326170749951104989 (Adições = 2) +D(30, 50) = 1266959437449717669 (Adições = 2) +D(30, 51) = 12048350091490611097 (Adições = 2) +D(30, 52) = 13602510894659906153 (Adições = 2) +D(30, 53) = 8681946968895288021 (Adições = 2) +D(30, 54) = 7444103983869411501 (Adições = 2) +D(30, 55) = 11749351240558843281 (Adições = 2) +D(30, 56) = 4627485237902824049 (Adições = 2) +D(30, 57) = 6139376467099330509 (Adições = 2) +D(30, 58) = 5279779822874969013 (Adições = 2) +D(30, 59) = 9930791252857398665 (Adições = 2) +D(30, 60) = 838138408492926073 (Adições = 2) +D(30, 61) = 16654242615798417093 (Adições = 2) +D(30, 62) = 7094289418962051261 (Adições = 2) +D(30, 63) = 14474799595633340289 (Adições = 2) +D(30, 64) = 11556362474524020865 (Adições = 2) +D(30, 65) = 690850688115040189 (Adições = 2) +D(30, 66) = 13696756322141456325 (Adições = 2) +D(30, 67) = 6818256229416444793 (Adições = 2) +D(30, 68) = 351139328595625609 (Adições = 2) +D(30, 69) = 11040030199279633077 (Adições = 2) +D(30, 70) = 14446644358317402317 (Adições = 2) +D(30, 71) = 17580550002610221425 (Adições = 2) +D(30, 72) = 1470513050543437457 (Adições = 2) +D(30, 73) = 1637932100445831085 (Adições = 2) +D(30, 74) = 1055866247309456341 (Adições = 2) +D(30, 75) = 8377822323838634345 (Adições = 2) +D(30, 76) = 9708040564368978073 (Adições = 2) +D(30, 77) = 6856216834250401445 (Adições = 2) +D(30, 78) = 4066642601987774685 (Adições = 2) +D(30, 79) = 2203893131143928673 (Adições = 2) +D(30, 80) = 2698682169982370977 (Adições = 2) +D(30, 81) = 565224168902297501 (Adições = 2) +D(30, 82) = 12534575380090406885 (Adições = 2) +D(30, 83) = 14660070477796546393 (Adições = 2) +D(30, 84) = 13368777576784200361 (Adições = 2) +D(30, 85) = 14749780672343945877 (Adições = 2) +D(30, 86) = 2869169068486177005 (Adições = 2) +D(30, 87) = 14683675337193680209 (Adições = 2) +D(30, 88) = 5678248431219063473 (Adições = 2) +D(30, 89) = 10119851921674434445 (Adições = 2) +D(30, 90) = 18213154574050051061 (Adições = 2) +D(30, 91) = 2149026798576995657 (Adições = 2) +D(30, 92) = 4401977124168858809 (Adições = 2) +D(30, 93) = 18104475042023810693 (Adições = 2) +D(30, 94) = 16496280194240164093 (Adições = 2) +D(30, 95) = 3263337012806805313 (Adições = 2) +D(30, 96) = 10327572136856557761 (Adições = 2) +D(30, 97) = 12767115038732537725 (Adições = 2) +D(30, 98) = 10639783180503967749 (Adições = 2) +D(30, 99) = 12113411848541088569 (Adições = 2) +D(30, 100) = 16077892168938036937 (Adições = 2) +D(31, 0) = 1 (Adições = 0) +D(31, 1) = 63 (Adições = 2) +D(31, 2) = 1985 (Adições = 2) +D(31, 3) = 41727 (Adições = 2) +D(31, 4) = 658689 (Adições = 2) +D(31, 5) = 8332863 (Adições = 2) +D(31, 6) = 88043969 (Adições = 2) +D(31, 7) = 799538175 (Adições = 2) +D(31, 8) = 6373401601 (Adições = 2) +D(31, 9) = 45324511807 (Adições = 2) +D(31, 10) = 291280485825 (Adições = 2) +D(31, 11) = 1709446884095 (Adições = 2) +D(31, 12) = 9241603253505 (Adições = 2) +D(31, 13) = 46364182121535 (Adições = 2) +D(31, 14) = 217220308282305 (Adições = 2) +D(31, 15) = 955598531432447 (Adições = 2) +D(31, 16) = 3966313256529921 (Adições = 2) +D(31, 17) = 15598077156723775 (Adições = 2) +D(31, 18) = 58339232568589249 (Adições = 2) +D(31, 19) = 208217738981165823 (Adições = 2) +D(31, 20) = 711308148730832129 (Adições = 2) +D(31, 21) = 2332227054745987647 (Adições = 2) +D(31, 22) = 7357626162379304385 (Adições = 2) +D(31, 23) = 3937579553869052927 (Adições = 2) +D(31, 24) = 10469675706878682113 (Adições = 2) +D(31, 25) = 2862477923958433343 (Adições = 2) +D(31, 26) = 684726468693410241 (Adições = 2) +D(31, 27) = 3670942573218317055 (Adições = 2) +D(31, 28) = 4308206723268185345 (Adições = 2) +D(31, 29) = 16720133795112615999 (Adições = 2) +D(31, 30) = 7302524407799183297 (Adições = 2) +D(31, 31) = 9599363383586553855 (Adições = 2) +D(31, 32) = 1761715584747700225 (Adições = 2) +D(31, 33) = 7640818589408753727 (Adições = 2) +D(31, 34) = 5559413177321885633 (Adições = 2) +D(31, 35) = 563858624356307711 (Adições = 2) +D(31, 36) = 16639928778191789313 (Adições = 2) +D(31, 37) = 6944802277288906303 (Adições = 2) +D(31, 38) = 15094330588048656833 (Adições = 2) +D(31, 39) = 6081227632754809855 (Adições = 2) +D(31, 40) = 7231667576754930689 (Adições = 2) +D(31, 41) = 15695217815234740799 (Adições = 2) +D(31, 42) = 6445861165540844993 (Adições = 2) +D(31, 43) = 321488127150881535 (Adições = 2) +D(31, 44) = 16402293086910944513 (Adições = 2) +D(31, 45) = 1141461379771388991 (Adições = 2) +D(31, 46) = 16004962598733734849 (Adições = 2) +D(31, 47) = 4908859231335731199 (Adições = 2) +D(31, 48) = 7895038395570483201 (Adições = 2) +D(31, 49) = 3665517139056510015 (Adições = 2) +D(31, 50) = 18258647326457332673 (Adições = 2) +D(31, 51) = 13127212781688109823 (Adições = 2) +D(31, 52) = 1884585620419523841 (Adições = 2) +D(31, 53) = 5722299410265166399 (Adições = 2) +D(31, 54) = 3401606289320314305 (Adições = 2) +D(31, 55) = 4148317440039017471 (Adições = 2) +D(31, 56) = 2078409844791133185 (Adições = 2) +D(31, 57) = 12845271549793287743 (Adições = 2) +D(31, 58) = 5817683766058035649 (Adições = 2) +D(31, 59) = 2581510768080851711 (Adições = 2) +D(31, 60) = 13350440429431176449 (Adições = 2) +D(31, 61) = 12396077380012967999 (Adições = 2) +D(31, 62) = 17697865341063884737 (Adições = 2) +D(31, 63) = 2373466208240173055 (Adições = 2) +D(31, 64) = 9957884204687982593 (Adições = 2) +D(31, 65) = 3758353293617492031 (Adições = 2) +D(31, 66) = 18145960303873988545 (Adições = 2) +D(31, 67) = 1767484708012786431 (Adições = 2) +D(31, 68) = 8936880266024856833 (Adições = 2) +D(31, 69) = 1881305720190563903 (Adições = 2) +D(31, 70) = 8921236204078047681 (Adições = 2) +D(31, 71) = 4054942417586568191 (Adições = 2) +D(31, 72) = 4659261397030675457 (Adições = 2) +D(31, 73) = 7767706548019943999 (Adições = 2) +D(31, 74) = 10461504895775231425 (Adições = 2) +D(31, 75) = 1448449393213770495 (Adições = 2) +D(31, 76) = 1087568207711831297 (Adições = 2) +D(31, 77) = 17651825606331210815 (Adições = 2) +D(31, 78) = 10127940968859835329 (Adições = 2) +D(31, 79) = 16398476701991538687 (Adições = 2) +D(31, 80) = 2854307929408286721 (Adições = 2) +D(31, 81) = 6118214268292955199 (Adições = 2) +D(31, 82) = 771269743576107969 (Adições = 2) +D(31, 83) = 9519171527753509631 (Adições = 2) +D(31, 84) = 654531434915153153 (Adições = 2) +D(31, 85) = 10326345610333747775 (Adições = 2) +D(31, 86) = 9498551277454319041 (Adições = 2) +D(31, 87) = 8604651609424624639 (Adições = 2) +D(31, 88) = 10519831304127816705 (Adições = 2) +D(31, 89) = 7871187583311763007 (Adições = 2) +D(31, 90) = 17757450005326696897 (Adições = 2) +D(31, 91) = 1226143230534640383 (Adições = 2) +D(31, 92) = 7777147153280494849 (Adições = 2) +D(31, 93) = 11836855245763612735 (Adições = 2) +D(31, 94) = 9544122334608484289 (Adições = 2) +D(31, 95) = 10856995467945902079 (Adições = 2) +D(31, 96) = 6001160543899713537 (Adições = 2) +D(31, 97) = 10649103645779257407 (Adições = 2) +D(31, 98) = 15609257791306211265 (Adições = 2) +D(31, 99) = 1468964672932164351 (Adições = 2) +D(31, 100) = 11213524616701738241 (Adições = 2) +D(32, 0) = 1 (Adições = 0) +D(32, 1) = 65 (Adições = 2) +D(32, 2) = 2113 (Adições = 2) +D(32, 3) = 45825 (Adições = 2) +D(32, 4) = 746241 (Adições = 2) +D(32, 5) = 9737793 (Adições = 2) +D(32, 6) = 106114625 (Adições = 2) +D(32, 7) = 993696769 (Adições = 2) +D(32, 8) = 8166636545 (Adições = 2) +D(32, 9) = 59864549953 (Adições = 2) +D(32, 10) = 396469547585 (Adições = 2) +D(32, 11) = 2397196917505 (Adições = 2) +D(32, 12) = 13348247055105 (Adições = 2) +D(32, 13) = 68954032430145 (Adições = 2) +D(32, 14) = 332538522833985 (Adições = 2) +D(32, 15) = 1505357362548737 (Adições = 2) +D(32, 16) = 6427269150511105 (Adições = 2) +D(32, 17) = 25991659563764801 (Adições = 2) +D(32, 18) = 99928969289077825 (Adições = 2) +D(32, 19) = 366485940838832897 (Adições = 2) +D(32, 20) = 1286011828550830849 (Adições = 2) +D(32, 21) = 4329547032027650625 (Adições = 2) +D(32, 22) = 14019400249152942657 (Adições = 2) +D(32, 23) = 6867861891691748353 (Adições = 2) +D(32, 24) = 2828373078729931777 (Adições = 2) +D(32, 25) = 16160526709567047233 (Adições = 2) +D(32, 26) = 1260987028509339201 (Adições = 2) +D(32, 27) = 5616656070421066497 (Adições = 2) +D(32, 28) = 13595805366907568897 (Adições = 2) +D(32, 29) = 16177401811578818625 (Adições = 2) +D(32, 30) = 3306571867071514689 (Adições = 2) +D(32, 31) = 1761715584747700225 (Adições = 2) +D(32, 32) = 13122794553081954305 (Adições = 2) +D(32, 33) = 4078584653528856641 (Adições = 2) +D(32, 34) = 17278816420259496001 (Adições = 2) +D(32, 35) = 4955344148228137729 (Adições = 2) +D(32, 36) = 3712387477066683137 (Adições = 2) +D(32, 37) = 8850374458837827137 (Adições = 2) +D(32, 38) = 12442763250465838657 (Adições = 2) +D(32, 39) = 15171577397559753729 (Adições = 2) +D(32, 40) = 10037728533359942657 (Adições = 2) +D(32, 41) = 14517869851640062529 (Adições = 2) +D(32, 42) = 18212204758706096705 (Adições = 2) +D(32, 43) = 6532809977688271617 (Adições = 2) +D(32, 44) = 4809847118040546049 (Adições = 2) +D(32, 45) = 3906857511013327937 (Adições = 2) +D(32, 46) = 2606537415808900161 (Adições = 2) +D(32, 47) = 5073615172168814593 (Adições = 2) +D(32, 48) = 17877512799075028993 (Adições = 2) +D(32, 49) = 10991324259992470593 (Adições = 2) +D(32, 50) = 14468744651796761665 (Adições = 2) +D(32, 51) = 8961116612523100929 (Adições = 2) +D(32, 52) = 5526170940921182977 (Adições = 2) +D(32, 53) = 13133055971605873217 (Adições = 2) +D(32, 54) = 3810217597481802305 (Adições = 2) +D(32, 55) = 11360141326841134081 (Adições = 2) +D(32, 56) = 17586868611671284737 (Adições = 2) +D(32, 57) = 14063805932546154049 (Adições = 2) +D(32, 58) = 14280017174687925825 (Adições = 2) +D(32, 59) = 4232467635117261569 (Adições = 2) +D(32, 60) = 1717674758919738113 (Adições = 2) +D(32, 61) = 9017448494654330945 (Adições = 2) +D(32, 62) = 2217903068312080449 (Adições = 2) +D(32, 63) = 3842490543906586625 (Adições = 2) +D(32, 64) = 16173840956834742273 (Adições = 2) +D(32, 65) = 11443334381430665281 (Adições = 2) +D(32, 66) = 14900903905212594241 (Adições = 2) +D(32, 67) = 16367604843389817601 (Adições = 2) +D(32, 68) = 8625225743717909249 (Adições = 2) +D(32, 69) = 996667656223778369 (Adições = 2) +D(32, 70) = 11799209580492389953 (Adições = 2) +D(32, 71) = 6328644128447454209 (Adições = 2) +D(32, 72) = 15042847943064697857 (Adições = 2) +D(32, 73) = 9023071814405765697 (Adições = 2) +D(32, 74) = 8805539184491389505 (Adições = 2) +D(32, 75) = 2268749399770839809 (Adições = 2) +D(32, 76) = 4804767000696441601 (Adições = 2) +D(32, 77) = 5097416741029932097 (Adições = 2) +D(32, 78) = 14430439242511426625 (Adições = 2) +D(32, 79) = 4063368765943697409 (Adições = 2) +D(32, 80) = 4869409323633971201 (Adições = 2) +D(32, 81) = 13841931521335213121 (Adições = 2) +D(32, 82) = 2284671459494724673 (Adições = 2) +D(32, 83) = 12575112730824342273 (Adições = 2) +D(32, 84) = 4302071619783453441 (Adições = 2) +D(32, 85) = 15282948665032354369 (Adições = 2) +D(32, 86) = 16661101479110869569 (Adições = 2) +D(32, 87) = 16317560292280261633 (Adições = 2) +D(32, 88) = 16995299132123151361 (Adições = 2) +D(32, 89) = 16939573945853179457 (Adições = 2) +D(32, 90) = 5674723387072536129 (Adições = 2) +D(32, 91) = 6211572549224321793 (Adições = 2) +D(32, 92) = 15214862933039457025 (Adições = 2) +D(32, 93) = 16382121258374012993 (Adições = 2) +D(32, 94) = 869610691327006785 (Adições = 2) +D(32, 95) = 2823984420171841537 (Adições = 2) +D(32, 96) = 1235396358307905537 (Adições = 2) +D(32, 97) = 17885660547986876481 (Adições = 2) +D(32, 98) = 7250533837653241921 (Adições = 2) +D(32, 99) = 5882012228182065921 (Adições = 2) +D(32, 100) = 117757444106416897 (Adições = 2) +D(33, 0) = 1 (Adições = 0) +D(33, 1) = 67 (Adições = 2) +D(33, 2) = 2245 (Adições = 2) +D(33, 3) = 50183 (Adições = 2) +D(33, 4) = 842249 (Adições = 2) +D(33, 5) = 11326283 (Adições = 2) +D(33, 6) = 127178701 (Adições = 2) +D(33, 7) = 1226990095 (Adições = 2) +D(33, 8) = 10387323409 (Adições = 2) +D(33, 9) = 78418509907 (Adições = 2) +D(33, 10) = 534752607445 (Adições = 2) +D(33, 11) = 3328419072535 (Adições = 2) +D(33, 12) = 19073863045145 (Adições = 2) +D(33, 13) = 101376142530395 (Adições = 2) +D(33, 14) = 502868697794525 (Adições = 2) +D(33, 15) = 2340764583177247 (Adições = 2) +D(33, 16) = 10273391096237089 (Adições = 2) +D(33, 17) = 42692319810512995 (Adições = 2) +D(33, 18) = 168612948663355621 (Adições = 2) +D(33, 19) = 635027858791266343 (Adições = 2) +D(33, 20) = 2287525628180930089 (Adições = 2) +D(33, 21) = 7903084488759411563 (Adições = 2) +D(33, 22) = 7805287696230453229 (Adições = 2) +D(33, 23) = 10245805763365592623 (Adições = 2) +D(33, 24) = 1495296660077721137 (Adições = 2) +D(33, 25) = 2037452374665148531 (Adições = 2) +D(33, 26) = 1012222039031983349 (Adições = 2) +D(33, 27) = 7889865137962389047 (Adições = 2) +D(33, 28) = 8655582501581472825 (Adições = 2) +D(33, 29) = 1535301532648757115 (Adições = 2) +D(33, 30) = 2572531137589538813 (Adições = 2) +D(33, 31) = 7640818589408753727 (Adições = 2) +D(33, 32) = 4078584653528856641 (Adições = 2) +D(33, 33) = 2833219786430115971 (Adições = 2) +D(33, 34) = 5743876786508916997 (Adições = 2) +D(33, 35) = 9531293281286999111 (Adições = 2) +D(33, 36) = 18199024906581819977 (Adições = 2) +D(33, 37) = 12315042768776778635 (Adições = 2) +D(33, 38) = 15161436404370892813 (Adições = 2) +D(33, 39) = 5882288904977381967 (Adições = 2) +D(33, 40) = 12644850762187526737 (Adições = 2) +D(33, 41) = 306960999768428691 (Adições = 2) +D(33, 42) = 14590291536405036309 (Adições = 2) +D(33, 43) = 2441818125380301399 (Adições = 2) +D(33, 44) = 13784475221109119065 (Adições = 2) +D(33, 45) = 4054435776453441435 (Adições = 2) +D(33, 46) = 10567830703275669533 (Adições = 2) +D(33, 47) = 18247983291253384287 (Adições = 2) +D(33, 48) = 4305623115078124641 (Adições = 2) +D(33, 49) = 14727716100436072611 (Adições = 2) +D(33, 50) = 3294296864806201637 (Adições = 2) +D(33, 51) = 8277414055416512615 (Adições = 2) +D(33, 52) = 4317957535151244905 (Adições = 2) +D(33, 53) = 4530440373968749483 (Adições = 2) +D(33, 54) = 3026969869346873389 (Adições = 2) +D(33, 55) = 18197328793669809775 (Adições = 2) +D(33, 56) = 10250850584763125361 (Adições = 2) +D(33, 57) = 5008036981561460915 (Adições = 2) +D(33, 58) = 14905116015085989173 (Adições = 2) +D(33, 59) = 14970856751181624951 (Adições = 2) +D(33, 60) = 2474255071509073017 (Adições = 2) +D(33, 61) = 13209378325083142075 (Adições = 2) +D(33, 62) = 5997985814340001853 (Adições = 2) +D(33, 63) = 12058379426558668927 (Adições = 2) +D(33, 64) = 13627966853590446209 (Adições = 2) +D(33, 65) = 4351654044436750531 (Adições = 2) +D(33, 66) = 12249148257370458437 (Adições = 2) +D(33, 67) = 6624168858553767047 (Adições = 2) +D(33, 68) = 13170255371951942281 (Adições = 2) +D(33, 69) = 4345404698184078283 (Adições = 2) +D(33, 70) = 17141281934900246605 (Adições = 2) +D(33, 71) = 16822391570130539151 (Adições = 2) +D(33, 72) = 1300395494223587985 (Adições = 2) +D(33, 73) = 6919571177984499923 (Adições = 2) +D(33, 74) = 6301438103172103509 (Adições = 2) +D(33, 75) = 17375726687434332823 (Adições = 2) +D(33, 76) = 6002499014192062617 (Adições = 2) +D(33, 77) = 15904682755918436315 (Adições = 2) +D(33, 78) = 16985794665750243421 (Adições = 2) +D(33, 79) = 17032858600495815839 (Adições = 2) +D(33, 80) = 7518892616363932833 (Adições = 2) +D(33, 81) = 7783489387623565539 (Adições = 2) +D(33, 82) = 5463348294743951717 (Adições = 2) +D(33, 83) = 1876388411353467047 (Adições = 2) +D(33, 84) = 306828688251711145 (Adições = 2) +D(33, 85) = 1445104899357967339 (Adições = 2) +D(33, 86) = 14942410969791639661 (Adições = 2) +D(33, 87) = 11027584593763667631 (Adições = 2) +D(33, 88) = 7446955870747977393 (Adições = 2) +D(33, 89) = 4488340801305204979 (Adições = 2) +D(33, 90) = 8655894060521368949 (Adições = 2) +D(33, 91) = 2095445923108675255 (Adições = 2) +D(33, 92) = 5075137331662902457 (Adições = 2) +D(33, 93) = 18225377449366820859 (Adições = 2) +D(33, 94) = 17030365325358289021 (Adições = 2) +D(33, 95) = 2277216363147585727 (Adições = 2) +D(33, 96) = 6336597141627332801 (Adições = 2) +D(33, 97) = 7010909974212563203 (Adições = 2) +D(33, 98) = 13700360286143129989 (Adições = 2) +D(33, 99) = 8386162278268886215 (Adições = 2) +D(33, 100) = 14385931950557369033 (Adições = 2) +D(34, 0) = 1 (Adições = 0) +D(34, 1) = 69 (Adições = 2) +D(34, 2) = 2381 (Adições = 2) +D(34, 3) = 54809 (Adições = 2) +D(34, 4) = 947241 (Adições = 2) +D(34, 5) = 13115773 (Adições = 2) +D(34, 6) = 151620757 (Adições = 2) +D(34, 7) = 1505789553 (Adições = 2) +D(34, 8) = 13120103057 (Adições = 2) +D(34, 9) = 101925936373 (Adições = 2) +D(34, 10) = 715097053725 (Adições = 2) +D(34, 11) = 4578268733705 (Adições = 2) +D(34, 12) = 26980550851385 (Adições = 2) +D(34, 13) = 147430556426925 (Adições = 2) +D(34, 14) = 751675396751845 (Adições = 2) +D(34, 15) = 3595308677723617 (Adições = 2) +D(34, 16) = 16209464357137953 (Adições = 2) +D(34, 17) = 69175175263888037 (Adições = 2) +D(34, 18) = 280480443737756653 (Adições = 2) +D(34, 19) = 1084121251192378617 (Adições = 2) +D(34, 20) = 4006674738164575049 (Adições = 2) +D(34, 21) = 14197284855104916701 (Adições = 2) +D(34, 22) = 11458912966385229877 (Adições = 2) +D(34, 23) = 11063262352271724113 (Adições = 2) +D(34, 24) = 4357620702005486257 (Adições = 2) +D(34, 25) = 7890369736748355925 (Adições = 2) +D(34, 26) = 10940044150445487805 (Adições = 2) +D(34, 27) = 1395387253730308585 (Adições = 2) +D(34, 28) = 17940834893274170457 (Adições = 2) +D(34, 29) = 9684974853794848781 (Adições = 2) +D(34, 30) = 13792807524033144709 (Adições = 2) +D(34, 31) = 5559413177321885633 (Adições = 2) +D(34, 32) = 17278816420259496001 (Adições = 2) +D(34, 33) = 5743876786508916997 (Adições = 2) +D(34, 34) = 14320973359447949965 (Adições = 2) +D(34, 35) = 11149399353534314457 (Adições = 2) +D(34, 36) = 1986229393984030313 (Adições = 2) +D(34, 37) = 14053552995633077309 (Adições = 2) +D(34, 38) = 4636544021361645525 (Adições = 2) +D(34, 39) = 7233525257000368689 (Adições = 2) +D(34, 40) = 7313920850455725777 (Adições = 2) +D(34, 41) = 1818988538702129589 (Adições = 2) +D(34, 42) = 16716241074875594589 (Adições = 2) +D(34, 43) = 15301606662951380681 (Adições = 2) +D(34, 44) = 13081155935731249529 (Adições = 2) +D(34, 45) = 12473322859584258413 (Adições = 2) +D(34, 46) = 8648845265603817765 (Adições = 2) +D(34, 47) = 571171112713768353 (Adições = 2) +D(34, 48) = 4678033445335725665 (Adições = 2) +D(34, 49) = 5264628587140371301 (Adições = 2) +D(34, 50) = 4839897478673093933 (Adições = 2) +D(34, 51) = 16411608398895808185 (Adições = 2) +D(34, 52) = 10560235915754014089 (Adições = 2) +D(34, 53) = 961889751164456861 (Adições = 2) +D(34, 54) = 8519299994480079733 (Adições = 2) +D(34, 55) = 11296854583787211281 (Adições = 2) +D(34, 56) = 2851545814801043185 (Adições = 2) +D(34, 57) = 18110433381125629461 (Adições = 2) +D(34, 58) = 1130098230353976317 (Adições = 2) +D(34, 59) = 12559326922912038825 (Adições = 2) +D(34, 60) = 11557694671893185177 (Adições = 2) +D(34, 61) = 8794583994775848653 (Adições = 2) +D(34, 62) = 9555204060489440965 (Adições = 2) +D(34, 63) = 9164825227678560129 (Adições = 2) +D(34, 64) = 16404427434118123649 (Adições = 2) +D(34, 65) = 15937304258435768773 (Adições = 2) +D(34, 66) = 14091362486533426125 (Adições = 2) +D(34, 67) = 14517935528748099993 (Adições = 2) +D(34, 68) = 15865615685544257705 (Adições = 2) +D(34, 69) = 14934531681970726653 (Adições = 2) +D(34, 70) = 17974474241345499925 (Adições = 2) +D(34, 71) = 15044659598957182449 (Adições = 2) +D(34, 72) = 14720702589601757969 (Adições = 2) +D(34, 73) = 4493925188100294261 (Adições = 2) +D(34, 74) = 17714934469256897693 (Adições = 2) +D(34, 75) = 4498611112444230793 (Adições = 2) +D(34, 76) = 9430092740361074617 (Adições = 2) +D(34, 77) = 12890530436762021933 (Adições = 2) +D(34, 78) = 8887519711011598437 (Adições = 2) +D(34, 79) = 6012684829838554465 (Adições = 2) +D(34, 80) = 12117691972988751521 (Adições = 2) +D(34, 81) = 8973329903266698277 (Adições = 2) +D(34, 82) = 3773423511924663917 (Adições = 2) +D(34, 83) = 11113160218022082681 (Adições = 2) +D(34, 84) = 13296377317627260873 (Adições = 2) +D(34, 85) = 15048310905236939357 (Adições = 2) +D(34, 86) = 12989082700676994741 (Adições = 2) +D(34, 87) = 2065590116813198801 (Adições = 2) +D(34, 88) = 2093386507615292209 (Adições = 2) +D(34, 89) = 14028683179668474581 (Adições = 2) +D(34, 90) = 8726173967785496893 (Adições = 2) +D(34, 91) = 1030769877705989481 (Adições = 2) +D(34, 92) = 8201353132477567193 (Adições = 2) +D(34, 93) = 13055123839797738893 (Adições = 2) +D(34, 94) = 11417378467103745541 (Adições = 2) +D(34, 95) = 12278216081900068673 (Adições = 2) +D(34, 96) = 2445285512965435585 (Adições = 2) +D(34, 97) = 15792792628805331589 (Adições = 2) +D(34, 98) = 18057318815451473165 (Adições = 2) +D(34, 99) = 3250353232444386137 (Adições = 2) +D(34, 100) = 7575703387561089769 (Adições = 2) +D(35, 0) = 1 (Adições = 0) +D(35, 1) = 71 (Adições = 2) +D(35, 2) = 2521 (Adições = 2) +D(35, 3) = 59711 (Adições = 2) +D(35, 4) = 1061761 (Adições = 2) +D(35, 5) = 15124775 (Adições = 2) +D(35, 6) = 179861305 (Adições = 2) +D(35, 7) = 1837271615 (Adições = 2) +D(35, 8) = 16463164225 (Adições = 2) +D(35, 9) = 131509203655 (Adições = 2) +D(35, 10) = 948532193753 (Adições = 2) +D(35, 11) = 6241897981183 (Adições = 2) +D(35, 12) = 37800717566273 (Adições = 2) +D(35, 13) = 212211824844583 (Adições = 2) +D(35, 14) = 1111317778023353 (Adições = 2) +D(35, 15) = 5458301852498815 (Adições = 2) +D(35, 16) = 25263074887360385 (Adições = 2) +D(35, 17) = 110647714508386375 (Adições = 2) +D(35, 18) = 460303333510031065 (Adições = 2) +D(35, 19) = 1824905028440166335 (Adições = 2) +D(35, 20) = 6915701017797120001 (Adições = 2) +D(35, 21) = 6672916537357060135 (Adições = 2) +D(35, 22) = 13882370285137655097 (Adições = 2) +D(35, 23) = 17957801530085057471 (Adições = 2) +D(35, 24) = 14931940510652716225 (Adições = 2) +D(35, 25) = 8733186875697006791 (Adições = 2) +D(35, 26) = 9116856689181298905 (Adições = 2) +D(35, 27) = 3005544019647543679 (Adições = 2) +D(35, 28) = 3895022092942471105 (Adições = 2) +D(35, 29) = 13074087766301938727 (Adições = 2) +D(35, 30) = 18105126070420380601 (Adições = 2) +D(35, 31) = 563858624356307711 (Adições = 2) +D(35, 32) = 4955344148228137729 (Adições = 2) +D(35, 33) = 9531293281286999111 (Adições = 2) +D(35, 34) = 11149399353534314457 (Adições = 2) +D(35, 35) = 18173027992807027263 (Adições = 2) +D(35, 36) = 12861912666615820417 (Adições = 2) +D(35, 37) = 10454950982523376423 (Adições = 2) +D(35, 38) = 10698303925808547641 (Adições = 2) +D(35, 39) = 4121629130461010239 (Adições = 2) +D(35, 40) = 222331164207553089 (Adições = 2) +D(35, 41) = 9355240553365408455 (Adições = 2) +D(35, 42) = 9443726093233581017 (Adições = 2) +D(35, 43) = 4568085683641453055 (Adições = 2) +D(35, 44) = 14504104208614531649 (Adições = 2) +D(35, 45) = 3165094856510936359 (Adições = 2) +D(35, 46) = 5840518907989460921 (Adições = 2) +D(35, 47) = 15060535286307047039 (Adições = 2) +D(35, 48) = 1862995770646989441 (Adições = 2) +D(35, 49) = 11805657803123086407 (Adições = 2) +D(35, 50) = 3463439795227000025 (Adições = 2) +D(35, 51) = 6268201599086350527 (Adições = 2) +D(35, 52) = 14793301840026621185 (Adições = 2) +D(35, 53) = 7868683433235540519 (Adições = 2) +D(35, 54) = 17349873178880077113 (Adições = 2) +D(35, 55) = 272539609728264895 (Adições = 2) +D(35, 56) = 14420940008316519361 (Adições = 2) +D(35, 57) = 16936175130533640391 (Adições = 2) +D(35, 58) = 17729962668303694553 (Adições = 2) +D(35, 59) = 12972643747860158079 (Adições = 2) +D(35, 60) = 196177195246278849 (Adições = 2) +D(35, 61) = 2101711788205761063 (Adições = 2) +D(35, 62) = 2004755769761499065 (Adições = 2) +D(35, 63) = 2278040984219948543 (Adições = 2) +D(35, 64) = 9400549572307080705 (Adições = 2) +D(35, 65) = 4848793117441869895 (Adições = 2) +D(35, 66) = 16430715788701513177 (Adições = 2) +D(35, 67) = 8146525656563936063 (Adições = 2) +D(35, 68) = 1636588723437190529 (Adições = 2) +D(35, 69) = 13989992017242623271 (Adições = 2) +D(35, 70) = 10005509793139746617 (Adições = 2) +D(35, 71) = 6131155486023325759 (Adições = 2) +D(35, 72) = 17449773600872714561 (Adições = 2) +D(35, 73) = 18217657304865215175 (Adições = 2) +D(35, 74) = 3533028814803303897 (Adições = 2) +D(35, 75) = 7299830322794880767 (Adições = 2) +D(35, 76) = 2781790101890634561 (Adições = 2) +D(35, 77) = 6655669205304179495 (Adições = 2) +D(35, 78) = 9986975279368248249 (Adições = 2) +D(35, 79) = 6440435746508849535 (Adições = 2) +D(35, 80) = 6124068475626603905 (Adições = 2) +D(35, 81) = 8768346278172502087 (Adições = 2) +D(35, 82) = 3068355619654312665 (Adições = 2) +D(35, 83) = 17954939349601059263 (Adições = 2) +D(35, 84) = 5470988737831299585 (Adições = 2) +D(35, 85) = 15368932886985948199 (Adições = 2) +D(35, 86) = 6512838345480779065 (Adições = 2) +D(35, 87) = 3120767089261420991 (Adições = 2) +D(35, 88) = 7279743713689912001 (Adições = 2) +D(35, 89) = 4955069327264127175 (Adições = 2) +D(35, 90) = 9263182401008547033 (Adições = 2) +D(35, 91) = 573382172790481791 (Adições = 2) +D(35, 92) = 9805505182974038465 (Adições = 2) +D(35, 93) = 12615238081539792935 (Adições = 2) +D(35, 94) = 194252241022174137 (Adições = 2) +D(35, 95) = 5443102716316436735 (Adições = 2) +D(35, 96) = 1719860237472389377 (Adições = 2) +D(35, 97) = 1511194305533604935 (Adições = 2) +D(35, 98) = 16914561676080858073 (Adições = 2) +D(35, 99) = 1328745576557614143 (Adições = 2) +D(35, 100) = 12154802196563090049 (Adições = 2) +D(36, 0) = 1 (Adições = 0) +D(36, 1) = 73 (Adições = 2) +D(36, 2) = 2665 (Adições = 2) +D(36, 3) = 64897 (Adições = 2) +D(36, 4) = 1186369 (Adições = 2) +D(36, 5) = 17372905 (Adições = 2) +D(36, 6) = 212358985 (Adições = 2) +D(36, 7) = 2229491905 (Adições = 2) +D(36, 8) = 20529927745 (Adições = 2) +D(36, 9) = 168502295625 (Adições = 2) +D(36, 10) = 1248543693033 (Adições = 2) +D(36, 11) = 8438973867969 (Adições = 2) +D(36, 12) = 52481589415425 (Adições = 2) +D(36, 13) = 302494131826281 (Adições = 2) +D(36, 14) = 1626023734694217 (Adições = 2) +D(36, 15) = 8195643365216385 (Adições = 2) +D(36, 16) = 38917020105075585 (Adições = 2) +D(36, 17) = 174827809500822345 (Adições = 2) +D(36, 18) = 745778857519239785 (Adições = 2) +D(36, 19) = 3030987219469437185 (Adições = 2) +D(36, 20) = 11771593265706723521 (Adições = 2) +D(36, 21) = 6913466747151352041 (Adições = 2) +D(36, 22) = 9022009495936515657 (Adições = 2) +D(36, 23) = 3968693163740124993 (Adições = 2) +D(36, 24) = 18411691130768347073 (Adições = 2) +D(36, 25) = 5183330369698966857 (Adições = 2) +D(36, 26) = 4586629860867720937 (Adições = 2) +D(36, 27) = 16709030569696563521 (Adições = 2) +D(36, 28) = 5162852608577026689 (Adições = 2) +D(36, 29) = 3685218394111884905 (Adições = 2) +D(36, 30) = 16417688157124652617 (Adições = 2) +D(36, 31) = 16639928778191789313 (Adições = 2) +D(36, 32) = 3712387477066683137 (Adições = 2) +D(36, 33) = 18199024906581819977 (Adições = 2) +D(36, 34) = 1986229393984030313 (Adições = 2) +D(36, 35) = 12861912666615820417 (Adições = 2) +D(36, 36) = 7003365178619564865 (Adições = 2) +D(36, 37) = 11873484754049210089 (Adições = 2) +D(36, 38) = 14579995588671582537 (Adições = 2) +D(36, 39) = 10953184571231588801 (Adições = 2) +D(36, 40) = 15297144865900152129 (Adições = 2) +D(36, 41) = 6427972509763562057 (Adições = 2) +D(36, 42) = 6780195082652999913 (Adições = 2) +D(36, 43) = 2345262785818482369 (Adições = 2) +D(36, 44) = 2970708604364915457 (Adições = 2) +D(36, 45) = 2193163595780831849 (Adições = 2) +D(36, 46) = 11198777360281229129 (Adições = 2) +D(36, 47) = 13653087480868185473 (Adições = 2) +D(36, 48) = 12129874464112670337 (Adições = 2) +D(36, 49) = 7351783964173194569 (Adições = 2) +D(36, 50) = 4174137488813729385 (Adições = 2) +D(36, 51) = 13905778883127079937 (Adições = 2) +D(36, 52) = 16520538248530500033 (Adições = 2) +D(36, 53) = 2289035374373558505 (Adições = 2) +D(36, 54) = 9060847912779624521 (Adições = 2) +D(36, 55) = 8236516627678414913 (Adições = 2) +D(36, 56) = 4483252172013647553 (Adições = 2) +D(36, 57) = 17393623237154255689 (Adições = 2) +D(36, 58) = 15166272888572487401 (Adições = 2) +D(36, 59) = 8975391157317236801 (Adições = 2) +D(36, 60) = 3697468026714122113 (Adições = 2) +D(36, 61) = 5995357010166162025 (Adições = 2) +D(36, 62) = 10101824568133422153 (Adições = 2) +D(36, 63) = 14384621322114869761 (Adições = 2) +D(36, 64) = 7616467804932347393 (Adições = 2) +D(36, 65) = 3419066420971746377 (Adições = 2) +D(36, 66) = 6251831253405577833 (Adições = 2) +D(36, 67) = 12382328624961475457 (Adições = 2) +D(36, 68) = 3718698931253050433 (Adições = 2) +D(36, 69) = 898535598223312617 (Adições = 2) +D(36, 70) = 6447293334896130889 (Adições = 2) +D(36, 71) = 4137214540349651649 (Adições = 2) +D(36, 72) = 9271399553536140353 (Adições = 2) +D(36, 73) = 8045342311854966857 (Adições = 2) +D(36, 74) = 11349284357813934313 (Adições = 2) +D(36, 75) = 3735399421702567361 (Adições = 2) +D(36, 76) = 13817019846388082689 (Adições = 2) +D(36, 77) = 4807735079873345129 (Adições = 2) +D(36, 78) = 3003635490836221257 (Adições = 2) +D(36, 79) = 984302443003767425 (Adições = 2) +D(36, 80) = 13548806665139220865 (Adições = 2) +D(36, 81) = 9994477345228775241 (Adições = 2) +D(36, 82) = 3384435169346038377 (Adições = 2) +D(36, 83) = 5960986064891858689 (Adições = 2) +D(36, 84) = 10940170078614665921 (Adições = 2) +D(36, 85) = 13333347629722362089 (Adições = 2) +D(36, 86) = 16768374788479537737 (Adições = 2) +D(36, 87) = 7955236149512186177 (Adições = 2) +D(36, 88) = 18355746952463519169 (Adições = 2) +D(36, 89) = 12143815919708006729 (Adições = 2) +D(36, 90) = 7915323574271129321 (Adições = 2) +D(36, 91) = 17751888148070158145 (Adições = 2) +D(36, 92) = 9684031430125126785 (Adições = 2) +D(36, 93) = 13658030620929406569 (Adições = 2) +D(36, 94) = 8020776869781822025 (Adições = 2) +D(36, 95) = 13658131827120432897 (Adições = 2) +D(36, 96) = 2374350707199707393 (Adições = 2) +D(36, 97) = 5605405250205701705 (Adições = 2) +D(36, 98) = 5584417158110613097 (Adições = 2) +D(36, 99) = 5380980337039533697 (Adições = 2) +D(36, 100) = 417784036450686273 (Adições = 2) +D(37, 0) = 1 (Adições = 0) +D(37, 1) = 75 (Adições = 2) +D(37, 2) = 2813 (Adições = 2) +D(37, 3) = 70375 (Adições = 2) +D(37, 4) = 1321641 (Adições = 2) +D(37, 5) = 19880915 (Adições = 2) +D(37, 6) = 249612805 (Adições = 2) +D(37, 7) = 2691463695 (Adições = 2) +D(37, 8) = 25450883345 (Adições = 2) +D(37, 9) = 214483106715 (Adições = 2) +D(37, 10) = 1631529095373 (Adições = 2) +D(37, 11) = 11319046656375 (Adições = 2) +D(37, 12) = 72239609939769 (Adições = 2) +D(37, 13) = 427215331181475 (Adições = 2) +D(37, 14) = 2355733197701973 (Adições = 2) +D(37, 15) = 12177400297612575 (Adições = 2) +D(37, 16) = 59290063767904545 (Adições = 2) +D(37, 17) = 273034893373802475 (Adições = 2) +D(37, 18) = 1193641560393864605 (Adições = 2) +D(37, 19) = 4970407637382541575 (Adições = 2) +D(37, 20) = 1326244048849150665 (Adições = 2) +D(37, 21) = 1564559987997674611 (Adições = 2) +D(37, 22) = 17500036231085542309 (Adições = 2) +D(37, 23) = 12043994817052631343 (Adições = 2) +D(37, 24) = 15977635037851551793 (Adições = 2) +D(37, 25) = 2679168390899762491 (Adições = 2) +D(37, 26) = 12449128621466450285 (Adições = 2) +D(37, 27) = 15298044978321183127 (Adições = 2) +D(37, 28) = 276440009175670105 (Adições = 2) +D(37, 29) = 9124511011864581699 (Adições = 2) +D(37, 30) = 10780673489391567605 (Adições = 2) +D(37, 31) = 6944802277288906303 (Adições = 2) +D(37, 32) = 8850374458837827137 (Adições = 2) +D(37, 33) = 12315042768776778635 (Adições = 2) +D(37, 34) = 14053552995633077309 (Adições = 2) +D(37, 35) = 10454950982523376423 (Adições = 2) +D(37, 36) = 11873484754049210089 (Adições = 2) +D(37, 37) = 12303590613008433427 (Adições = 2) +D(37, 38) = 1863582808310122821 (Adições = 2) +D(37, 39) = 8950018894503742543 (Adições = 2) +D(37, 40) = 16753604257925931857 (Adições = 2) +D(37, 41) = 1585233486170542811 (Adições = 2) +D(37, 42) = 14793401078587104781 (Adições = 2) +D(37, 43) = 5472114873349035447 (Adições = 2) +D(37, 44) = 10788086263532433273 (Adições = 2) +D(37, 45) = 15951958463678180579 (Adições = 2) +D(37, 46) = 10897155346030689941 (Adições = 2) +D(37, 47) = 17302276113470552927 (Adições = 2) +D(37, 48) = 6191749911032305505 (Adições = 2) +D(37, 49) = 7226664265608618795 (Adições = 2) +D(37, 50) = 305841644885991133 (Adições = 2) +D(37, 51) = 18385758016826800455 (Adições = 2) +D(37, 52) = 11918587001065277193 (Adições = 2) +D(37, 53) = 12281416550259784115 (Adições = 2) +D(37, 54) = 5184555763703415525 (Adições = 2) +D(37, 55) = 4035176230451903343 (Adições = 2) +D(37, 56) = 16754945030143965809 (Adições = 2) +D(37, 57) = 1738332291892765819 (Adições = 2) +D(37, 58) = 15851484343909957293 (Adições = 2) +D(37, 59) = 3099660242380578263 (Adições = 2) +D(37, 60) = 15772519426411937177 (Adições = 2) +D(37, 61) = 7018600389582669699 (Adições = 2) +D(37, 62) = 4669037894172702261 (Adições = 2) +D(37, 63) = 10708739710711442559 (Adições = 2) +D(37, 64) = 14263084764049108097 (Adições = 2) +D(37, 65) = 6851874916243650251 (Adições = 2) +D(37, 66) = 16522772590620974461 (Adições = 2) +D(37, 67) = 16710188395278476135 (Adições = 2) +D(37, 68) = 14364471877783450409 (Adições = 2) +D(37, 69) = 534962333550261843 (Adições = 2) +D(37, 70) = 7880791266669705349 (Adições = 2) +D(37, 71) = 18555068205936271 (Adições = 2) +D(37, 72) = 13427169162091728273 (Adições = 2) +D(37, 73) = 12297166953773283867 (Adições = 2) +D(37, 74) = 13245049549732633421 (Adições = 2) +D(37, 75) = 9882989255539583479 (Adições = 2) +D(37, 76) = 8988664449920681913 (Adições = 2) +D(37, 77) = 9166675302472558115 (Adições = 2) +D(37, 78) = 16978045873182124501 (Adições = 2) +D(37, 79) = 2519239733312561567 (Adições = 2) +D(37, 80) = 17052348841455549857 (Adições = 2) +D(37, 81) = 3702144704404442731 (Adições = 2) +D(37, 82) = 17081057218979256349 (Adições = 2) +D(37, 83) = 7979734379507601799 (Adições = 2) +D(37, 84) = 6434146449304574793 (Adições = 2) +D(37, 85) = 12260920083932051187 (Adições = 2) +D(37, 86) = 5469154354714847781 (Adições = 2) +D(37, 87) = 11746021218997020079 (Adições = 2) +D(37, 88) = 1163516173553622193 (Adições = 2) +D(37, 89) = 13216334972015596475 (Adições = 2) +D(37, 90) = 14828730392285180909 (Adições = 2) +D(37, 91) = 3602453967207365143 (Adições = 2) +D(37, 92) = 12591629471693098457 (Adições = 2) +D(37, 93) = 17486947449038080195 (Adições = 2) +D(37, 94) = 2272266792330205557 (Adições = 2) +D(37, 95) = 5504431415522908863 (Adições = 2) +D(37, 96) = 3090169876133497537 (Adições = 2) +D(37, 97) = 11069925833538906635 (Adições = 2) +D(37, 98) = 3813004168145669821 (Adições = 2) +D(37, 99) = 14778401663295816615 (Adições = 2) +D(37, 100) = 2130421963076484969 (Adições = 2) +D(38, 0) = 1 (Adições = 0) +D(38, 1) = 77 (Adições = 2) +D(38, 2) = 2965 (Adições = 2) +D(38, 3) = 76153 (Adições = 2) +D(38, 4) = 1468169 (Adições = 2) +D(38, 5) = 22670725 (Adições = 2) +D(38, 6) = 292164445 (Adições = 2) +D(38, 7) = 3233240945 (Adições = 2) +D(38, 8) = 31375587985 (Adições = 2) +D(38, 9) = 271309578045 (Adições = 2) +D(38, 10) = 2117321780133 (Adições = 2) +D(38, 11) = 15067897531881 (Adições = 2) +D(38, 12) = 98626554128025 (Adições = 2) +D(38, 13) = 598081495249269 (Adições = 2) +D(38, 14) = 3381030024132717 (Adições = 2) +D(38, 15) = 17914163519447265 (Adições = 2) +D(38, 16) = 89381627584964385 (Adições = 2) +D(38, 17) = 421706584726671405 (Adições = 2) +D(38, 18) = 1888383038494338485 (Adições = 2) +D(38, 19) = 8052432236270744665 (Adições = 2) +D(38, 20) = 14349083922502436905 (Adições = 2) +D(38, 21) = 17239887959349262181 (Adições = 2) +D(38, 22) = 17857740104722927485 (Adições = 2) +D(38, 23) = 10508283005441997905 (Adições = 2) +D(38, 24) = 1636424712927077809 (Adições = 2) +D(38, 25) = 1846484067968840477 (Adições = 2) +D(38, 26) = 16974781080335053253 (Adições = 2) +D(38, 27) = 7828466532703583433 (Adições = 2) +D(38, 28) = 4956207446490885049 (Adições = 2) +D(38, 29) = 14357158467531136853 (Adições = 2) +D(38, 30) = 15815598895077734541 (Adições = 2) +D(38, 31) = 15094330588048656833 (Adições = 2) +D(38, 32) = 12442763250465838657 (Adições = 2) +D(38, 33) = 15161436404370892813 (Adições = 2) +D(38, 34) = 4636544021361645525 (Adições = 2) +D(38, 35) = 10698303925808547641 (Adições = 2) +D(38, 36) = 14579995588671582537 (Adições = 2) +D(38, 37) = 1863582808310122821 (Adições = 2) +D(38, 38) = 16030756229628679069 (Adições = 2) +D(38, 39) = 8397613858732992817 (Adições = 2) +D(38, 40) = 15654492937453115601 (Adições = 2) +D(38, 41) = 15546586607840038653 (Adições = 2) +D(38, 42) = 13478477098888134629 (Adições = 2) +D(38, 43) = 15297248977114723241 (Adições = 2) +D(38, 44) = 13110706040286640345 (Adições = 2) +D(38, 45) = 2957262620078150965 (Adições = 2) +D(38, 46) = 11359632356077469869 (Adições = 2) +D(38, 47) = 2665575668159609505 (Adições = 2) +D(38, 48) = 7712857618952916321 (Adições = 2) +D(38, 49) = 2684527721884289005 (Adições = 2) +D(38, 50) = 10217033632378898933 (Adições = 2) +D(38, 51) = 10461889220382138905 (Adições = 2) +D(38, 52) = 3872746090855113321 (Adições = 2) +D(38, 53) = 9626005568470623013 (Adições = 2) +D(38, 54) = 8645233808724271037 (Adições = 2) +D(38, 55) = 17864965802879589905 (Adições = 2) +D(38, 56) = 1761598916056355825 (Adições = 2) +D(38, 57) = 1808132164383535837 (Adições = 2) +D(38, 58) = 951204726476707333 (Adições = 2) +D(38, 59) = 1455605239057691273 (Adições = 2) +D(38, 60) = 1881040834140655097 (Adições = 2) +D(38, 61) = 6225416576425710357 (Adições = 2) +D(38, 62) = 17913054860181082317 (Adições = 2) +D(38, 63) = 14844088391355675521 (Adições = 2) +D(38, 64) = 2922424718697122945 (Adições = 2) +D(38, 65) = 5590640325280329677 (Adições = 2) +D(38, 66) = 10518543758435402773 (Adições = 2) +D(38, 67) = 6858016596915750137 (Adições = 2) +D(38, 68) = 1039188722558573449 (Adições = 2) +D(38, 69) = 15938622933892285701 (Adições = 2) +D(38, 70) = 5907632460402701277 (Adições = 2) +D(38, 71) = 13806978795278342897 (Adições = 2) +D(38, 72) = 8805958951866455825 (Adições = 2) +D(38, 73) = 16083550994021916349 (Adições = 2) +D(38, 74) = 4732279350108730405 (Adições = 2) +D(38, 75) = 9413574081671395689 (Adições = 2) +D(38, 76) = 9838483713422109465 (Adições = 2) +D(38, 77) = 9547079392105797877 (Adições = 2) +D(38, 78) = 17245056494050928877 (Adições = 2) +D(38, 79) = 18295598026836063329 (Adições = 2) +D(38, 80) = 973698454185071521 (Adições = 2) +D(38, 81) = 3281447926335512493 (Adições = 2) +D(38, 82) = 5617905776009659957 (Adições = 2) +D(38, 83) = 12231953300786966489 (Adições = 2) +D(38, 84) = 8199090055889591465 (Adições = 2) +D(38, 85) = 8447412515416665829 (Adições = 2) +D(38, 86) = 7730742880354013181 (Adições = 2) +D(38, 87) = 6499174380356329425 (Adições = 2) +D(38, 88) = 961967699197420081 (Adições = 2) +D(38, 89) = 15341818844766638749 (Adições = 2) +D(38, 90) = 6493396061648312901 (Adições = 2) +D(38, 91) = 6477836347431307337 (Adições = 2) +D(38, 92) = 4225175712622219321 (Adições = 2) +D(38, 93) = 15857008559643846357 (Adições = 2) +D(38, 94) = 17169478727302580493 (Adições = 2) +D(38, 95) = 6499432861446143297 (Adições = 2) +D(38, 96) = 15094034153102549697 (Adições = 2) +D(38, 97) = 10807385789065402253 (Adições = 2) +D(38, 98) = 7243571717040427093 (Adições = 2) +D(38, 99) = 7388233474772361913 (Adições = 2) +D(38, 100) = 5850313027435111881 (Adições = 2) +D(39, 0) = 1 (Adições = 0) +D(39, 1) = 79 (Adições = 2) +D(39, 2) = 3121 (Adições = 2) +D(39, 3) = 82239 (Adições = 2) +D(39, 4) = 1626561 (Adições = 2) +D(39, 5) = 25765455 (Adições = 2) +D(39, 6) = 340600625 (Adições = 2) +D(39, 7) = 3866006015 (Adições = 2) +D(39, 8) = 38474834945 (Adições = 2) +D(39, 9) = 341160000975 (Adições = 2) +D(39, 10) = 2729791359153 (Adições = 2) +D(39, 11) = 19915010671167 (Adições = 2) +D(39, 12) = 133609462331073 (Adições = 2) +D(39, 13) = 830317511708367 (Adições = 2) +D(39, 14) = 4809429031090353 (Adições = 2) +D(39, 15) = 26104622574670335 (Adições = 2) +D(39, 16) = 133400413679081985 (Adições = 2) +D(39, 17) = 644488625990717775 (Adições = 2) +D(39, 18) = 2954578249211727665 (Adições = 2) +D(39, 19) = 12895393523976810815 (Adições = 2) +D(39, 20) = 16850165609040440769 (Adições = 2) +D(39, 21) = 11545649343473036623 (Adições = 2) +D(39, 22) = 9749789260126123057 (Adições = 2) +D(39, 23) = 1222324222871945215 (Adições = 2) +D(39, 24) = 13367031941241020929 (Adições = 2) +D(39, 25) = 16849940722136939215 (Adições = 2) +D(39, 26) = 17224461796731281329 (Adições = 2) +D(39, 27) = 5134221262350814783 (Adições = 2) +D(39, 28) = 17918895241545283265 (Adições = 2) +D(39, 29) = 338773008148201935 (Adições = 2) +D(39, 30) = 12064786297047521713 (Adições = 2) +D(39, 31) = 6081227632754809855 (Adições = 2) +D(39, 32) = 15171577397559753729 (Adições = 2) +D(39, 33) = 5882288904977381967 (Adições = 2) +D(39, 34) = 7233525257000368689 (Adições = 2) +D(39, 35) = 4121629130461010239 (Adições = 2) +D(39, 36) = 10953184571231588801 (Adições = 2) +D(39, 37) = 8950018894503742543 (Adições = 2) +D(39, 38) = 8397613858732992817 (Adições = 2) +D(39, 39) = 14379239873385113087 (Adições = 2) +D(39, 40) = 1537858522152118273 (Adições = 2) +D(39, 41) = 14292193993735720911 (Adições = 2) +D(39, 42) = 6423769553044790961 (Adições = 2) +D(39, 43) = 16752751555338097215 (Adições = 2) +D(39, 44) = 8267218425320357569 (Adições = 2) +D(39, 45) = 5888443011975597263 (Adições = 2) +D(39, 46) = 1758593914421666481 (Adições = 2) +D(39, 47) = 15783801938658745855 (Adições = 2) +D(39, 48) = 7715491152061720065 (Adições = 2) +D(39, 49) = 18112876492898925391 (Adições = 2) +D(39, 50) = 12567693773452561713 (Adições = 2) +D(39, 51) = 14799872552504047935 (Adições = 2) +D(39, 52) = 10687763790031748545 (Adições = 2) +D(39, 53) = 5739771375647933263 (Adições = 2) +D(39, 54) = 5564266679133275697 (Adições = 2) +D(39, 55) = 13627722217027585023 (Adições = 2) +D(39, 56) = 14807542862253979137 (Adições = 2) +D(39, 57) = 18377273942693870799 (Adições = 2) +D(39, 58) = 2689866759844562353 (Adições = 2) +D(39, 59) = 5096676725378960959 (Adições = 2) +D(39, 60) = 8433322798577307329 (Adições = 2) +D(39, 61) = 16539780209143672783 (Adições = 2) +D(39, 62) = 3784763498331362225 (Adições = 2) +D(39, 63) = 18095162676158568447 (Adições = 2) +D(39, 64) = 17414931712501815297 (Adições = 2) +D(39, 65) = 7481252682769716303 (Adições = 2) +D(39, 66) = 5143692692775897137 (Adições = 2) +D(39, 67) = 4073508974417498431 (Adições = 2) +D(39, 68) = 11970714293891822017 (Adições = 2) +D(39, 69) = 10501781876633129551 (Adições = 2) +D(39, 70) = 13901293197218564913 (Adições = 2) +D(39, 71) = 15169160379190057471 (Adições = 2) +D(39, 72) = 888609978915752961 (Adições = 2) +D(39, 73) = 7331375851094573519 (Adições = 2) +D(39, 74) = 9700462121515668657 (Adições = 2) +D(39, 75) = 5399571479586243135 (Adições = 2) +D(39, 76) = 6204885200970196673 (Adições = 2) +D(39, 77) = 7143704232788552399 (Adições = 2) +D(39, 78) = 15489096045235727537 (Adições = 2) +D(39, 79) = 14136262418703616511 (Adições = 2) +D(39, 80) = 14958814826015199745 (Adições = 2) +D(39, 81) = 767217132826232143 (Adições = 2) +D(39, 82) = 9666570835171404593 (Adições = 2) +D(39, 83) = 9069685838258479423 (Adições = 2) +D(39, 84) = 11053985121225485761 (Adições = 2) +D(39, 85) = 9253743618822191439 (Adições = 2) +D(39, 86) = 6985154940883318833 (Adições = 2) +D(39, 87) = 2768328127884109823 (Adições = 2) +D(39, 88) = 10229470207437859329 (Adições = 2) +D(39, 89) = 8086512677692366543 (Adições = 2) +D(39, 90) = 11474983510397766577 (Adições = 2) +D(39, 91) = 5999471845767835199 (Adições = 2) +D(39, 92) = 16702483905821361857 (Adições = 2) +D(39, 93) = 18337924104377875919 (Adições = 2) +D(39, 94) = 14470923243905199537 (Adições = 2) +D(39, 95) = 1246346685234820095 (Adições = 2) +D(39, 96) = 4393069626073961473 (Adições = 2) +D(39, 97) = 11847745494532361807 (Adições = 2) +D(39, 98) = 11451958926928639537 (Adições = 2) +D(39, 99) = 7637020045031876927 (Adições = 2) +D(39, 100) = 2428822473529799105 (Adições = 2) +D(40, 0) = 1 (Adições = 0) +D(40, 1) = 81 (Adições = 2) +D(40, 2) = 3281 (Adições = 2) +D(40, 3) = 88641 (Adições = 2) +D(40, 4) = 1797441 (Adições = 2) +D(40, 5) = 29189457 (Adições = 2) +D(40, 6) = 395555537 (Adições = 2) +D(40, 7) = 4602162177 (Adições = 2) +D(40, 8) = 46943003137 (Adições = 2) +D(40, 9) = 426577839057 (Adições = 2) +D(40, 10) = 3497529199185 (Adições = 2) +D(40, 11) = 26142331229505 (Adições = 2) +D(40, 12) = 179666804231745 (Adições = 2) +D(40, 13) = 1143593778271185 (Adições = 2) +D(40, 14) = 6783340321069905 (Adições = 2) +D(40, 15) = 37697391926830593 (Adições = 2) +D(40, 16) = 197202428180582913 (Adições = 2) +D(40, 17) = 975091467850382673 (Adições = 2) +D(40, 18) = 4574158343052828113 (Adições = 2) +D(40, 19) = 1977386042531814977 (Adições = 2) +D(40, 20) = 13276201101839514945 (Adições = 2) +D(40, 21) = 4778527906933889105 (Adições = 2) +D(40, 22) = 7627222436823497169 (Adições = 2) +D(40, 23) = 152591846112013825 (Adições = 2) +D(40, 24) = 14741948010224979969 (Adições = 2) +D(40, 25) = 8065432526183836881 (Adições = 2) +D(40, 26) = 5246346897632954193 (Adições = 2) +D(40, 27) = 9158285883005498689 (Adições = 2) +D(40, 28) = 13764658313192045121 (Adições = 2) +D(40, 29) = 13575582489175978705 (Adições = 2) +D(40, 30) = 7532397720662150737 (Adições = 2) +D(40, 31) = 7231667576754930689 (Adições = 2) +D(40, 32) = 10037728533359942657 (Adições = 2) +D(40, 33) = 12644850762187526737 (Adições = 2) +D(40, 34) = 7313920850455725777 (Adições = 2) +D(40, 35) = 222331164207553089 (Adições = 2) +D(40, 36) = 15297144865900152129 (Adições = 2) +D(40, 37) = 16753604257925931857 (Adições = 2) +D(40, 38) = 15654492937453115601 (Adições = 2) +D(40, 39) = 1537858522152118273 (Adições = 2) +D(40, 40) = 17454956917689349633 (Adições = 2) +D(40, 41) = 14838265359867637201 (Adições = 2) +D(40, 42) = 17107484832938597457 (Adições = 2) +D(40, 43) = 3390517793902382401 (Adições = 2) +D(40, 44) = 9963743700851285569 (Adições = 2) +D(40, 45) = 5672661064437688785 (Adições = 2) +D(40, 46) = 13319697990834952529 (Adições = 2) +D(40, 47) = 12415349770205813249 (Adições = 2) +D(40, 48) = 17467898787216727553 (Adições = 2) +D(40, 49) = 6402778284758269777 (Adições = 2) +D(40, 50) = 189860403690653649 (Adições = 2) +D(40, 51) = 9110682655937711681 (Adições = 2) +D(40, 52) = 16151574924763956545 (Adições = 2) +D(40, 53) = 14132366016734086737 (Adições = 2) +D(40, 54) = 6989659997805744081 (Adições = 2) +D(40, 55) = 7734904820257053185 (Adições = 2) +D(40, 56) = 17723425825829065729 (Adições = 2) +D(40, 57) = 14014754483357812433 (Adições = 2) +D(40, 58) = 16635151112186693969 (Adições = 2) +D(40, 59) = 5974950523700665665 (Adições = 2) +D(40, 60) = 1058205973947382337 (Adições = 2) +D(40, 61) = 7584564907958810833 (Adições = 2) +D(40, 62) = 9462364541724294225 (Adições = 2) +D(40, 63) = 12895546642504673281 (Adições = 2) +D(40, 64) = 11512152883745953793 (Adições = 2) +D(40, 65) = 17961593205307933777 (Adições = 2) +D(40, 66) = 12139794507143995601 (Adições = 2) +D(40, 67) = 2910252100627839553 (Adições = 2) +D(40, 68) = 507731295227608385 (Adições = 2) +D(40, 69) = 4533483392043008337 (Adições = 2) +D(40, 70) = 10489814392185151185 (Adições = 2) +D(40, 71) = 2666779821174670337 (Adições = 2) +D(40, 72) = 277806105570929153 (Adições = 2) +D(40, 73) = 8497791935581255633 (Adições = 2) +D(40, 74) = 7082885834481946193 (Adições = 2) +D(40, 75) = 3736175361874306369 (Adições = 2) +D(40, 76) = 15340632042430746177 (Adições = 2) +D(40, 77) = 10242477402479943633 (Adições = 2) +D(40, 78) = 14428533606794671953 (Adições = 2) +D(40, 79) = 7160403923314912769 (Adições = 2) +D(40, 80) = 17808737094324177409 (Adições = 2) +D(40, 81) = 15088024979456057681 (Adições = 2) +D(40, 82) = 7075068873744142801 (Adições = 2) +D(40, 83) = 7364581473464475201 (Adições = 2) +D(40, 84) = 9041508359238888769 (Adições = 2) +D(40, 85) = 10902493025577014353 (Adições = 2) +D(40, 86) = 8694647511572973009 (Adições = 2) +D(40, 87) = 1386506630850049 (Adições = 2) +D(40, 88) = 12999184841952819201 (Adições = 2) +D(40, 89) = 12868423653373493457 (Adições = 2) +D(40, 90) = 13983175767754074961 (Adições = 2) +D(40, 91) = 13010887050210125121 (Adições = 2) +D(40, 92) = 17266098728089770561 (Adições = 2) +D(40, 93) = 15413018590869905105 (Adições = 2) +D(40, 94) = 11328377791733877329 (Adições = 2) +D(40, 95) = 8598903647164345345 (Adições = 2) +D(40, 96) = 14238319958473126913 (Adições = 2) +D(40, 97) = 12032391005369898577 (Adições = 2) +D(40, 98) = 16885351353121348305 (Adições = 2) +D(40, 99) = 17527586251372313153 (Adições = 2) +D(40, 100) = 9146684696224437569 (Adições = 2) +D(41, 0) = 1 (Adições = 0) +D(41, 1) = 83 (Adições = 2) +D(41, 2) = 3445 (Adições = 2) +D(41, 3) = 95367 (Adições = 2) +D(41, 4) = 1981449 (Adições = 2) +D(41, 5) = 32968347 (Adições = 2) +D(41, 6) = 457713341 (Adições = 2) +D(41, 7) = 5455431055 (Adições = 2) +D(41, 8) = 57000596369 (Adições = 2) +D(41, 9) = 530521438563 (Adições = 2) +D(41, 10) = 4454628476805 (Adições = 2) +D(41, 11) = 34094488905495 (Adições = 2) +D(41, 12) = 239903624366745 (Adições = 2) +D(41, 13) = 1563164206869675 (Adições = 2) +D(41, 14) = 9490098306210765 (Adições = 2) +D(41, 15) = 53970830554111263 (Adições = 2) +D(41, 16) = 288870650661524769 (Adições = 2) +D(41, 17) = 1461164546692490355 (Adições = 2) +D(41, 18) = 7010414357595701141 (Adições = 2) +D(41, 19) = 13561958743180344231 (Adições = 2) +D(41, 20) = 10368801813842122537 (Adições = 2) +D(41, 21) = 9976786748905974971 (Adições = 2) +D(41, 22) = 3935793018953809629 (Adições = 2) +D(41, 23) = 11715607301889320623 (Adições = 2) +D(41, 24) = 8163403084516762801 (Adições = 2) +D(41, 25) = 12524039547216028035 (Adições = 2) +D(41, 26) = 7389074897323267493 (Adições = 2) +D(41, 27) = 3346963604252168759 (Adições = 2) +D(41, 28) = 7823163726740160953 (Adições = 2) +D(41, 29) = 16716660455398633163 (Adições = 2) +D(41, 30) = 931152517817659373 (Adições = 2) +D(41, 31) = 15695217815234740799 (Adições = 2) +D(41, 32) = 14517869851640062529 (Adições = 2) +D(41, 33) = 306960999768428691 (Adições = 2) +D(41, 34) = 1818988538702129589 (Adições = 2) +D(41, 35) = 9355240553365408455 (Adições = 2) +D(41, 36) = 6427972509763562057 (Adições = 2) +D(41, 37) = 1585233486170542811 (Adições = 2) +D(41, 38) = 15546586607840038653 (Adições = 2) +D(41, 39) = 14292193993735720911 (Adições = 2) +D(41, 40) = 14838265359867637201 (Adições = 2) +D(41, 41) = 10237999490005520803 (Adições = 2) +D(41, 42) = 5290261535392652229 (Adições = 2) +D(41, 43) = 7341520088524080471 (Adições = 2) +D(41, 44) = 2249037509568196825 (Adições = 2) +D(41, 45) = 17885442274857171179 (Adições = 2) +D(41, 46) = 18431057256420260877 (Adições = 2) +D(41, 47) = 7272616870041923423 (Adições = 2) +D(41, 48) = 262377280045360993 (Adições = 2) +D(41, 49) = 5686310278310806707 (Adições = 2) +D(41, 50) = 12278948966759730133 (Adições = 2) +D(41, 51) = 3132747952678543847 (Adições = 2) +D(41, 52) = 9948261459670660457 (Adições = 2) +D(41, 53) = 3338714253749600507 (Adições = 2) +D(41, 54) = 6013996194579879709 (Adições = 2) +D(41, 55) = 2291816938933125359 (Adições = 2) +D(41, 56) = 9303403511309692657 (Adições = 2) +D(41, 57) = 4148095673077467587 (Adições = 2) +D(41, 58) = 16351257194912422373 (Adições = 2) +D(41, 59) = 2067870683380678775 (Adições = 2) +D(41, 60) = 9101027181028726777 (Adições = 2) +D(41, 61) = 17743798062934919947 (Adições = 2) +D(41, 62) = 16343983438908473389 (Adições = 2) +D(41, 63) = 1808406475718337663 (Adições = 2) +D(41, 64) = 7769361928259413121 (Adições = 2) +D(41, 65) = 349619869894197459 (Adições = 2) +D(41, 66) = 12004263508636575221 (Adições = 2) +D(41, 67) = 8607566042698858759 (Adições = 2) +D(41, 68) = 12025549438554306697 (Adições = 2) +D(41, 69) = 17066764125824923419 (Adições = 2) +D(41, 70) = 13643317836343531325 (Adições = 2) +D(41, 71) = 8353167975993801231 (Adições = 2) +D(41, 72) = 11297753902739400721 (Adições = 2) +D(41, 73) = 1626607870182033891 (Adições = 2) +D(41, 74) = 17207285640245235717 (Adições = 2) +D(41, 75) = 9579602762891936663 (Adições = 2) +D(41, 76) = 10209666093487437593 (Adições = 2) +D(41, 77) = 17346031464688575787 (Adições = 2) +D(41, 78) = 5123554326544088141 (Adições = 2) +D(41, 79) = 8265747782944121247 (Adições = 2) +D(41, 80) = 14788144726873659809 (Adições = 2) +D(41, 81) = 10791418653234791667 (Adições = 2) +D(41, 82) = 14507768432725440533 (Adições = 2) +D(41, 83) = 10500674706224506919 (Adições = 2) +D(41, 84) = 8460020465218319273 (Adições = 2) +D(41, 85) = 9957277776324670779 (Adições = 2) +D(41, 86) = 11107674239765106525 (Adições = 2) +D(41, 87) = 1356964184259377967 (Adições = 2) +D(41, 88) = 14357535532843047217 (Adições = 2) +D(41, 89) = 3331655880750256643 (Adições = 2) +D(41, 90) = 11736511228168273445 (Adições = 2) +D(41, 91) = 1837085898713370295 (Adições = 2) +D(41, 92) = 13667327603303714361 (Adições = 2) +D(41, 93) = 9452956774844286795 (Adições = 2) +D(41, 94) = 17747609083738517613 (Adições = 2) +D(41, 95) = 781402375217637055 (Adições = 2) +D(41, 96) = 5171881907145557697 (Adições = 2) +D(41, 97) = 12995848797279031571 (Adições = 2) +D(41, 98) = 5020103008351175221 (Adições = 2) +D(41, 99) = 2539552465425733447 (Adições = 2) +D(41, 100) = 10767079339312932553 (Adições = 2) +D(42, 0) = 1 (Adições = 0) +D(42, 1) = 85 (Adições = 2) +D(42, 2) = 3613 (Adições = 2) +D(42, 3) = 102425 (Adições = 2) +D(42, 4) = 2179241 (Adições = 2) +D(42, 5) = 37129037 (Adições = 2) +D(42, 6) = 527810725 (Adições = 2) +D(42, 7) = 6440955121 (Adições = 2) +D(42, 8) = 68896982545 (Adições = 2) +D(42, 9) = 656419017477 (Adições = 2) +D(42, 10) = 5641568932845 (Adições = 2) +D(42, 11) = 44190686315145 (Adições = 2) +D(42, 12) = 318188799587385 (Adições = 2) +D(42, 13) = 2121256630823805 (Adições = 2) +D(42, 14) = 13174519143904245 (Adições = 2) +D(42, 15) = 76635448004226273 (Adições = 2) +D(42, 16) = 419476929219862305 (Adições = 2) +D(42, 17) = 2169512126573877429 (Adições = 2) +D(42, 18) = 10641091030862068925 (Adições = 2) +D(42, 19) = 12766720057928562681 (Adições = 2) +D(42, 20) = 18250736541241477833 (Adições = 2) +D(42, 21) = 1702836956570472109 (Adições = 2) +D(42, 22) = 15615416724430256709 (Adições = 2) +D(42, 23) = 12820072971563835345 (Adições = 2) +D(42, 24) = 14252339284260367153 (Adições = 2) +D(42, 25) = 16493037842283606373 (Adições = 2) +D(42, 26) = 17959408213113350285 (Adições = 2) +D(42, 27) = 10248702640979234921 (Adições = 2) +D(42, 28) = 2972085898262013017 (Adições = 2) +D(42, 29) = 9065166006691255517 (Adições = 2) +D(42, 30) = 8266234906197996437 (Adições = 2) +D(42, 31) = 6445861165540844993 (Adições = 2) +D(42, 32) = 18212204758706096705 (Adições = 2) +D(42, 33) = 14590291536405036309 (Adições = 2) +D(42, 34) = 16716241074875594589 (Adições = 2) +D(42, 35) = 9443726093233581017 (Adições = 2) +D(42, 36) = 6780195082652999913 (Adições = 2) +D(42, 37) = 14793401078587104781 (Adições = 2) +D(42, 38) = 13478477098888134629 (Adições = 2) +D(42, 39) = 6423769553044790961 (Adições = 2) +D(42, 40) = 17107484832938597457 (Adições = 2) +D(42, 41) = 5290261535392652229 (Adições = 2) +D(42, 42) = 2371778487081273645 (Adições = 2) +D(42, 43) = 15003560110998006345 (Adições = 2) +D(42, 44) = 6147373635380732025 (Adições = 2) +D(42, 45) = 7835109346096548413 (Adições = 2) +D(42, 46) = 7258120729954877237 (Adições = 2) +D(42, 47) = 14515050782707509921 (Adições = 2) +D(42, 48) = 3603300859085242721 (Adições = 2) +D(42, 49) = 9551988417441410421 (Adições = 2) +D(42, 50) = 9070503588802395645 (Adições = 2) +D(42, 51) = 6035456434531118009 (Adições = 2) +D(42, 52) = 669721773170770697 (Adições = 2) +D(42, 53) = 13956697486591031661 (Adições = 2) +D(42, 54) = 4862663861210960261 (Adições = 2) +D(42, 55) = 13168476994723965329 (Adições = 2) +D(42, 56) = 6316953371257231729 (Adições = 2) +D(42, 57) = 1321708481934840357 (Adições = 2) +D(42, 58) = 3374317276215178701 (Adições = 2) +D(42, 59) = 3346701080798728233 (Adições = 2) +D(42, 60) = 14515598945208133785 (Adições = 2) +D(42, 61) = 4466936041752677277 (Adições = 2) +D(42, 62) = 1661229396176967381 (Adições = 2) +D(42, 63) = 1366875237094226817 (Adições = 2) +D(42, 64) = 10944643641071977601 (Adições = 2) +D(42, 65) = 616881365516036565 (Adições = 2) +D(42, 66) = 12970764744046809245 (Adições = 2) +D(42, 67) = 15135850221672691609 (Adições = 2) +D(42, 68) = 17322221629216305449 (Adições = 2) +D(42, 69) = 9521047046176432333 (Adições = 2) +D(42, 70) = 3337640860925783845 (Adições = 2) +D(42, 71) = 6887382599553564785 (Adições = 2) +D(42, 72) = 8091560404577215121 (Adições = 2) +D(42, 73) = 2569178103789098117 (Adições = 2) +D(42, 74) = 2956327540506816109 (Adições = 2) +D(42, 75) = 11296471869934436873 (Adições = 2) +D(42, 76) = 12638996652604259513 (Adições = 2) +D(42, 77) = 3301206063361169661 (Adições = 2) +D(42, 78) = 7324047780884281973 (Adições = 2) +D(42, 79) = 2266605816662939745 (Adições = 2) +D(42, 80) = 6873754252771169185 (Adições = 2) +D(42, 81) = 14006573559170069045 (Adições = 2) +D(42, 82) = 2412272497711198013 (Adições = 2) +D(42, 83) = 8973971562951593849 (Adições = 2) +D(42, 84) = 9487922660684868425 (Adições = 2) +D(42, 85) = 9458476828518306861 (Adições = 2) +D(42, 86) = 12076684770898532549 (Adições = 2) +D(42, 87) = 6094579121213465425 (Adições = 2) +D(42, 88) = 3362334764606338993 (Adições = 2) +D(42, 89) = 2604782104490091237 (Adições = 2) +D(42, 90) = 17672949213408621325 (Adições = 2) +D(42, 91) = 12799802266580713449 (Adições = 2) +D(42, 92) = 9857471694888246489 (Adições = 2) +D(42, 93) = 14531011999326696029 (Adições = 2) +D(42, 94) = 4838089710490397205 (Adições = 2) +D(42, 95) = 4920357095737000257 (Adições = 2) +D(42, 96) = 10873641378100195009 (Adições = 2) +D(42, 97) = 10594628008815232661 (Adições = 2) +D(42, 98) = 10163835740735887837 (Adições = 2) +D(42, 99) = 17723491214512796505 (Adições = 2) +D(42, 100) = 12583378945541910889 (Adições = 2) +D(43, 0) = 1 (Adições = 0) +D(43, 1) = 87 (Adições = 2) +D(43, 2) = 3785 (Adições = 2) +D(43, 3) = 109823 (Adições = 2) +D(43, 4) = 2391489 (Adições = 2) +D(43, 5) = 41699767 (Adições = 2) +D(43, 6) = 606639529 (Adições = 2) +D(43, 7) = 7575405375 (Adições = 2) +D(43, 8) = 82913343041 (Adições = 2) +D(43, 9) = 808229343063 (Adições = 2) +D(43, 10) = 7106217293385 (Adições = 2) +D(43, 11) = 56938472541375 (Adições = 2) +D(43, 12) = 419317958443905 (Adições = 2) +D(43, 13) = 2858763388855095 (Adições = 2) +D(43, 14) = 18154539163583145 (Adições = 2) +D(43, 15) = 107964506311713663 (Adições = 2) +D(43, 16) = 604076883535802241 (Adições = 2) +D(43, 17) = 3193065939329541975 (Adições = 2) +D(43, 18) = 16003669096765488329 (Adições = 2) +D(43, 19) = 2517992038137016703 (Adições = 2) +D(43, 20) = 15088704563597505601 (Adições = 2) +D(43, 21) = 16595533987699903927 (Adições = 2) +D(43, 22) = 15467043594991081129 (Adições = 2) +D(43, 23) = 7009045143566069951 (Adições = 2) +D(43, 24) = 15634713325680720833 (Adições = 2) +D(43, 25) = 9486602304805591127 (Adições = 2) +D(43, 26) = 7045560212783444553 (Adições = 2) +D(43, 27) = 16806926993166478143 (Adições = 2) +D(43, 28) = 11580971458698174465 (Adições = 2) +D(43, 29) = 5171479289941891383 (Adições = 2) +D(43, 30) = 4056136129121591721 (Adições = 2) +D(43, 31) = 321488127150881535 (Adições = 2) +D(43, 32) = 6532809977688271617 (Adições = 2) +D(43, 33) = 2441818125380301399 (Adições = 2) +D(43, 34) = 15301606662951380681 (Adições = 2) +D(43, 35) = 4568085683641453055 (Adições = 2) +D(43, 36) = 2345262785818482369 (Adições = 2) +D(43, 37) = 5472114873349035447 (Adições = 2) +D(43, 38) = 15297248977114723241 (Adições = 2) +D(43, 39) = 16752751555338097215 (Adições = 2) +D(43, 40) = 3390517793902382401 (Adições = 2) +D(43, 41) = 7341520088524080471 (Adições = 2) +D(43, 42) = 15003560110998006345 (Adições = 2) +D(43, 43) = 13932154635367734719 (Adições = 2) +D(43, 44) = 16636344308036921473 (Adições = 2) +D(43, 45) = 12172083215804650295 (Adições = 2) +D(43, 46) = 8818569218146524329 (Adições = 2) +D(43, 47) = 12144996657099359871 (Adições = 2) +D(43, 48) = 11816604225182560897 (Adições = 2) +D(43, 49) = 6525149427999662423 (Adições = 2) +D(43, 50) = 6700897360533916873 (Adições = 2) +D(43, 51) = 3360113310157878911 (Adições = 2) +D(43, 52) = 10065291517859767617 (Adições = 2) +D(43, 53) = 6244966703912018359 (Adições = 2) +D(43, 54) = 6617583978004458665 (Adições = 2) +D(43, 55) = 6201980760229832639 (Adições = 2) +D(43, 56) = 7240667052501478081 (Adições = 2) +D(43, 57) = 14879328905693550167 (Adições = 2) +D(43, 58) = 1128610590134017609 (Adições = 2) +D(43, 59) = 7849628947147924543 (Adições = 2) +D(43, 60) = 7265184899445234945 (Adições = 2) +D(43, 61) = 7800975812696494391 (Adições = 2) +D(43, 62) = 13929141250626139049 (Adições = 2) +D(43, 63) = 16957245883897333247 (Adições = 2) +D(43, 64) = 10822020688353986049 (Adições = 2) +D(43, 65) = 3936801621232448599 (Adições = 2) +D(43, 66) = 17524447730795294409 (Adições = 2) +D(43, 67) = 8737574549095692031 (Adições = 2) +D(43, 68) = 4302158252565585857 (Adições = 2) +D(43, 69) = 12698682854248772023 (Adições = 2) +D(43, 70) = 7110626687641436585 (Adições = 2) +D(43, 71) = 17335650148120785215 (Adições = 2) +D(43, 72) = 13867849078542013505 (Adições = 2) +D(43, 73) = 6081843513198775127 (Adições = 2) +D(43, 74) = 11607349157494689353 (Adições = 2) +D(43, 75) = 7413404494226390719 (Adições = 2) +D(43, 76) = 12902128943055535489 (Adições = 2) +D(43, 77) = 10395587585311413047 (Adições = 2) +D(43, 78) = 2574097355847313065 (Adições = 2) +D(43, 79) = 12164750953394534783 (Adições = 2) +D(43, 80) = 2858366949119092097 (Adições = 2) +D(43, 81) = 5291950687350778711 (Adições = 2) +D(43, 82) = 3264052670522494153 (Adições = 2) +D(43, 83) = 14650296731185286015 (Adições = 2) +D(43, 84) = 14665446881112196673 (Adições = 2) +D(43, 85) = 15165102296605820343 (Adições = 2) +D(43, 86) = 18253519822313108137 (Adições = 2) +D(43, 87) = 17978039640715554495 (Adições = 2) +D(43, 88) = 8988209452825807297 (Adições = 2) +D(43, 89) = 14955326321922237527 (Adições = 2) +D(43, 90) = 16786313566111398473 (Adições = 2) +D(43, 91) = 10365576898681630015 (Adições = 2) +D(43, 92) = 14576106786441038337 (Adições = 2) +D(43, 93) = 2071102333236877623 (Adições = 2) +D(43, 94) = 2993459969344419241 (Adições = 2) +D(43, 95) = 12751906775571816703 (Adições = 2) +D(43, 96) = 10099161175699460353 (Adições = 2) +D(43, 97) = 13120686488905336407 (Adições = 2) +D(43, 98) = 15432406164746905289 (Adições = 2) +D(43, 99) = 6426244972576486399 (Adições = 2) +D(43, 100) = 18286371058921642177 (Adições = 2) +D(44, 0) = 1 (Adições = 0) +D(44, 1) = 89 (Adições = 2) +D(44, 2) = 3961 (Adições = 2) +D(44, 3) = 117569 (Adições = 2) +D(44, 4) = 2618881 (Adições = 2) +D(44, 5) = 46710137 (Adições = 2) +D(44, 6) = 695049433 (Adições = 2) +D(44, 7) = 8877094337 (Adições = 2) +D(44, 8) = 99365842753 (Adições = 2) +D(44, 9) = 990508528857 (Adições = 2) +D(44, 10) = 8904955165305 (Adições = 2) +D(44, 11) = 72949645000065 (Adições = 2) +D(44, 12) = 549206075985345 (Adições = 2) +D(44, 13) = 3827287423284345 (Adições = 2) +D(44, 14) = 24840589975722585 (Adições = 2) +D(44, 15) = 150959635451019393 (Adições = 2) +D(44, 16) = 863001025298535297 (Adições = 2) +D(44, 17) = 4660143848163879513 (Adições = 2) +D(44, 18) = 5410134810549358201 (Adições = 2) +D(44, 19) = 5485051871742311617 (Adições = 2) +D(44, 20) = 4645004399767282305 (Adições = 2) +D(44, 21) = 17882498877355140217 (Adições = 2) +D(44, 22) = 13051588312627022041 (Adições = 2) +D(44, 23) = 17080932977474621505 (Adições = 2) +D(44, 24) = 2831203299302309057 (Adições = 2) +D(44, 25) = 9505774856079069401 (Adições = 2) +D(44, 26) = 7591193299958553465 (Adições = 2) +D(44, 27) = 12996936432198924545 (Adições = 2) +D(44, 28) = 4491346736644473921 (Adições = 2) +D(44, 29) = 2797053411574988153 (Adições = 2) +D(44, 30) = 12024668830638471257 (Adições = 2) +D(44, 31) = 16402293086910944513 (Adições = 2) +D(44, 32) = 4809847118040546049 (Adições = 2) +D(44, 33) = 13784475221109119065 (Adições = 2) +D(44, 34) = 13081155935731249529 (Adições = 2) +D(44, 35) = 14504104208614531649 (Adições = 2) +D(44, 36) = 2970708604364915457 (Adições = 2) +D(44, 37) = 10788086263532433273 (Adições = 2) +D(44, 38) = 13110706040286640345 (Adições = 2) +D(44, 39) = 8267218425320357569 (Adições = 2) +D(44, 40) = 9963743700851285569 (Adições = 2) +D(44, 41) = 2249037509568196825 (Adições = 2) +D(44, 42) = 6147373635380732025 (Adições = 2) +D(44, 43) = 16636344308036921473 (Adições = 2) +D(44, 44) = 10311355104022474433 (Adições = 2) +D(44, 45) = 2226294480444942969 (Adições = 2) +D(44, 46) = 4770202840686565977 (Adições = 2) +D(44, 47) = 7287024642222898561 (Adições = 2) +D(44, 48) = 12801881450795267713 (Adições = 2) +D(44, 49) = 12696891030267939417 (Adições = 2) +D(44, 50) = 7476193745091967097 (Adições = 2) +D(44, 51) = 17537204415783762881 (Adições = 2) +D(44, 52) = 12515865170091857793 (Adições = 2) +D(44, 53) = 10379379318154092153 (Adições = 2) +D(44, 54) = 4795185926361017561 (Adições = 2) +D(44, 55) = 17614750664595308865 (Adições = 2) +D(44, 56) = 12610654403617067969 (Adições = 2) +D(44, 57) = 16283906288102544601 (Adições = 2) +D(44, 58) = 13845101710220560761 (Adições = 2) +D(44, 59) = 4376597173792951297 (Adições = 2) +D(44, 60) = 1044666946676559169 (Adições = 2) +D(44, 61) = 16110827658818288505 (Adições = 2) +D(44, 62) = 947456574721818713 (Adições = 2) +D(44, 63) = 13387099635535739393 (Adições = 2) +D(44, 64) = 4272878060367955457 (Adições = 2) +D(44, 65) = 584956296244838489 (Adições = 2) +D(44, 66) = 3599461574563029881 (Adições = 2) +D(44, 67) = 11414739780744464705 (Adições = 2) +D(44, 68) = 6007728508696190977 (Adições = 2) +D(44, 69) = 4561825541800997241 (Adições = 2) +D(44, 70) = 5924391009981654233 (Adições = 2) +D(44, 71) = 11923923772034324417 (Adições = 2) +D(44, 72) = 6233934851278019905 (Adições = 2) +D(44, 73) = 7736883369309256921 (Adições = 2) +D(44, 74) = 6979331966293169785 (Adições = 2) +D(44, 75) = 7553341544304698241 (Adições = 2) +D(44, 76) = 9422130907877072833 (Adições = 2) +D(44, 77) = 14273103362534469753 (Adições = 2) +D(44, 78) = 8796044229983644249 (Adições = 2) +D(44, 79) = 5088148465515940481 (Adições = 2) +D(44, 80) = 1664522294320015745 (Adições = 2) +D(44, 81) = 9814839930789886553 (Adições = 2) +D(44, 82) = 18370843288663159417 (Adições = 2) +D(44, 83) = 17838448616661387969 (Adições = 2) +D(44, 84) = 10260704081539767425 (Adições = 2) +D(44, 85) = 3197765111838681209 (Adições = 2) +D(44, 86) = 18169643157048058073 (Adições = 2) +D(44, 87) = 17507714472657617473 (Adições = 2) +D(44, 88) = 7580475418779876033 (Adições = 2) +D(44, 89) = 13077267119818369241 (Adições = 2) +D(44, 90) = 7925418860432902009 (Adições = 2) +D(44, 91) = 16630565251516378881 (Adições = 2) +D(44, 92) = 4678760789219944001 (Adições = 2) +D(44, 93) = 2879225835188308345 (Adições = 2) +D(44, 94) = 7943788137769605209 (Adições = 2) +D(44, 95) = 5242410808976289537 (Adições = 2) +D(44, 96) = 9646734686538014977 (Adições = 2) +D(44, 97) = 14419838277433260121 (Adições = 2) +D(44, 98) = 6079442783666398585 (Adições = 2) +D(44, 99) = 9491349847280238657 (Adições = 2) +D(44, 100) = 15757221805068815617 (Adições = 2) +D(45, 0) = 1 (Adições = 0) +D(45, 1) = 91 (Adições = 2) +D(45, 2) = 4141 (Adições = 2) +D(45, 3) = 125671 (Adições = 2) +D(45, 4) = 2862121 (Adições = 2) +D(45, 5) = 52191139 (Adições = 2) +D(45, 6) = 793950709 (Adições = 2) +D(45, 7) = 10366094479 (Adições = 2) +D(45, 8) = 118609031569 (Adições = 2) +D(45, 9) = 1208483403179 (Adições = 2) +D(45, 10) = 11103947097341 (Adições = 2) +D(45, 11) = 92958547262711 (Adições = 2) +D(45, 12) = 715114268248121 (Adições = 2) +D(45, 13) = 5091607767517811 (Adições = 2) +D(45, 14) = 33759485166524741 (Adições = 2) +D(45, 15) = 209559710593266719 (Adições = 2) +D(45, 16) = 1223520371342821409 (Adições = 2) +D(45, 17) = 6746665244805236219 (Adições = 2) +D(45, 18) = 16816943903518473933 (Adições = 2) +D(45, 19) = 9265386512100592135 (Adições = 2) +D(45, 20) = 948698709900634441 (Adições = 2) +D(45, 21) = 5029457913313505347 (Adições = 2) +D(45, 22) = 17516801029586115989 (Adições = 2) +D(45, 23) = 10755834172268656303 (Adições = 2) +D(45, 24) = 12221226375336035249 (Adições = 2) +D(45, 25) = 6111460457007862091 (Adições = 2) +D(45, 26) = 4761684539335933341 (Adições = 2) +D(45, 27) = 6903070197783859735 (Adições = 2) +D(45, 28) = 5944609292917706585 (Adições = 2) +D(45, 29) = 13233009441137168659 (Adições = 2) +D(45, 30) = 9607987609641076453 (Adições = 2) +D(45, 31) = 1141461379771388991 (Adições = 2) +D(45, 32) = 3906857511013327937 (Adições = 2) +D(45, 33) = 4054435776453441435 (Adições = 2) +D(45, 34) = 12473322859584258413 (Adições = 2) +D(45, 35) = 3165094856510936359 (Adições = 2) +D(45, 36) = 2193163595780831849 (Adições = 2) +D(45, 37) = 15951958463678180579 (Adições = 2) +D(45, 38) = 2957262620078150965 (Adições = 2) +D(45, 39) = 5888443011975597263 (Adições = 2) +D(45, 40) = 5672661064437688785 (Adições = 2) +D(45, 41) = 17885442274857171179 (Adições = 2) +D(45, 42) = 7835109346096548413 (Adições = 2) +D(45, 43) = 12172083215804650295 (Adições = 2) +D(45, 44) = 2226294480444942969 (Adições = 2) +D(45, 45) = 14763944064912360371 (Adições = 2) +D(45, 46) = 3313697312334317701 (Adições = 2) +D(45, 47) = 15370924795243782239 (Adições = 2) +D(45, 48) = 17013086814552396897 (Adições = 2) +D(45, 49) = 5618371148196500795 (Adições = 2) +D(45, 50) = 7344711849846855693 (Adições = 2) +D(45, 51) = 13911365937013034055 (Adições = 2) +D(45, 52) = 7070947375469551497 (Adições = 2) +D(45, 53) = 11519447790005949827 (Adições = 2) +D(45, 54) = 8247268960811507925 (Adições = 2) +D(45, 55) = 12210461478058282735 (Adições = 2) +D(45, 56) = 5542378398851556337 (Adições = 2) +D(45, 57) = 15990195016861617291 (Adições = 2) +D(45, 58) = 9225714867765619421 (Adições = 2) +D(45, 59) = 9000669678069579863 (Adições = 2) +D(45, 60) = 14421933798539090329 (Adições = 2) +D(45, 61) = 13130684330324386387 (Adições = 2) +D(45, 62) = 11742224490154941989 (Adições = 2) +D(45, 63) = 7630036626702948479 (Adições = 2) +D(45, 64) = 6843270248897091713 (Adições = 2) +D(45, 65) = 11701104605509885659 (Adições = 2) +D(45, 66) = 15885522476317754029 (Adições = 2) +D(45, 67) = 12452979757915696999 (Adições = 2) +D(45, 68) = 11428703973646801065 (Adições = 2) +D(45, 69) = 3551513950434437667 (Adições = 2) +D(45, 70) = 14037730502217089141 (Adições = 2) +D(45, 71) = 13439301210523516175 (Adições = 2) +D(45, 72) = 13150415760126308881 (Adições = 2) +D(45, 73) = 8674489907004034091 (Adições = 2) +D(45, 74) = 4943961168896909181 (Adições = 2) +D(45, 75) = 1029890605785225591 (Adições = 2) +D(45, 76) = 18005363057966996665 (Adições = 2) +D(45, 77) = 4807109180959436019 (Adições = 2) +D(45, 78) = 9429512699767998405 (Adições = 2) +D(45, 79) = 4866961321558031519 (Adições = 2) +D(45, 80) = 11619632081393987745 (Adições = 2) +D(45, 81) = 4652250232794338427 (Adições = 2) +D(45, 82) = 14391189378537832781 (Adições = 2) +D(45, 83) = 13706993136443276935 (Adições = 2) +D(45, 84) = 4912657687225329097 (Adições = 2) +D(45, 85) = 18371126880603777731 (Adições = 2) +D(45, 86) = 2845047002071413781 (Adições = 2) +D(45, 87) = 1628916484357986095 (Adições = 2) +D(45, 88) = 8270362302085927985 (Adições = 2) +D(45, 89) = 10481360766974621643 (Adições = 2) +D(45, 90) = 13037302673516341277 (Adições = 2) +D(45, 91) = 699798638046518935 (Adições = 2) +D(45, 92) = 3562380605073290201 (Adições = 2) +D(45, 93) = 11120367229481542547 (Adições = 2) +D(45, 94) = 3496637128729904485 (Adições = 2) +D(45, 95) = 16682836075475799231 (Adições = 2) +D(45, 96) = 13125237497280552129 (Adições = 2) +D(45, 97) = 298322313832723995 (Adições = 2) +D(45, 98) = 2350859301222831085 (Adições = 2) +D(45, 99) = 17921651932169468327 (Adições = 2) +D(45, 100) = 6276735437099419369 (Adições = 2) +D(46, 0) = 1 (Adições = 0) +D(46, 1) = 93 (Adições = 2) +D(46, 2) = 4325 (Adições = 2) +D(46, 3) = 134137 (Adições = 2) +D(46, 4) = 3121929 (Adições = 2) +D(46, 5) = 58175189 (Adições = 2) +D(46, 6) = 904317037 (Adições = 2) +D(46, 7) = 12064362225 (Adições = 2) +D(46, 8) = 141039488273 (Adições = 2) +D(46, 9) = 1468131923021 (Adições = 2) +D(46, 10) = 13780562423541 (Adições = 2) +D(46, 11) = 117843056783593 (Adições = 2) +D(46, 12) = 925915872294425 (Adições = 2) +D(46, 13) = 6732637908060357 (Adições = 2) +D(46, 14) = 45583730842102909 (Adições = 2) +D(46, 15) = 288902926601894369 (Adições = 2) +D(46, 16) = 1721983008537982497 (Adições = 2) +D(46, 17) = 9692168624686040125 (Adições = 2) +D(46, 18) = 14809033699300198661 (Adições = 2) +D(46, 19) = 3997875967500161497 (Adições = 2) +D(46, 20) = 14211961189501388073 (Adições = 2) +D(46, 21) = 1743373739005976245 (Adições = 2) +D(46, 22) = 5842888608196045965 (Adições = 2) +D(46, 23) = 15668779736341266641 (Adições = 2) +D(46, 24) = 1752352136526854961 (Adições = 2) +D(46, 25) = 1638294895161200685 (Adições = 2) +D(46, 26) = 12511439891504996117 (Adições = 2) +D(46, 27) = 5729450554915237577 (Adições = 2) +D(46, 28) = 130385971907252281 (Adições = 2) +D(46, 29) = 861260632252575909 (Adições = 2) +D(46, 30) = 5255513609321269405 (Adições = 2) +D(46, 31) = 16004962598733734849 (Adições = 2) +D(46, 32) = 2606537415808900161 (Adições = 2) +D(46, 33) = 10567830703275669533 (Adições = 2) +D(46, 34) = 8648845265603817765 (Adições = 2) +D(46, 35) = 5840518907989460921 (Adições = 2) +D(46, 36) = 11198777360281229129 (Adições = 2) +D(46, 37) = 10897155346030689941 (Adições = 2) +D(46, 38) = 11359632356077469869 (Adições = 2) +D(46, 39) = 1758593914421666481 (Adições = 2) +D(46, 40) = 13319697990834952529 (Adições = 2) +D(46, 41) = 18431057256420260877 (Adições = 2) +D(46, 42) = 7258120729954877237 (Adições = 2) +D(46, 43) = 8818569218146524329 (Adições = 2) +D(46, 44) = 4770202840686565977 (Adições = 2) +D(46, 45) = 3313697312334317701 (Adições = 2) +D(46, 46) = 2944594615871444157 (Adições = 2) +D(46, 47) = 3182472649739992481 (Adições = 2) +D(46, 48) = 17119740185826620001 (Adições = 2) +D(46, 49) = 2857710001156414461 (Adições = 2) +D(46, 50) = 15820792999199770949 (Adições = 2) +D(46, 51) = 183382638640557465 (Adições = 2) +D(46, 52) = 2718951877413591401 (Adições = 2) +D(46, 53) = 2862602969179541109 (Adições = 2) +D(46, 54) = 4182575646287447245 (Adições = 2) +D(46, 55) = 6193562011447686289 (Adições = 2) +D(46, 56) = 5499657814647973745 (Adições = 2) +D(46, 57) = 8585487156651595757 (Adições = 2) +D(46, 58) = 15354652967569280853 (Adições = 2) +D(46, 59) = 15134293439694928521 (Adições = 2) +D(46, 60) = 1663408768884495481 (Adições = 2) +D(46, 61) = 10769282824038420581 (Adições = 2) +D(46, 62) = 17195447570808197341 (Adições = 2) +D(46, 63) = 18120964613956536193 (Adições = 2) +D(46, 64) = 14147527415847024769 (Adições = 2) +D(46, 65) = 14245158196544450525 (Adições = 2) +D(46, 66) = 4938297130952986981 (Adições = 2) +D(46, 67) = 14830055291476886393 (Adições = 2) +D(46, 68) = 1818250875620281225 (Adições = 2) +D(46, 69) = 16798468799701519957 (Adições = 2) +D(46, 70) = 15940969178643495149 (Adições = 2) +D(46, 71) = 6524512743964997233 (Adições = 2) +D(46, 72) = 14667485640905270673 (Adições = 2) +D(46, 73) = 18045647234326062029 (Adições = 2) +D(46, 74) = 13217354236517453685 (Adições = 2) +D(46, 75) = 744461937490036841 (Adições = 2) +D(46, 76) = 1332971527532707481 (Adições = 2) +D(46, 77) = 5698699692749588549 (Adições = 2) +D(46, 78) = 1488577499767471357 (Adições = 2) +D(46, 79) = 15785051521093501281 (Adições = 2) +D(46, 80) = 13824900850335968929 (Adições = 2) +D(46, 81) = 11650039090814743485 (Adições = 2) +D(46, 82) = 12246734628437363077 (Adições = 2) +D(46, 83) = 3451428995999369561 (Adições = 2) +D(46, 84) = 3624335745958423977 (Adições = 2) +D(46, 85) = 8461376240077979189 (Adições = 2) +D(46, 86) = 11230806049043619085 (Adições = 2) +D(46, 87) = 15704769535473018961 (Adições = 2) +D(46, 88) = 7157304248207381425 (Adições = 2) +D(46, 89) = 7462283243558379437 (Adições = 2) +D(46, 90) = 12534202610339790741 (Adições = 2) +D(46, 91) = 7824559848193099337 (Adições = 2) +D(46, 92) = 12086739091312908473 (Adições = 2) +D(46, 93) = 8322742852158189605 (Adições = 2) +D(46, 94) = 4493003136660085021 (Adições = 2) +D(46, 95) = 6225732267156237121 (Adições = 2) +D(46, 96) = 17587061766203036865 (Adições = 2) +D(46, 97) = 12563877503606761373 (Adições = 2) +D(46, 98) = 15213059118662316453 (Adições = 2) +D(46, 99) = 17038826278345064249 (Adições = 2) +D(46, 100) = 4343725500194848713 (Adições = 2) +D(47, 0) = 1 (Adições = 0) +D(47, 1) = 95 (Adições = 2) +D(47, 2) = 4513 (Adições = 2) +D(47, 3) = 142975 (Adições = 2) +D(47, 4) = 3399041 (Adições = 2) +D(47, 5) = 64696159 (Adições = 2) +D(47, 6) = 1027188385 (Adições = 2) +D(47, 7) = 13995867647 (Adições = 2) +D(47, 8) = 167099718145 (Adições = 2) +D(47, 9) = 1776271129439 (Adições = 2) +D(47, 10) = 17024965476001 (Adições = 2) +D(47, 11) = 148648584683135 (Adições = 2) +D(47, 12) = 1192407513761153 (Adições = 2) +D(47, 13) = 8850961294115935 (Adições = 2) +D(47, 14) = 61167330044279201 (Adições = 2) +D(47, 15) = 395653987488276479 (Adições = 2) +D(47, 16) = 2406539922628153345 (Adições = 2) +D(47, 17) = 13820691555852175967 (Adições = 2) +D(47, 18) = 1428405732419311521 (Adições = 2) +D(47, 19) = 1788571325510120063 (Adições = 2) +D(47, 20) = 1551664408802118017 (Adições = 2) +D(47, 21) = 17506999337309482335 (Adições = 2) +D(47, 22) = 6646517610801952929 (Adições = 2) +D(47, 23) = 9711441881629713919 (Adições = 2) +D(47, 24) = 8685829680788283905 (Adições = 2) +D(47, 25) = 12076476712476339551 (Adições = 2) +D(47, 26) = 7779467425432984737 (Adições = 2) +D(47, 27) = 7573613798143666815 (Adições = 2) +D(47, 28) = 13433450324966156673 (Adições = 2) +D(47, 29) = 14425096929125984863 (Adições = 2) +D(47, 30) = 2095127096990278561 (Adições = 2) +D(47, 31) = 4908859231335731199 (Adições = 2) +D(47, 32) = 5073615172168814593 (Adições = 2) +D(47, 33) = 18247983291253384287 (Adições = 2) +D(47, 34) = 571171112713768353 (Adições = 2) +D(47, 35) = 15060535286307047039 (Adições = 2) +D(47, 36) = 13653087480868185473 (Adições = 2) +D(47, 37) = 17302276113470552927 (Adições = 2) +D(47, 38) = 2665575668159609505 (Adições = 2) +D(47, 39) = 15783801938658745855 (Adições = 2) +D(47, 40) = 12415349770205813249 (Adições = 2) +D(47, 41) = 7272616870041923423 (Adições = 2) +D(47, 42) = 14515050782707509921 (Adições = 2) +D(47, 43) = 12144996657099359871 (Adições = 2) +D(47, 44) = 7287024642222898561 (Adições = 2) +D(47, 45) = 15370924795243782239 (Adições = 2) +D(47, 46) = 3182472649739992481 (Adições = 2) +D(47, 47) = 9309539915351429119 (Adições = 2) +D(47, 48) = 11165008677208489985 (Adições = 2) +D(47, 49) = 12695714790481972831 (Adições = 2) +D(47, 50) = 12927473717128606625 (Adições = 2) +D(47, 51) = 10484905281259383423 (Adições = 2) +D(47, 52) = 13387239797313532289 (Adições = 2) +D(47, 53) = 522050570197113183 (Adições = 2) +D(47, 54) = 7567229185664101537 (Adições = 2) +D(47, 55) = 17943366843399235071 (Adições = 2) +D(47, 56) = 11189842595785343489 (Adições = 2) +D(47, 57) = 6828243493375361375 (Adições = 2) +D(47, 58) = 12321639543886686369 (Adições = 2) +D(47, 59) = 5917097803731792511 (Adições = 2) +D(47, 60) = 4268055938601664897 (Adições = 2) +D(47, 61) = 16700747531524580959 (Adições = 2) +D(47, 62) = 7771989778952095649 (Adições = 2) +D(47, 63) = 6194913816297725951 (Adições = 2) +D(47, 64) = 1569917698682183681 (Adições = 2) +D(47, 65) = 11515859237364107359 (Adições = 2) +D(47, 66) = 12252570491151993249 (Adições = 2) +D(47, 67) = 13574178839872315007 (Adições = 2) +D(47, 68) = 11775740933259931009 (Adições = 2) +D(47, 69) = 11945716534872180575 (Adições = 2) +D(47, 70) = 7791666365798092449 (Adições = 2) +D(47, 71) = 11810404214697033215 (Adições = 2) +D(47, 72) = 14555658525857749505 (Adições = 2) +D(47, 73) = 10375303253669978975 (Adições = 2) +D(47, 74) = 4744816577094391457 (Adições = 2) +D(47, 75) = 259888677392330367 (Adições = 2) +D(47, 76) = 2337322142415074689 (Adições = 2) +D(47, 77) = 9368993362697370719 (Adições = 2) +D(47, 78) = 16556270555214430625 (Adições = 2) +D(47, 79) = 15383155502365851647 (Adições = 2) +D(47, 80) = 8099619726376218625 (Adições = 2) +D(47, 81) = 15127815593817379423 (Adições = 2) +D(47, 82) = 2131101165650382753 (Adições = 2) +D(47, 83) = 17829264790087115391 (Adições = 2) +D(47, 84) = 6458285458335357313 (Adições = 2) +D(47, 85) = 97253370662208863 (Adições = 2) +D(47, 86) = 1342691586074255521 (Adições = 2) +D(47, 87) = 9831523096881341951 (Adições = 2) +D(47, 88) = 14246852806852190721 (Adições = 2) +D(47, 89) = 10419696224908399967 (Adições = 2) +D(47, 90) = 11969438005097018529 (Adições = 2) +D(47, 91) = 13881456389920356991 (Adições = 2) +D(47, 92) = 15346011255716813185 (Adições = 2) +D(47, 93) = 17308749125478359647 (Adições = 2) +D(47, 94) = 11677751040587082657 (Adições = 2) +D(47, 95) = 3949742370693853183 (Adições = 2) +D(47, 96) = 9315792330343575553 (Adições = 2) +D(47, 97) = 2573243452734270559 (Adições = 2) +D(47, 98) = 11903436001293796769 (Adições = 2) +D(47, 99) = 7261833250882074239 (Adições = 2) +D(47, 100) = 10197640955712435585 (Adições = 2) +D(48, 0) = 1 (Adições = 0) +D(48, 1) = 97 (Adições = 2) +D(48, 2) = 4705 (Adições = 2) +D(48, 3) = 152193 (Adições = 2) +D(48, 4) = 3694209 (Adições = 2) +D(48, 5) = 71789409 (Adições = 2) +D(48, 6) = 1163673953 (Adições = 2) +D(48, 7) = 16186729985 (Adições = 2) +D(48, 8) = 197282315777 (Adições = 2) +D(48, 9) = 2140653163361 (Adições = 2) +D(48, 10) = 20941889768801 (Adições = 2) +D(48, 11) = 186615439927937 (Adições = 2) +D(48, 12) = 1527671538372225 (Adições = 2) +D(48, 13) = 11571040346249313 (Adições = 2) +D(48, 14) = 81589331684644449 (Adições = 2) +D(48, 15) = 538410649217200129 (Adições = 2) +D(48, 16) = 3340604559333629953 (Adições = 2) +D(48, 17) = 1121091964104407649 (Adições = 2) +D(48, 18) = 16370189252375895137 (Adições = 2) +D(48, 19) = 1140422236595775105 (Adições = 2) +D(48, 20) = 4480657970908013185 (Adições = 2) +D(48, 21) = 5092577643310061921 (Adições = 2) +D(48, 22) = 10799350517711945569 (Adições = 2) +D(48, 23) = 8710565936434060801 (Adições = 2) +D(48, 24) = 8661093425142507009 (Adições = 2) +D(48, 25) = 10976655744697578849 (Adições = 2) +D(48, 26) = 12385855808897351521 (Adições = 2) +D(48, 27) = 9292192958764451457 (Adições = 2) +D(48, 28) = 11852513008164723329 (Adições = 2) +D(48, 29) = 2817572114837761633 (Adições = 2) +D(48, 30) = 891052067244473441 (Adições = 2) +D(48, 31) = 7895038395570483201 (Adições = 2) +D(48, 32) = 17877512799075028993 (Adições = 2) +D(48, 33) = 4305623115078124641 (Adições = 2) +D(48, 34) = 4678033445335725665 (Adições = 2) +D(48, 35) = 1862995770646989441 (Adições = 2) +D(48, 36) = 12129874464112670337 (Adições = 2) +D(48, 37) = 6191749911032305505 (Adições = 2) +D(48, 38) = 7712857618952916321 (Adições = 2) +D(48, 39) = 7715491152061720065 (Adições = 2) +D(48, 40) = 17467898787216727553 (Adições = 2) +D(48, 41) = 262377280045360993 (Adições = 2) +D(48, 42) = 3603300859085242721 (Adições = 2) +D(48, 43) = 11816604225182560897 (Adições = 2) +D(48, 44) = 12801881450795267713 (Adições = 2) +D(48, 45) = 17013086814552396897 (Adições = 2) +D(48, 46) = 17119740185826620001 (Adições = 2) +D(48, 47) = 11165008677208489985 (Adições = 2) +D(48, 48) = 13192813196058857473 (Adições = 2) +D(48, 49) = 160048516330217057 (Adições = 2) +D(48, 50) = 7336492950231244897 (Adições = 2) +D(48, 51) = 12302127874909683329 (Adições = 2) +D(48, 52) = 17727528879773047425 (Adições = 2) +D(48, 53) = 13190075173574141281 (Adições = 2) +D(48, 54) = 2832610855725804385 (Adições = 2) +D(48, 55) = 9896462811079589377 (Adições = 2) +D(48, 56) = 2136184102845064705 (Adições = 2) +D(48, 57) = 1707526118296217953 (Adições = 2) +D(48, 58) = 2410665081848714081 (Adições = 2) +D(48, 59) = 2202658355757641345 (Adições = 2) +D(48, 60) = 12387812098091098753 (Adições = 2) +D(48, 61) = 14909871494507792993 (Adições = 2) +D(48, 62) = 2489120657565366369 (Adições = 2) +D(48, 63) = 16456024252815187969 (Adições = 2) +D(48, 64) = 5774111694085545985 (Adições = 2) +D(48, 65) = 413144556422285409 (Adições = 2) +D(48, 66) = 5734830211228834401 (Adições = 2) +D(48, 67) = 13114835468543591041 (Adições = 2) +D(48, 68) = 1571267094256733825 (Adições = 2) +D(48, 69) = 6845980488679293793 (Adições = 2) +D(48, 70) = 8136619315640015201 (Adições = 2) +D(48, 71) = 9291945822425589249 (Adições = 2) +D(48, 72) = 17211264489270820353 (Adições = 2) +D(48, 73) = 5248738121379445601 (Adições = 2) +D(48, 74) = 1922113878434264417 (Adições = 2) +D(48, 75) = 6926819132920986241 (Adições = 2) +D(48, 76) = 9524029952728391297 (Adições = 2) +D(48, 77) = 2783601384131285089 (Adições = 2) +D(48, 78) = 10262121228333534817 (Adições = 2) +D(48, 79) = 5308059138494713857 (Adições = 2) +D(48, 80) = 10344090293527232513 (Adições = 2) +D(48, 81) = 15124781540011278945 (Adições = 2) +D(48, 82) = 13936954225769489505 (Adições = 2) +D(48, 83) = 15450576107797436033 (Adições = 2) +D(48, 84) = 2844638208800805505 (Adições = 2) +D(48, 85) = 9400177037798371681 (Adições = 2) +D(48, 86) = 10840121994534836065 (Adições = 2) +D(48, 87) = 3567592603780881921 (Adições = 2) +D(48, 88) = 9199224433804862977 (Adições = 2) +D(48, 89) = 15419029391855902049 (Adições = 2) +D(48, 90) = 914675474442217313 (Adições = 2) +D(48, 91) = 8318825795750041217 (Adições = 2) +D(48, 92) = 652805293968108161 (Adições = 2) +D(48, 93) = 14860821601453729377 (Adições = 2) +D(48, 94) = 6953833620100068449 (Adições = 2) +D(48, 95) = 4134582957671452673 (Adições = 2) +D(48, 96) = 17400117658708881409 (Adições = 2) +D(48, 97) = 10842409368077175905 (Adições = 2) +D(48, 98) = 6872344748395691617 (Adições = 2) +D(48, 99) = 7590869926862011009 (Adições = 2) +D(48, 100) = 6603600059746969217 (Adições = 2) +D(49, 0) = 1 (Adições = 0) +D(49, 1) = 99 (Adições = 2) +D(49, 2) = 4901 (Adições = 2) +D(49, 3) = 161799 (Adições = 2) +D(49, 4) = 4008201 (Adições = 2) +D(49, 5) = 79491819 (Adições = 2) +D(49, 6) = 1314955181 (Adições = 2) +D(49, 7) = 18665359119 (Adições = 2) +D(49, 8) = 232134404881 (Adições = 2) +D(49, 9) = 2570069884019 (Adições = 2) +D(49, 10) = 25652612816181 (Adições = 2) +D(49, 11) = 233209942512919 (Adições = 2) +D(49, 12) = 1947496920813081 (Adições = 2) +D(49, 13) = 15046208805434619 (Adições = 2) +D(49, 14) = 108206580836328381 (Adições = 2) +D(49, 15) = 728206561738172959 (Adições = 2) +D(49, 16) = 4607221770289003041 (Adições = 2) +D(49, 17) = 9068918293727040643 (Adições = 2) +D(49, 18) = 8113455436497791813 (Adições = 2) +D(49, 19) = 7177322851759910439 (Adições = 2) +D(49, 20) = 12798403059263698729 (Adições = 2) +D(49, 21) = 3924894599772222219 (Adições = 2) +D(49, 22) = 1370078687084678093 (Adições = 2) +D(49, 23) = 2433251067521132847 (Adições = 2) +D(49, 24) = 1358166355388149041 (Adições = 2) +D(49, 25) = 2549171451518683283 (Adições = 2) +D(49, 26) = 7464938931404062037 (Adições = 2) +D(49, 27) = 10696243625356313399 (Adições = 2) +D(49, 28) = 13394205518575936569 (Adições = 2) +D(49, 29) = 9617546567868869915 (Adições = 2) +D(49, 30) = 13326170749951104989 (Adições = 2) +D(49, 31) = 3665517139056510015 (Adições = 2) +D(49, 32) = 10991324259992470593 (Adições = 2) +D(49, 33) = 14727716100436072611 (Adições = 2) +D(49, 34) = 5264628587140371301 (Adições = 2) +D(49, 35) = 11805657803123086407 (Adições = 2) +D(49, 36) = 7351783964173194569 (Adições = 2) +D(49, 37) = 7226664265608618795 (Adições = 2) +D(49, 38) = 2684527721884289005 (Adições = 2) +D(49, 39) = 18112876492898925391 (Adições = 2) +D(49, 40) = 6402778284758269777 (Adições = 2) +D(49, 41) = 5686310278310806707 (Adições = 2) +D(49, 42) = 9551988417441410421 (Adições = 2) +D(49, 43) = 6525149427999662423 (Adições = 2) +D(49, 44) = 12696891030267939417 (Adições = 2) +D(49, 45) = 5618371148196500795 (Adições = 2) +D(49, 46) = 2857710001156414461 (Adições = 2) +D(49, 47) = 12695714790481972831 (Adições = 2) +D(49, 48) = 160048516330217057 (Adições = 2) +D(49, 49) = 13512910228719291587 (Adições = 2) +D(49, 50) = 2562707621571201925 (Adições = 2) +D(49, 51) = 3754584373002578535 (Adições = 2) +D(49, 52) = 15337497053975757673 (Adições = 2) +D(49, 53) = 9361612959903843147 (Adições = 2) +D(49, 54) = 6937554915494237197 (Adições = 2) +D(49, 55) = 1219884508590079343 (Adições = 2) +D(49, 56) = 13252531422514733425 (Adições = 2) +D(49, 57) = 17096241643656016083 (Adições = 2) +D(49, 58) = 2767688770091396501 (Adições = 2) +D(49, 59) = 7381012207697751927 (Adições = 2) +D(49, 60) = 3524738587836940409 (Adições = 2) +D(49, 61) = 12375678106726280539 (Adições = 2) +D(49, 62) = 11327926185089888285 (Adições = 2) +D(49, 63) = 11826327021760891007 (Adições = 2) +D(49, 64) = 15609718894952073345 (Adições = 2) +D(49, 65) = 3350231071750353123 (Adições = 2) +D(49, 66) = 9498205839401472933 (Adições = 2) +D(49, 67) = 9901127445464346759 (Adições = 2) +D(49, 68) = 6140485934555120009 (Adições = 2) +D(49, 69) = 14557733517491147627 (Adições = 2) +D(49, 70) = 11093589248100905005 (Adições = 2) +D(49, 71) = 10075410312456957839 (Adições = 2) +D(49, 72) = 18131876550443815825 (Adições = 2) +D(49, 73) = 3698391013674978547 (Adições = 2) +D(49, 74) = 10869243013488688565 (Adições = 2) +D(49, 75) = 1271431951134387607 (Adições = 2) +D(49, 76) = 17722281036783765145 (Adições = 2) +D(49, 77) = 11583168299933889915 (Adições = 2) +D(49, 78) = 6182146838689158205 (Adições = 2) +D(49, 79) = 3305583131807855263 (Adições = 2) +D(49, 80) = 510988490120250017 (Adições = 2) +D(49, 81) = 7533116249949209859 (Adições = 2) +D(49, 82) = 18148107942020426693 (Adições = 2) +D(49, 83) = 10642150128168248999 (Adições = 2) +D(49, 84) = 10490620371056938921 (Adições = 2) +D(49, 85) = 4288691543946564491 (Adições = 2) +D(49, 86) = 6082246502570220621 (Adições = 2) +D(49, 87) = 2043217027176386991 (Adições = 2) +D(49, 88) = 14810034064762131889 (Adições = 2) +D(49, 89) = 2534799743003793683 (Adições = 2) +D(49, 90) = 421760535592361429 (Adições = 2) +D(49, 91) = 9655261805784619959 (Adições = 2) +D(49, 92) = 180148821793217721 (Adições = 2) +D(49, 93) = 15693775717215055259 (Adições = 2) +D(49, 94) = 614942791349749853 (Adições = 2) +D(49, 95) = 11703359369121270975 (Adições = 2) +D(49, 96) = 14791315911792053441 (Adições = 2) +D(49, 97) = 6140354791159007523 (Adições = 2) +D(49, 98) = 5408364833922323429 (Adições = 2) +D(49, 99) = 1424835435470474439 (Adições = 2) +D(49, 100) = 15619305422079454665 (Adições = 2) +D(50, 0) = 1 (Adições = 0) +D(50, 1) = 101 (Adições = 2) +D(50, 2) = 5101 (Adições = 2) +D(50, 3) = 171801 (Adições = 2) +D(50, 4) = 4341801 (Adições = 2) +D(50, 5) = 87841821 (Adições = 2) +D(50, 6) = 1482288821 (Adições = 2) +D(50, 7) = 21462603121 (Adições = 2) +D(50, 8) = 272262367121 (Adições = 2) +D(50, 9) = 3074466656021 (Adições = 2) +D(50, 10) = 31297149356221 (Adições = 2) +D(50, 11) = 290159704685321 (Adições = 2) +D(50, 12) = 2470866568011321 (Adições = 2) +D(50, 13) = 19464572294259021 (Adições = 2) +D(50, 14) = 142717361936022021 (Adições = 2) +D(50, 15) = 979130504510523361 (Adições = 2) +D(50, 16) = 6314558836537699361 (Adições = 2) +D(50, 17) = 1543954826844191429 (Adições = 2) +D(50, 18) = 279584483359472269 (Adições = 2) +D(50, 19) = 15570362771617174521 (Adições = 2) +D(50, 20) = 17099344608931232073 (Adições = 2) +D(50, 21) = 15375898194257601405 (Adições = 2) +D(50, 22) = 2224127407404950101 (Adições = 2) +D(50, 23) = 6027457162010761041 (Adições = 2) +D(50, 24) = 9818874584920042929 (Adições = 2) +D(50, 25) = 13726212391826875253 (Adições = 2) +D(50, 26) = 5293578701040068957 (Adições = 2) +D(50, 27) = 5008017184090892777 (Adições = 2) +D(50, 28) = 10651722254313591129 (Adições = 2) +D(50, 29) = 15216730267048845997 (Adições = 2) +D(50, 30) = 1266959437449717669 (Adições = 2) +D(50, 31) = 18258647326457332673 (Adições = 2) +D(50, 32) = 14468744651796761665 (Adições = 2) +D(50, 33) = 3294296864806201637 (Adições = 2) +D(50, 34) = 4839897478673093933 (Adições = 2) +D(50, 35) = 3463439795227000025 (Adições = 2) +D(50, 36) = 4174137488813729385 (Adições = 2) +D(50, 37) = 305841644885991133 (Adições = 2) +D(50, 38) = 10217033632378898933 (Adições = 2) +D(50, 39) = 12567693773452561713 (Adições = 2) +D(50, 40) = 189860403690653649 (Adições = 2) +D(50, 41) = 12278948966759730133 (Adições = 2) +D(50, 42) = 9070503588802395645 (Adições = 2) +D(50, 43) = 6700897360533916873 (Adições = 2) +D(50, 44) = 7476193745091967097 (Adições = 2) +D(50, 45) = 7344711849846855693 (Adições = 2) +D(50, 46) = 15820792999199770949 (Adições = 2) +D(50, 47) = 12927473717128606625 (Adições = 2) +D(50, 48) = 7336492950231244897 (Adições = 2) +D(50, 49) = 2562707621571201925 (Adições = 2) +D(50, 50) = 191581398152143821 (Adições = 2) +D(50, 51) = 6508873392725924281 (Adições = 2) +D(50, 52) = 7154210745994708873 (Adições = 2) +D(50, 53) = 13406576686164758077 (Adições = 2) +D(50, 54) = 11259000487853286805 (Adições = 2) +D(50, 55) = 969695838228051729 (Adições = 2) +D(50, 56) = 15442111769332864497 (Adições = 2) +D(50, 57) = 8897396688084510773 (Adições = 2) +D(50, 58) = 10314583028122371741 (Adições = 2) +D(50, 59) = 2016539932201968553 (Adições = 2) +D(50, 60) = 12922290727736660889 (Adições = 2) +D(50, 61) = 10375963348590330221 (Adições = 2) +D(50, 62) = 15632823566696947429 (Adições = 2) +D(50, 63) = 1893588626128623489 (Adições = 2) +D(50, 64) = 10882890469132036225 (Adições = 2) +D(50, 65) = 11396096362124911077 (Adições = 2) +D(50, 66) = 5797789199567185517 (Adições = 2) +D(50, 67) = 6750378410723453593 (Adições = 2) +D(50, 68) = 4345247717033368745 (Adições = 2) +D(50, 69) = 6596723095370084765 (Adições = 2) +D(50, 70) = 13801301787252585781 (Adições = 2) +D(50, 71) = 16523557274100897009 (Adições = 2) +D(50, 72) = 7837355989582567441 (Adições = 2) +D(50, 73) = 11220879479991810197 (Adições = 2) +D(50, 74) = 7341769433445925693 (Adições = 2) +D(50, 75) = 1035700324359450249 (Adições = 2) +D(50, 76) = 1582669238568051385 (Adições = 2) +D(50, 77) = 12441374501576154829 (Adições = 2) +D(50, 78) = 11759945566489651333 (Adições = 2) +D(50, 79) = 2800931463277113185 (Adições = 2) +D(50, 80) = 6617503085205218465 (Adições = 2) +D(50, 81) = 14661607825274678341 (Adições = 2) +D(50, 82) = 3449343869825211661 (Adições = 2) +D(50, 83) = 13792857866304335737 (Adições = 2) +D(50, 84) = 16478884291819972041 (Adições = 2) +D(50, 85) = 12811452133113923837 (Adições = 2) +D(50, 86) = 4735646105921157333 (Adições = 2) +D(50, 87) = 12861109635667764945 (Adições = 2) +D(50, 88) = 11267616653896732209 (Adições = 2) +D(50, 89) = 10165706387953106165 (Adições = 2) +D(50, 90) = 13122266666549261277 (Adições = 2) +D(50, 91) = 4752544934216691049 (Adições = 2) +D(50, 92) = 14587955561794528729 (Adições = 2) +D(50, 93) = 12015136027093250093 (Adições = 2) +D(50, 94) = 9877110461948503589 (Adições = 2) +D(50, 95) = 3748668548709972801 (Adições = 2) +D(50, 96) = 11796599755913745601 (Adições = 2) +D(50, 97) = 14281526385155254949 (Adições = 2) +D(50, 98) = 7383501936527034285 (Adições = 2) +D(50, 99) = 14216702205919832153 (Adições = 2) +D(50, 100) = 12814098989760209641 (Adições = 2) +D(51, 0) = 1 (Adições = 0) +D(51, 1) = 103 (Adições = 2) +D(51, 2) = 5305 (Adições = 2) +D(51, 3) = 182207 (Adições = 2) +D(51, 4) = 4695809 (Adições = 2) +D(51, 5) = 96879431 (Adições = 2) +D(51, 6) = 1667010073 (Adições = 2) +D(51, 7) = 24611902015 (Adições = 2) +D(51, 8) = 318336872257 (Adições = 2) +D(51, 9) = 3665065895399 (Adições = 2) +D(51, 10) = 38036681907641 (Adições = 2) +D(51, 11) = 359493535949183 (Adições = 2) +D(51, 12) = 3120519808645825 (Adições = 2) +D(51, 13) = 25055958670916167 (Adições = 2) +D(51, 14) = 187237892901197209 (Adições = 2) +D(51, 15) = 1309085759347742591 (Adições = 2) +D(51, 16) = 8602775100395965313 (Adições = 2) +D(51, 17) = 16461288763777856103 (Adições = 2) +D(51, 18) = 18284828073981519801 (Adições = 2) +D(51, 19) = 15688031255248614975 (Adições = 2) +D(51, 20) = 11464250488377918337 (Adições = 2) +D(51, 21) = 7046005144147648583 (Adições = 2) +D(51, 22) = 6199286672100648473 (Adições = 2) +D(51, 23) = 14450871241516359615 (Adições = 2) +D(51, 24) = 11850458914737611969 (Adições = 2) +D(51, 25) = 16948801817774978535 (Adições = 2) +D(51, 26) = 17521848836932371129 (Adições = 2) +D(51, 27) = 9376700648353781247 (Adições = 2) +D(51, 28) = 6589696013048713537 (Adições = 2) +D(51, 29) = 14011404460701599047 (Adições = 2) +D(51, 30) = 12048350091490611097 (Adições = 2) +D(51, 31) = 13127212781688109823 (Adições = 2) +D(51, 32) = 8961116612523100929 (Adições = 2) +D(51, 33) = 8277414055416512615 (Adições = 2) +D(51, 34) = 16411608398895808185 (Adições = 2) +D(51, 35) = 6268201599086350527 (Adições = 2) +D(51, 36) = 13905778883127079937 (Adições = 2) +D(51, 37) = 18385758016826800455 (Adições = 2) +D(51, 38) = 10461889220382138905 (Adições = 2) +D(51, 39) = 14799872552504047935 (Adições = 2) +D(51, 40) = 9110682655937711681 (Adições = 2) +D(51, 41) = 3132747952678543847 (Adições = 2) +D(51, 42) = 6035456434531118009 (Adições = 2) +D(51, 43) = 3360113310157878911 (Adições = 2) +D(51, 44) = 17537204415783762881 (Adições = 2) +D(51, 45) = 13911365937013034055 (Adições = 2) +D(51, 46) = 183382638640557465 (Adições = 2) +D(51, 47) = 10484905281259383423 (Adições = 2) +D(51, 48) = 12302127874909683329 (Adições = 2) +D(51, 49) = 3754584373002578535 (Adições = 2) +D(51, 50) = 6508873392725924281 (Adições = 2) +D(51, 51) = 13209328183603992383 (Adições = 2) +D(51, 52) = 8425668248615073921 (Adições = 2) +D(51, 53) = 10539711607064989255 (Adições = 2) +D(51, 54) = 16758544707373482521 (Adições = 2) +D(51, 55) = 10540496959745269439 (Adições = 2) +D(51, 56) = 8505560493596634049 (Adições = 2) +D(51, 57) = 14398324877304457703 (Adições = 2) +D(51, 58) = 15163560519801788601 (Adições = 2) +D(51, 59) = 9047939406416577279 (Adições = 2) +D(51, 60) = 5540025992645655105 (Adições = 2) +D(51, 61) = 10391535995263094599 (Adições = 2) +D(51, 62) = 17953578836840820633 (Adições = 2) +D(51, 63) = 17033246955956839935 (Adições = 2) +D(51, 64) = 11362981977507948033 (Adições = 2) +D(51, 65) = 15195224735055343719 (Adições = 2) +D(51, 66) = 13942366223037888697 (Adições = 2) +D(51, 67) = 8043789759618976191 (Adições = 2) +D(51, 68) = 692671813666246913 (Adições = 2) +D(51, 69) = 11634642626069700423 (Adições = 2) +D(51, 70) = 13585923434982819353 (Adições = 2) +D(51, 71) = 7017294348917198911 (Adições = 2) +D(51, 72) = 12931463538891111745 (Adições = 2) +D(51, 73) = 13542954934755937767 (Adições = 2) +D(51, 74) = 13658859774484122041 (Adições = 2) +D(51, 75) = 3589585458579946367 (Adições = 2) +D(51, 76) = 6207955021507448001 (Adições = 2) +D(51, 77) = 1785254687942102599 (Adições = 2) +D(51, 78) = 7539830682298357145 (Adições = 2) +D(51, 79) = 3653963638355570047 (Adições = 2) +D(51, 80) = 13072398186837901697 (Adições = 2) +D(51, 81) = 15904765023608246887 (Adições = 2) +D(51, 82) = 15568972644998585273 (Adições = 2) +D(51, 83) = 14364430307418581055 (Adições = 2) +D(51, 84) = 7742684318123785601 (Adições = 2) +D(51, 85) = 139532595638578247 (Adições = 2) +D(51, 86) = 17686630834673659417 (Adições = 2) +D(51, 87) = 16836642502553030079 (Adições = 2) +D(51, 88) = 4071880644698424001 (Adições = 2) +D(51, 89) = 7058459612838710759 (Adições = 2) +D(51, 90) = 11899688593631526585 (Adições = 2) +D(51, 91) = 11327756120687927295 (Adições = 2) +D(51, 92) = 12221512542989595457 (Adições = 2) +D(51, 93) = 1931115984458271047 (Adições = 2) +D(51, 94) = 5376618399790473113 (Adições = 2) +D(51, 95) = 555653336739397887 (Adições = 2) +D(51, 96) = 16100921641363116289 (Adições = 2) +D(51, 97) = 5285559635013013607 (Adições = 2) +D(51, 98) = 8503843882985751225 (Adições = 2) +D(51, 99) = 11657303951723066047 (Adições = 2) +D(51, 100) = 1794616999984004609 (Adições = 2) +D(52, 0) = 1 (Adições = 0) +D(52, 1) = 105 (Adições = 2) +D(52, 2) = 5513 (Adições = 2) +D(52, 3) = 193025 (Adições = 2) +D(52, 4) = 5071041 (Adições = 2) +D(52, 5) = 106646281 (Adições = 2) +D(52, 6) = 1870535785 (Adições = 2) +D(52, 7) = 28149447873 (Adições = 2) +D(52, 8) = 371098222145 (Adições = 2) +D(52, 9) = 4354500989801 (Adições = 2) +D(52, 10) = 46056248792841 (Adições = 2) +D(52, 11) = 443586466649665 (Adições = 2) +D(52, 12) = 3923599811244673 (Adições = 2) +D(52, 13) = 32100078290806665 (Adições = 2) +D(52, 14) = 244393929862920041 (Adições = 2) +D(52, 15) = 1740717582111859841 (Adições = 2) +D(52, 16) = 11652578441855567745 (Adições = 2) +D(52, 17) = 18269898232319837545 (Adições = 2) +D(52, 18) = 16122526922660110217 (Adições = 2) +D(52, 19) = 13201898104471141761 (Adições = 2) +D(52, 20) = 3460691700678571841 (Adições = 2) +D(52, 21) = 3524203259494587145 (Adições = 2) +D(52, 22) = 16769495075742884201 (Adições = 2) +D(52, 23) = 526164841940789057 (Adições = 2) +D(52, 24) = 8380750924485209025 (Adições = 2) +D(52, 25) = 286523509578696297 (Adições = 2) +D(52, 26) = 16310430090576494345 (Adições = 2) +D(52, 27) = 6315491428443543489 (Adições = 2) +D(52, 28) = 3835144016136486657 (Adições = 2) +D(52, 29) = 5989500416177247625 (Adições = 2) +D(52, 30) = 13602510894659906153 (Adições = 2) +D(52, 31) = 1884585620419523841 (Adições = 2) +D(52, 32) = 5526170940921182977 (Adições = 2) +D(52, 33) = 4317957535151244905 (Adições = 2) +D(52, 34) = 10560235915754014089 (Adições = 2) +D(52, 35) = 14793301840026621185 (Adições = 2) +D(52, 36) = 16520538248530500033 (Adições = 2) +D(52, 37) = 11918587001065277193 (Adições = 2) +D(52, 38) = 3872746090855113321 (Adições = 2) +D(52, 39) = 10687763790031748545 (Adições = 2) +D(52, 40) = 16151574924763956545 (Adições = 2) +D(52, 41) = 9948261459670660457 (Adições = 2) +D(52, 42) = 669721773170770697 (Adições = 2) +D(52, 43) = 10065291517859767617 (Adições = 2) +D(52, 44) = 12515865170091857793 (Adições = 2) +D(52, 45) = 7070947375469551497 (Adições = 2) +D(52, 46) = 2718951877413591401 (Adições = 2) +D(52, 47) = 13387239797313532289 (Adições = 2) +D(52, 48) = 17727528879773047425 (Adições = 2) +D(52, 49) = 15337497053975757673 (Adições = 2) +D(52, 50) = 7154210745994708873 (Adições = 2) +D(52, 51) = 8425668248615073921 (Adições = 2) +D(52, 52) = 11613920607124588609 (Adições = 2) +D(52, 53) = 12132556389095100169 (Adições = 2) +D(52, 54) = 2537324556114468713 (Adições = 2) +D(52, 55) = 11389622149523669057 (Adições = 2) +D(52, 56) = 11988935529156020929 (Adições = 2) +D(52, 57) = 16446076826347561065 (Adições = 2) +D(52, 58) = 9114474076034704137 (Adições = 2) +D(52, 59) = 14879229928543518401 (Adições = 2) +D(52, 60) = 11020451253896199169 (Adições = 2) +D(52, 61) = 8505269168095397257 (Adições = 2) +D(52, 62) = 18403639926489760873 (Adições = 2) +D(52, 63) = 16496977571868318209 (Adições = 2) +D(52, 64) = 7999718357914002945 (Adições = 2) +D(52, 65) = 16111180996767743081 (Adições = 2) +D(52, 66) = 8355283807441872265 (Adições = 2) +D(52, 67) = 11894695716389185537 (Adições = 2) +D(52, 68) = 2184413215964857025 (Adições = 2) +D(52, 69) = 14511727655700804361 (Adições = 2) +D(52, 70) = 2838805569334220905 (Adições = 2) +D(52, 71) = 4995279279524687553 (Adições = 2) +D(52, 72) = 6497293093623446593 (Adições = 2) +D(52, 73) = 14524967493560944489 (Adições = 2) +D(52, 74) = 4833294055381901065 (Adições = 2) +D(52, 75) = 3634995214736417857 (Adições = 2) +D(52, 76) = 13432535694823812225 (Adições = 2) +D(52, 77) = 2979001330563811209 (Adições = 2) +D(52, 78) = 12304086700804270953 (Adições = 2) +D(52, 79) = 5051136947748646529 (Adições = 2) +D(52, 80) = 3330754699232566657 (Adições = 2) +D(52, 81) = 13861173835969163625 (Adições = 2) +D(52, 82) = 8441423357156892553 (Adições = 2) +D(52, 83) = 1481338162154955649 (Adições = 2) +D(52, 84) = 5141708713987770689 (Adições = 2) +D(52, 85) = 13023925627750134537 (Adições = 2) +D(52, 86) = 12403344984352820585 (Adições = 2) +D(52, 87) = 10033130174160406849 (Adições = 2) +D(52, 88) = 12494909247702309313 (Adições = 2) +D(52, 89) = 5178505431529892457 (Adições = 2) +D(52, 90) = 5689909564290578185 (Adições = 2) +D(52, 91) = 10470610204900480449 (Adições = 2) +D(52, 92) = 15573134794868451585 (Adições = 2) +D(52, 93) = 11279019248606766473 (Adições = 2) +D(52, 94) = 140009559145959017 (Adições = 2) +D(52, 95) = 6072281295675830017 (Adições = 2) +D(52, 96) = 4282112200068792577 (Adições = 2) +D(52, 97) = 7221849402735370857 (Adições = 2) +D(52, 98) = 2564508847024584073 (Adições = 2) +D(52, 99) = 4278912608023849729 (Adições = 2) +D(52, 100) = 17730833559730920385 (Adições = 2) +D(53, 0) = 1 (Adições = 0) +D(53, 1) = 107 (Adições = 2) +D(53, 2) = 5725 (Adições = 2) +D(53, 3) = 204263 (Adições = 2) +D(53, 4) = 5468329 (Adições = 2) +D(53, 5) = 117185651 (Adições = 2) +D(53, 6) = 2094367717 (Adições = 2) +D(53, 7) = 32114351375 (Adições = 2) +D(53, 8) = 431362021393 (Adições = 2) +D(53, 9) = 5156961233339 (Adições = 2) +D(53, 10) = 55567711015981 (Adições = 2) +D(53, 11) = 545210426458487 (Adições = 2) +D(53, 12) = 4912396704352825 (Adições = 2) +D(53, 13) = 40936074806404163 (Adições = 2) +D(53, 14) = 317430082960130869 (Adições = 2) +D(53, 15) = 2302541594934910751 (Adições = 2) +D(53, 16) = 15695837618902338337 (Adições = 2) +D(53, 17) = 8724826145658640395 (Adições = 2) +D(53, 18) = 6223763153219484925 (Adições = 2) +D(53, 19) = 17101444106641185287 (Adições = 2) +D(53, 20) = 15317289838081347273 (Adições = 2) +D(53, 21) = 3855440724544954643 (Adições = 2) +D(53, 22) = 5702394986072874373 (Adições = 2) +D(53, 23) = 4551310830046996015 (Adições = 2) +D(53, 24) = 13458226596472994097 (Adições = 2) +D(53, 25) = 3678756956827347803 (Adições = 2) +D(53, 26) = 1828966483272986829 (Adições = 2) +D(53, 27) = 6008143928583473047 (Adições = 2) +D(53, 28) = 16158779373163503193 (Adições = 2) +D(53, 29) = 7536679731767685859 (Adições = 2) +D(53, 30) = 8681946968895288021 (Adições = 2) +D(53, 31) = 5722299410265166399 (Adições = 2) +D(53, 32) = 13133055971605873217 (Adições = 2) +D(53, 33) = 4530440373968749483 (Adições = 2) +D(53, 34) = 961889751164456861 (Adições = 2) +D(53, 35) = 7868683433235540519 (Adições = 2) +D(53, 36) = 2289035374373558505 (Adições = 2) +D(53, 37) = 12281416550259784115 (Adições = 2) +D(53, 38) = 9626005568470623013 (Adições = 2) +D(53, 39) = 5739771375647933263 (Adições = 2) +D(53, 40) = 14132366016734086737 (Adições = 2) +D(53, 41) = 3338714253749600507 (Adições = 2) +D(53, 42) = 13956697486591031661 (Adições = 2) +D(53, 43) = 6244966703912018359 (Adições = 2) +D(53, 44) = 10379379318154092153 (Adições = 2) +D(53, 45) = 11519447790005949827 (Adições = 2) +D(53, 46) = 2862602969179541109 (Adições = 2) +D(53, 47) = 522050570197113183 (Adições = 2) +D(53, 48) = 13190075173574141281 (Adições = 2) +D(53, 49) = 9361612959903843147 (Adições = 2) +D(53, 50) = 13406576686164758077 (Adições = 2) +D(53, 51) = 10539711607064989255 (Adições = 2) +D(53, 52) = 12132556389095100169 (Adições = 2) +D(53, 53) = 17432289311605237331 (Adições = 2) +D(53, 54) = 13655426183105254597 (Adições = 2) +D(53, 55) = 9135628815033840751 (Adições = 2) +D(53, 56) = 14067442420003979121 (Adições = 2) +D(53, 57) = 5608966628088457883 (Adições = 2) +D(53, 58) = 12722773456761171469 (Adições = 2) +D(53, 59) = 18269733387629842391 (Adições = 2) +D(53, 60) = 7275926422650456729 (Adições = 2) +D(53, 61) = 8354902770932501539 (Adições = 2) +D(53, 62) = 16817067791808108053 (Adições = 2) +D(53, 63) = 14824197142747083903 (Adições = 2) +D(53, 64) = 2427404925110301825 (Adições = 2) +D(53, 65) = 8091560206082496235 (Adições = 2) +D(53, 66) = 14111280936582559965 (Adições = 2) +D(53, 67) = 15914516386704066151 (Adições = 2) +D(53, 68) = 11546881245348557097 (Adições = 2) +D(53, 69) = 9796278043304666867 (Adições = 2) +D(53, 70) = 8700067194630140517 (Adições = 2) +D(53, 71) = 16534152043489048975 (Adições = 2) +D(53, 72) = 9579980342927631505 (Adições = 2) +D(53, 73) = 12155496856402470971 (Adições = 2) +D(53, 74) = 13067014331635764909 (Adições = 2) +D(53, 75) = 3088559528044532215 (Adições = 2) +D(53, 76) = 1709346363895210681 (Adições = 2) +D(53, 77) = 18120883389282834115 (Adições = 2) +D(53, 78) = 14957227346941364661 (Adições = 2) +D(53, 79) = 13865706921784730527 (Adições = 2) +D(53, 80) = 3800854495056392097 (Adições = 2) +D(53, 81) = 2546038956548570763 (Adições = 2) +D(53, 82) = 6401892075965075325 (Adições = 2) +D(53, 83) = 16324653595276923527 (Adições = 2) +D(53, 84) = 4500956397710098249 (Adições = 2) +D(53, 85) = 4219846665738451859 (Adições = 2) +D(53, 86) = 11200373204131855365 (Adições = 2) +D(53, 87) = 15190104288935531183 (Adições = 2) +D(53, 88) = 824655563379144113 (Adições = 2) +D(53, 89) = 51326168901794267 (Adições = 2) +D(53, 90) = 10919741164722264909 (Adições = 2) +D(53, 91) = 8633516860203771927 (Adições = 2) +D(53, 92) = 16230517786263152345 (Adições = 2) +D(53, 93) = 6189183682319267171 (Adições = 2) +D(53, 94) = 17608212490071992661 (Adições = 2) +D(53, 95) = 5373759271184230079 (Adições = 2) +D(53, 96) = 15728152766928852673 (Adições = 2) +D(53, 97) = 8785370296023464491 (Adições = 2) +D(53, 98) = 124984472073867805 (Adições = 2) +D(53, 99) = 6968405927122301607 (Adições = 2) +D(53, 100) = 10531408021167520105 (Adições = 2) +D(54, 0) = 1 (Adições = 0) +D(54, 1) = 109 (Adições = 2) +D(54, 2) = 5941 (Adições = 2) +D(54, 3) = 215929 (Adições = 2) +D(54, 4) = 5888521 (Adições = 2) +D(54, 5) = 128542501 (Adições = 2) +D(54, 6) = 2340095869 (Adições = 2) +D(54, 7) = 36548814961 (Adições = 2) +D(54, 8) = 500025187729 (Adições = 2) +D(54, 9) = 6088348442461 (Adições = 2) +D(54, 10) = 66813020691781 (Adições = 2) +D(54, 11) = 667591158166249 (Adições = 2) +D(54, 12) = 6125198288977561 (Adições = 2) +D(54, 13) = 51973669799734549 (Adições = 2) +D(54, 14) = 410339827566269581 (Adições = 2) +D(54, 15) = 3030311505461311201 (Adições = 2) +D(54, 16) = 2581946645589008673 (Adições = 2) +D(54, 17) = 8555866336440435789 (Adições = 2) +D(54, 18) = 5057711561609009493 (Adições = 2) +D(54, 19) = 9936174747760128089 (Adições = 2) +D(54, 20) = 5461420545063557417 (Adições = 2) +D(54, 21) = 6187407033980307717 (Adições = 2) +D(54, 22) = 15745242744598136733 (Adições = 2) +D(54, 23) = 7552204487008455505 (Adições = 2) +D(54, 24) = 7114997839818894001 (Adições = 2) +D(54, 25) = 5805237319409684285 (Adições = 2) +D(54, 26) = 11312960759510018917 (Adições = 2) +D(54, 27) = 703327097656927177 (Adições = 2) +D(54, 28) = 4423506325694351801 (Adições = 2) +D(54, 29) = 9672221356915989237 (Adições = 2) +D(54, 30) = 7444103983869411501 (Adições = 2) +D(54, 31) = 3401606289320314305 (Adições = 2) +D(54, 32) = 3810217597481802305 (Adições = 2) +D(54, 33) = 3026969869346873389 (Adições = 2) +D(54, 34) = 8519299994480079733 (Adições = 2) +D(54, 35) = 17349873178880077113 (Adições = 2) +D(54, 36) = 9060847912779624521 (Adições = 2) +D(54, 37) = 5184555763703415525 (Adições = 2) +D(54, 38) = 8645233808724271037 (Adições = 2) +D(54, 39) = 5564266679133275697 (Adições = 2) +D(54, 40) = 6989659997805744081 (Adições = 2) +D(54, 41) = 6013996194579879709 (Adições = 2) +D(54, 42) = 4862663861210960261 (Adições = 2) +D(54, 43) = 6617583978004458665 (Adições = 2) +D(54, 44) = 4795185926361017561 (Adições = 2) +D(54, 45) = 8247268960811507925 (Adições = 2) +D(54, 46) = 4182575646287447245 (Adições = 2) +D(54, 47) = 7567229185664101537 (Adições = 2) +D(54, 48) = 2832610855725804385 (Adições = 2) +D(54, 49) = 6937554915494237197 (Adições = 2) +D(54, 50) = 11259000487853286805 (Adições = 2) +D(54, 51) = 16758544707373482521 (Adições = 2) +D(54, 52) = 2537324556114468713 (Adições = 2) +D(54, 53) = 13655426183105254597 (Adições = 2) +D(54, 54) = 7849653530396643293 (Adições = 2) +D(54, 55) = 12193964454826187025 (Adições = 2) +D(54, 56) = 16950291616154455281 (Adições = 2) +D(54, 57) = 18179956590537340669 (Adições = 2) +D(54, 58) = 18064952601677418405 (Adições = 2) +D(54, 59) = 12163971298649329033 (Adições = 2) +D(54, 60) = 816142961510524921 (Adições = 2) +D(54, 61) = 16446972155093483189 (Adições = 2) +D(54, 62) = 4725454570414989549 (Adições = 2) +D(54, 63) = 17919975431260629889 (Adições = 2) +D(54, 64) = 16724833425408464001 (Adições = 2) +D(54, 65) = 8797054482891710445 (Adições = 2) +D(54, 66) = 12553151551847215029 (Adições = 2) +D(54, 67) = 5685460727714737913 (Adições = 2) +D(54, 68) = 14700114286057809545 (Adições = 2) +D(54, 69) = 17596529501001481893 (Adições = 2) +D(54, 70) = 17646130665226737661 (Adições = 2) +D(54, 71) = 5986861755926823921 (Adições = 2) +D(54, 72) = 13654250068633952785 (Adições = 2) +D(54, 73) = 16942983194254503645 (Adições = 2) +D(54, 74) = 5272006234873636293 (Adições = 2) +D(54, 75) = 2980836020844381801 (Adições = 2) +D(54, 76) = 7778741912784124697 (Adições = 2) +D(54, 77) = 9162227592252617877 (Adições = 2) +D(54, 78) = 5346850181057713421 (Adições = 2) +D(54, 79) = 15723040376074256993 (Adições = 2) +D(54, 80) = 14942857719205828001 (Adições = 2) +D(54, 81) = 2843007097101239245 (Adições = 2) +D(54, 82) = 11790938129614885333 (Adições = 2) +D(54, 83) = 16070739727147332569 (Adições = 2) +D(54, 84) = 2861572715251113 (Adições = 2) +D(54, 85) = 8723664636163801221 (Adições = 2) +D(54, 86) = 5697140432324556829 (Adições = 2) +D(54, 87) = 13640873851682391761 (Adições = 2) +D(54, 88) = 11208889630287515441 (Adições = 2) +D(54, 89) = 12084871362568453821 (Adições = 2) +D(54, 90) = 4609194622482961381 (Adições = 2) +D(54, 91) = 5715708573699446601 (Adições = 2) +D(54, 92) = 12132999146456819257 (Adições = 2) +D(54, 93) = 16105956541329687157 (Adições = 2) +D(54, 94) = 3009864566301843757 (Adições = 2) +D(54, 95) = 7545092253848514881 (Adições = 2) +D(54, 96) = 10200260218252046017 (Adições = 2) +D(54, 97) = 16267039207494811565 (Adições = 2) +D(54, 98) = 6730649901882592245 (Adições = 2) +D(54, 99) = 13824040301078761657 (Adições = 2) +D(54, 100) = 12877110175659031753 (Adições = 2) +D(55, 0) = 1 (Adições = 0) +D(55, 1) = 111 (Adições = 2) +D(55, 2) = 6161 (Adições = 2) +D(55, 3) = 228031 (Adições = 2) +D(55, 4) = 6332481 (Adições = 2) +D(55, 5) = 140763503 (Adições = 2) +D(55, 6) = 2609401873 (Adições = 2) +D(55, 7) = 41498312703 (Adições = 2) +D(55, 8) = 578072315393 (Adições = 2) +D(55, 9) = 7166445945583 (Adições = 2) +D(55, 10) = 80067815079825 (Adições = 2) +D(55, 11) = 814471993937855 (Adições = 2) +D(55, 12) = 7607261441081665 (Adições = 2) +D(55, 13) = 65706129529793775 (Adições = 2) +D(55, 14) = 528019626895797905 (Adições = 2) +D(55, 15) = 3968670959923378687 (Adições = 2) +D(55, 16) = 9580929110973698561 (Adições = 2) +D(55, 17) = 2271998019293591407 (Adições = 2) +D(55, 18) = 15885575917343036689 (Adições = 2) +D(55, 19) = 12432718153002622655 (Adições = 2) +D(55, 20) = 9383569372116756545 (Adições = 2) +D(55, 21) = 2585652877451070063 (Adições = 2) +D(55, 22) = 6071558582319962897 (Adições = 2) +D(55, 23) = 10922261740217003519 (Adições = 2) +D(55, 24) = 7142719993334801409 (Adições = 2) +D(55, 25) = 1616211078853828079 (Adições = 2) +D(55, 26) = 287665084063979665 (Adições = 2) +D(55, 27) = 12303952941230925759 (Adições = 2) +D(55, 28) = 17430786364582204737 (Adições = 2) +D(55, 29) = 13079769973482994159 (Adições = 2) +D(55, 30) = 11749351240558843281 (Adições = 2) +D(55, 31) = 4148317440039017471 (Adições = 2) +D(55, 32) = 11360141326841134081 (Adições = 2) +D(55, 33) = 18197328793669809775 (Adições = 2) +D(55, 34) = 11296854583787211281 (Adições = 2) +D(55, 35) = 272539609728264895 (Adições = 2) +D(55, 36) = 8236516627678414913 (Adições = 2) +D(55, 37) = 4035176230451903343 (Adições = 2) +D(55, 38) = 17864965802879589905 (Adições = 2) +D(55, 39) = 13627722217027585023 (Adições = 2) +D(55, 40) = 7734904820257053185 (Adições = 2) +D(55, 41) = 2291816938933125359 (Adições = 2) +D(55, 42) = 13168476994723965329 (Adições = 2) +D(55, 43) = 6201980760229832639 (Adições = 2) +D(55, 44) = 17614750664595308865 (Adições = 2) +D(55, 45) = 12210461478058282735 (Adições = 2) +D(55, 46) = 6193562011447686289 (Adições = 2) +D(55, 47) = 17943366843399235071 (Adições = 2) +D(55, 48) = 9896462811079589377 (Adições = 2) +D(55, 49) = 1219884508590079343 (Adições = 2) +D(55, 50) = 969695838228051729 (Adições = 2) +D(55, 51) = 10540496959745269439 (Adições = 2) +D(55, 52) = 11389622149523669057 (Adições = 2) +D(55, 53) = 9135628815033840751 (Adições = 2) +D(55, 54) = 12193964454826187025 (Adições = 2) +D(55, 55) = 13790838366339465727 (Adições = 2) +D(55, 56) = 6041606289901004801 (Adições = 2) +D(55, 57) = 4278366349173697519 (Adições = 2) +D(55, 58) = 3629787393969353361 (Adições = 2) +D(55, 59) = 15411967220586549183 (Adições = 2) +D(55, 60) = 9945337407036851521 (Adições = 2) +D(55, 61) = 8761708449931308015 (Adições = 2) +D(55, 62) = 11487391101730229137 (Adições = 2) +D(55, 63) = 15686077029696296959 (Adições = 2) +D(55, 64) = 13437397738946287617 (Adições = 2) +D(55, 65) = 2065797499827358831 (Adições = 2) +D(55, 66) = 4969259460856732689 (Adições = 2) +D(55, 67) = 4761127666709134015 (Adições = 2) +D(55, 68) = 6699958606772129857 (Adições = 2) +D(55, 69) = 2103114246412318063 (Adições = 2) +D(55, 70) = 452286265221434385 (Adições = 2) +D(55, 71) = 5638534612665444351 (Adições = 2) +D(55, 72) = 6832902363516669441 (Adições = 2) +D(55, 73) = 536647478986022639 (Adições = 2) +D(55, 74) = 4304892834404610961 (Adições = 2) +D(55, 75) = 12557735090122629055 (Adições = 2) +D(55, 76) = 4870568950041583937 (Adições = 2) +D(55, 77) = 3364794381368774895 (Adições = 2) +D(55, 78) = 17873872154679106193 (Adições = 2) +D(55, 79) = 2050274564391973375 (Adições = 2) +D(55, 80) = 14269428585962506753 (Adições = 2) +D(55, 81) = 13608549328560022383 (Adições = 2) +D(55, 82) = 9795750481566595345 (Adições = 2) +D(55, 83) = 763940190909710015 (Adições = 2) +D(55, 84) = 16837541490772293697 (Adições = 2) +D(55, 85) = 7117323625941794415 (Adições = 2) +D(55, 86) = 3091384620720600849 (Adições = 2) +D(55, 87) = 3982654831017997823 (Adições = 2) +D(55, 88) = 10385674239278353409 (Adições = 2) +D(55, 89) = 15232691158424771055 (Adições = 2) +D(55, 90) = 13480013069766634641 (Adições = 2) +D(55, 91) = 5358172192239491007 (Adições = 2) +D(55, 92) = 4760135838686205249 (Adições = 2) +D(55, 93) = 14552347452763160047 (Adições = 2) +D(55, 94) = 15221424486685139345 (Adições = 2) +D(55, 95) = 7329637233125946367 (Adições = 2) +D(55, 96) = 6628245631516955649 (Adições = 2) +D(55, 97) = 14648800983554261615 (Adições = 2) +D(55, 98) = 753001945512562193 (Adições = 2) +D(55, 99) = 2860948074764364479 (Adições = 2) +D(55, 100) = 11115354477792606273 (Adições = 2) +D(56, 0) = 1 (Adições = 0) +D(56, 1) = 113 (Adições = 2) +D(56, 2) = 6385 (Adições = 2) +D(56, 3) = 240577 (Adições = 2) +D(56, 4) = 6801089 (Adições = 2) +D(56, 5) = 153897073 (Adições = 2) +D(56, 6) = 2904062449 (Adições = 2) +D(56, 7) = 47011777025 (Adições = 2) +D(56, 8) = 666582405121 (Adições = 2) +D(56, 9) = 8411100666097 (Adições = 2) +D(56, 10) = 95645361691505 (Adições = 2) +D(56, 11) = 990185170709185 (Adições = 2) +D(56, 12) = 9411918605728705 (Adições = 2) +D(56, 13) = 82725309576604145 (Adições = 2) +D(56, 14) = 676451066002195825 (Adições = 2) +D(56, 15) = 5173141652821372417 (Adições = 2) +D(56, 16) = 275997650008898049 (Adições = 2) +D(56, 17) = 12128924780276188017 (Adições = 2) +D(56, 18) = 11839754643203264497 (Adições = 2) +D(56, 19) = 3264560566129820609 (Adições = 2) +D(56, 20) = 6634104017539648193 (Adições = 2) +D(56, 21) = 156582193397923185 (Adições = 2) +D(56, 22) = 8813793653168956145 (Adições = 2) +D(56, 23) = 7360869901996370945 (Adições = 2) +D(56, 24) = 6979107561838624257 (Adições = 2) +D(56, 25) = 15738038634027253745 (Adições = 2) +D(56, 26) = 17641914796945061489 (Adições = 2) +D(56, 27) = 11786788748530415297 (Adições = 2) +D(56, 28) = 4628039906924442561 (Adições = 2) +D(56, 29) = 16691852171280089841 (Adições = 2) +D(56, 30) = 4627485237902824049 (Adições = 2) +D(56, 31) = 2078409844791133185 (Adições = 2) +D(56, 32) = 17586868611671284737 (Adições = 2) +D(56, 33) = 10250850584763125361 (Adições = 2) +D(56, 34) = 2851545814801043185 (Adições = 2) +D(56, 35) = 14420940008316519361 (Adições = 2) +D(56, 36) = 4483252172013647553 (Adições = 2) +D(56, 37) = 16754945030143965809 (Adições = 2) +D(56, 38) = 1761598916056355825 (Adições = 2) +D(56, 39) = 14807542862253979137 (Adições = 2) +D(56, 40) = 17723425825829065729 (Adições = 2) +D(56, 41) = 9303403511309692657 (Adições = 2) +D(56, 42) = 6316953371257231729 (Adições = 2) +D(56, 43) = 7240667052501478081 (Adições = 2) +D(56, 44) = 12610654403617067969 (Adições = 2) +D(56, 45) = 5542378398851556337 (Adições = 2) +D(56, 46) = 5499657814647973745 (Adições = 2) +D(56, 47) = 11189842595785343489 (Adições = 2) +D(56, 48) = 2136184102845064705 (Adições = 2) +D(56, 49) = 13252531422514733425 (Adições = 2) +D(56, 50) = 15442111769332864497 (Adições = 2) +D(56, 51) = 8505560493596634049 (Adições = 2) +D(56, 52) = 11988935529156020929 (Adições = 2) +D(56, 53) = 14067442420003979121 (Adições = 2) +D(56, 54) = 16950291616154455281 (Adições = 2) +D(56, 55) = 6041606289901004801 (Adições = 2) +D(56, 56) = 7427306872431923713 (Adições = 2) +D(56, 57) = 17747279511506626033 (Adições = 2) +D(56, 58) = 7208689180940125297 (Adições = 2) +D(56, 59) = 7803699721786476225 (Adições = 2) +D(56, 60) = 14714260275700325313 (Adições = 2) +D(56, 61) = 14974562058958933233 (Adições = 2) +D(56, 62) = 16776917536910918769 (Adições = 2) +D(56, 63) = 7056897520918341633 (Adições = 2) +D(56, 64) = 17733628215851374593 (Adições = 2) +D(56, 65) = 14790079380915469425 (Adições = 2) +D(56, 66) = 3378392267890009329 (Adições = 2) +D(56, 67) = 13108779395455876033 (Adições = 2) +D(56, 68) = 6123121595227588289 (Adições = 2) +D(56, 69) = 14926194448412036209 (Adições = 2) +D(56, 70) = 17481594960045788657 (Adições = 2) +D(56, 71) = 5125671764223115777 (Adições = 2) +D(56, 72) = 17597108740405229569 (Adições = 2) +D(56, 73) = 6519914509198370033 (Adições = 2) +D(56, 74) = 11361454822589003633 (Adições = 2) +D(56, 75) = 9777338673406692033 (Adições = 2) +D(56, 76) = 8758898639861353409 (Adições = 2) +D(56, 77) = 16994261971271712241 (Adições = 2) +D(56, 78) = 1339440359900490097 (Adições = 2) +D(56, 79) = 2816843005262018049 (Adições = 2) +D(56, 80) = 689802081906946561 (Adições = 2) +D(56, 81) = 10121035922719924081 (Adições = 2) +D(56, 82) = 15078591659136990193 (Adições = 2) +D(56, 83) = 7191538257903743937 (Adições = 2) +D(56, 84) = 6346275865876196033 (Adições = 2) +D(56, 85) = 11854396908880732529 (Adições = 2) +D(56, 86) = 3616361081833576177 (Adições = 2) +D(56, 87) = 10690400533572174849 (Adições = 2) +D(56, 88) = 6611985530158974465 (Adições = 2) +D(56, 89) = 13783606854152547313 (Adições = 2) +D(56, 90) = 5602822934924849777 (Adições = 2) +D(56, 91) = 5994264123221423809 (Adições = 2) +D(56, 92) = 16112572154147120065 (Adições = 2) +D(56, 93) = 16978311371886933745 (Adições = 2) +D(56, 94) = 9858595163916129905 (Adições = 2) +D(56, 95) = 13962912810017664001 (Adições = 2) +D(56, 96) = 9474051600951014401 (Adições = 2) +D(56, 97) = 12304354142312680049 (Adições = 2) +D(56, 98) = 9259412997669952241 (Adições = 2) +D(56, 99) = 12873363017946878913 (Adições = 2) +D(56, 100) = 8402921496794298049 (Adições = 2) +D(57, 0) = 1 (Adições = 0) +D(57, 1) = 115 (Adições = 2) +D(57, 2) = 6613 (Adições = 2) +D(57, 3) = 253575 (Adições = 2) +D(57, 4) = 7295241 (Adições = 2) +D(57, 5) = 167993403 (Adições = 2) +D(57, 6) = 3225952925 (Adições = 2) +D(57, 7) = 53141792399 (Adições = 2) +D(57, 8) = 766735974545 (Adições = 2) +D(57, 9) = 9844419045763 (Adições = 2) +D(57, 10) = 113900881403365 (Adições = 2) +D(57, 11) = 1199731413804055 (Adições = 2) +D(57, 12) = 11601835190241945 (Adições = 2) +D(57, 13) = 103739063372574795 (Adições = 2) +D(57, 14) = 862915438951374765 (Adições = 2) +D(57, 15) = 6712508157774943007 (Adições = 2) +D(57, 16) = 12161647460605213473 (Adições = 2) +D(57, 17) = 6119825817180747923 (Adições = 2) +D(57, 18) = 11641761166950648821 (Adições = 2) +D(57, 19) = 8299332302574182311 (Adições = 2) +D(57, 20) = 18197996886243651113 (Adições = 2) +D(57, 21) = 6541939023471670875 (Adições = 2) +D(57, 22) = 15512314870038550205 (Adições = 2) +D(57, 23) = 13240234351494325679 (Adições = 2) +D(57, 24) = 9133467741619769265 (Adições = 2) +D(57, 25) = 13403869863776095651 (Adições = 2) +D(57, 26) = 9890335147329307653 (Adições = 2) +D(57, 27) = 2425550545385681207 (Adições = 2) +D(57, 28) = 393635127130987449 (Adições = 2) +D(57, 29) = 3266783131625968235 (Adições = 2) +D(57, 30) = 6139376467099330509 (Adições = 2) +D(57, 31) = 12845271549793287743 (Adições = 2) +D(57, 32) = 14063805932546154049 (Adições = 2) +D(57, 33) = 5008036981561460915 (Adições = 2) +D(57, 34) = 18110433381125629461 (Adições = 2) +D(57, 35) = 16936175130533640391 (Adições = 2) +D(57, 36) = 17393623237154255689 (Adições = 2) +D(57, 37) = 1738332291892765819 (Adições = 2) +D(57, 38) = 1808132164383535837 (Adições = 2) +D(57, 39) = 18377273942693870799 (Adições = 2) +D(57, 40) = 14014754483357812433 (Adições = 2) +D(57, 41) = 4148095673077467587 (Adições = 2) +D(57, 42) = 1321708481934840357 (Adições = 2) +D(57, 43) = 14879328905693550167 (Adições = 2) +D(57, 44) = 16283906288102544601 (Adições = 2) +D(57, 45) = 15990195016861617291 (Adições = 2) +D(57, 46) = 8585487156651595757 (Adições = 2) +D(57, 47) = 6828243493375361375 (Adições = 2) +D(57, 48) = 1707526118296217953 (Adições = 2) +D(57, 49) = 17096241643656016083 (Adições = 2) +D(57, 50) = 8897396688084510773 (Adições = 2) +D(57, 51) = 14398324877304457703 (Adições = 2) +D(57, 52) = 16446076826347561065 (Adições = 2) +D(57, 53) = 5608966628088457883 (Adições = 2) +D(57, 54) = 18179956590537340669 (Adições = 2) +D(57, 55) = 4278366349173697519 (Adições = 2) +D(57, 56) = 17747279511506626033 (Adições = 2) +D(57, 57) = 6028377748026072547 (Adições = 2) +D(57, 58) = 12537602366763272261 (Adições = 2) +D(57, 59) = 9103247195780322167 (Adições = 2) +D(57, 60) = 13174463119557572089 (Adições = 2) +D(57, 61) = 5969797306797727403 (Adições = 2) +D(57, 62) = 827788755248476173 (Adições = 2) +D(57, 63) = 6214859739368184959 (Adições = 2) +D(57, 64) = 12558641402428349569 (Adições = 2) +D(57, 65) = 8188860851776090355 (Adições = 2) +D(57, 66) = 7910588426872017493 (Adições = 2) +D(57, 67) = 5951016016508351239 (Adições = 2) +D(57, 68) = 6736172933482263945 (Adições = 2) +D(57, 69) = 9338744903412336827 (Adições = 2) +D(57, 70) = 4853046164451058461 (Adições = 2) +D(57, 71) = 9013568815010411279 (Adições = 2) +D(57, 72) = 13289605245929205009 (Adições = 2) +D(57, 73) = 513140348113701379 (Adições = 2) +D(57, 74) = 18394509679901075045 (Adições = 2) +D(57, 75) = 2639815028477667479 (Adições = 2) +D(57, 76) = 2729308268036161305 (Adições = 2) +D(57, 77) = 10035724805459675339 (Adições = 2) +D(57, 78) = 9922683062922326061 (Adições = 2) +D(57, 79) = 14078966428084834207 (Adições = 2) +D(57, 80) = 17585611515253798817 (Adições = 2) +D(57, 81) = 9949705446171117843 (Adições = 2) +D(57, 82) = 16702588954318480501 (Adições = 2) +D(57, 83) = 2079230723940111399 (Adições = 2) +D(57, 84) = 15617044847720051369 (Adições = 2) +D(57, 85) = 15370973548767428315 (Adições = 2) +D(57, 86) = 12394987465772185405 (Adições = 2) +D(57, 87) = 8255005007468384815 (Adições = 2) +D(57, 88) = 7110646997489982513 (Adições = 2) +D(57, 89) = 9059495308091952675 (Adições = 2) +D(57, 90) = 9999181023459798149 (Adições = 2) +D(57, 91) = 3149524007896520119 (Adições = 2) +D(57, 92) = 6809616211555512377 (Adições = 2) +D(57, 93) = 3007011590170462955 (Adições = 2) +D(57, 94) = 11397174052263974989 (Adições = 2) +D(57, 95) = 16771937952488217279 (Adições = 2) +D(57, 96) = 3315414216037792449 (Adições = 2) +D(57, 97) = 6647075885591935283 (Adições = 2) +D(57, 98) = 9764098951865015957 (Adições = 2) +D(57, 99) = 13450130893772295495 (Adições = 2) +D(57, 100) = 16279671334803920841 (Adições = 2) +D(58, 0) = 1 (Adições = 0) +D(58, 1) = 117 (Adições = 2) +D(58, 2) = 6845 (Adições = 2) +D(58, 3) = 267033 (Adições = 2) +D(58, 4) = 7815849 (Adições = 2) +D(58, 5) = 183104493 (Adições = 2) +D(58, 6) = 3577050821 (Adições = 2) +D(58, 7) = 59944796145 (Adições = 2) +D(58, 8) = 879822563089 (Adições = 2) +D(58, 9) = 11490977583397 (Adições = 2) +D(58, 10) = 135236278032525 (Adições = 2) +D(58, 11) = 1448868573239945 (Adições = 2) +D(58, 12) = 14250435177285945 (Adições = 2) +D(58, 13) = 129591333740102685 (Adições = 2) +D(58, 14) = 1096245836064052245 (Adições = 2) +D(58, 15) = 8671669432790370017 (Adições = 2) +D(58, 16) = 9099080977460974881 (Adições = 2) +D(58, 17) = 8933810181537384661 (Adições = 2) +D(58, 18) = 8248653091959229789 (Adições = 2) +D(58, 19) = 9743002487774509305 (Adições = 2) +D(58, 20) = 17793587602882791113 (Adições = 2) +D(58, 21) = 5640035365179009869 (Adições = 2) +D(58, 22) = 9247545184979679333 (Adições = 2) +D(58, 23) = 1106606259093451985 (Adições = 2) +D(58, 24) = 5033564278497995313 (Adições = 2) +D(58, 25) = 9124157810184308613 (Adições = 2) +D(58, 26) = 13971618747580160301 (Adições = 2) +D(58, 27) = 7840760366585597545 (Adições = 2) +D(58, 28) = 10659946039102266201 (Adições = 2) +D(58, 29) = 14320364297859221885 (Adições = 2) +D(58, 30) = 5279779822874969013 (Adições = 2) +D(58, 31) = 5817683766058035649 (Adições = 2) +D(58, 32) = 14280017174687925825 (Adições = 2) +D(58, 33) = 14905116015085989173 (Adições = 2) +D(58, 34) = 1130098230353976317 (Adições = 2) +D(58, 35) = 17729962668303694553 (Adições = 2) +D(58, 36) = 15166272888572487401 (Adições = 2) +D(58, 37) = 15851484343909957293 (Adições = 2) +D(58, 38) = 951204726476707333 (Adições = 2) +D(58, 39) = 2689866759844562353 (Adições = 2) +D(58, 40) = 16635151112186693969 (Adições = 2) +D(58, 41) = 16351257194912422373 (Adições = 2) +D(58, 42) = 3374317276215178701 (Adições = 2) +D(58, 43) = 1128610590134017609 (Adições = 2) +D(58, 44) = 13845101710220560761 (Adições = 2) +D(58, 45) = 9225714867765619421 (Adições = 2) +D(58, 46) = 15354652967569280853 (Adições = 2) +D(58, 47) = 12321639543886686369 (Adições = 2) +D(58, 48) = 2410665081848714081 (Adições = 2) +D(58, 49) = 2767688770091396501 (Adições = 2) +D(58, 50) = 10314583028122371741 (Adições = 2) +D(58, 51) = 15163560519801788601 (Adições = 2) +D(58, 52) = 9114474076034704137 (Adições = 2) +D(58, 53) = 12722773456761171469 (Adições = 2) +D(58, 54) = 18064952601677418405 (Adições = 2) +D(58, 55) = 3629787393969353361 (Adições = 2) +D(58, 56) = 7208689180940125297 (Adições = 2) +D(58, 57) = 12537602366763272261 (Adições = 2) +D(58, 58) = 12656838407843065453 (Adições = 2) +D(58, 59) = 15850943896677108265 (Adições = 2) +D(58, 60) = 1235166064595899289 (Adições = 2) +D(58, 61) = 1932682417241647165 (Adições = 2) +D(58, 62) = 8730268479287850741 (Adições = 2) +D(58, 63) = 15772916973904511873 (Adições = 2) +D(58, 64) = 16099674041991494785 (Adições = 2) +D(58, 65) = 18400432222486383093 (Adições = 2) +D(58, 66) = 16053137427424939325 (Adições = 2) +D(58, 67) = 11467997797095756441 (Adições = 2) +D(58, 68) = 5708442673376820009 (Adições = 2) +D(58, 69) = 3336616436561869165 (Adições = 2) +D(58, 70) = 17528407504425264453 (Adições = 2) +D(58, 71) = 12948278410177182577 (Adições = 2) +D(58, 72) = 16804708397407247249 (Adições = 2) +D(58, 73) = 12160709917740602021 (Adições = 2) +D(58, 74) = 12621615872045826829 (Adições = 2) +D(58, 75) = 15209196506715017737 (Adições = 2) +D(58, 76) = 2131575729519294905 (Adições = 2) +D(58, 77) = 14896608803015131549 (Adições = 2) +D(58, 78) = 16408272597687581333 (Adições = 2) +D(58, 79) = 3516433941275638369 (Adições = 2) +D(58, 80) = 16734267810904719777 (Adições = 2) +D(58, 81) = 7376096624910533205 (Adições = 2) +D(58, 82) = 15581646951690579933 (Adições = 2) +D(58, 83) = 15916722556239620217 (Adições = 2) +D(58, 84) = 15166254054190231369 (Adições = 2) +D(58, 85) = 9260784303258607821 (Adições = 2) +D(58, 86) = 133257170379118309 (Adições = 2) +D(58, 87) = 2336505569910136913 (Adições = 2) +D(58, 88) = 17702157574868504241 (Adições = 2) +D(58, 89) = 15425555806740887813 (Adições = 2) +D(58, 90) = 16037488064583087021 (Adições = 2) +D(58, 91) = 10739449022229853673 (Adições = 2) +D(58, 92) = 2251845167972334553 (Adições = 2) +D(58, 93) = 12068472969698309885 (Adições = 2) +D(58, 94) = 8025914538423196213 (Adições = 2) +D(58, 95) = 17748282469465836865 (Adições = 2) +D(58, 96) = 942146490572743361 (Adições = 2) +D(58, 97) = 10904636592202471093 (Adições = 2) +D(58, 98) = 8869067355949870717 (Adições = 2) +D(58, 99) = 13636553127877630553 (Adições = 2) +D(58, 100) = 6472867209034743657 (Adições = 2) +D(59, 0) = 1 (Adições = 0) +D(59, 1) = 119 (Adições = 2) +D(59, 2) = 7081 (Adições = 2) +D(59, 3) = 280959 (Adições = 2) +D(59, 4) = 8363841 (Adições = 2) +D(59, 5) = 199284183 (Adições = 2) +D(59, 6) = 3959439497 (Adições = 2) +D(59, 7) = 67481286463 (Adições = 2) +D(59, 8) = 1007248645697 (Adições = 2) +D(59, 9) = 13378048792183 (Adições = 2) +D(59, 10) = 160105304408105 (Adições = 2) +D(59, 11) = 1744210155680575 (Adições = 2) +D(59, 12) = 17443513906206465 (Adições = 2) +D(59, 13) = 161285282823595095 (Adições = 2) +D(59, 14) = 1387122452627750025 (Adições = 2) +D(59, 15) = 11155037721482172287 (Adições = 2) +D(59, 16) = 10479044058023965569 (Adições = 2) +D(59, 17) = 10065191143312773495 (Adições = 2) +D(59, 18) = 8800910343099836329 (Adições = 2) +D(59, 19) = 8345821849124023807 (Adições = 2) +D(59, 20) = 17435667866071772609 (Adições = 2) +D(59, 21) = 3975802686714470359 (Adições = 2) +D(59, 22) = 416639163163607945 (Adições = 2) +D(59, 23) = 10770790607236739263 (Adições = 2) +D(59, 24) = 16910961144828186561 (Adições = 2) +D(59, 25) = 12621939159800938871 (Adições = 2) +D(59, 26) = 17270971643855856169 (Adições = 2) +D(59, 27) = 2189862610602510783 (Adições = 2) +D(59, 28) = 2243824942580822913 (Adições = 2) +D(59, 29) = 8777391205832759383 (Adições = 2) +D(59, 30) = 9930791252857398665 (Adições = 2) +D(59, 31) = 2581510768080851711 (Adições = 2) +D(59, 32) = 4232467635117261569 (Adições = 2) +D(59, 33) = 14970856751181624951 (Adições = 2) +D(59, 34) = 12559326922912038825 (Adições = 2) +D(59, 35) = 12972643747860158079 (Adições = 2) +D(59, 36) = 8975391157317236801 (Adições = 2) +D(59, 37) = 3099660242380578263 (Adições = 2) +D(59, 38) = 1455605239057691273 (Adições = 2) +D(59, 39) = 5096676725378960959 (Adições = 2) +D(59, 40) = 5974950523700665665 (Adições = 2) +D(59, 41) = 2067870683380678775 (Adições = 2) +D(59, 42) = 3346701080798728233 (Adições = 2) +D(59, 43) = 7849628947147924543 (Adições = 2) +D(59, 44) = 4376597173792951297 (Adições = 2) +D(59, 45) = 9000669678069579863 (Adições = 2) +D(59, 46) = 15134293439694928521 (Adições = 2) +D(59, 47) = 5917097803731792511 (Adições = 2) +D(59, 48) = 2202658355757641345 (Adições = 2) +D(59, 49) = 7381012207697751927 (Adições = 2) +D(59, 50) = 2016539932201968553 (Adições = 2) +D(59, 51) = 9047939406416577279 (Adições = 2) +D(59, 52) = 14879229928543518401 (Adições = 2) +D(59, 53) = 18269733387629842391 (Adições = 2) +D(59, 54) = 12163971298649329033 (Adições = 2) +D(59, 55) = 15411967220586549183 (Adições = 2) +D(59, 56) = 7803699721786476225 (Adições = 2) +D(59, 57) = 9103247195780322167 (Adições = 2) +D(59, 58) = 15850943896677108265 (Adições = 2) +D(59, 59) = 7465238053778178751 (Adições = 2) +D(59, 60) = 6104603941341634689 (Adições = 2) +D(59, 61) = 9272452423179181143 (Adições = 2) +D(59, 62) = 1488659245999127433 (Adições = 2) +D(59, 63) = 7545100625481938431 (Adições = 2) +D(59, 64) = 2524203493958841857 (Adições = 2) +D(59, 65) = 130821611017616503 (Adições = 2) +D(59, 66) = 16137647187219387305 (Adições = 2) +D(59, 67) = 6765294264320979839 (Adições = 2) +D(59, 68) = 5494990661084004673 (Adições = 2) +D(59, 69) = 14540049771022693847 (Adições = 2) +D(59, 70) = 16958329638300275849 (Adições = 2) +D(59, 71) = 10541527405483619647 (Adições = 2) +D(59, 72) = 3401026065648946241 (Adições = 2) +D(59, 73) = 13919700307087243895 (Adições = 2) +D(59, 74) = 1808537949454569513 (Adições = 2) +D(59, 75) = 11192606254505862463 (Adições = 2) +D(59, 76) = 10086634417030623489 (Adições = 2) +D(59, 77) = 8668074875855498327 (Adições = 2) +D(59, 78) = 3079468129139107977 (Adições = 2) +D(59, 79) = 4557430594392776063 (Adições = 2) +D(59, 80) = 6361388272863582593 (Adições = 2) +D(59, 81) = 12025008634969283959 (Adições = 2) +D(59, 82) = 16536008137860845481 (Adições = 2) +D(59, 83) = 11140889498371942399 (Adições = 2) +D(59, 84) = 5330377961382690753 (Adições = 2) +D(59, 85) = 11310672245121978327 (Adições = 2) +D(59, 86) = 2257969645050152841 (Adições = 2) +D(59, 87) = 4727732385339408063 (Adições = 2) +D(59, 88) = 6319651456408497601 (Adições = 2) +D(59, 89) = 2553876690598786423 (Adições = 2) +D(59, 90) = 15570176488213209641 (Adições = 2) +D(59, 91) = 5453625427607047103 (Adições = 2) +D(59, 92) = 18444919617809235329 (Adições = 2) +D(59, 93) = 14318493681770328151 (Adições = 2) +D(59, 94) = 15966137116182282633 (Adições = 2) +D(59, 95) = 4846845976652212479 (Adições = 2) +D(59, 96) = 5090530862981241089 (Adições = 2) +D(59, 97) = 16937313945756455543 (Adições = 2) +D(59, 98) = 18264273820199245737 (Adições = 2) +D(59, 99) = 3876406156607643775 (Adições = 2) +D(59, 100) = 5539082419810466369 (Adições = 2) +D(60, 0) = 1 (Adições = 0) +D(60, 1) = 121 (Adições = 2) +D(60, 2) = 7321 (Adições = 2) +D(60, 3) = 295361 (Adições = 2) +D(60, 4) = 8940161 (Adições = 2) +D(60, 5) = 216588185 (Adições = 2) +D(60, 6) = 4375311865 (Adições = 2) +D(60, 7) = 75816037825 (Adições = 2) +D(60, 8) = 1150545969985 (Adições = 2) +D(60, 9) = 15535843407865 (Adições = 2) +D(60, 10) = 189019196608153 (Adições = 2) +D(60, 11) = 2093334656696833 (Adições = 2) +D(60, 12) = 21281058718583873 (Adições = 2) +D(60, 13) = 200009855448385433 (Adições = 2) +D(60, 14) = 1748417590899730553 (Adições = 2) +D(60, 15) = 14290577765009652865 (Adições = 2) +D(60, 16) = 17477915470806239105 (Adições = 2) +D(60, 17) = 1128662524723874937 (Adições = 2) +D(60, 18) = 1548019937426933145 (Adições = 2) +D(60, 19) = 248008055941241665 (Adições = 2) +D(60, 20) = 7582753697427486465 (Adições = 2) +D(60, 21) = 10547480176504177817 (Adições = 2) +D(60, 22) = 14939922026382256121 (Adições = 2) +D(60, 23) = 7680607723073051713 (Adições = 2) +D(60, 24) = 16915615401428425921 (Adições = 2) +D(60, 25) = 9555027558638448121 (Adições = 2) +D(60, 26) = 2554450214876139929 (Adições = 2) +D(60, 27) = 3568540395624955265 (Adições = 2) +D(60, 28) = 8002227948808288961 (Adições = 2) +D(60, 29) = 576700023512319641 (Adições = 2) +D(60, 30) = 838138408492926073 (Adições = 2) +D(60, 31) = 13350440429431176449 (Adições = 2) +D(60, 32) = 1717674758919738113 (Adições = 2) +D(60, 33) = 2474255071509073017 (Adições = 2) +D(60, 34) = 11557694671893185177 (Adições = 2) +D(60, 35) = 196177195246278849 (Adições = 2) +D(60, 36) = 3697468026714122113 (Adições = 2) +D(60, 37) = 15772519426411937177 (Adições = 2) +D(60, 38) = 1881040834140655097 (Adições = 2) +D(60, 39) = 8433322798577307329 (Adições = 2) +D(60, 40) = 1058205973947382337 (Adições = 2) +D(60, 41) = 9101027181028726777 (Adições = 2) +D(60, 42) = 14515598945208133785 (Adições = 2) +D(60, 43) = 7265184899445234945 (Adições = 2) +D(60, 44) = 1044666946676559169 (Adições = 2) +D(60, 45) = 14421933798539090329 (Adições = 2) +D(60, 46) = 1663408768884495481 (Adições = 2) +D(60, 47) = 4268055938601664897 (Adições = 2) +D(60, 48) = 12387812098091098753 (Adições = 2) +D(60, 49) = 3524738587836940409 (Adições = 2) +D(60, 50) = 12922290727736660889 (Adições = 2) +D(60, 51) = 5540025992645655105 (Adições = 2) +D(60, 52) = 11020451253896199169 (Adições = 2) +D(60, 53) = 7275926422650456729 (Adições = 2) +D(60, 54) = 816142961510524921 (Adições = 2) +D(60, 55) = 9945337407036851521 (Adições = 2) +D(60, 56) = 14714260275700325313 (Adições = 2) +D(60, 57) = 13174463119557572089 (Adições = 2) +D(60, 58) = 1235166064595899289 (Adições = 2) +D(60, 59) = 6104603941341634689 (Adições = 2) +D(60, 60) = 1227701862751896513 (Adições = 2) +D(60, 61) = 16604758227272712345 (Adições = 2) +D(60, 62) = 8919125822741469305 (Adições = 2) +D(60, 63) = 17952885694222535169 (Adições = 2) +D(60, 64) = 9575445739953763841 (Adições = 2) +D(60, 65) = 12230470844930222201 (Adições = 2) +D(60, 66) = 10052195569457674393 (Adições = 2) +D(60, 67) = 14508392947288489921 (Adições = 2) +D(60, 68) = 8321933798983922817 (Adições = 2) +D(60, 69) = 9910230157381069721 (Adições = 2) +D(60, 70) = 4515121419284936185 (Adições = 2) +D(60, 71) = 13568234389359280065 (Adições = 2) +D(60, 72) = 9064043786782294337 (Adições = 2) +D(60, 73) = 7938026085808932857 (Adições = 2) +D(60, 74) = 5219520268641194649 (Adições = 2) +D(60, 75) = 18220664472601626625 (Adições = 2) +D(60, 76) = 2606416996719009345 (Adições = 2) +D(60, 77) = 2914382215895579545 (Adições = 2) +D(60, 78) = 14661925220890185849 (Adições = 2) +D(60, 79) = 3852079870712518273 (Adições = 2) +D(60, 80) = 14770898737968876929 (Adições = 2) +D(60, 81) = 14710551572092191865 (Adições = 2) +D(60, 82) = 6378080197503218073 (Adições = 2) +D(60, 83) = 15608233760026454337 (Adições = 2) +D(60, 84) = 13632757146071535873 (Adições = 2) +D(60, 85) = 11827063278866653337 (Adições = 2) +D(60, 86) = 6948961095329232889 (Adições = 2) +D(60, 87) = 13934663125718793793 (Adições = 2) +D(60, 88) = 6535302893757147841 (Adições = 2) +D(60, 89) = 15408831040764431865 (Adições = 2) +D(60, 90) = 15086140145866876313 (Adições = 2) +D(60, 91) = 17663197987977581441 (Adições = 2) +D(60, 92) = 4668254885974760641 (Adições = 2) +D(60, 93) = 538180038135220889 (Adições = 2) +D(60, 94) = 12376066762378280057 (Adições = 2) +D(60, 95) = 14742305781503223553 (Adições = 2) +D(60, 96) = 6232938547427125505 (Adições = 2) +D(60, 97) = 9814039282455270521 (Adições = 2) +D(60, 98) = 8122138900991868569 (Adições = 2) +D(60, 99) = 11816074804089206465 (Adições = 2) +D(60, 100) = 2784819306797764993 (Adições = 2) +D(61, 0) = 1 (Adições = 0) +D(61, 1) = 123 (Adições = 2) +D(61, 2) = 7565 (Adições = 2) +D(61, 3) = 310247 (Adições = 2) +D(61, 4) = 9545769 (Adições = 2) +D(61, 5) = 235074115 (Adições = 2) +D(61, 6) = 4826974165 (Adições = 2) +D(61, 7) = 85018323855 (Adições = 2) +D(61, 8) = 1311380331665 (Adições = 2) +D(61, 9) = 17997769709515 (Adições = 2) +D(61, 10) = 222552809725533 (Adições = 2) +D(61, 11) = 2504906663030519 (Adições = 2) +D(61, 12) = 25879300038311225 (Adições = 2) +D(61, 13) = 247170214205280531 (Adições = 2) +D(61, 14) = 2195597660553396517 (Adições = 2) +D(61, 15) = 18234593016462779935 (Adições = 2) +D(61, 16) = 13109598104859568673 (Adições = 2) +D(61, 17) = 13269432026680131099 (Adições = 2) +D(61, 18) = 15946114488830939181 (Adições = 2) +D(61, 19) = 17742142482199113991 (Adições = 2) +D(61, 20) = 7126160161858290505 (Adições = 2) +D(61, 21) = 6809649962080403171 (Adições = 2) +D(61, 22) = 13850308091257285493 (Adições = 2) +D(61, 23) = 18024093767003041711 (Adições = 2) +D(61, 24) = 5726828744085416113 (Adições = 2) +D(61, 25) = 13750727630442738539 (Adições = 2) +D(61, 26) = 7413461330247774973 (Adições = 2) +D(61, 27) = 13536451940748870167 (Adições = 2) +D(61, 28) = 6660476211472562777 (Adições = 2) +D(61, 29) = 15239404183793171379 (Adições = 2) +D(61, 30) = 16654242615798417093 (Adições = 2) +D(61, 31) = 12396077380012967999 (Adições = 2) +D(61, 32) = 9017448494654330945 (Adições = 2) +D(61, 33) = 13209378325083142075 (Adições = 2) +D(61, 34) = 8794583994775848653 (Adições = 2) +D(61, 35) = 2101711788205761063 (Adições = 2) +D(61, 36) = 5995357010166162025 (Adições = 2) +D(61, 37) = 7018600389582669699 (Adições = 2) +D(61, 38) = 6225416576425710357 (Adições = 2) +D(61, 39) = 16539780209143672783 (Adições = 2) +D(61, 40) = 7584564907958810833 (Adições = 2) +D(61, 41) = 17743798062934919947 (Adições = 2) +D(61, 42) = 4466936041752677277 (Adições = 2) +D(61, 43) = 7800975812696494391 (Adições = 2) +D(61, 44) = 16110827658818288505 (Adições = 2) +D(61, 45) = 13130684330324386387 (Adições = 2) +D(61, 46) = 10769282824038420581 (Adições = 2) +D(61, 47) = 16700747531524580959 (Adições = 2) +D(61, 48) = 14909871494507792993 (Adições = 2) +D(61, 49) = 12375678106726280539 (Adições = 2) +D(61, 50) = 10375963348590330221 (Adições = 2) +D(61, 51) = 10391535995263094599 (Adições = 2) +D(61, 52) = 8505269168095397257 (Adições = 2) +D(61, 53) = 8354902770932501539 (Adições = 2) +D(61, 54) = 16446972155093483189 (Adições = 2) +D(61, 55) = 8761708449931308015 (Adições = 2) +D(61, 56) = 14974562058958933233 (Adições = 2) +D(61, 57) = 5969797306797727403 (Adições = 2) +D(61, 58) = 1932682417241647165 (Adições = 2) +D(61, 59) = 9272452423179181143 (Adições = 2) +D(61, 60) = 16604758227272712345 (Adições = 2) +D(61, 61) = 15990474243587769587 (Adições = 2) +D(61, 62) = 4620870146182848005 (Adições = 2) +D(61, 63) = 13046137589437300863 (Adições = 2) +D(61, 64) = 3680980876194496641 (Adições = 2) +D(61, 65) = 7040153387368931067 (Adições = 2) +D(61, 66) = 10876075728047276045 (Adições = 2) +D(61, 67) = 16989920171083888743 (Adições = 2) +D(61, 68) = 2926758769937198249 (Adições = 2) +D(61, 69) = 2712178652592639171 (Adições = 2) +D(61, 70) = 17137530229258645077 (Adições = 2) +D(61, 71) = 16774141964193309711 (Adições = 2) +D(61, 72) = 2512931992915780881 (Adições = 2) +D(61, 73) = 1068257791797456459 (Adições = 2) +D(61, 74) = 14225804146247583965 (Adições = 2) +D(61, 75) = 772500740071302007 (Adições = 2) +D(61, 76) = 3152838135682386361 (Adições = 2) +D(61, 77) = 8673637348296975251 (Adições = 2) +D(61, 78) = 7803200711373189029 (Adições = 2) +D(61, 79) = 7870461729266341535 (Adições = 2) +D(61, 80) = 8046696264238185121 (Adições = 2) +D(61, 81) = 634658426880150683 (Adições = 2) +D(61, 82) = 3276546122766009005 (Adições = 2) +D(61, 83) = 6816116006586129799 (Adições = 2) +D(61, 84) = 17610362838974568393 (Adições = 2) +D(61, 85) = 6176695116493654371 (Adições = 2) +D(61, 86) = 6505975416979988981 (Adições = 2) +D(61, 87) = 8942855564318464047 (Adições = 2) +D(61, 88) = 10966077510084854065 (Adições = 2) +D(61, 89) = 14463467370896882155 (Adições = 2) +D(61, 90) = 8064950410109087101 (Adições = 2) +D(61, 91) = 3920800396534441623 (Adições = 2) +D(61, 92) = 7805509196777232089 (Adições = 2) +D(61, 93) = 13011944120887213619 (Adições = 2) +D(61, 94) = 7479446847691162949 (Adições = 2) +D(61, 95) = 16151075317863114943 (Adições = 2) +D(61, 96) = 232831499374360769 (Adições = 2) +D(61, 97) = 16279809329256756795 (Adições = 2) +D(61, 98) = 15769243438994344269 (Adições = 2) +D(61, 99) = 17260713070365867687 (Adições = 2) +D(61, 100) = 13414863107543287529 (Adições = 2) +D(62, 0) = 1 (Adições = 0) +D(62, 1) = 125 (Adições = 2) +D(62, 2) = 7813 (Adições = 2) +D(62, 3) = 325625 (Adições = 2) +D(62, 4) = 10181641 (Adições = 2) +D(62, 5) = 254801525 (Adições = 2) +D(62, 6) = 5316849805 (Adições = 2) +D(62, 7) = 95162147825 (Adições = 2) +D(62, 8) = 1491560803345 (Adições = 2) +D(62, 9) = 20800710844525 (Adições = 2) +D(62, 10) = 261351290279573 (Adições = 2) +D(62, 11) = 2988810763035625 (Adições = 2) +D(62, 12) = 31373017464377369 (Adições = 2) +D(62, 13) = 304422531707969125 (Adições = 2) +D(62, 14) = 2747190406466646173 (Adições = 2) +D(62, 15) = 4730637009773271009 (Adições = 2) +D(62, 16) = 17628084057386068001 (Adições = 2) +D(62, 17) = 7113626041506664541 (Adições = 2) +D(62, 18) = 17882428483308183205 (Adições = 2) +D(62, 19) = 14677197306919133145 (Adições = 2) +D(62, 20) = 2652011803557434409 (Adições = 2) +D(62, 21) = 16587821927496128085 (Adições = 2) +D(62, 22) = 354291833414713517 (Adições = 2) +D(62, 23) = 13781949617965489105 (Adições = 2) +D(62, 24) = 639383981634843697 (Adições = 2) +D(62, 25) = 1670196282453446733 (Adições = 2) +D(62, 26) = 4387641169434408629 (Adições = 2) +D(62, 27) = 6890810366721502153 (Adições = 2) +D(62, 28) = 8640994445233383481 (Adições = 2) +D(62, 29) = 12094130766789566021 (Adições = 2) +D(62, 30) = 7094289418962051261 (Adições = 2) +D(62, 31) = 17697865341063884737 (Adições = 2) +D(62, 32) = 2217903068312080449 (Adições = 2) +D(62, 33) = 5997985814340001853 (Adições = 2) +D(62, 34) = 9555204060489440965 (Adições = 2) +D(62, 35) = 2004755769761499065 (Adições = 2) +D(62, 36) = 10101824568133422153 (Adições = 2) +D(62, 37) = 4669037894172702261 (Adições = 2) +D(62, 38) = 17913054860181082317 (Adições = 2) +D(62, 39) = 3784763498331362225 (Adições = 2) +D(62, 40) = 9462364541724294225 (Adições = 2) +D(62, 41) = 16343983438908473389 (Adições = 2) +D(62, 42) = 1661229396176967381 (Adições = 2) +D(62, 43) = 13929141250626139049 (Adições = 2) +D(62, 44) = 947456574721818713 (Adições = 2) +D(62, 45) = 11742224490154941989 (Adições = 2) +D(62, 46) = 17195447570808197341 (Adições = 2) +D(62, 47) = 7771989778952095649 (Adições = 2) +D(62, 48) = 2489120657565366369 (Adições = 2) +D(62, 49) = 11327926185089888285 (Adições = 2) +D(62, 50) = 15632823566696947429 (Adições = 2) +D(62, 51) = 17953578836840820633 (Adições = 2) +D(62, 52) = 18403639926489760873 (Adições = 2) +D(62, 53) = 16817067791808108053 (Adições = 2) +D(62, 54) = 4725454570414989549 (Adições = 2) +D(62, 55) = 11487391101730229137 (Adições = 2) +D(62, 56) = 16776917536910918769 (Adições = 2) +D(62, 57) = 827788755248476173 (Adições = 2) +D(62, 58) = 8730268479287850741 (Adições = 2) +D(62, 59) = 1488659245999127433 (Adições = 2) +D(62, 60) = 8919125822741469305 (Adições = 2) +D(62, 61) = 4620870146182848005 (Adições = 2) +D(62, 62) = 6785470462243913981 (Adições = 2) +D(62, 63) = 6005734124154511233 (Adições = 2) +D(62, 64) = 4286108516076757121 (Adições = 2) +D(62, 65) = 15007242779640184829 (Adições = 2) +D(62, 66) = 14476727821346840325 (Adições = 2) +D(62, 67) = 5449235573058901881 (Adições = 2) +D(62, 68) = 6919170440370437257 (Adições = 2) +D(62, 69) = 12558107862900274677 (Adições = 2) +D(62, 70) = 13961072671042007309 (Adições = 2) +D(62, 71) = 10979256717074858865 (Adições = 2) +D(62, 72) = 11819586600474397841 (Adições = 2) +D(62, 73) = 15400776385187635181 (Adições = 2) +D(62, 74) = 12248094249523123989 (Adições = 2) +D(62, 75) = 8799655062132458345 (Adições = 2) +D(62, 76) = 12724993937886146713 (Adições = 2) +D(62, 77) = 6104725348155956709 (Adições = 2) +D(62, 78) = 4134819334116569373 (Adições = 2) +D(62, 79) = 1361737701046548321 (Adições = 2) +D(62, 80) = 17278895694551074977 (Adições = 2) +D(62, 81) = 7513506311959859165 (Adições = 2) +D(62, 82) = 11424710861606018853 (Adições = 2) +D(62, 83) = 3070628917248606041 (Adições = 2) +D(62, 84) = 9050363689099752617 (Adições = 2) +D(62, 85) = 14390677570858423765 (Adições = 2) +D(62, 86) = 8626604030622515501 (Adições = 2) +D(62, 87) = 5628690938211416913 (Adições = 2) +D(62, 88) = 7090879938905183409 (Adições = 2) +D(62, 89) = 14073680746177368013 (Adições = 2) +D(62, 90) = 18155354453473785653 (Adições = 2) +D(62, 91) = 11694361186407762761 (Adições = 2) +D(62, 92) = 4973926706009884857 (Adições = 2) +D(62, 93) = 7344635949964778949 (Adições = 2) +D(62, 94) = 9389282844833603901 (Adições = 2) +D(62, 95) = 14573060936678330177 (Adições = 2) +D(62, 96) = 12510223680206254273 (Adições = 2) +D(62, 97) = 10576120435127820221 (Adições = 2) +D(62, 98) = 5731685055959818053 (Adições = 2) +D(62, 99) = 1868153417900926777 (Adições = 2) +D(62, 100) = 14096985522100530377 (Adições = 2) +D(63, 0) = 1 (Adições = 0) +D(63, 1) = 127 (Adições = 2) +D(63, 2) = 8065 (Adições = 2) +D(63, 3) = 341503 (Adições = 2) +D(63, 4) = 10848769 (Adições = 2) +D(63, 5) = 275831935 (Adições = 2) +D(63, 6) = 5847483265 (Adições = 2) +D(63, 7) = 106326480895 (Adições = 2) +D(63, 8) = 1693049432065 (Adições = 2) +D(63, 9) = 23985321079935 (Adições = 2) +D(63, 10) = 306137322204033 (Adições = 2) +D(63, 11) = 3556299375519231 (Adições = 2) +D(63, 12) = 37918127602932225 (Adições = 2) +D(63, 13) = 373713676775278719 (Adições = 2) +D(63, 14) = 3425326614949894017 (Adições = 2) +D(63, 15) = 10903154031189811199 (Adições = 2) +D(63, 16) = 14815131024639598593 (Adições = 2) +D(63, 17) = 2663352976113227903 (Adições = 2) +D(63, 18) = 9212663427218524033 (Adições = 2) +D(63, 19) = 4878801070026737151 (Adições = 2) +D(63, 20) = 3761266106793753089 (Adições = 2) +D(63, 21) = 4554355764137763967 (Adições = 2) +D(63, 22) = 3049725451339053953 (Adições = 2) +D(63, 23) = 17185966902719256575 (Adições = 2) +D(63, 24) = 13160556428610037761 (Adições = 2) +D(63, 25) = 15470136692698328191 (Adições = 2) +D(63, 26) = 3081230070876631937 (Adições = 2) +D(63, 27) = 14359681607032542719 (Adições = 2) +D(63, 28) = 11444742345277876737 (Adições = 2) +D(63, 29) = 13733123483591274623 (Adições = 2) +D(63, 30) = 14474799595633340289 (Adições = 2) +D(63, 31) = 2373466208240173055 (Adições = 2) +D(63, 32) = 3842490543906586625 (Adições = 2) +D(63, 33) = 12058379426558668927 (Adições = 2) +D(63, 34) = 9164825227678560129 (Adições = 2) +D(63, 35) = 2278040984219948543 (Adições = 2) +D(63, 36) = 14384621322114869761 (Adições = 2) +D(63, 37) = 10708739710711442559 (Adições = 2) +D(63, 38) = 14844088391355675521 (Adições = 2) +D(63, 39) = 18095162676158568447 (Adições = 2) +D(63, 40) = 12895546642504673281 (Adições = 2) +D(63, 41) = 1808406475718337663 (Adições = 2) +D(63, 42) = 1366875237094226817 (Adições = 2) +D(63, 43) = 16957245883897333247 (Adições = 2) +D(63, 44) = 13387099635535739393 (Adições = 2) +D(63, 45) = 7630036626702948479 (Adições = 2) +D(63, 46) = 18120964613956536193 (Adições = 2) +D(63, 47) = 6194913816297725951 (Adições = 2) +D(63, 48) = 16456024252815187969 (Adições = 2) +D(63, 49) = 11826327021760891007 (Adições = 2) +D(63, 50) = 1893588626128623489 (Adições = 2) +D(63, 51) = 17033246955956839935 (Adições = 2) +D(63, 52) = 16496977571868318209 (Adições = 2) +D(63, 53) = 14824197142747083903 (Adições = 2) +D(63, 54) = 17919975431260629889 (Adições = 2) +D(63, 55) = 15686077029696296959 (Adições = 2) +D(63, 56) = 7056897520918341633 (Adições = 2) +D(63, 57) = 6214859739368184959 (Adições = 2) +D(63, 58) = 15772916973904511873 (Adições = 2) +D(63, 59) = 7545100625481938431 (Adições = 2) +D(63, 60) = 17952885694222535169 (Adições = 2) +D(63, 61) = 13046137589437300863 (Adições = 2) +D(63, 62) = 6005734124154511233 (Adições = 2) +D(63, 63) = 350194636843384831 (Adições = 2) +D(63, 64) = 10642037277074653185 (Adições = 2) +D(63, 65) = 11488644499082043519 (Adições = 2) +D(63, 66) = 4079126952649965441 (Adições = 2) +D(63, 67) = 5558346273346156031 (Adições = 2) +D(63, 68) = 17926752286775495169 (Adições = 2) +D(63, 69) = 510542442627103871 (Adições = 2) +D(63, 70) = 8582978902859834241 (Adições = 2) +D(63, 71) = 15076564217267148799 (Adições = 2) +D(63, 72) = 981919387397302273 (Adições = 2) +D(63, 73) = 9755538299349783679 (Adições = 2) +D(63, 74) = 510920786641439617 (Adições = 2) +D(63, 75) = 3111926024587470335 (Adições = 2) +D(63, 76) = 6189830950896523777 (Adições = 2) +D(63, 77) = 6572806163229075583 (Adições = 2) +D(63, 78) = 16812350845501601665 (Adições = 2) +D(63, 79) = 3862163806955167743 (Adições = 2) +D(63, 80) = 4056053128843239425 (Adições = 2) +D(63, 81) = 10401711061644621951 (Adições = 2) +D(63, 82) = 10893184161500948353 (Adições = 2) +D(63, 83) = 6941779866646021631 (Adições = 2) +D(63, 84) = 616028399284828673 (Adições = 2) +D(63, 85) = 5610325585533453439 (Adições = 2) +D(63, 86) = 10180863113304841089 (Adições = 2) +D(63, 87) = 5989414008429221887 (Adições = 2) +D(63, 88) = 262240811836270593 (Adições = 2) +D(63, 89) = 2980057423209270399 (Adições = 2) +D(63, 90) = 16762348549150872449 (Adições = 2) +D(63, 91) = 9718576041613317631 (Adições = 2) +D(63, 92) = 7940119860321413633 (Adições = 2) +D(63, 93) = 1811938442586525823 (Adições = 2) +D(63, 94) = 99113163675357057 (Adições = 2) +D(63, 95) = 5614712871477739519 (Adições = 2) +D(63, 96) = 14251253414652772353 (Adições = 2) +D(63, 97) = 444109382567743615 (Adições = 2) +D(63, 98) = 16751914873655381889 (Adições = 2) +D(63, 99) = 5905009273806575103 (Adições = 2) +D(63, 100) = 3423404140098480641 (Adições = 2) +D(64, 0) = 1 (Adições = 0) +D(64, 1) = 129 (Adições = 2) +D(64, 2) = 8321 (Adições = 2) +D(64, 3) = 357889 (Adições = 2) +D(64, 4) = 11548161 (Adições = 2) +D(64, 5) = 298228865 (Adições = 2) +D(64, 6) = 6421544065 (Adições = 2) +D(64, 7) = 118595508225 (Adições = 2) +D(64, 8) = 1917971421185 (Adições = 2) +D(64, 9) = 27596341933185 (Adições = 2) +D(64, 10) = 357718985217153 (Adições = 2) +D(64, 11) = 4220155682940417 (Adições = 2) +D(64, 12) = 45694582661391873 (Adições = 2) +D(64, 13) = 457326387039602817 (Adições = 2) +D(64, 14) = 4256366678764775553 (Adições = 2) +D(64, 15) = 138103251194929153 (Adições = 2) +D(64, 16) = 7409644233314787329 (Adições = 2) +D(64, 17) = 6441384160358062209 (Adições = 2) +D(64, 18) = 18317400563689814145 (Adições = 2) +D(64, 19) = 13962120987225523713 (Adições = 2) +D(64, 20) = 4155444090336462337 (Adições = 2) +D(64, 21) = 12471065961267979393 (Adições = 2) +D(64, 22) = 1628403103035245697 (Adições = 2) +D(64, 23) = 3417351383384004609 (Adições = 2) +D(64, 24) = 15317130641003747329 (Adições = 2) +D(64, 25) = 7054335614893010049 (Adições = 2) +D(64, 26) = 7158958304758418561 (Adições = 2) +D(64, 27) = 6153125908958041601 (Adições = 2) +D(64, 28) = 13510805787558909441 (Adições = 2) +D(64, 29) = 1795183469008957569 (Adições = 2) +D(64, 30) = 11556362474524020865 (Adições = 2) +D(64, 31) = 9957884204687982593 (Adições = 2) +D(64, 32) = 16173840956834742273 (Adições = 2) +D(64, 33) = 13627966853590446209 (Adições = 2) +D(64, 34) = 16404427434118123649 (Adições = 2) +D(64, 35) = 9400549572307080705 (Adições = 2) +D(64, 36) = 7616467804932347393 (Adições = 2) +D(64, 37) = 14263084764049108097 (Adições = 2) +D(64, 38) = 2922424718697122945 (Adições = 2) +D(64, 39) = 17414931712501815297 (Adições = 2) +D(64, 40) = 11512152883745953793 (Adições = 2) +D(64, 41) = 7769361928259413121 (Adições = 2) +D(64, 42) = 10944643641071977601 (Adições = 2) +D(64, 43) = 10822020688353986049 (Adições = 2) +D(64, 44) = 4272878060367955457 (Adições = 2) +D(64, 45) = 6843270248897091713 (Adições = 2) +D(64, 46) = 14147527415847024769 (Adições = 2) +D(64, 47) = 1569917698682183681 (Adições = 2) +D(64, 48) = 5774111694085545985 (Adições = 2) +D(64, 49) = 15609718894952073345 (Adições = 2) +D(64, 50) = 10882890469132036225 (Adições = 2) +D(64, 51) = 11362981977507948033 (Adições = 2) +D(64, 52) = 7999718357914002945 (Adições = 2) +D(64, 53) = 2427404925110301825 (Adições = 2) +D(64, 54) = 16724833425408464001 (Adições = 2) +D(64, 55) = 13437397738946287617 (Adições = 2) +D(64, 56) = 17733628215851374593 (Adições = 2) +D(64, 57) = 12558641402428349569 (Adições = 2) +D(64, 58) = 16099674041991494785 (Adições = 2) +D(64, 59) = 2524203493958841857 (Adições = 2) +D(64, 60) = 9575445739953763841 (Adições = 2) +D(64, 61) = 3680980876194496641 (Adições = 2) +D(64, 62) = 4286108516076757121 (Adições = 2) +D(64, 63) = 10642037277074653185 (Adições = 2) +D(64, 64) = 3187525117283139585 (Adições = 2) +D(64, 65) = 6871462819730284673 (Adições = 2) +D(64, 66) = 3992490197752742017 (Adições = 2) +D(64, 67) = 13629963423748863489 (Adições = 2) +D(64, 68) = 221573836451411457 (Adições = 2) +D(64, 69) = 212124492144458881 (Adições = 2) +D(64, 70) = 9305645837631396993 (Adições = 2) +D(64, 71) = 14518444884048828417 (Adições = 2) +D(64, 72) = 12130184415003727873 (Adições = 2) +D(64, 73) = 4420898028041262209 (Adições = 2) +D(64, 74) = 14687357114032485505 (Adições = 2) +D(64, 75) = 18310203925261395457 (Adições = 2) +D(64, 76) = 9165216827035837953 (Adições = 2) +D(64, 77) = 3481109867451885697 (Adições = 2) +D(64, 78) = 8419522802473011329 (Adições = 2) +D(64, 79) = 10647293381220229121 (Adições = 2) +D(64, 80) = 118766243309084673 (Adições = 2) +D(64, 81) = 14576530433796946049 (Adições = 2) +D(64, 82) = 17424681583232964737 (Adições = 2) +D(64, 83) = 16812901537670383105 (Adições = 2) +D(64, 84) = 5923965729891681793 (Adições = 2) +D(64, 85) = 12150319714709963905 (Adições = 2) +D(64, 86) = 9494764339838706817 (Adições = 2) +D(64, 87) = 7218297387863218177 (Adições = 2) +D(64, 88) = 13469952208128710657 (Adições = 2) +D(64, 89) = 16712250443174251649 (Adições = 2) +D(64, 90) = 18007912341824842881 (Adições = 2) +D(64, 91) = 7595348785169929729 (Adições = 2) +D(64, 92) = 6807300613395109377 (Adições = 2) +D(64, 93) = 16559358916303048833 (Adições = 2) +D(64, 94) = 23666448855380097 (Adições = 2) +D(64, 95) = 5737492484008476673 (Adições = 2) +D(64, 96) = 7156714696429436929 (Adições = 2) +D(64, 97) = 3405333419940401281 (Adições = 2) +D(64, 98) = 2154613602453975169 (Adições = 2) +D(64, 99) = 6364793676206380545 (Adições = 2) +D(64, 100) = 15693207090111436289 (Adições = 2) +D(65, 0) = 1 (Adições = 0) +D(65, 1) = 131 (Adições = 2) +D(65, 2) = 8581 (Adições = 2) +D(65, 3) = 374791 (Adições = 2) +D(65, 4) = 12280841 (Adições = 2) +D(65, 5) = 322057867 (Adições = 2) +D(65, 6) = 7041830797 (Adições = 2) +D(65, 7) = 132058883087 (Adições = 2) +D(65, 8) = 2168625812497 (Adições = 2) +D(65, 9) = 31682939166867 (Adições = 2) +D(65, 10) = 416998266317205 (Adições = 2) +D(65, 11) = 4994872934474775 (Adições = 2) +D(65, 12) = 54909611278807065 (Adições = 2) +D(65, 13) = 557930580979801755 (Adições = 2) +D(65, 14) = 5271623646784180125 (Adições = 2) +D(65, 15) = 9666093576743884831 (Adições = 2) +D(65, 16) = 17213841061253601313 (Adições = 2) +D(65, 17) = 12618125381216899235 (Adições = 2) +D(65, 18) = 483421957845672357 (Adições = 2) +D(65, 19) = 14316199435051458599 (Adições = 2) +D(65, 20) = 13987020438903893033 (Adições = 2) +D(65, 21) = 12166786416798783147 (Adições = 2) +D(65, 22) = 7819511407392456621 (Adições = 2) +D(65, 23) = 12865265893811706927 (Adições = 2) +D(65, 24) = 13153003844489907249 (Adições = 2) +D(65, 25) = 17077726026677113011 (Adições = 2) +D(65, 26) = 12844275872618990005 (Adições = 2) +D(65, 27) = 7709616012625898551 (Adições = 2) +D(65, 28) = 8926803635433297977 (Adições = 2) +D(65, 29) = 5786048818291613371 (Adições = 2) +D(65, 30) = 690850688115040189 (Adições = 2) +D(65, 31) = 3758353293617492031 (Adições = 2) +D(65, 32) = 11443334381430665281 (Adições = 2) +D(65, 33) = 4351654044436750531 (Adições = 2) +D(65, 34) = 15937304258435768773 (Adições = 2) +D(65, 35) = 4848793117441869895 (Adições = 2) +D(65, 36) = 3419066420971746377 (Adições = 2) +D(65, 37) = 6851874916243650251 (Adições = 2) +D(65, 38) = 5590640325280329677 (Adições = 2) +D(65, 39) = 7481252682769716303 (Adições = 2) +D(65, 40) = 17961593205307933777 (Adições = 2) +D(65, 41) = 349619869894197459 (Adições = 2) +D(65, 42) = 616881365516036565 (Adições = 2) +D(65, 43) = 3936801621232448599 (Adições = 2) +D(65, 44) = 584956296244838489 (Adições = 2) +D(65, 45) = 11701104605509885659 (Adições = 2) +D(65, 46) = 14245158196544450525 (Adições = 2) +D(65, 47) = 11515859237364107359 (Adições = 2) +D(65, 48) = 413144556422285409 (Adições = 2) +D(65, 49) = 3350231071750353123 (Adições = 2) +D(65, 50) = 11396096362124911077 (Adições = 2) +D(65, 51) = 15195224735055343719 (Adições = 2) +D(65, 52) = 16111180996767743081 (Adições = 2) +D(65, 53) = 8091560206082496235 (Adições = 2) +D(65, 54) = 8797054482891710445 (Adições = 2) +D(65, 55) = 2065797499827358831 (Adições = 2) +D(65, 56) = 14790079380915469425 (Adições = 2) +D(65, 57) = 8188860851776090355 (Adições = 2) +D(65, 58) = 18400432222486383093 (Adições = 2) +D(65, 59) = 130821611017616503 (Adições = 2) +D(65, 60) = 12230470844930222201 (Adições = 2) +D(65, 61) = 7040153387368931067 (Adições = 2) +D(65, 62) = 15007242779640184829 (Adições = 2) +D(65, 63) = 11488644499082043519 (Adições = 2) +D(65, 64) = 6871462819730284673 (Adições = 2) +D(65, 65) = 16930450756743708931 (Adições = 2) +D(65, 66) = 9347659700517184005 (Adições = 2) +D(65, 67) = 8523369248309237895 (Adições = 2) +D(65, 68) = 3928162434799961225 (Adições = 2) +D(65, 69) = 4361860763395831563 (Adições = 2) +D(65, 70) = 13879631093171687437 (Adições = 2) +D(65, 71) = 810233667432809615 (Adições = 2) +D(65, 72) = 9012118892775814289 (Adições = 2) +D(65, 73) = 7116457262111252755 (Adições = 2) +D(65, 74) = 7777968330475448853 (Adições = 2) +D(65, 75) = 3882041222350226583 (Adições = 2) +D(65, 76) = 12910717900937908377 (Adições = 2) +D(65, 77) = 7110300521716080411 (Adições = 2) +D(65, 78) = 564189117931425821 (Adições = 2) +D(65, 79) = 1184261227915114655 (Adições = 2) +D(65, 80) = 11950320852444428449 (Adições = 2) +D(65, 81) = 8198873455840907555 (Adições = 2) +D(65, 82) = 3306597325451715109 (Adições = 2) +D(65, 83) = 650692298935959719 (Adições = 2) +D(65, 84) = 4940815492788473001 (Adições = 2) +D(65, 85) = 4568356863680567083 (Adições = 2) +D(65, 86) = 7766696844519686189 (Adições = 2) +D(65, 87) = 6033014498512059567 (Adições = 2) +D(65, 88) = 8274520020794436785 (Adições = 2) +D(65, 89) = 1563234524678295859 (Adições = 2) +D(65, 90) = 17836653235967838773 (Adições = 2) +D(65, 91) = 6546426215543508151 (Adições = 2) +D(65, 92) = 2502331540398995641 (Adições = 2) +D(65, 93) = 7422246996387602235 (Adições = 2) +D(65, 94) = 5558528287836479549 (Adições = 2) +D(65, 95) = 11319687220700336319 (Adições = 2) +D(65, 96) = 5767150327428698305 (Adições = 2) +D(65, 97) = 16329198443798536515 (Adições = 2) +D(65, 98) = 3442401392483361349 (Adições = 2) +D(65, 99) = 11961808671143717063 (Adições = 2) +D(65, 100) = 15573065363751982281 (Adições = 2) +D(66, 0) = 1 (Adições = 0) +D(66, 1) = 133 (Adições = 2) +D(66, 2) = 8845 (Adições = 2) +D(66, 3) = 392217 (Adições = 2) +D(66, 4) = 13047849 (Adições = 2) +D(66, 5) = 347386557 (Adições = 2) +D(66, 6) = 7711275221 (Adições = 2) +D(66, 7) = 146811989105 (Adições = 2) +D(66, 8) = 2447496684689 (Adições = 2) +D(66, 9) = 36299061664053 (Adições = 2) +D(66, 10) = 484980267148125 (Adições = 2) +D(66, 11) = 5896851467940105 (Adições = 2) +D(66, 12) = 65801335681221945 (Adições = 2) +D(66, 13) = 678641527939830765 (Adições = 2) +D(66, 14) = 6508195755703812645 (Adições = 2) +D(66, 15) = 2999168905522325985 (Adições = 2) +D(66, 16) = 11432359469810260513 (Adições = 2) +D(66, 17) = 4370837764861657829 (Adições = 2) +D(66, 18) = 17472385103924229421 (Adições = 2) +D(66, 19) = 13825262423111808761 (Adições = 2) +D(66, 20) = 5234994149648057161 (Adições = 2) +D(66, 21) = 12942056931641181725 (Adições = 2) +D(66, 22) = 14481610682122869877 (Adições = 2) +D(66, 23) = 16719643909617481809 (Adições = 2) +D(66, 24) = 5844425500499992753 (Adições = 2) +D(66, 25) = 17628411297957461397 (Adições = 2) +D(66, 26) = 10656925049834461181 (Adições = 2) +D(66, 27) = 12764072861369798121 (Adições = 2) +D(66, 28) = 10953748435719443033 (Adições = 2) +D(66, 29) = 7219856815734802765 (Adições = 2) +D(66, 30) = 13696756322141456325 (Adições = 2) +D(66, 31) = 18145960303873988545 (Adições = 2) +D(66, 32) = 14900903905212594241 (Adições = 2) +D(66, 33) = 12249148257370458437 (Adições = 2) +D(66, 34) = 14091362486533426125 (Adições = 2) +D(66, 35) = 16430715788701513177 (Adições = 2) +D(66, 36) = 6251831253405577833 (Adições = 2) +D(66, 37) = 16522772590620974461 (Adições = 2) +D(66, 38) = 10518543758435402773 (Adições = 2) +D(66, 39) = 5143692692775897137 (Adições = 2) +D(66, 40) = 12139794507143995601 (Adições = 2) +D(66, 41) = 12004263508636575221 (Adições = 2) +D(66, 42) = 12970764744046809245 (Adições = 2) +D(66, 43) = 17524447730795294409 (Adições = 2) +D(66, 44) = 3599461574563029881 (Adições = 2) +D(66, 45) = 15885522476317754029 (Adições = 2) +D(66, 46) = 4938297130952986981 (Adições = 2) +D(66, 47) = 12252570491151993249 (Adições = 2) +D(66, 48) = 5734830211228834401 (Adições = 2) +D(66, 49) = 9498205839401472933 (Adições = 2) +D(66, 50) = 5797789199567185517 (Adições = 2) +D(66, 51) = 13942366223037888697 (Adições = 2) +D(66, 52) = 8355283807441872265 (Adições = 2) +D(66, 53) = 14111280936582559965 (Adições = 2) +D(66, 54) = 12553151551847215029 (Adições = 2) +D(66, 55) = 4969259460856732689 (Adições = 2) +D(66, 56) = 3378392267890009329 (Adições = 2) +D(66, 57) = 7910588426872017493 (Adições = 2) +D(66, 58) = 16053137427424939325 (Adições = 2) +D(66, 59) = 16137647187219387305 (Adições = 2) +D(66, 60) = 10052195569457674393 (Adições = 2) +D(66, 61) = 10876075728047276045 (Adições = 2) +D(66, 62) = 14476727821346840325 (Adições = 2) +D(66, 63) = 4079126952649965441 (Adições = 2) +D(66, 64) = 3992490197752742017 (Adições = 2) +D(66, 65) = 9347659700517184005 (Adições = 2) +D(66, 66) = 17179026084068525325 (Adições = 2) +D(66, 67) = 16603310959185395609 (Adições = 2) +D(66, 68) = 10608098568585043113 (Adições = 2) +D(66, 69) = 451377693071284285 (Adições = 2) +D(66, 70) = 246125475929251669 (Adições = 2) +D(66, 71) = 14935990236533748721 (Adições = 2) +D(66, 72) = 6311598723032821009 (Adições = 2) +D(66, 73) = 3993430804210336437 (Adições = 2) +D(66, 74) = 441112323087486429 (Adições = 2) +D(66, 75) = 12101121875913161865 (Adições = 2) +D(66, 76) = 10447136925491745209 (Adições = 2) +D(66, 77) = 12021411274436182381 (Adições = 2) +D(66, 78) = 1249156840374136997 (Adições = 2) +D(66, 79) = 2997607186220677473 (Adições = 2) +D(66, 80) = 16132189266580220577 (Adições = 2) +D(66, 81) = 17834639501156004965 (Adições = 2) +D(66, 82) = 10893366208739076013 (Adições = 2) +D(66, 83) = 14850655833126750841 (Adições = 2) +D(66, 84) = 1995419551141631945 (Adições = 2) +D(66, 85) = 11504591907610672029 (Adições = 2) +D(66, 86) = 5392901542101373685 (Adições = 2) +D(66, 87) = 745868811423567825 (Adições = 2) +D(66, 88) = 15053403330730064177 (Adições = 2) +D(66, 89) = 6444413802493245205 (Adições = 2) +D(66, 90) = 7397557489429828221 (Adições = 2) +D(66, 91) = 13333892867231623529 (Adições = 2) +D(66, 92) = 3935906549464575705 (Adições = 2) +D(66, 93) = 13860485086251173581 (Adições = 2) +D(66, 94) = 8394516296765703749 (Adições = 2) +D(66, 95) = 6825987731592968001 (Adições = 2) +D(66, 96) = 5466081206012451009 (Adições = 2) +D(66, 97) = 9115685903530134213 (Adições = 2) +D(66, 98) = 10440541666102480461 (Adições = 2) +D(66, 99) = 7398007656020007257 (Adições = 2) +D(66, 100) = 16486137617206154985 (Adições = 2) +D(67, 0) = 1 (Adições = 0) +D(67, 1) = 135 (Adições = 2) +D(67, 2) = 9113 (Adições = 2) +D(67, 3) = 410175 (Adições = 2) +D(67, 4) = 13850241 (Adições = 2) +D(67, 5) = 374284647 (Adições = 2) +D(67, 6) = 8432946425 (Adições = 2) +D(67, 7) = 162956210751 (Adições = 2) +D(67, 8) = 2757264884545 (Adições = 2) +D(67, 9) = 41503823233287 (Adições = 2) +D(67, 10) = 562783152045465 (Adições = 2) +D(67, 11) = 6944614887133695 (Adições = 2) +D(67, 12) = 78642802036295745 (Adições = 2) +D(67, 13) = 823085665657348455 (Adições = 2) +D(67, 14) = 8009922949300991865 (Adições = 2) +D(67, 15) = 17517287610527130495 (Adições = 2) +D(67, 16) = 13502071912150165377 (Adições = 2) +D(67, 17) = 10858525073112532103 (Adições = 2) +D(67, 18) = 14255003868188867737 (Adições = 2) +D(67, 19) = 8659163247805802687 (Adições = 2) +D(67, 20) = 9272675746856116993 (Adições = 2) +D(67, 21) = 9002982754435804263 (Adições = 2) +D(67, 22) = 17979906294490304249 (Adições = 2) +D(67, 23) = 12287672738811552703 (Adições = 2) +D(67, 24) = 16404998075219475649 (Adições = 2) +D(67, 25) = 2984346726257826567 (Adições = 2) +D(67, 26) = 12822939000340197529 (Adições = 2) +D(67, 27) = 17797192837834905215 (Adições = 2) +D(67, 28) = 4621525987505043137 (Adições = 2) +D(67, 29) = 4348387165249737319 (Adições = 2) +D(67, 30) = 6818256229416444793 (Adições = 2) +D(67, 31) = 1767484708012786431 (Adições = 2) +D(67, 32) = 16367604843389817601 (Adições = 2) +D(67, 33) = 6624168858553767047 (Adições = 2) +D(67, 34) = 14517935528748099993 (Adições = 2) +D(67, 35) = 8146525656563936063 (Adições = 2) +D(67, 36) = 12382328624961475457 (Adições = 2) +D(67, 37) = 16710188395278476135 (Adições = 2) +D(67, 38) = 6858016596915750137 (Adições = 2) +D(67, 39) = 4073508974417498431 (Adições = 2) +D(67, 40) = 2910252100627839553 (Adições = 2) +D(67, 41) = 8607566042698858759 (Adições = 2) +D(67, 42) = 15135850221672691609 (Adições = 2) +D(67, 43) = 8737574549095692031 (Adições = 2) +D(67, 44) = 11414739780744464705 (Adições = 2) +D(67, 45) = 12452979757915696999 (Adições = 2) +D(67, 46) = 14830055291476886393 (Adições = 2) +D(67, 47) = 13574178839872315007 (Adições = 2) +D(67, 48) = 13114835468543591041 (Adições = 2) +D(67, 49) = 9901127445464346759 (Adições = 2) +D(67, 50) = 6750378410723453593 (Adições = 2) +D(67, 51) = 8043789759618976191 (Adições = 2) +D(67, 52) = 11894695716389185537 (Adições = 2) +D(67, 53) = 15914516386704066151 (Adições = 2) +D(67, 54) = 5685460727714737913 (Adições = 2) +D(67, 55) = 4761127666709134015 (Adições = 2) +D(67, 56) = 13108779395455876033 (Adições = 2) +D(67, 57) = 5951016016508351239 (Adições = 2) +D(67, 58) = 11467997797095756441 (Adições = 2) +D(67, 59) = 6765294264320979839 (Adições = 2) +D(67, 60) = 14508392947288489921 (Adições = 2) +D(67, 61) = 16989920171083888743 (Adições = 2) +D(67, 62) = 5449235573058901881 (Adições = 2) +D(67, 63) = 5558346273346156031 (Adições = 2) +D(67, 64) = 13629963423748863489 (Adições = 2) +D(67, 65) = 8523369248309237895 (Adições = 2) +D(67, 66) = 16603310959185395609 (Adições = 2) +D(67, 67) = 13492159855020213311 (Adições = 2) +D(67, 68) = 3810081235371548801 (Adições = 2) +D(67, 69) = 14869557497027876199 (Adições = 2) +D(67, 70) = 15567060666028412153 (Adições = 2) +D(67, 71) = 12302432304781860927 (Adições = 2) +D(67, 72) = 15103277190638879041 (Adições = 2) +D(67, 73) = 6961562644172484871 (Adições = 2) +D(67, 74) = 11396105771470307737 (Adições = 2) +D(67, 75) = 5491595896761404415 (Adições = 2) +D(67, 76) = 9593110624456759873 (Adições = 2) +D(67, 77) = 13614914750675135847 (Adições = 2) +D(67, 78) = 8438738791775903609 (Adições = 2) +D(67, 79) = 12685502818370718079 (Adições = 2) +D(67, 80) = 13368555197462064513 (Adições = 2) +D(67, 81) = 10441895817779186823 (Adições = 2) +D(67, 82) = 2276413380255164569 (Adições = 2) +D(67, 83) = 9573691348411439807 (Adições = 2) +D(67, 84) = 7973022658970270977 (Adições = 2) +D(67, 85) = 3026290044013023335 (Adições = 2) +D(67, 86) = 1477039420015517433 (Adições = 2) +D(67, 87) = 7615809773540458943 (Adições = 2) +D(67, 88) = 4968337841984539329 (Adições = 2) +D(67, 89) = 8019410901498297095 (Adições = 2) +D(67, 90) = 3414638119711818905 (Adições = 2) +D(67, 91) = 5699344402663719039 (Adições = 2) +D(67, 92) = 4522399745650366657 (Adições = 2) +D(67, 93) = 3872047307656564327 (Adições = 2) +D(67, 94) = 7680304616963890041 (Adições = 2) +D(67, 95) = 4454064571613010175 (Adições = 2) +D(67, 96) = 16746133509218429185 (Adições = 2) +D(67, 97) = 12881156545051462791 (Adições = 2) +D(67, 98) = 13990640040974525849 (Adições = 2) +D(67, 99) = 13382445289387461951 (Adições = 2) +D(67, 100) = 373102415194520961 (Adições = 2) +D(68, 0) = 1 (Adições = 0) +D(68, 1) = 137 (Adições = 2) +D(68, 2) = 9385 (Adições = 2) +D(68, 3) = 428673 (Adições = 2) +D(68, 4) = 14689089 (Adições = 2) +D(68, 5) = 402823977 (Adições = 2) +D(68, 6) = 9210055049 (Adições = 2) +D(68, 7) = 180599212225 (Adições = 2) +D(68, 8) = 3100820307521 (Adições = 2) +D(68, 9) = 47361908425353 (Adições = 2) +D(68, 10) = 651648883704105 (Adições = 2) +D(68, 11) = 8159046922883265 (Adições = 2) +D(68, 12) = 93746463846312705 (Adições = 2) +D(68, 13) = 995474931539956905 (Adições = 2) +D(68, 14) = 9828483546498297225 (Adições = 2) +D(68, 15) = 16908950032616867969 (Adições = 2) +D(68, 16) = 11034821407875060609 (Adições = 2) +D(68, 17) = 16948674319428206473 (Adições = 2) +D(68, 18) = 5168715113310503081 (Adições = 2) +D(68, 19) = 9636138155595621889 (Adições = 2) +D(68, 20) = 9121233076547989953 (Adições = 2) +D(68, 21) = 8950147504130359593 (Adições = 2) +D(68, 22) = 17486292479346916489 (Adições = 2) +D(68, 23) = 10860383365229670209 (Adições = 2) +D(68, 24) = 2659566031841595329 (Adições = 2) +D(68, 25) = 3602166759609345929 (Adições = 2) +D(68, 26) = 962708412497818409 (Adições = 2) +D(68, 27) = 13136096176963369537 (Adições = 2) +D(68, 28) = 17108070928593766273 (Adições = 2) +D(68, 29) = 7631240007638995113 (Adições = 2) +D(68, 30) = 351139328595625609 (Adições = 2) +D(68, 31) = 8936880266024856833 (Adições = 2) +D(68, 32) = 8625225743717909249 (Adições = 2) +D(68, 33) = 13170255371951942281 (Adições = 2) +D(68, 34) = 15865615685544257705 (Adições = 2) +D(68, 35) = 1636588723437190529 (Adições = 2) +D(68, 36) = 3718698931253050433 (Adições = 2) +D(68, 37) = 14364471877783450409 (Adições = 2) +D(68, 38) = 1039188722558573449 (Adições = 2) +D(68, 39) = 11970714293891822017 (Adições = 2) +D(68, 40) = 507731295227608385 (Adições = 2) +D(68, 41) = 12025549438554306697 (Adições = 2) +D(68, 42) = 17322221629216305449 (Adições = 2) +D(68, 43) = 4302158252565585857 (Adições = 2) +D(68, 44) = 6007728508696190977 (Adições = 2) +D(68, 45) = 11428703973646801065 (Adições = 2) +D(68, 46) = 1818250875620281225 (Adições = 2) +D(68, 47) = 11775740933259931009 (Adições = 2) +D(68, 48) = 1571267094256733825 (Adições = 2) +D(68, 49) = 6140485934555120009 (Adições = 2) +D(68, 50) = 4345247717033368745 (Adições = 2) +D(68, 51) = 692671813666246913 (Adições = 2) +D(68, 52) = 2184413215964857025 (Adições = 2) +D(68, 53) = 11546881245348557097 (Adições = 2) +D(68, 54) = 14700114286057809545 (Adições = 2) +D(68, 55) = 6699958606772129857 (Adições = 2) +D(68, 56) = 6123121595227588289 (Adições = 2) +D(68, 57) = 6736172933482263945 (Adições = 2) +D(68, 58) = 5708442673376820009 (Adições = 2) +D(68, 59) = 5494990661084004673 (Adições = 2) +D(68, 60) = 8321933798983922817 (Adições = 2) +D(68, 61) = 2926758769937198249 (Adições = 2) +D(68, 62) = 6919170440370437257 (Adições = 2) +D(68, 63) = 17926752286775495169 (Adições = 2) +D(68, 64) = 221573836451411457 (Adições = 2) +D(68, 65) = 3928162434799961225 (Adições = 2) +D(68, 66) = 10608098568585043113 (Adições = 2) +D(68, 67) = 3810081235371548801 (Adições = 2) +D(68, 68) = 2665578252053759297 (Adições = 2) +D(68, 69) = 2898472910743632681 (Adições = 2) +D(68, 70) = 14888347000090369417 (Adições = 2) +D(68, 71) = 5864351823481539265 (Adições = 2) +D(68, 72) = 14823317245192727617 (Adições = 2) +D(68, 73) = 18441413006294539913 (Adições = 2) +D(68, 74) = 18352337348227780905 (Adições = 2) +D(68, 75) = 16793294942749941441 (Adições = 2) +D(68, 76) = 13431257390258554113 (Adições = 2) +D(68, 77) = 18192538691680898217 (Adições = 2) +D(68, 78) = 3352704086712834441 (Adições = 2) +D(68, 79) = 6030201623149904513 (Adições = 2) +D(68, 80) = 13637515565273135489 (Adições = 2) +D(68, 81) = 554478433095283593 (Adições = 2) +D(68, 82) = 13272787631129634985 (Adições = 2) +D(68, 83) = 6676148286086687745 (Adições = 2) +D(68, 84) = 5776118219758846913 (Adições = 2) +D(68, 85) = 16775430922742141225 (Adições = 2) +D(68, 86) = 2832016313061130377 (Adições = 2) +D(68, 87) = 11924865506617106753 (Adições = 2) +D(68, 88) = 6062269048432553409 (Adições = 2) +D(68, 89) = 603273718205838217 (Adições = 2) +D(68, 90) = 12037322739415954217 (Adições = 2) +D(68, 91) = 2704561188081940545 (Adições = 2) +D(68, 92) = 12926305336396026241 (Adições = 2) +D(68, 93) = 2874008315993405609 (Adições = 2) +D(68, 94) = 14426360240613859977 (Adições = 2) +D(68, 95) = 8113985355481208577 (Adições = 2) +D(68, 96) = 10867439362603096321 (Adições = 2) +D(68, 97) = 3601241269453885065 (Adições = 2) +D(68, 98) = 12026293781770322089 (Adições = 2) +D(68, 99) = 2505890964713206657 (Adições = 2) +D(68, 100) = 16261438669295189569 (Adições = 2) +D(69, 0) = 1 (Adições = 0) +D(69, 1) = 139 (Adições = 2) +D(69, 2) = 9661 (Adições = 2) +D(69, 3) = 447719 (Adições = 2) +D(69, 4) = 15565481 (Adições = 2) +D(69, 5) = 433078547 (Adições = 2) +D(69, 6) = 10045957573 (Adições = 2) +D(69, 7) = 199855224847 (Adições = 2) +D(69, 8) = 3481274744593 (Adições = 2) +D(69, 9) = 53944003477467 (Adições = 2) +D(69, 10) = 752954795606925 (Adições = 2) +D(69, 11) = 9563650602194295 (Adições = 2) +D(69, 12) = 111469161371390265 (Adições = 2) +D(69, 13) = 1200690556757659875 (Adições = 2) +D(69, 14) = 12024649034795914005 (Adições = 2) +D(69, 15) = 1868594466491975967 (Adições = 2) +D(69, 16) = 11365621833274352929 (Adições = 2) +D(69, 17) = 2455629413158516779 (Adições = 2) +D(69, 18) = 6126274772187674717 (Adições = 2) +D(69, 19) = 2484383967384248071 (Adições = 2) +D(69, 20) = 2795011125818308297 (Adições = 2) +D(69, 21) = 2419647632787106227 (Adições = 2) +D(69, 22) = 10409343542554830693 (Adições = 2) +D(69, 23) = 1862531239712314159 (Adições = 2) +D(69, 24) = 15382480636783579697 (Adições = 2) +D(69, 25) = 3197469354524969339 (Adições = 2) +D(69, 26) = 7762344526632133677 (Adições = 2) +D(69, 27) = 3414405042383770007 (Adições = 2) +D(69, 28) = 15211828074231354201 (Adições = 2) +D(69, 29) = 3057650863045012355 (Adições = 2) +D(69, 30) = 11040030199279633077 (Adições = 2) +D(69, 31) = 1881305720190563903 (Adições = 2) +D(69, 32) = 996667656223778369 (Adições = 2) +D(69, 33) = 4345404698184078283 (Adições = 2) +D(69, 34) = 14934531681970726653 (Adições = 2) +D(69, 35) = 13989992017242623271 (Adições = 2) +D(69, 36) = 898535598223312617 (Adições = 2) +D(69, 37) = 534962333550261843 (Adições = 2) +D(69, 38) = 15938622933892285701 (Adições = 2) +D(69, 39) = 10501781876633129551 (Adições = 2) +D(69, 40) = 4533483392043008337 (Adições = 2) +D(69, 41) = 17066764125824923419 (Adições = 2) +D(69, 42) = 9521047046176432333 (Adições = 2) +D(69, 43) = 12698682854248772023 (Adições = 2) +D(69, 44) = 4561825541800997241 (Adições = 2) +D(69, 45) = 3551513950434437667 (Adições = 2) +D(69, 46) = 16798468799701519957 (Adições = 2) +D(69, 47) = 11945716534872180575 (Adições = 2) +D(69, 48) = 6845980488679293793 (Adições = 2) +D(69, 49) = 14557733517491147627 (Adições = 2) +D(69, 50) = 6596723095370084765 (Adições = 2) +D(69, 51) = 11634642626069700423 (Adições = 2) +D(69, 52) = 14511727655700804361 (Adições = 2) +D(69, 53) = 9796278043304666867 (Adições = 2) +D(69, 54) = 17596529501001481893 (Adições = 2) +D(69, 55) = 2103114246412318063 (Adições = 2) +D(69, 56) = 14926194448412036209 (Adições = 2) +D(69, 57) = 9338744903412336827 (Adições = 2) +D(69, 58) = 3336616436561869165 (Adições = 2) +D(69, 59) = 14540049771022693847 (Adições = 2) +D(69, 60) = 9910230157381069721 (Adições = 2) +D(69, 61) = 2712178652592639171 (Adições = 2) +D(69, 62) = 12558107862900274677 (Adições = 2) +D(69, 63) = 510542442627103871 (Adições = 2) +D(69, 64) = 212124492144458881 (Adições = 2) +D(69, 65) = 4361860763395831563 (Adições = 2) +D(69, 66) = 451377693071284285 (Adições = 2) +D(69, 67) = 14869557497027876199 (Adições = 2) +D(69, 68) = 2898472910743632681 (Adições = 2) +D(69, 69) = 8462524073541024659 (Adições = 2) +D(69, 70) = 7802599910665475141 (Adições = 2) +D(69, 71) = 10108554660527832207 (Adições = 2) +D(69, 72) = 12349479655492547473 (Adições = 2) +D(69, 73) = 8720721759560711771 (Adições = 2) +D(69, 74) = 8620983966663929357 (Adições = 2) +D(69, 75) = 6873128110222548471 (Adições = 2) +D(69, 76) = 204192295811940793 (Adições = 2) +D(69, 77) = 13381244304041841507 (Adições = 2) +D(69, 78) = 16479743008726022549 (Adições = 2) +D(69, 79) = 7415904644879209887 (Adições = 2) +D(69, 80) = 8636877759592698273 (Adições = 2) +D(69, 81) = 4382127684251565739 (Adições = 2) +D(69, 82) = 18209393748476484317 (Adições = 2) +D(69, 83) = 1264841518273703815 (Adições = 2) +D(69, 84) = 13717108024119238473 (Adições = 2) +D(69, 85) = 17821913092910674995 (Adições = 2) +D(69, 86) = 535872181294843365 (Adições = 2) +D(69, 87) = 15292754000973080495 (Adições = 2) +D(69, 88) = 14833144482313189041 (Adições = 2) +D(69, 89) = 3051943175242029051 (Adições = 2) +D(69, 90) = 15692539632863821485 (Adições = 2) +D(69, 91) = 11987679486652164631 (Adições = 2) +D(69, 92) = 9171801937420579801 (Adições = 2) +D(69, 93) = 6525371516100460035 (Adições = 2) +D(69, 94) = 5378995998998174005 (Adições = 2) +D(69, 95) = 9472597521383690943 (Adições = 2) +D(69, 96) = 10007278165758444225 (Adições = 2) +D(69, 97) = 6029214724105873995 (Adições = 2) +D(69, 98) = 3210005701620529533 (Adições = 2) +D(69, 99) = 17742190448104058279 (Adições = 2) +D(69, 100) = 18062776008402902889 (Adições = 2) +D(70, 0) = 1 (Adições = 0) +D(70, 1) = 141 (Adições = 2) +D(70, 2) = 9941 (Adições = 2) +D(70, 3) = 467321 (Adições = 2) +D(70, 4) = 16480521 (Adições = 2) +D(70, 5) = 465124549 (Adições = 2) +D(70, 6) = 10944160669 (Adições = 2) +D(70, 7) = 220845343089 (Adições = 2) +D(70, 8) = 3901975312529 (Adições = 2) +D(70, 9) = 61327253534589 (Adições = 2) +D(70, 10) = 868226052618981 (Adições = 2) +D(70, 11) = 11184831450420201 (Adições = 2) +D(70, 12) = 132217643424004761 (Adições = 2) +D(70, 13) = 1444377361553054901 (Adições = 2) +D(70, 14) = 14669716953106628781 (Adições = 2) +D(70, 15) = 10116216380684967137 (Adições = 2) +D(70, 16) = 4903688606741744417 (Adições = 2) +D(70, 17) = 278195779465062509 (Adições = 2) +D(70, 18) = 8860099964811254005 (Adições = 2) +D(70, 19) = 17470758704383176793 (Adições = 2) +D(70, 20) = 4303409723876181545 (Adições = 2) +D(70, 21) = 9518068482481596069 (Adições = 2) +D(70, 22) = 3900315584113981373 (Adições = 2) +D(70, 23) = 16172190366381126225 (Adições = 2) +D(70, 24) = 14970458169167468465 (Adições = 2) +D(70, 25) = 15103664086766465885 (Adições = 2) +D(70, 26) = 7616733894214017285 (Adições = 2) +D(70, 27) = 346739389520369353 (Adições = 2) +D(70, 28) = 526228432425941945 (Adições = 2) +D(70, 29) = 348963295992756885 (Adições = 2) +D(70, 30) = 14446644358317402317 (Adições = 2) +D(70, 31) = 8921236204078047681 (Adições = 2) +D(70, 32) = 11799209580492389953 (Adições = 2) +D(70, 33) = 17141281934900246605 (Adições = 2) +D(70, 34) = 17974474241345499925 (Adições = 2) +D(70, 35) = 10005509793139746617 (Adições = 2) +D(70, 36) = 6447293334896130889 (Adições = 2) +D(70, 37) = 7880791266669705349 (Adições = 2) +D(70, 38) = 5907632460402701277 (Adições = 2) +D(70, 39) = 13901293197218564913 (Adições = 2) +D(70, 40) = 10489814392185151185 (Adições = 2) +D(70, 41) = 13643317836343531325 (Adições = 2) +D(70, 42) = 3337640860925783845 (Adições = 2) +D(70, 43) = 7110626687641436585 (Adições = 2) +D(70, 44) = 5924391009981654233 (Adições = 2) +D(70, 45) = 14037730502217089141 (Adições = 2) +D(70, 46) = 15940969178643495149 (Adições = 2) +D(70, 47) = 7791666365798092449 (Adições = 2) +D(70, 48) = 8136619315640015201 (Adições = 2) +D(70, 49) = 11093589248100905005 (Adições = 2) +D(70, 50) = 13801301787252585781 (Adições = 2) +D(70, 51) = 13585923434982819353 (Adições = 2) +D(70, 52) = 2838805569334220905 (Adições = 2) +D(70, 53) = 8700067194630140517 (Adições = 2) +D(70, 54) = 17646130665226737661 (Adições = 2) +D(70, 55) = 452286265221434385 (Adições = 2) +D(70, 56) = 17481594960045788657 (Adições = 2) +D(70, 57) = 4853046164451058461 (Adições = 2) +D(70, 58) = 17528407504425264453 (Adições = 2) +D(70, 59) = 16958329638300275849 (Adições = 2) +D(70, 60) = 4515121419284936185 (Adições = 2) +D(70, 61) = 17137530229258645077 (Adições = 2) +D(70, 62) = 13961072671042007309 (Adições = 2) +D(70, 63) = 8582978902859834241 (Adições = 2) +D(70, 64) = 9305645837631396993 (Adições = 2) +D(70, 65) = 13879631093171687437 (Adições = 2) +D(70, 66) = 246125475929251669 (Adições = 2) +D(70, 67) = 15567060666028412153 (Adições = 2) +D(70, 68) = 14888347000090369417 (Adições = 2) +D(70, 69) = 7802599910665475141 (Adições = 2) +D(70, 70) = 5620979821162423325 (Adições = 2) +D(70, 71) = 5085390318646179057 (Adições = 2) +D(70, 72) = 9096680560957007121 (Adições = 2) +D(70, 73) = 11720137902300714749 (Adições = 2) +D(70, 74) = 10615099554815804261 (Adições = 2) +D(70, 75) = 7662467557992730473 (Adições = 2) +D(70, 76) = 14739787964027219737 (Adições = 2) +D(70, 77) = 9878480490171450421 (Adições = 2) +D(70, 78) = 2845979655520211245 (Adições = 2) +D(70, 79) = 8294883235415892065 (Adições = 2) +D(70, 80) = 5900921566178248609 (Adições = 2) +D(70, 81) = 473182936312961005 (Adições = 2) +D(70, 82) = 4617960295331459445 (Adições = 2) +D(70, 83) = 5645451488372095961 (Adições = 2) +D(70, 84) = 2180656957055486633 (Adições = 2) +D(70, 85) = 15272934000375848485 (Adições = 2) +D(70, 86) = 15183975200871815229 (Adições = 2) +D(70, 87) = 12565857309430187473 (Adições = 2) +D(70, 88) = 5798267645297353777 (Adições = 2) +D(70, 89) = 5236611229143020253 (Adições = 2) +D(70, 90) = 5534349963539319173 (Adições = 2) +D(70, 91) = 14767825009345753673 (Adições = 2) +D(70, 92) = 17480562359708946489 (Adições = 2) +D(70, 93) = 14730991739520434709 (Adições = 2) +D(70, 94) = 8188615180909517133 (Adições = 2) +D(70, 95) = 4593464627581830465 (Adições = 2) +D(70, 96) = 5626596241014414017 (Adições = 2) +D(70, 97) = 3216345057169180621 (Adições = 2) +D(70, 98) = 12455565482895584149 (Adições = 2) +D(70, 99) = 14961017558910620345 (Adições = 2) +D(70, 100) = 13872495867998478281 (Adições = 2) +D(71, 0) = 1 (Adições = 0) +D(71, 1) = 143 (Adições = 2) +D(71, 2) = 10225 (Adições = 2) +D(71, 3) = 487487 (Adições = 2) +D(71, 4) = 17435329 (Adições = 2) +D(71, 5) = 499040399 (Adições = 2) +D(71, 6) = 11908325617 (Adições = 2) +D(71, 7) = 243697829375 (Adições = 2) +D(71, 8) = 4366518484993 (Adições = 2) +D(71, 9) = 69595747332111 (Adições = 2) +D(71, 10) = 999149053485681 (Adições = 2) +D(71, 11) = 13052206556524863 (Adições = 2) +D(71, 12) = 156454681430949825 (Adições = 2) +D(71, 13) = 1733049686408009487 (Adições = 2) +D(71, 14) = 17847144001067693169 (Adições = 2) +D(71, 15) = 5739589187440185855 (Adições = 2) +D(71, 16) = 2312750101157345793 (Adições = 2) +D(71, 17) = 7494634487364152719 (Adições = 2) +D(71, 18) = 16632930231640469233 (Adições = 2) +D(71, 19) = 6070300753415796799 (Adições = 2) +D(71, 20) = 9397725107965603521 (Adições = 2) +D(71, 21) = 4772459240613829519 (Adições = 2) +D(71, 22) = 18190843307209406961 (Adições = 2) +D(71, 23) = 1369861110285411327 (Adições = 2) +D(71, 24) = 14065765572124454401 (Adições = 2) +D(71, 25) = 7246399680639285519 (Adições = 2) +D(71, 26) = 11520053587910217073 (Adições = 2) +D(71, 27) = 1036782797935052095 (Adições = 2) +D(71, 28) = 1909750619881363393 (Adições = 2) +D(71, 29) = 2784942348300062223 (Adições = 2) +D(71, 30) = 17580550002610221425 (Adições = 2) +D(71, 31) = 4054942417586568191 (Adições = 2) +D(71, 32) = 6328644128447454209 (Adições = 2) +D(71, 33) = 16822391570130539151 (Adições = 2) +D(71, 34) = 15044659598957182449 (Adições = 2) +D(71, 35) = 6131155486023325759 (Adições = 2) +D(71, 36) = 4137214540349651649 (Adições = 2) +D(71, 37) = 18555068205936271 (Adições = 2) +D(71, 38) = 13806978795278342897 (Adições = 2) +D(71, 39) = 15169160379190057471 (Adições = 2) +D(71, 40) = 2666779821174670337 (Adições = 2) +D(71, 41) = 8353167975993801231 (Adições = 2) +D(71, 42) = 6887382599553564785 (Adições = 2) +D(71, 43) = 17335650148120785215 (Adições = 2) +D(71, 44) = 11923923772034324417 (Adições = 2) +D(71, 45) = 13439301210523516175 (Adições = 2) +D(71, 46) = 6524512743964997233 (Adições = 2) +D(71, 47) = 11810404214697033215 (Adições = 2) +D(71, 48) = 9291945822425589249 (Adições = 2) +D(71, 49) = 10075410312456957839 (Adições = 2) +D(71, 50) = 16523557274100897009 (Adições = 2) +D(71, 51) = 7017294348917198911 (Adições = 2) +D(71, 52) = 4995279279524687553 (Adições = 2) +D(71, 53) = 16534152043489048975 (Adições = 2) +D(71, 54) = 5986861755926823921 (Adições = 2) +D(71, 55) = 5638534612665444351 (Adições = 2) +D(71, 56) = 5125671764223115777 (Adições = 2) +D(71, 57) = 9013568815010411279 (Adições = 2) +D(71, 58) = 12948278410177182577 (Adições = 2) +D(71, 59) = 10541527405483619647 (Adições = 2) +D(71, 60) = 13568234389359280065 (Adições = 2) +D(71, 61) = 16774141964193309711 (Adições = 2) +D(71, 62) = 10979256717074858865 (Adições = 2) +D(71, 63) = 15076564217267148799 (Adições = 2) +D(71, 64) = 14518444884048828417 (Adições = 2) +D(71, 65) = 810233667432809615 (Adições = 2) +D(71, 66) = 14935990236533748721 (Adições = 2) +D(71, 67) = 12302432304781860927 (Adições = 2) +D(71, 68) = 5864351823481539265 (Adições = 2) +D(71, 69) = 10108554660527832207 (Adições = 2) +D(71, 70) = 5085390318646179057 (Adições = 2) +D(71, 71) = 15791760458454781439 (Adições = 2) +D(71, 72) = 11527087264348416001 (Adições = 2) +D(71, 73) = 13897161653896586255 (Adições = 2) +D(71, 74) = 17785655037303553649 (Adições = 2) +D(71, 75) = 17616478076402536767 (Adições = 2) +D(71, 76) = 3125245451003383745 (Adições = 2) +D(71, 77) = 9296769831492502287 (Adições = 2) +D(71, 78) = 3574485903474612337 (Adições = 2) +D(71, 79) = 14715348794410715647 (Adições = 2) +D(71, 80) = 10464409522295304705 (Adições = 2) +D(71, 81) = 16838514024786514319 (Adições = 2) +D(71, 82) = 3482913182721383153 (Adições = 2) +D(71, 83) = 13746324966424938559 (Adições = 2) +D(71, 84) = 3125689338142969537 (Adições = 2) +D(71, 85) = 2132536221864753039 (Adições = 2) +D(71, 86) = 14142701349402865137 (Adições = 2) +D(71, 87) = 4999045712285764607 (Adições = 2) +D(71, 88) = 4916426593303754241 (Adições = 2) +D(71, 89) = 15951305467744128271 (Adições = 2) +D(71, 90) = 8275522586716916081 (Adições = 2) +D(71, 91) = 10130953485892437311 (Adições = 2) +D(71, 92) = 5485852707528034241 (Adições = 2) +D(71, 93) = 803918659338312207 (Adições = 2) +D(71, 94) = 5276781506058712433 (Adições = 2) +D(71, 95) = 18058861314550060031 (Adições = 2) +D(71, 96) = 9832178109436752897 (Adições = 2) +D(71, 97) = 228375333910795919 (Adições = 2) +D(71, 98) = 15900285873975560689 (Adições = 2) +D(71, 99) = 6423380768362661951 (Adições = 2) +D(71, 100) = 16810150121562208961 (Adições = 2) +D(72, 0) = 1 (Adições = 0) +D(72, 1) = 145 (Adições = 2) +D(72, 2) = 10513 (Adições = 2) +D(72, 3) = 508225 (Adições = 2) +D(72, 4) = 18431041 (Adições = 2) +D(72, 5) = 534906769 (Adições = 2) +D(72, 6) = 12942272785 (Adições = 2) +D(72, 7) = 268548427777 (Adições = 2) +D(72, 8) = 4878764742145 (Adições = 2) +D(72, 9) = 78841030559249 (Adições = 2) +D(72, 10) = 1147585831377041 (Adições = 2) +D(72, 11) = 15198941441387585 (Adições = 2) +D(72, 12) = 184705829428862273 (Adições = 2) +D(72, 13) = 2074210197267821585 (Adições = 2) +D(72, 14) = 3207659811033972625 (Adições = 2) +D(72, 15) = 8347648925832300033 (Adições = 2) +D(72, 16) = 16399988214429831681 (Adições = 2) +D(72, 17) = 7760628729241778577 (Adições = 2) +D(72, 18) = 13441449374536848913 (Adições = 2) +D(72, 19) = 17697936285883563329 (Adições = 2) +D(72, 20) = 14719218073555412033 (Adições = 2) +D(72, 21) = 10442658348425293457 (Adições = 2) +D(72, 22) = 14959216822538978321 (Adições = 2) +D(72, 23) = 16073177166324244993 (Adições = 2) +D(72, 24) = 13062059775024559105 (Adições = 2) +D(72, 25) = 15927480954078747409 (Adições = 2) +D(72, 26) = 16247190148918698385 (Adições = 2) +D(72, 27) = 10357282461054415937 (Adições = 2) +D(72, 28) = 13303815878870831425 (Adições = 2) +D(72, 29) = 17998508847052257041 (Adições = 2) +D(72, 30) = 1470513050543437457 (Adições = 2) +D(72, 31) = 4659261397030675457 (Adições = 2) +D(72, 32) = 15042847943064697857 (Adições = 2) +D(72, 33) = 1300395494223587985 (Adições = 2) +D(72, 34) = 14720702589601757969 (Adições = 2) +D(72, 35) = 17449773600872714561 (Adições = 2) +D(72, 36) = 9271399553536140353 (Adições = 2) +D(72, 37) = 13427169162091728273 (Adições = 2) +D(72, 38) = 8805958951866455825 (Adições = 2) +D(72, 39) = 888609978915752961 (Adições = 2) +D(72, 40) = 277806105570929153 (Adições = 2) +D(72, 41) = 11297753902739400721 (Adições = 2) +D(72, 42) = 8091560404577215121 (Adições = 2) +D(72, 43) = 13867849078542013505 (Adições = 2) +D(72, 44) = 6233934851278019905 (Adições = 2) +D(72, 45) = 13150415760126308881 (Adições = 2) +D(72, 46) = 14667485640905270673 (Adições = 2) +D(72, 47) = 14555658525857749505 (Adições = 2) +D(72, 48) = 17211264489270820353 (Adições = 2) +D(72, 49) = 18131876550443815825 (Adições = 2) +D(72, 50) = 7837355989582567441 (Adições = 2) +D(72, 51) = 12931463538891111745 (Adições = 2) +D(72, 52) = 6497293093623446593 (Adições = 2) +D(72, 53) = 9579980342927631505 (Adições = 2) +D(72, 54) = 13654250068633952785 (Adições = 2) +D(72, 55) = 6832902363516669441 (Adições = 2) +D(72, 56) = 17597108740405229569 (Adições = 2) +D(72, 57) = 13289605245929205009 (Adições = 2) +D(72, 58) = 16804708397407247249 (Adições = 2) +D(72, 59) = 3401026065648946241 (Adições = 2) +D(72, 60) = 9064043786782294337 (Adições = 2) +D(72, 61) = 2512931992915780881 (Adições = 2) +D(72, 62) = 11819586600474397841 (Adições = 2) +D(72, 63) = 981919387397302273 (Adições = 2) +D(72, 64) = 12130184415003727873 (Adições = 2) +D(72, 65) = 9012118892775814289 (Adições = 2) +D(72, 66) = 6311598723032821009 (Adições = 2) +D(72, 67) = 15103277190638879041 (Adições = 2) +D(72, 68) = 14823317245192727617 (Adições = 2) +D(72, 69) = 12349479655492547473 (Adições = 2) +D(72, 70) = 9096680560957007121 (Adições = 2) +D(72, 71) = 11527087264348416001 (Adições = 2) +D(72, 72) = 1952446839732510209 (Adições = 2) +D(72, 73) = 8929951684267960849 (Adições = 2) +D(72, 74) = 3719280228048997521 (Adições = 2) +D(72, 75) = 2227925194335984705 (Adições = 2) +D(72, 76) = 4522904648032353601 (Adições = 2) +D(72, 77) = 16944919930528239633 (Adições = 2) +D(72, 78) = 11369431591785802641 (Adições = 2) +D(72, 79) = 11212522215961579009 (Adições = 2) +D(72, 80) = 17945536458958047745 (Adições = 2) +D(72, 81) = 8354971858620763537 (Adições = 2) +D(72, 82) = 10229654992419109393 (Adições = 2) +D(72, 83) = 9012149067855879489 (Adições = 2) +D(72, 84) = 7437419298714235969 (Adições = 2) +D(72, 85) = 12695644858721958545 (Adições = 2) +D(72, 86) = 10524138356280025105 (Adições = 2) +D(72, 87) = 11219141344259103233 (Adições = 2) +D(72, 88) = 2687869576139070465 (Adições = 2) +D(72, 89) = 5108857563477401361 (Adições = 2) +D(72, 90) = 10888941544228894097 (Adições = 2) +D(72, 91) = 10848673543128695873 (Adições = 2) +D(72, 92) = 8018735662839615809 (Adições = 2) +D(72, 93) = 14308507029705962257 (Adições = 2) +D(72, 94) = 1942463121393435281 (Adições = 2) +D(72, 95) = 6831361868292656129 (Adições = 2) +D(72, 96) = 16275657218569917441 (Adições = 2) +D(72, 97) = 7889466588207914641 (Adições = 2) +D(72, 98) = 5571383722384719633 (Adições = 2) +D(72, 99) = 9448306291013390657 (Adições = 2) +D(72, 100) = 14235093107228709953 (Adições = 2) +D(73, 0) = 1 (Adições = 0) +D(73, 1) = 147 (Adições = 2) +D(73, 2) = 10805 (Adições = 2) +D(73, 3) = 529543 (Adições = 2) +D(73, 4) = 19468809 (Adições = 2) +D(73, 5) = 572806619 (Adições = 2) +D(73, 6) = 14049986173 (Adições = 2) +D(73, 7) = 295540686735 (Adições = 2) +D(73, 8) = 5442853856657 (Adições = 2) +D(73, 9) = 89162649158051 (Adições = 2) +D(73, 10) = 1315589511094341 (Adições = 2) +D(73, 11) = 17662116783858967 (Adições = 2) +D(73, 12) = 217566887654108825 (Adições = 2) +D(73, 13) = 2476482914350792683 (Adições = 2) +D(73, 14) = 7758352922652586893 (Adições = 2) +D(73, 15) = 866917585809307935 (Adições = 2) +D(73, 16) = 7167810652361888033 (Adições = 2) +D(73, 17) = 12881683522323946675 (Adições = 2) +D(73, 18) = 15637017552393022549 (Adições = 2) +D(73, 19) = 9882915065394331559 (Adições = 2) +D(73, 20) = 5406581277414203689 (Adições = 2) +D(73, 21) = 12121713625685357563 (Adições = 2) +D(73, 22) = 630100649230526109 (Adições = 2) +D(73, 23) = 13215750564384197807 (Adições = 2) +D(73, 24) = 5457499358313898673 (Adições = 2) +D(73, 25) = 16000296013707653571 (Adições = 2) +D(73, 26) = 11281478969285996133 (Adições = 2) +D(73, 27) = 992463431840007223 (Adições = 2) +D(73, 28) = 6206817698055702969 (Adições = 2) +D(73, 29) = 615654276559688203 (Adições = 2) +D(73, 30) = 1637932100445831085 (Adições = 2) +D(73, 31) = 7767706548019943999 (Adições = 2) +D(73, 32) = 9023071814405765697 (Adições = 2) +D(73, 33) = 6919571177984499923 (Adições = 2) +D(73, 34) = 4493925188100294261 (Adições = 2) +D(73, 35) = 18217657304865215175 (Adições = 2) +D(73, 36) = 8045342311854966857 (Adições = 2) +D(73, 37) = 12297166953773283867 (Adições = 2) +D(73, 38) = 16083550994021916349 (Adições = 2) +D(73, 39) = 7331375851094573519 (Adições = 2) +D(73, 40) = 8497791935581255633 (Adições = 2) +D(73, 41) = 1626607870182033891 (Adições = 2) +D(73, 42) = 2569178103789098117 (Adições = 2) +D(73, 43) = 6081843513198775127 (Adições = 2) +D(73, 44) = 7736883369309256921 (Adições = 2) +D(73, 45) = 8674489907004034091 (Adições = 2) +D(73, 46) = 18045647234326062029 (Adições = 2) +D(73, 47) = 10375303253669978975 (Adições = 2) +D(73, 48) = 5248738121379445601 (Adições = 2) +D(73, 49) = 3698391013674978547 (Adições = 2) +D(73, 50) = 11220879479991810197 (Adições = 2) +D(73, 51) = 13542954934755937767 (Adições = 2) +D(73, 52) = 14524967493560944489 (Adições = 2) +D(73, 53) = 12155496856402470971 (Adições = 2) +D(73, 54) = 16942983194254503645 (Adições = 2) +D(73, 55) = 536647478986022639 (Adições = 2) +D(73, 56) = 6519914509198370033 (Adições = 2) +D(73, 57) = 513140348113701379 (Adições = 2) +D(73, 58) = 12160709917740602021 (Adições = 2) +D(73, 59) = 13919700307087243895 (Adições = 2) +D(73, 60) = 7938026085808932857 (Adições = 2) +D(73, 61) = 1068257791797456459 (Adições = 2) +D(73, 62) = 15400776385187635181 (Adições = 2) +D(73, 63) = 9755538299349783679 (Adições = 2) +D(73, 64) = 4420898028041262209 (Adições = 2) +D(73, 65) = 7116457262111252755 (Adições = 2) +D(73, 66) = 3993430804210336437 (Adições = 2) +D(73, 67) = 6961562644172484871 (Adições = 2) +D(73, 68) = 18441413006294539913 (Adições = 2) +D(73, 69) = 8720721759560711771 (Adições = 2) +D(73, 70) = 11720137902300714749 (Adições = 2) +D(73, 71) = 13897161653896586255 (Adições = 2) +D(73, 72) = 8929951684267960849 (Adições = 2) +D(73, 73) = 1365606134558880291 (Adições = 2) +D(73, 74) = 14014838046875838661 (Adições = 2) +D(73, 75) = 1515299395551269271 (Adições = 2) +D(73, 76) = 8266129237919607577 (Adições = 2) +D(73, 77) = 11287209742770649195 (Adições = 2) +D(73, 78) = 2708073117665588237 (Adições = 2) +D(73, 79) = 6843282851703418271 (Adições = 2) +D(73, 80) = 17554597452913493409 (Adições = 2) +D(73, 81) = 6961617623073201459 (Adições = 2) +D(73, 82) = 7099500400403522773 (Adições = 2) +D(73, 83) = 7894560386968960039 (Adições = 2) +D(73, 84) = 5897384679829523881 (Adições = 2) +D(73, 85) = 7583704763556166779 (Adições = 2) +D(73, 86) = 12356743904848598813 (Adições = 2) +D(73, 87) = 15653279531678175535 (Adições = 2) +D(73, 88) = 11113546378366797617 (Adições = 2) +D(73, 89) = 463529444273717827 (Adições = 2) +D(73, 90) = 16461328551980013285 (Adições = 2) +D(73, 91) = 1305455491918500023 (Adições = 2) +D(73, 92) = 1726120624177260089 (Adições = 2) +D(73, 93) = 5606619243013286539 (Adições = 2) +D(73, 94) = 3410845320403132461 (Adições = 2) +D(73, 95) = 12184670310089223871 (Adições = 2) +D(73, 96) = 16844945323242245825 (Adições = 2) +D(73, 97) = 4116580982600974675 (Adições = 2) +D(73, 98) = 17577431293193608949 (Adições = 2) +D(73, 99) = 14150377232882167623 (Adições = 2) +D(73, 100) = 940288483705165001 (Adições = 2) +D(74, 0) = 1 (Adições = 0) +D(74, 1) = 149 (Adições = 2) +D(74, 2) = 11101 (Adições = 2) +D(74, 3) = 551449 (Adições = 2) +D(74, 4) = 20549801 (Adições = 2) +D(74, 5) = 612825229 (Adições = 2) +D(74, 6) = 15235618021 (Adições = 2) +D(74, 7) = 324826290929 (Adições = 2) +D(74, 8) = 6063220834321 (Adições = 2) +D(74, 9) = 100668723849029 (Adições = 2) +D(74, 10) = 1505420884101421 (Adições = 2) +D(74, 11) = 20483127179054729 (Adições = 2) +D(74, 12) = 255712131617022521 (Adições = 2) +D(74, 13) = 2949761933621924029 (Adições = 2) +D(74, 14) = 13184597770625303605 (Adições = 2) +D(74, 15) = 3363124205377646817 (Adições = 2) +D(74, 16) = 11397852443548842785 (Adições = 2) +D(74, 17) = 13000602544525125877 (Adições = 2) +D(74, 18) = 4625815471822991869 (Adições = 2) +D(74, 19) = 11699004015900794361 (Adições = 2) +D(74, 20) = 8541756284999777993 (Adições = 2) +D(74, 21) = 7623307114389787629 (Adições = 2) +D(74, 22) = 1928377315596119685 (Adições = 2) +D(74, 23) = 15774228529210843601 (Adições = 2) +D(74, 24) = 16000734378199388465 (Adições = 2) +D(74, 25) = 565041602801837477 (Adições = 2) +D(74, 26) = 9400072512085935565 (Adições = 2) +D(74, 27) = 3227270839502387305 (Adições = 2) +D(74, 28) = 10426551969398097497 (Adições = 2) +D(74, 29) = 17249023944013488669 (Adições = 2) +D(74, 30) = 1055866247309456341 (Adições = 2) +D(74, 31) = 10461504895775231425 (Adições = 2) +D(74, 32) = 8805539184491389505 (Adições = 2) +D(74, 33) = 6301438103172103509 (Adições = 2) +D(74, 34) = 17714934469256897693 (Adições = 2) +D(74, 35) = 3533028814803303897 (Adições = 2) +D(74, 36) = 11349284357813934313 (Adições = 2) +D(74, 37) = 13245049549732633421 (Adições = 2) +D(74, 38) = 4732279350108730405 (Adições = 2) +D(74, 39) = 9700462121515668657 (Adições = 2) +D(74, 40) = 7082885834481946193 (Adições = 2) +D(74, 41) = 17207285640245235717 (Adições = 2) +D(74, 42) = 2956327540506816109 (Adições = 2) +D(74, 43) = 11607349157494689353 (Adições = 2) +D(74, 44) = 6979331966293169785 (Adições = 2) +D(74, 45) = 4943961168896909181 (Adições = 2) +D(74, 46) = 13217354236517453685 (Adições = 2) +D(74, 47) = 4744816577094391457 (Adições = 2) +D(74, 48) = 1922113878434264417 (Adições = 2) +D(74, 49) = 10869243013488688565 (Adições = 2) +D(74, 50) = 7341769433445925693 (Adições = 2) +D(74, 51) = 13658859774484122041 (Adições = 2) +D(74, 52) = 4833294055381901065 (Adições = 2) +D(74, 53) = 13067014331635764909 (Adições = 2) +D(74, 54) = 5272006234873636293 (Adições = 2) +D(74, 55) = 4304892834404610961 (Adições = 2) +D(74, 56) = 11361454822589003633 (Adições = 2) +D(74, 57) = 18394509679901075045 (Adições = 2) +D(74, 58) = 12621615872045826829 (Adições = 2) +D(74, 59) = 1808537949454569513 (Adições = 2) +D(74, 60) = 5219520268641194649 (Adições = 2) +D(74, 61) = 14225804146247583965 (Adições = 2) +D(74, 62) = 12248094249523123989 (Adições = 2) +D(74, 63) = 510920786641439617 (Adições = 2) +D(74, 64) = 14687357114032485505 (Adições = 2) +D(74, 65) = 7777968330475448853 (Adições = 2) +D(74, 66) = 441112323087486429 (Adições = 2) +D(74, 67) = 11396105771470307737 (Adições = 2) +D(74, 68) = 18352337348227780905 (Adições = 2) +D(74, 69) = 8620983966663929357 (Adições = 2) +D(74, 70) = 10615099554815804261 (Adições = 2) +D(74, 71) = 17785655037303553649 (Adições = 2) +D(74, 72) = 3719280228048997521 (Adições = 2) +D(74, 73) = 14014838046875838661 (Adições = 2) +D(74, 74) = 10948538154601005997 (Adições = 2) +D(74, 75) = 8031931523318562313 (Adições = 2) +D(74, 76) = 17813360156789439161 (Adições = 2) +D(74, 77) = 473210990060592701 (Adições = 2) +D(74, 78) = 14468493850496830133 (Adições = 2) +D(74, 79) = 5573105746156285025 (Adições = 2) +D(74, 80) = 11524241977063645089 (Adições = 2) +D(74, 81) = 17593712979340788341 (Adições = 2) +D(74, 82) = 13208086929107960957 (Adições = 2) +D(74, 83) = 9755403642770892153 (Adições = 2) +D(74, 84) = 5100604635859824457 (Adições = 2) +D(74, 85) = 134950005535963501 (Adições = 2) +D(74, 86) = 1628654600231177477 (Adições = 2) +D(74, 87) = 11191933963048400209 (Adições = 2) +D(74, 88) = 1065271725674270129 (Adições = 2) +D(74, 89) = 12642347548314785573 (Adições = 2) +D(74, 90) = 11120461470858965069 (Adições = 2) +D(74, 91) = 10440501441047926761 (Adições = 2) +D(74, 92) = 13472077557143686873 (Adições = 2) +D(74, 93) = 2358073350624681885 (Adições = 2) +D(74, 94) = 11375537914041100885 (Adições = 2) +D(74, 95) = 8524309470823905601 (Adições = 2) +D(74, 96) = 660436956736272065 (Adições = 2) +D(74, 97) = 3175219188869940949 (Adições = 2) +D(74, 98) = 6422487390954972957 (Adições = 2) +D(74, 99) = 1256807769611646297 (Adições = 2) +D(74, 100) = 16347473486198978921 (Adições = 2) +D(75, 0) = 1 (Adições = 0) +D(75, 1) = 151 (Adições = 2) +D(75, 2) = 11401 (Adições = 2) +D(75, 3) = 573951 (Adições = 2) +D(75, 4) = 21675201 (Adições = 2) +D(75, 5) = 655050231 (Adições = 2) +D(75, 6) = 16503493481 (Adições = 2) +D(75, 7) = 356565402431 (Adições = 2) +D(75, 8) = 6744612527681 (Adições = 2) +D(75, 9) = 113476557211031 (Adições = 2) +D(75, 10) = 1719566165161481 (Adições = 2) +D(75, 11) = 23708114228317631 (Adições = 2) +D(75, 12) = 299903373024394881 (Adições = 2) +D(75, 13) = 3505377438263341431 (Adições = 2) +D(75, 14) = 1192993068801017449 (Adições = 2) +D(75, 15) = 17740715044803967871 (Adições = 2) +D(75, 16) = 14054947620020905857 (Adições = 2) +D(75, 17) = 1559914460675771287 (Adições = 2) +D(75, 18) = 739588403314337417 (Adições = 2) +D(75, 19) = 17064407891038123647 (Adições = 2) +D(75, 20) = 411680044519592769 (Adições = 2) +D(75, 21) = 16576743443909158391 (Adições = 2) +D(75, 22) = 7681683800185514089 (Adições = 2) +D(75, 23) = 6937545571282925759 (Adições = 2) +D(75, 24) = 1819020331274054593 (Adições = 2) +D(75, 25) = 18384796312275280535 (Adições = 2) +D(75, 26) = 9903166353453501961 (Adições = 2) +D(75, 27) = 4083765631332273215 (Adições = 2) +D(75, 28) = 17737588440232758017 (Adições = 2) +D(75, 29) = 8519676206225240951 (Adições = 2) +D(75, 30) = 8377822323838634345 (Adições = 2) +D(75, 31) = 1448449393213770495 (Adições = 2) +D(75, 32) = 2268749399770839809 (Adições = 2) +D(75, 33) = 17375726687434332823 (Adições = 2) +D(75, 34) = 4498611112444230793 (Adições = 2) +D(75, 35) = 7299830322794880767 (Adições = 2) +D(75, 36) = 3735399421702567361 (Adições = 2) +D(75, 37) = 9882989255539583479 (Adições = 2) +D(75, 38) = 9413574081671395689 (Adições = 2) +D(75, 39) = 5399571479586243135 (Adições = 2) +D(75, 40) = 3736175361874306369 (Adições = 2) +D(75, 41) = 9579602762891936663 (Adições = 2) +D(75, 42) = 11296471869934436873 (Adições = 2) +D(75, 43) = 7413404494226390719 (Adições = 2) +D(75, 44) = 7553341544304698241 (Adições = 2) +D(75, 45) = 1029890605785225591 (Adições = 2) +D(75, 46) = 744461937490036841 (Adições = 2) +D(75, 47) = 259888677392330367 (Adições = 2) +D(75, 48) = 6926819132920986241 (Adições = 2) +D(75, 49) = 1271431951134387607 (Adições = 2) +D(75, 50) = 1035700324359450249 (Adições = 2) +D(75, 51) = 3589585458579946367 (Adições = 2) +D(75, 52) = 3634995214736417857 (Adições = 2) +D(75, 53) = 3088559528044532215 (Adições = 2) +D(75, 54) = 2980836020844381801 (Adições = 2) +D(75, 55) = 12557735090122629055 (Adições = 2) +D(75, 56) = 9777338673406692033 (Adições = 2) +D(75, 57) = 2639815028477667479 (Adições = 2) +D(75, 58) = 15209196506715017737 (Adições = 2) +D(75, 59) = 11192606254505862463 (Adições = 2) +D(75, 60) = 18220664472601626625 (Adições = 2) +D(75, 61) = 772500740071302007 (Adições = 2) +D(75, 62) = 8799655062132458345 (Adições = 2) +D(75, 63) = 3111926024587470335 (Adições = 2) +D(75, 64) = 18310203925261395457 (Adições = 2) +D(75, 65) = 3882041222350226583 (Adições = 2) +D(75, 66) = 12101121875913161865 (Adições = 2) +D(75, 67) = 5491595896761404415 (Adições = 2) +D(75, 68) = 16793294942749941441 (Adições = 2) +D(75, 69) = 6873128110222548471 (Adições = 2) +D(75, 70) = 7662467557992730473 (Adições = 2) +D(75, 71) = 17616478076402536767 (Adições = 2) +D(75, 72) = 2227925194335984705 (Adições = 2) +D(75, 73) = 1515299395551269271 (Adições = 2) +D(75, 74) = 8031931523318562313 (Adições = 2) +D(75, 75) = 8565657127528579007 (Adições = 2) +D(75, 76) = 15964204733927028865 (Adições = 2) +D(75, 77) = 15804031807067509111 (Adições = 2) +D(75, 78) = 12298992573915380329 (Adições = 2) +D(75, 79) = 13893848096858943871 (Adições = 2) +D(75, 80) = 12544451746369322369 (Adições = 2) +D(75, 81) = 4768918555354652567 (Adições = 2) +D(75, 82) = 17123974390093850249 (Adições = 2) +D(75, 83) = 3193976814553600127 (Adições = 2) +D(75, 84) = 18049985093184316737 (Adições = 2) +D(75, 85) = 4838795660870553079 (Adições = 2) +D(75, 86) = 6602400266637694057 (Adições = 2) +D(75, 87) = 976244756207720127 (Adições = 2) +D(75, 88) = 13233450444930390465 (Adições = 2) +D(75, 89) = 8494325645209894551 (Adições = 2) +D(75, 90) = 13810390590674093577 (Adições = 2) +D(75, 91) = 16924609428871433791 (Adições = 2) +D(75, 92) = 3943700279643944193 (Adições = 2) +D(75, 93) = 1327107113702761335 (Adições = 2) +D(75, 94) = 15060718378368544105 (Adições = 2) +D(75, 95) = 16513821689523998975 (Adições = 2) +D(75, 96) = 7251824043374625025 (Adições = 2) +D(75, 97) = 11087480188980838039 (Adições = 2) +D(75, 98) = 2238442695096200329 (Adições = 2) +D(75, 99) = 9917737855662819583 (Adições = 2) +D(75, 100) = 9075275037763893185 (Adições = 2) +D(76, 0) = 1 (Adições = 0) +D(76, 1) = 153 (Adições = 2) +D(76, 2) = 11705 (Adições = 2) +D(76, 3) = 597057 (Adições = 2) +D(76, 4) = 22846209 (Adições = 2) +D(76, 5) = 699571641 (Adições = 2) +D(76, 6) = 17858115353 (Adições = 2) +D(76, 7) = 390927011265 (Adições = 2) +D(76, 8) = 7492104941377 (Adições = 2) +D(76, 9) = 127713274680089 (Adições = 2) +D(76, 10) = 1960755997052601 (Adições = 2) +D(76, 11) = 27388436390531713 (Adições = 2) +D(76, 12) = 350999923643244225 (Adições = 2) +D(76, 13) = 4156280734930980537 (Adições = 2) +D(76, 14) = 8854651241995339417 (Adições = 2) +D(76, 15) = 9341615281890773121 (Adições = 2) +D(76, 16) = 4243789799296543617 (Adições = 2) +D(76, 17) = 1411907806283669145 (Adições = 2) +D(76, 18) = 3711410670273777849 (Adições = 2) +D(76, 19) = 3068662890916687297 (Adições = 2) +D(76, 20) = 2098006752764852097 (Adições = 2) +D(76, 21) = 639686167484051641 (Adições = 2) +D(76, 22) = 6451369337869172505 (Adições = 2) +D(76, 23) = 2623854635628060737 (Adições = 2) +D(76, 24) = 11380420538185041089 (Adições = 2) +D(76, 25) = 13137493108024824601 (Adições = 2) +D(76, 26) = 4531967626334503865 (Adições = 2) +D(76, 27) = 72155537410727425 (Adições = 2) +D(76, 28) = 3446765535266207041 (Adições = 2) +D(76, 29) = 11257286108014654393 (Adições = 2) +D(76, 30) = 9708040564368978073 (Adições = 2) +D(76, 31) = 1087568207711831297 (Adições = 2) +D(76, 32) = 4804767000696441601 (Adições = 2) +D(76, 33) = 6002499014192062617 (Adições = 2) +D(76, 34) = 9430092740361074617 (Adições = 2) +D(76, 35) = 2781790101890634561 (Adições = 2) +D(76, 36) = 13817019846388082689 (Adições = 2) +D(76, 37) = 8988664449920681913 (Adições = 2) +D(76, 38) = 9838483713422109465 (Adições = 2) +D(76, 39) = 6204885200970196673 (Adições = 2) +D(76, 40) = 15340632042430746177 (Adições = 2) +D(76, 41) = 10209666093487437593 (Adições = 2) +D(76, 42) = 12638996652604259513 (Adições = 2) +D(76, 43) = 12902128943055535489 (Adições = 2) +D(76, 44) = 9422130907877072833 (Adições = 2) +D(76, 45) = 18005363057966996665 (Adições = 2) +D(76, 46) = 1332971527532707481 (Adições = 2) +D(76, 47) = 2337322142415074689 (Adições = 2) +D(76, 48) = 9524029952728391297 (Adições = 2) +D(76, 49) = 17722281036783765145 (Adições = 2) +D(76, 50) = 1582669238568051385 (Adições = 2) +D(76, 51) = 6207955021507448001 (Adições = 2) +D(76, 52) = 13432535694823812225 (Adições = 2) +D(76, 53) = 1709346363895210681 (Adições = 2) +D(76, 54) = 7778741912784124697 (Adições = 2) +D(76, 55) = 4870568950041583937 (Adições = 2) +D(76, 56) = 8758898639861353409 (Adições = 2) +D(76, 57) = 2729308268036161305 (Adições = 2) +D(76, 58) = 2131575729519294905 (Adições = 2) +D(76, 59) = 10086634417030623489 (Adições = 2) +D(76, 60) = 2606416996719009345 (Adições = 2) +D(76, 61) = 3152838135682386361 (Adições = 2) +D(76, 62) = 12724993937886146713 (Adições = 2) +D(76, 63) = 6189830950896523777 (Adições = 2) +D(76, 64) = 9165216827035837953 (Adições = 2) +D(76, 65) = 12910717900937908377 (Adições = 2) +D(76, 66) = 10447136925491745209 (Adições = 2) +D(76, 67) = 9593110624456759873 (Adições = 2) +D(76, 68) = 13431257390258554113 (Adições = 2) +D(76, 69) = 204192295811940793 (Adições = 2) +D(76, 70) = 14739787964027219737 (Adições = 2) +D(76, 71) = 3125245451003383745 (Adições = 2) +D(76, 72) = 4522904648032353601 (Adições = 2) +D(76, 73) = 8266129237919607577 (Adições = 2) +D(76, 74) = 17813360156789439161 (Adições = 2) +D(76, 75) = 15964204733927028865 (Adições = 2) +D(76, 76) = 3600578447963533505 (Adições = 2) +D(76, 77) = 16922070915248519865 (Adições = 2) +D(76, 78) = 8131607148812306073 (Adições = 2) +D(76, 79) = 15877703745877078657 (Adições = 2) +D(76, 80) = 5422515441686241665 (Adições = 2) +D(76, 81) = 4289141669700664985 (Adições = 2) +D(76, 82) = 7735290541439616185 (Adições = 2) +D(76, 83) = 9606497672377514945 (Adições = 2) +D(76, 84) = 12403715506405880193 (Adições = 2) +D(76, 85) = 16845752186751198393 (Adições = 2) +D(76, 86) = 9840204040549893913 (Adições = 2) +D(76, 87) = 17418849063395308097 (Adições = 2) +D(76, 88) = 13181800190823867073 (Adições = 2) +D(76, 89) = 16462832207254600473 (Adições = 2) +D(76, 90) = 1874060295719485369 (Adições = 2) +D(76, 91) = 14162316241555461121 (Adições = 2) +D(76, 92) = 16583881876361287489 (Adições = 2) +D(76, 93) = 3407945195998441401 (Adições = 2) +D(76, 94) = 1349026614360195225 (Adições = 2) +D(76, 95) = 14476822608543186689 (Adições = 2) +D(76, 96) = 1348980194022707457 (Adições = 2) +D(76, 97) = 1241540352668618905 (Adições = 2) +D(76, 98) = 14567463236745657273 (Adições = 2) +D(76, 99) = 8276899713795125569 (Adições = 2) +D(76, 100) = 8823168533512286721 (Adições = 2) +D(77, 0) = 1 (Adições = 0) +D(77, 1) = 155 (Adições = 2) +D(77, 2) = 12013 (Adições = 2) +D(77, 3) = 620775 (Adições = 2) +D(77, 4) = 24064041 (Adições = 2) +D(77, 5) = 746481891 (Adições = 2) +D(77, 6) = 19304168885 (Adições = 2) +D(77, 7) = 428089295503 (Adições = 2) +D(77, 8) = 8311121248145 (Adições = 2) +D(77, 9) = 143516500869611 (Adições = 2) +D(77, 10) = 2231985772602301 (Adições = 2) +D(77, 11) = 31581178160186615 (Adições = 2) +D(77, 12) = 409969538193962553 (Adições = 2) +D(77, 13) = 4917250196768187315 (Adições = 2) +D(77, 14) = 17928182173694507269 (Adições = 2) +D(77, 15) = 17677704623871068191 (Adições = 2) +D(77, 16) = 12816365631348833313 (Adições = 2) +D(77, 17) = 25319163219494459 (Adições = 2) +D(77, 18) = 5148637639776941453 (Adições = 2) +D(77, 19) = 11928711200967406599 (Adições = 2) +D(77, 20) = 17095380844648945993 (Adições = 2) +D(77, 21) = 1386329691188298115 (Adições = 2) +D(77, 22) = 8477385196541522261 (Adições = 2) +D(77, 23) = 17552609170038755503 (Adições = 2) +D(77, 24) = 13110140270142305713 (Adições = 2) +D(77, 25) = 734565768933068171 (Adições = 2) +D(77, 26) = 18404026503292396637 (Adições = 2) +D(77, 27) = 4561405593328076311 (Adições = 2) +D(77, 28) = 8080326666005010777 (Adições = 2) +D(77, 29) = 4337634235576320595 (Adições = 2) +D(77, 30) = 6856216834250401445 (Adições = 2) +D(77, 31) = 17651825606331210815 (Adições = 2) +D(77, 32) = 5097416741029932097 (Adições = 2) +D(77, 33) = 15904682755918436315 (Adições = 2) +D(77, 34) = 12890530436762021933 (Adições = 2) +D(77, 35) = 6655669205304179495 (Adições = 2) +D(77, 36) = 4807735079873345129 (Adições = 2) +D(77, 37) = 9166675302472558115 (Adições = 2) +D(77, 38) = 9547079392105797877 (Adições = 2) +D(77, 39) = 7143704232788552399 (Adições = 2) +D(77, 40) = 10242477402479943633 (Adições = 2) +D(77, 41) = 17346031464688575787 (Adições = 2) +D(77, 42) = 3301206063361169661 (Adições = 2) +D(77, 43) = 10395587585311413047 (Adições = 2) +D(77, 44) = 14273103362534469753 (Adições = 2) +D(77, 45) = 4807109180959436019 (Adições = 2) +D(77, 46) = 5698699692749588549 (Adições = 2) +D(77, 47) = 9368993362697370719 (Adições = 2) +D(77, 48) = 2783601384131285089 (Adições = 2) +D(77, 49) = 11583168299933889915 (Adições = 2) +D(77, 50) = 12441374501576154829 (Adições = 2) +D(77, 51) = 1785254687942102599 (Adições = 2) +D(77, 52) = 2979001330563811209 (Adições = 2) +D(77, 53) = 18120883389282834115 (Adições = 2) +D(77, 54) = 9162227592252617877 (Adições = 2) +D(77, 55) = 3364794381368774895 (Adições = 2) +D(77, 56) = 16994261971271712241 (Adições = 2) +D(77, 57) = 10035724805459675339 (Adições = 2) +D(77, 58) = 14896608803015131549 (Adições = 2) +D(77, 59) = 8668074875855498327 (Adições = 2) +D(77, 60) = 2914382215895579545 (Adições = 2) +D(77, 61) = 8673637348296975251 (Adições = 2) +D(77, 62) = 6104725348155956709 (Adições = 2) +D(77, 63) = 6572806163229075583 (Adições = 2) +D(77, 64) = 3481109867451885697 (Adições = 2) +D(77, 65) = 7110300521716080411 (Adições = 2) +D(77, 66) = 12021411274436182381 (Adições = 2) +D(77, 67) = 13614914750675135847 (Adições = 2) +D(77, 68) = 18192538691680898217 (Adições = 2) +D(77, 69) = 13381244304041841507 (Adições = 2) +D(77, 70) = 9878480490171450421 (Adições = 2) +D(77, 71) = 9296769831492502287 (Adições = 2) +D(77, 72) = 16944919930528239633 (Adições = 2) +D(77, 73) = 11287209742770649195 (Adições = 2) +D(77, 74) = 473210990060592701 (Adições = 2) +D(77, 75) = 15804031807067509111 (Adições = 2) +D(77, 76) = 16922070915248519865 (Adições = 2) +D(77, 77) = 551232131041470003 (Adições = 2) +D(77, 78) = 7158166121392744325 (Adições = 2) +D(77, 79) = 12720732942372577439 (Adições = 2) +D(77, 80) = 15574208056226346145 (Adições = 2) +D(77, 81) = 6839121093903701179 (Adições = 2) +D(77, 82) = 416809231334430733 (Adições = 2) +D(77, 83) = 17758597445151561863 (Adições = 2) +D(77, 84) = 2875322476515853769 (Adições = 2) +D(77, 85) = 13678046095963380739 (Adições = 2) +D(77, 86) = 3470514175845369813 (Adições = 2) +D(77, 87) = 12282823206081020207 (Adições = 2) +D(77, 88) = 5989984312881092145 (Adições = 2) +D(77, 89) = 17187872637250008075 (Adições = 2) +D(77, 90) = 17078021066514542301 (Adições = 2) +D(77, 91) = 14667653530079937175 (Adições = 2) +D(77, 92) = 8520363500577582553 (Adições = 2) +D(77, 93) = 10065446499227759827 (Adições = 2) +D(77, 94) = 14822418309586396453 (Adições = 2) +D(77, 95) = 12201523458780226751 (Adições = 2) +D(77, 96) = 9580582187636569281 (Adições = 2) +D(77, 97) = 12171102734327895643 (Adições = 2) +D(77, 98) = 9533362250032620205 (Adições = 2) +D(77, 99) = 13930981126863851431 (Adições = 2) +D(77, 100) = 12584305300461712105 (Adições = 2) +D(78, 0) = 1 (Adições = 0) +D(78, 1) = 157 (Adições = 2) +D(78, 2) = 12325 (Adições = 2) +D(78, 3) = 645113 (Adições = 2) +D(78, 4) = 25329929 (Adições = 2) +D(78, 5) = 795875861 (Adições = 2) +D(78, 6) = 20846526637 (Adições = 2) +D(78, 7) = 468239991025 (Adições = 2) +D(78, 8) = 9207450534673 (Adições = 2) +D(78, 9) = 161035072652429 (Adições = 2) +D(78, 10) = 2536537346124341 (Adições = 2) +D(78, 11) = 36349701278913257 (Adições = 2) +D(78, 12) = 477900417633062425 (Adições = 2) +D(78, 13) = 5805120152595212293 (Adições = 2) +D(78, 14) = 10203808449348355261 (Adições = 2) +D(78, 15) = 8916207099494827489 (Adições = 2) +D(78, 16) = 2516789207295625761 (Adições = 2) +D(78, 17) = 15358474001863953533 (Adições = 2) +D(78, 18) = 2085686731150837829 (Adições = 2) +D(78, 19) = 716291498185634265 (Adições = 2) +D(78, 20) = 11293639470092435241 (Adições = 2) +D(78, 21) = 11328605932220127733 (Adições = 2) +D(78, 22) = 2745576746240396493 (Adições = 2) +D(78, 23) = 10328827039111122641 (Adições = 2) +D(78, 24) = 4098088331873080625 (Adições = 2) +D(78, 25) = 17942794370948454509 (Adições = 2) +D(78, 26) = 187898495754816085 (Adições = 2) +D(78, 27) = 4706586518665737417 (Adições = 2) +D(78, 28) = 17348318777998824505 (Adições = 2) +D(78, 29) = 11319535605870604261 (Adições = 2) +D(78, 30) = 4066642601987774685 (Adições = 2) +D(78, 31) = 10127940968859835329 (Adições = 2) +D(78, 32) = 14430439242511426625 (Adições = 2) +D(78, 33) = 16985794665750243421 (Adições = 2) +D(78, 34) = 8887519711011598437 (Adições = 2) +D(78, 35) = 9986975279368248249 (Adições = 2) +D(78, 36) = 3003635490836221257 (Adições = 2) +D(78, 37) = 16978045873182124501 (Adições = 2) +D(78, 38) = 17245056494050928877 (Adições = 2) +D(78, 39) = 15489096045235727537 (Adições = 2) +D(78, 40) = 14428533606794671953 (Adições = 2) +D(78, 41) = 5123554326544088141 (Adições = 2) +D(78, 42) = 7324047780884281973 (Adições = 2) +D(78, 43) = 2574097355847313065 (Adições = 2) +D(78, 44) = 8796044229983644249 (Adições = 2) +D(78, 45) = 9429512699767998405 (Adições = 2) +D(78, 46) = 1488577499767471357 (Adições = 2) +D(78, 47) = 16556270555214430625 (Adições = 2) +D(78, 48) = 10262121228333534817 (Adições = 2) +D(78, 49) = 6182146838689158205 (Adições = 2) +D(78, 50) = 11759945566489651333 (Adições = 2) +D(78, 51) = 7539830682298357145 (Adições = 2) +D(78, 52) = 12304086700804270953 (Adições = 2) +D(78, 53) = 14957227346941364661 (Adições = 2) +D(78, 54) = 5346850181057713421 (Adições = 2) +D(78, 55) = 17873872154679106193 (Adições = 2) +D(78, 56) = 1339440359900490097 (Adições = 2) +D(78, 57) = 9922683062922326061 (Adições = 2) +D(78, 58) = 16408272597687581333 (Adições = 2) +D(78, 59) = 3079468129139107977 (Adições = 2) +D(78, 60) = 14661925220890185849 (Adições = 2) +D(78, 61) = 7803200711373189029 (Adições = 2) +D(78, 62) = 4134819334116569373 (Adições = 2) +D(78, 63) = 16812350845501601665 (Adições = 2) +D(78, 64) = 8419522802473011329 (Adições = 2) +D(78, 65) = 564189117931425821 (Adições = 2) +D(78, 66) = 1249156840374136997 (Adições = 2) +D(78, 67) = 8438738791775903609 (Adições = 2) +D(78, 68) = 3352704086712834441 (Adições = 2) +D(78, 69) = 16479743008726022549 (Adições = 2) +D(78, 70) = 2845979655520211245 (Adições = 2) +D(78, 71) = 3574485903474612337 (Adições = 2) +D(78, 72) = 11369431591785802641 (Adições = 2) +D(78, 73) = 2708073117665588237 (Adições = 2) +D(78, 74) = 14468493850496830133 (Adições = 2) +D(78, 75) = 12298992573915380329 (Adições = 2) +D(78, 76) = 8131607148812306073 (Adições = 2) +D(78, 77) = 7158166121392744325 (Adições = 2) +D(78, 78) = 14867564373826958653 (Adições = 2) +D(78, 79) = 16299719363882728801 (Adições = 2) +D(78, 80) = 7701172215062549153 (Adições = 2) +D(78, 81) = 11667757291483044861 (Adições = 2) +D(78, 82) = 476943543011625157 (Adições = 2) +D(78, 83) = 205606145788066137 (Adições = 2) +D(78, 84) = 2392781993745930153 (Adições = 2) +D(78, 85) = 499406492515613045 (Adições = 2) +D(78, 86) = 17647966764324363597 (Adições = 2) +D(78, 87) = 14954560072541202001 (Adições = 2) +D(78, 88) = 14780623517793762737 (Adições = 2) +D(78, 89) = 1064992320505759725 (Adições = 2) +D(78, 90) = 16884141950560758485 (Adições = 2) +D(78, 91) = 11736328399736134729 (Adições = 2) +D(78, 92) = 16477601356684102841 (Adições = 2) +D(78, 93) = 16616667282779893605 (Adições = 2) +D(78, 94) = 4611043944174946653 (Adições = 2) +D(78, 95) = 13188241638832018241 (Adições = 2) +D(78, 96) = 16523603211539262657 (Adições = 2) +D(78, 97) = 1381799986084624349 (Adições = 2) +D(78, 98) = 4639520896735588581 (Adições = 2) +D(78, 99) = 9657120199922508601 (Adições = 2) +D(78, 100) = 17725662553538520521 (Adições = 2) +D(79, 0) = 1 (Adições = 0) +D(79, 1) = 159 (Adições = 2) +D(79, 2) = 12641 (Adições = 2) +D(79, 3) = 670079 (Adições = 2) +D(79, 4) = 26645121 (Adições = 2) +D(79, 5) = 847850911 (Adições = 2) +D(79, 6) = 22490253409 (Adições = 2) +D(79, 7) = 511576771071 (Adições = 2) +D(79, 8) = 10187267296769 (Adições = 2) +D(79, 9) = 180429790483871 (Adições = 2) +D(79, 10) = 2878002209260641 (Adições = 2) +D(79, 11) = 41764240834298239 (Adições = 2) +D(79, 12) = 556014359746273921 (Adições = 2) +D(79, 13) = 6839034929974548639 (Adições = 2) +D(79, 14) = 4401219458208564577 (Adições = 2) +D(79, 15) = 5074490933342195711 (Adições = 2) +D(79, 16) = 16507487240132648961 (Adições = 2) +D(79, 17) = 15936006375582676639 (Adições = 2) +D(79, 18) = 14933423034887916385 (Adições = 2) +D(79, 19) = 17735401264224388479 (Adições = 2) +D(79, 20) = 11298588158792906369 (Adições = 2) +D(79, 21) = 15474089487395917727 (Adições = 2) +D(79, 22) = 11101528092146890337 (Adições = 2) +D(79, 23) = 5729187803788857855 (Adições = 2) +D(79, 24) = 1709359101063509505 (Adições = 2) +D(79, 25) = 5303497730175493023 (Adições = 2) +D(79, 26) = 4987446523169212001 (Adições = 2) +D(79, 27) = 9881931537589765503 (Adições = 2) +D(79, 28) = 13490092760544775809 (Adições = 2) +D(79, 29) = 5264458996995101343 (Adições = 2) +D(79, 30) = 2203893131143928673 (Adições = 2) +D(79, 31) = 16398476701991538687 (Adições = 2) +D(79, 32) = 4063368765943697409 (Adições = 2) +D(79, 33) = 17032858600495815839 (Adições = 2) +D(79, 34) = 6012684829838554465 (Adições = 2) +D(79, 35) = 6440435746508849535 (Adições = 2) +D(79, 36) = 984302443003767425 (Adições = 2) +D(79, 37) = 2519239733312561567 (Adições = 2) +D(79, 38) = 18295598026836063329 (Adições = 2) +D(79, 39) = 14136262418703616511 (Adições = 2) +D(79, 40) = 7160403923314912769 (Adições = 2) +D(79, 41) = 8265747782944121247 (Adições = 2) +D(79, 42) = 2266605816662939745 (Adições = 2) +D(79, 43) = 12164750953394534783 (Adições = 2) +D(79, 44) = 5088148465515940481 (Adições = 2) +D(79, 45) = 4866961321558031519 (Adições = 2) +D(79, 46) = 15785051521093501281 (Adições = 2) +D(79, 47) = 15383155502365851647 (Adições = 2) +D(79, 48) = 5308059138494713857 (Adições = 2) +D(79, 49) = 3305583131807855263 (Adições = 2) +D(79, 50) = 2800931463277113185 (Adições = 2) +D(79, 51) = 3653963638355570047 (Adições = 2) +D(79, 52) = 5051136947748646529 (Adições = 2) +D(79, 53) = 13865706921784730527 (Adições = 2) +D(79, 54) = 15723040376074256993 (Adições = 2) +D(79, 55) = 2050274564391973375 (Adições = 2) +D(79, 56) = 2816843005262018049 (Adições = 2) +D(79, 57) = 14078966428084834207 (Adições = 2) +D(79, 58) = 3516433941275638369 (Adições = 2) +D(79, 59) = 4557430594392776063 (Adições = 2) +D(79, 60) = 3852079870712518273 (Adições = 2) +D(79, 61) = 7870461729266341535 (Adições = 2) +D(79, 62) = 1361737701046548321 (Adições = 2) +D(79, 63) = 3862163806955167743 (Adições = 2) +D(79, 64) = 10647293381220229121 (Adições = 2) +D(79, 65) = 1184261227915114655 (Adições = 2) +D(79, 66) = 2997607186220677473 (Adições = 2) +D(79, 67) = 12685502818370718079 (Adições = 2) +D(79, 68) = 6030201623149904513 (Adições = 2) +D(79, 69) = 7415904644879209887 (Adições = 2) +D(79, 70) = 8294883235415892065 (Adições = 2) +D(79, 71) = 14715348794410715647 (Adições = 2) +D(79, 72) = 11212522215961579009 (Adições = 2) +D(79, 73) = 6843282851703418271 (Adições = 2) +D(79, 74) = 5573105746156285025 (Adições = 2) +D(79, 75) = 13893848096858943871 (Adições = 2) +D(79, 76) = 15877703745877078657 (Adições = 2) +D(79, 77) = 12720732942372577439 (Adições = 2) +D(79, 78) = 16299719363882728801 (Adições = 2) +D(79, 79) = 10573514954173313023 (Adições = 2) +D(79, 80) = 16127662459409039361 (Adições = 2) +D(79, 81) = 17049847892245081759 (Adições = 2) +D(79, 82) = 10747804653030200161 (Adições = 2) +D(79, 83) = 11430354341829891455 (Adições = 2) +D(79, 84) = 14028742481363887745 (Adições = 2) +D(79, 85) = 16920930967625430943 (Adições = 2) +D(79, 86) = 16621560150755855969 (Adições = 2) +D(79, 87) = 12330598840202318335 (Adições = 2) +D(79, 88) = 5172294283118179841 (Adições = 2) +D(79, 89) = 2571166047708150687 (Adições = 2) +D(79, 90) = 2073556245065117281 (Adições = 2) +D(79, 91) = 12247282521652458879 (Adições = 2) +D(79, 92) = 3567724130653593217 (Adições = 2) +D(79, 93) = 18215248696408038047 (Adições = 2) +D(79, 94) = 2549471775943775073 (Adições = 2) +D(79, 95) = 1902013285241188351 (Adições = 2) +D(79, 96) = 13167114061902917633 (Adições = 2) +D(79, 97) = 12625773185817253023 (Adições = 2) +D(79, 98) = 200349994927914337 (Adições = 2) +D(79, 99) = 14496991091586011519 (Adições = 2) +D(79, 100) = 4986285697627937409 (Adições = 2) +D(80, 0) = 1 (Adições = 0) +D(80, 1) = 161 (Adições = 2) +D(80, 2) = 12961 (Adições = 2) +D(80, 3) = 695681 (Adições = 2) +D(80, 4) = 28010881 (Adições = 2) +D(80, 5) = 902506913 (Adições = 2) +D(80, 6) = 24240611233 (Adições = 2) +D(80, 7) = 558307635713 (Adições = 2) +D(80, 8) = 11257151703553 (Adições = 2) +D(80, 9) = 201874209484193 (Adições = 2) +D(80, 10) = 3260306209228705 (Adições = 2) +D(80, 11) = 47902549252787585 (Adições = 2) +D(80, 12) = 645681149833359745 (Adições = 2) +D(80, 13) = 8040730439554182305 (Adições = 2) +D(80, 14) = 834240754027743905 (Adições = 2) +D(80, 15) = 10309951145578504193 (Adições = 2) +D(80, 16) = 13445185245343797249 (Adições = 2) +D(80, 17) = 8995190713640019617 (Adições = 2) +D(80, 18) = 2971131976691509409 (Adições = 2) +D(80, 19) = 17193212202094262657 (Adições = 2) +D(80, 20) = 9333713477692454273 (Adições = 2) +D(80, 21) = 17659647050171726753 (Adições = 2) +D(80, 22) = 7341776482295431585 (Adições = 2) +D(80, 23) = 5725748304521628161 (Adições = 2) +D(80, 24) = 13164295209373995521 (Adições = 2) +D(80, 25) = 1730407966903446433 (Adições = 2) +D(80, 26) = 12021352220248151457 (Adições = 2) +D(80, 27) = 8443986207297577345 (Adições = 2) +D(80, 28) = 13369266431722567041 (Adições = 2) +D(80, 29) = 13677074115552892577 (Adições = 2) +D(80, 30) = 2698682169982370977 (Adições = 2) +D(80, 31) = 2854307929408286721 (Adições = 2) +D(80, 32) = 4869409323633971201 (Adições = 2) +D(80, 33) = 7518892616363932833 (Adições = 2) +D(80, 34) = 12117691972988751521 (Adições = 2) +D(80, 35) = 6124068475626603905 (Adições = 2) +D(80, 36) = 13548806665139220865 (Adições = 2) +D(80, 37) = 17052348841455549857 (Adições = 2) +D(80, 38) = 973698454185071521 (Adições = 2) +D(80, 39) = 14958814826015199745 (Adições = 2) +D(80, 40) = 17808737094324177409 (Adições = 2) +D(80, 41) = 14788144726873659809 (Adições = 2) +D(80, 42) = 6873754252771169185 (Adições = 2) +D(80, 43) = 2858366949119092097 (Adições = 2) +D(80, 44) = 1664522294320015745 (Adições = 2) +D(80, 45) = 11619632081393987745 (Adições = 2) +D(80, 46) = 13824900850335968929 (Adições = 2) +D(80, 47) = 8099619726376218625 (Adições = 2) +D(80, 48) = 10344090293527232513 (Adições = 2) +D(80, 49) = 510988490120250017 (Adições = 2) +D(80, 50) = 6617503085205218465 (Adições = 2) +D(80, 51) = 13072398186837901697 (Adições = 2) +D(80, 52) = 3330754699232566657 (Adições = 2) +D(80, 53) = 3800854495056392097 (Adições = 2) +D(80, 54) = 14942857719205828001 (Adições = 2) +D(80, 55) = 14269428585962506753 (Adições = 2) +D(80, 56) = 689802081906946561 (Adições = 2) +D(80, 57) = 17585611515253798817 (Adições = 2) +D(80, 58) = 16734267810904719777 (Adições = 2) +D(80, 59) = 6361388272863582593 (Adições = 2) +D(80, 60) = 14770898737968876929 (Adições = 2) +D(80, 61) = 8046696264238185121 (Adições = 2) +D(80, 62) = 17278895694551074977 (Adições = 2) +D(80, 63) = 4056053128843239425 (Adições = 2) +D(80, 64) = 118766243309084673 (Adições = 2) +D(80, 65) = 11950320852444428449 (Adições = 2) +D(80, 66) = 16132189266580220577 (Adições = 2) +D(80, 67) = 13368555197462064513 (Adições = 2) +D(80, 68) = 13637515565273135489 (Adições = 2) +D(80, 69) = 8636877759592698273 (Adições = 2) +D(80, 70) = 5900921566178248609 (Adições = 2) +D(80, 71) = 10464409522295304705 (Adições = 2) +D(80, 72) = 17945536458958047745 (Adições = 2) +D(80, 73) = 17554597452913493409 (Adições = 2) +D(80, 74) = 11524241977063645089 (Adições = 2) +D(80, 75) = 12544451746369322369 (Adições = 2) +D(80, 76) = 5422515441686241665 (Adições = 2) +D(80, 77) = 15574208056226346145 (Adições = 2) +D(80, 78) = 7701172215062549153 (Adições = 2) +D(80, 79) = 16127662459409039361 (Adições = 2) +D(80, 80) = 5935351725572288513 (Adições = 2) +D(80, 81) = 2219373929807306401 (Adições = 2) +D(80, 82) = 11570282401373036705 (Adições = 2) +D(80, 83) = 15301697322523576705 (Adições = 2) +D(80, 84) = 3867305998298252673 (Adições = 2) +D(80, 85) = 16370235373578019745 (Adições = 2) +D(80, 86) = 13019238344540203425 (Adições = 2) +D(80, 87) = 5077909188079274497 (Adições = 2) +D(80, 88) = 4134058237690221057 (Adições = 2) +D(80, 89) = 11877518568516551585 (Adições = 2) +D(80, 90) = 16522240861289819553 (Adições = 2) +D(80, 91) = 12396335554297844097 (Adições = 2) +D(80, 92) = 9764598132894344577 (Adições = 2) +D(80, 93) = 13100826886246424225 (Adições = 2) +D(80, 94) = 15418803284888685729 (Adições = 2) +D(80, 95) = 1423544272364097537 (Adições = 2) +D(80, 96) = 16492671619508203521 (Adições = 2) +D(80, 97) = 5392070719809270945 (Adições = 2) +D(80, 98) = 18218193900554438305 (Adições = 2) +D(80, 99) = 14468790913358812545 (Adições = 2) +D(80, 100) = 15505323628863209857 (Adições = 2) +D(81, 0) = 1 (Adições = 0) +D(81, 1) = 163 (Adições = 2) +D(81, 2) = 13285 (Adições = 2) +D(81, 3) = 721927 (Adições = 2) +D(81, 4) = 29428489 (Adições = 2) +D(81, 5) = 959946283 (Adições = 2) +D(81, 6) = 26103064429 (Adições = 2) +D(81, 7) = 608651311375 (Adições = 2) +D(81, 8) = 12424110650641 (Adições = 2) +D(81, 9) = 225555471838387 (Adições = 2) +D(81, 10) = 3687735890551285 (Adições = 2) +D(81, 11) = 54850591352567575 (Adições = 2) +D(81, 12) = 748434290438714905 (Adições = 2) +D(81, 13) = 9434845879826256955 (Adições = 2) +D(81, 14) = 18309817073408183165 (Adições = 2) +D(81, 15) = 11007264899304879647 (Adições = 2) +D(81, 16) = 16315657216517629473 (Adições = 2) +D(81, 17) = 1862545028082343107 (Adições = 2) +D(81, 18) = 13828867718413872133 (Adições = 2) +D(81, 19) = 15546467823490092583 (Adições = 2) +D(81, 20) = 5179905355857706281 (Adições = 2) +D(81, 21) = 13726521810012335691 (Adições = 2) +D(81, 22) = 1834457195060390797 (Adições = 2) +D(81, 23) = 14901981981877450543 (Adições = 2) +D(81, 24) = 15345281422063522609 (Adições = 2) +D(81, 25) = 11793240524631412947 (Adições = 2) +D(81, 26) = 7098256638073459221 (Adições = 2) +D(81, 27) = 9116850991909636407 (Adições = 2) +D(81, 28) = 12483359557220229177 (Adições = 2) +D(81, 29) = 2636211957076585563 (Adições = 2) +D(81, 30) = 565224168902297501 (Adições = 2) +D(81, 31) = 6118214268292955199 (Adições = 2) +D(81, 32) = 13841931521335213121 (Adições = 2) +D(81, 33) = 7783489387623565539 (Adições = 2) +D(81, 34) = 8973329903266698277 (Adições = 2) +D(81, 35) = 8768346278172502087 (Adições = 2) +D(81, 36) = 9994477345228775241 (Adições = 2) +D(81, 37) = 3702144704404442731 (Adições = 2) +D(81, 38) = 3281447926335512493 (Adições = 2) +D(81, 39) = 767217132826232143 (Adições = 2) +D(81, 40) = 15088024979456057681 (Adições = 2) +D(81, 41) = 10791418653234791667 (Adições = 2) +D(81, 42) = 14006573559170069045 (Adições = 2) +D(81, 43) = 5291950687350778711 (Adições = 2) +D(81, 44) = 9814839930789886553 (Adições = 2) +D(81, 45) = 4652250232794338427 (Adições = 2) +D(81, 46) = 11650039090814743485 (Adições = 2) +D(81, 47) = 15127815593817379423 (Adições = 2) +D(81, 48) = 15124781540011278945 (Adições = 2) +D(81, 49) = 7533116249949209859 (Adições = 2) +D(81, 50) = 14661607825274678341 (Adições = 2) +D(81, 51) = 15904765023608246887 (Adições = 2) +D(81, 52) = 13861173835969163625 (Adições = 2) +D(81, 53) = 2546038956548570763 (Adições = 2) +D(81, 54) = 2843007097101239245 (Adições = 2) +D(81, 55) = 13608549328560022383 (Adições = 2) +D(81, 56) = 10121035922719924081 (Adições = 2) +D(81, 57) = 9949705446171117843 (Adições = 2) +D(81, 58) = 7376096624910533205 (Adições = 2) +D(81, 59) = 12025008634969283959 (Adições = 2) +D(81, 60) = 14710551572092191865 (Adições = 2) +D(81, 61) = 634658426880150683 (Adições = 2) +D(81, 62) = 7513506311959859165 (Adições = 2) +D(81, 63) = 10401711061644621951 (Adições = 2) +D(81, 64) = 14576530433796946049 (Adições = 2) +D(81, 65) = 8198873455840907555 (Adições = 2) +D(81, 66) = 17834639501156004965 (Adições = 2) +D(81, 67) = 10441895817779186823 (Adições = 2) +D(81, 68) = 554478433095283593 (Adições = 2) +D(81, 69) = 4382127684251565739 (Adições = 2) +D(81, 70) = 473182936312961005 (Adições = 2) +D(81, 71) = 16838514024786514319 (Adições = 2) +D(81, 72) = 8354971858620763537 (Adições = 2) +D(81, 73) = 6961617623073201459 (Adições = 2) +D(81, 74) = 17593712979340788341 (Adições = 2) +D(81, 75) = 4768918555354652567 (Adições = 2) +D(81, 76) = 4289141669700664985 (Adições = 2) +D(81, 77) = 6839121093903701179 (Adições = 2) +D(81, 78) = 11667757291483044861 (Adições = 2) +D(81, 79) = 17049847892245081759 (Adições = 2) +D(81, 80) = 2219373929807306401 (Adições = 2) +D(81, 81) = 10374099585186901315 (Adições = 2) +D(81, 82) = 5717011842657692805 (Adições = 2) +D(81, 83) = 14142247492844754599 (Adições = 2) +D(81, 84) = 14864506739957032361 (Adições = 2) +D(81, 85) = 16655304038123753163 (Adições = 2) +D(81, 86) = 9151289608822873101 (Adições = 2) +D(81, 87) = 8801693067732799407 (Adições = 2) +D(81, 88) = 18013660493502294961 (Adições = 2) +D(81, 89) = 15578493225999515987 (Adições = 2) +D(81, 90) = 7084764508386783893 (Adições = 2) +D(81, 91) = 17556596850264895927 (Adições = 2) +D(81, 92) = 2824042390037981369 (Adições = 2) +D(81, 93) = 7242723335469198555 (Adições = 2) +D(81, 94) = 17315609432894756893 (Adições = 2) +D(81, 95) = 15711212916437988543 (Adições = 2) +D(81, 96) = 15180684734600737985 (Adições = 2) +D(81, 97) = 171938926499109219 (Adições = 2) +D(81, 98) = 5335459473153266853 (Adições = 2) +D(81, 99) = 1128956139647414471 (Adições = 2) +D(81, 100) = 12656326608159885257 (Adições = 2) +D(82, 0) = 1 (Adições = 0) +D(82, 1) = 165 (Adições = 2) +D(82, 2) = 13613 (Adições = 2) +D(82, 3) = 748825 (Adições = 2) +D(82, 4) = 30899241 (Adições = 2) +D(82, 5) = 1020274013 (Adições = 2) +D(82, 6) = 28083284725 (Adições = 2) +D(82, 7) = 662837660529 (Adições = 2) +D(82, 8) = 13695599622545 (Adições = 2) +D(82, 9) = 251675182111573 (Adições = 2) +D(82, 10) = 4164966544501245 (Adições = 2) +D(82, 11) = 62703293787620105 (Adições = 2) +D(82, 12) = 865988175578902585 (Adições = 2) +D(82, 13) = 11049268345843874445 (Adições = 2) +D(82, 14) = 1900443151659211333 (Adições = 2) +D(82, 15) = 12770781050662722529 (Adições = 2) +D(82, 16) = 3200215019066128417 (Adições = 2) +D(82, 17) = 2931673189956549381 (Adições = 2) +D(82, 18) = 176341862743213005 (Adições = 2) +D(82, 19) = 11104933330937626105 (Adições = 2) +D(82, 20) = 13384562436575873353 (Adições = 2) +D(82, 21) = 13844245528736363709 (Adições = 2) +D(82, 22) = 10958480460099538581 (Adições = 2) +D(82, 23) = 9248175563327828305 (Adições = 2) +D(82, 24) = 2601950819849698225 (Adições = 2) +D(82, 25) = 11293728692835082165 (Adições = 2) +D(82, 26) = 11738481781830402717 (Adições = 2) +D(82, 27) = 9506845338103946729 (Adições = 2) +D(82, 28) = 12660311813524260697 (Adições = 2) +D(82, 29) = 9333139254111523821 (Adições = 2) +D(82, 30) = 12534575380090406885 (Adições = 2) +D(82, 31) = 771269743576107969 (Adições = 2) +D(82, 32) = 2284671459494724673 (Adições = 2) +D(82, 33) = 5463348294743951717 (Adições = 2) +D(82, 34) = 3773423511924663917 (Adições = 2) +D(82, 35) = 3068355619654312665 (Adições = 2) +D(82, 36) = 3384435169346038377 (Adições = 2) +D(82, 37) = 17081057218979256349 (Adições = 2) +D(82, 38) = 5617905776009659957 (Adições = 2) +D(82, 39) = 9666570835171404593 (Adições = 2) +D(82, 40) = 7075068873744142801 (Adições = 2) +D(82, 41) = 14507768432725440533 (Adições = 2) +D(82, 42) = 2412272497711198013 (Adições = 2) +D(82, 43) = 3264052670522494153 (Adições = 2) +D(82, 44) = 18370843288663159417 (Adições = 2) +D(82, 45) = 14391189378537832781 (Adições = 2) +D(82, 46) = 12246734628437363077 (Adições = 2) +D(82, 47) = 2131101165650382753 (Adições = 2) +D(82, 48) = 13936954225769489505 (Adições = 2) +D(82, 49) = 18148107942020426693 (Adições = 2) +D(82, 50) = 3449343869825211661 (Adições = 2) +D(82, 51) = 15568972644998585273 (Adições = 2) +D(82, 52) = 8441423357156892553 (Adições = 2) +D(82, 53) = 6401892075965075325 (Adições = 2) +D(82, 54) = 11790938129614885333 (Adições = 2) +D(82, 55) = 9795750481566595345 (Adições = 2) +D(82, 56) = 15078591659136990193 (Adições = 2) +D(82, 57) = 16702588954318480501 (Adições = 2) +D(82, 58) = 15581646951690579933 (Adições = 2) +D(82, 59) = 16536008137860845481 (Adições = 2) +D(82, 60) = 6378080197503218073 (Adições = 2) +D(82, 61) = 3276546122766009005 (Adições = 2) +D(82, 62) = 11424710861606018853 (Adições = 2) +D(82, 63) = 10893184161500948353 (Adições = 2) +D(82, 64) = 17424681583232964737 (Adições = 2) +D(82, 65) = 3306597325451715109 (Adições = 2) +D(82, 66) = 10893366208739076013 (Adições = 2) +D(82, 67) = 2276413380255164569 (Adições = 2) +D(82, 68) = 13272787631129634985 (Adições = 2) +D(82, 69) = 18209393748476484317 (Adições = 2) +D(82, 70) = 4617960295331459445 (Adições = 2) +D(82, 71) = 3482913182721383153 (Adições = 2) +D(82, 72) = 10229654992419109393 (Adições = 2) +D(82, 73) = 7099500400403522773 (Adições = 2) +D(82, 74) = 13208086929107960957 (Adições = 2) +D(82, 75) = 17123974390093850249 (Adições = 2) +D(82, 76) = 7735290541439616185 (Adições = 2) +D(82, 77) = 416809231334430733 (Adições = 2) +D(82, 78) = 476943543011625157 (Adições = 2) +D(82, 79) = 10747804653030200161 (Adições = 2) +D(82, 80) = 11570282401373036705 (Adições = 2) +D(82, 81) = 5717011842657692805 (Adições = 2) +D(82, 82) = 3361379196792735309 (Adições = 2) +D(82, 83) = 4773894458585631097 (Adições = 2) +D(82, 84) = 15333904617677866441 (Adições = 2) +D(82, 85) = 9960227248339548733 (Adições = 2) +D(82, 86) = 17320076821576623381 (Adições = 2) +D(82, 87) = 16826315424422744273 (Adições = 2) +D(82, 88) = 6748180838238735409 (Adições = 2) +D(82, 89) = 3446846410321443125 (Adições = 2) +D(82, 90) = 7663360070998191389 (Adições = 2) +D(82, 91) = 13857977355940319593 (Adições = 2) +D(82, 92) = 15791872522533645273 (Adições = 2) +D(82, 93) = 7411894174331273581 (Adições = 2) +D(82, 94) = 13523482868985677413 (Adições = 2) +D(82, 95) = 9656817070899319617 (Adições = 2) +D(82, 96) = 3655226574518942913 (Adições = 2) +D(82, 97) = 561106161909238501 (Adições = 2) +D(82, 98) = 6068504561561614573 (Adições = 2) +D(82, 99) = 12532920174362295897 (Adições = 2) +D(82, 100) = 7871458848460044009 (Adições = 2) +D(83, 0) = 1 (Adições = 0) +D(83, 1) = 167 (Adições = 2) +D(83, 2) = 13945 (Adições = 2) +D(83, 3) = 776383 (Adições = 2) +D(83, 4) = 32424449 (Adições = 2) +D(83, 5) = 1083597703 (Adições = 2) +D(83, 6) = 30187156441 (Adições = 2) +D(83, 7) = 721108101695 (Adições = 2) +D(83, 8) = 15079545384769 (Adições = 2) +D(83, 9) = 280450327118887 (Adições = 2) +D(83, 10) = 4697092053731705 (Adições = 2) +D(83, 11) = 71565352385853055 (Adições = 2) +D(83, 12) = 1000256821752375745 (Adições = 2) +D(83, 13) = 12915513343175152775 (Adições = 2) +D(83, 14) = 7418480766968686937 (Adições = 2) +D(83, 15) = 3642960895581069183 (Adições = 2) +D(83, 16) = 1167212891600368513 (Adições = 2) +D(83, 17) = 7299101100623046311 (Adições = 2) +D(83, 18) = 10407116153322808697 (Adições = 2) +D(83, 19) = 3241647273294096191 (Adições = 2) +D(83, 20) = 9284398967098044033 (Adições = 2) +D(83, 21) = 18066462858700729479 (Adições = 2) +D(83, 22) = 5975700700117528537 (Adições = 2) +D(83, 23) = 7735612649835343807 (Adições = 2) +D(83, 24) = 1138994959303318721 (Adições = 2) +D(83, 25) = 15034674471988099111 (Adições = 2) +D(83, 26) = 1173396799234480761 (Adições = 2) +D(83, 27) = 3971979845459278591 (Adições = 2) +D(83, 28) = 7692392923377934401 (Adições = 2) +D(83, 29) = 11239099917304167303 (Adições = 2) +D(83, 30) = 14660070477796546393 (Adições = 2) +D(83, 31) = 9519171527753509631 (Adições = 2) +D(83, 32) = 12575112730824342273 (Adições = 2) +D(83, 33) = 1876388411353467047 (Adições = 2) +D(83, 34) = 11113160218022082681 (Adições = 2) +D(83, 35) = 17954939349601059263 (Adições = 2) +D(83, 36) = 5960986064891858689 (Adições = 2) +D(83, 37) = 7979734379507601799 (Adições = 2) +D(83, 38) = 12231953300786966489 (Adições = 2) +D(83, 39) = 9069685838258479423 (Adições = 2) +D(83, 40) = 7364581473464475201 (Adições = 2) +D(83, 41) = 10500674706224506919 (Adições = 2) +D(83, 42) = 8973971562951593849 (Adições = 2) +D(83, 43) = 14650296731185286015 (Adições = 2) +D(83, 44) = 17838448616661387969 (Adições = 2) +D(83, 45) = 13706993136443276935 (Adições = 2) +D(83, 46) = 3451428995999369561 (Adições = 2) +D(83, 47) = 17829264790087115391 (Adições = 2) +D(83, 48) = 15450576107797436033 (Adições = 2) +D(83, 49) = 10642150128168248999 (Adições = 2) +D(83, 50) = 13792857866304335737 (Adições = 2) +D(83, 51) = 14364430307418581055 (Adições = 2) +D(83, 52) = 1481338162154955649 (Adições = 2) +D(83, 53) = 16324653595276923527 (Adições = 2) +D(83, 54) = 16070739727147332569 (Adições = 2) +D(83, 55) = 763940190909710015 (Adições = 2) +D(83, 56) = 7191538257903743937 (Adições = 2) +D(83, 57) = 2079230723940111399 (Adições = 2) +D(83, 58) = 15916722556239620217 (Adições = 2) +D(83, 59) = 11140889498371942399 (Adições = 2) +D(83, 60) = 15608233760026454337 (Adições = 2) +D(83, 61) = 6816116006586129799 (Adições = 2) +D(83, 62) = 3070628917248606041 (Adições = 2) +D(83, 63) = 6941779866646021631 (Adições = 2) +D(83, 64) = 16812901537670383105 (Adições = 2) +D(83, 65) = 650692298935959719 (Adições = 2) +D(83, 66) = 14850655833126750841 (Adições = 2) +D(83, 67) = 9573691348411439807 (Adições = 2) +D(83, 68) = 6676148286086687745 (Adições = 2) +D(83, 69) = 1264841518273703815 (Adições = 2) +D(83, 70) = 5645451488372095961 (Adições = 2) +D(83, 71) = 13746324966424938559 (Adições = 2) +D(83, 72) = 9012149067855879489 (Adições = 2) +D(83, 73) = 7894560386968960039 (Adições = 2) +D(83, 74) = 9755403642770892153 (Adições = 2) +D(83, 75) = 3193976814553600127 (Adições = 2) +D(83, 76) = 9606497672377514945 (Adições = 2) +D(83, 77) = 17758597445151561863 (Adições = 2) +D(83, 78) = 205606145788066137 (Adições = 2) +D(83, 79) = 11430354341829891455 (Adições = 2) +D(83, 80) = 15301697322523576705 (Adições = 2) +D(83, 81) = 14142247492844754599 (Adições = 2) +D(83, 82) = 4773894458585631097 (Adições = 2) +D(83, 83) = 12909168113963997503 (Adições = 2) +D(83, 84) = 14570223116517943425 (Adições = 2) +D(83, 85) = 2970866835116255367 (Adições = 2) +D(83, 86) = 11804426831322875865 (Adições = 2) +D(83, 87) = 9057330929903140287 (Adições = 2) +D(83, 88) = 14185083118855068353 (Adições = 2) +D(83, 89) = 5933366293705695271 (Adições = 2) +D(83, 90) = 17043572775025329785 (Adições = 2) +D(83, 91) = 1671422054544737535 (Adições = 2) +D(83, 92) = 12874527859309150785 (Adições = 2) +D(83, 93) = 17631550482464518023 (Adições = 2) +D(83, 94) = 1673439378362365785 (Adições = 2) +D(83, 95) = 6406995244537811199 (Adições = 2) +D(83, 96) = 1272294816246522113 (Adições = 2) +D(83, 97) = 5488627552674703527 (Adições = 2) +D(83, 98) = 12118238276145556601 (Adições = 2) +D(83, 99) = 12272918938359915455 (Adições = 2) +D(83, 100) = 14230553887472703745 (Adições = 2) +D(84, 0) = 1 (Adições = 0) +D(84, 1) = 169 (Adições = 2) +D(84, 2) = 14281 (Adições = 2) +D(84, 3) = 804609 (Adições = 2) +D(84, 4) = 34005441 (Adições = 2) +D(84, 5) = 1150027593 (Adições = 2) +D(84, 6) = 32420781737 (Adições = 2) +D(84, 7) = 783716039873 (Adições = 2) +D(84, 8) = 16584369526337 (Adições = 2) +D(84, 9) = 312114242029993 (Adições = 2) +D(84, 10) = 5289656622880585 (Adições = 2) +D(84, 11) = 81552101062465345 (Adições = 2) +D(84, 12) = 1153374275200694145 (Adições = 2) +D(84, 13) = 15069144440128222665 (Adições = 2) +D(84, 14) = 16956394476562510761 (Adições = 2) +D(84, 15) = 9571092065402715265 (Adições = 2) +D(84, 16) = 14381265852584152961 (Adições = 2) +D(84, 17) = 4400835771098016169 (Adições = 2) +D(84, 18) = 3660308951334319561 (Adições = 2) +D(84, 19) = 17309072377951224449 (Adições = 2) +D(84, 20) = 11388374544633813057 (Adições = 2) +D(84, 21) = 1845748223013483337 (Adições = 2) +D(84, 22) = 7441167708122189737 (Adições = 2) +D(84, 23) = 2705736984365510465 (Adições = 2) +D(84, 24) = 11580344593504172993 (Adições = 2) +D(84, 25) = 9307269951086039209 (Adições = 2) +D(84, 26) = 7068597148599067465 (Adições = 2) +D(84, 27) = 12213973793292826817 (Adições = 2) +D(84, 28) = 5431602488420488193 (Adições = 2) +D(84, 29) = 5916351255393038281 (Adições = 2) +D(84, 30) = 13368777576784200361 (Adições = 2) +D(84, 31) = 654531434915153153 (Adições = 2) +D(84, 32) = 4302071619783453441 (Adições = 2) +D(84, 33) = 306828688251711145 (Adições = 2) +D(84, 34) = 13296377317627260873 (Adições = 2) +D(84, 35) = 5470988737831299585 (Adições = 2) +D(84, 36) = 10940170078614665921 (Adições = 2) +D(84, 37) = 6434146449304574793 (Adições = 2) +D(84, 38) = 8199090055889591465 (Adições = 2) +D(84, 39) = 11053985121225485761 (Adições = 2) +D(84, 40) = 9041508359238888769 (Adições = 2) +D(84, 41) = 8460020465218319273 (Adições = 2) +D(84, 42) = 9487922660684868425 (Adições = 2) +D(84, 43) = 14665446881112196673 (Adições = 2) +D(84, 44) = 10260704081539767425 (Adições = 2) +D(84, 45) = 4912657687225329097 (Adições = 2) +D(84, 46) = 3624335745958423977 (Adições = 2) +D(84, 47) = 6458285458335357313 (Adições = 2) +D(84, 48) = 2844638208800805505 (Adições = 2) +D(84, 49) = 10490620371056938921 (Adições = 2) +D(84, 50) = 16478884291819972041 (Adições = 2) +D(84, 51) = 7742684318123785601 (Adições = 2) +D(84, 52) = 5141708713987770689 (Adições = 2) +D(84, 53) = 4500956397710098249 (Adições = 2) +D(84, 54) = 2861572715251113 (Adições = 2) +D(84, 55) = 16837541490772293697 (Adições = 2) +D(84, 56) = 6346275865876196033 (Adições = 2) +D(84, 57) = 15617044847720051369 (Adições = 2) +D(84, 58) = 15166254054190231369 (Adições = 2) +D(84, 59) = 5330377961382690753 (Adições = 2) +D(84, 60) = 13632757146071535873 (Adições = 2) +D(84, 61) = 17610362838974568393 (Adições = 2) +D(84, 62) = 9050363689099752617 (Adições = 2) +D(84, 63) = 616028399284828673 (Adições = 2) +D(84, 64) = 5923965729891681793 (Adições = 2) +D(84, 65) = 4940815492788473001 (Adições = 2) +D(84, 66) = 1995419551141631945 (Adições = 2) +D(84, 67) = 7973022658970270977 (Adições = 2) +D(84, 68) = 5776118219758846913 (Adições = 2) +D(84, 69) = 13717108024119238473 (Adições = 2) +D(84, 70) = 2180656957055486633 (Adições = 2) +D(84, 71) = 3125689338142969537 (Adições = 2) +D(84, 72) = 7437419298714235969 (Adições = 2) +D(84, 73) = 5897384679829523881 (Adições = 2) +D(84, 74) = 5100604635859824457 (Adições = 2) +D(84, 75) = 18049985093184316737 (Adições = 2) +D(84, 76) = 12403715506405880193 (Adições = 2) +D(84, 77) = 2875322476515853769 (Adições = 2) +D(84, 78) = 2392781993745930153 (Adições = 2) +D(84, 79) = 14028742481363887745 (Adições = 2) +D(84, 80) = 3867305998298252673 (Adições = 2) +D(84, 81) = 14864506739957032361 (Adições = 2) +D(84, 82) = 15333904617677866441 (Adições = 2) +D(84, 83) = 14570223116517943425 (Adições = 2) +D(84, 84) = 5156126199580781121 (Adições = 2) +D(84, 85) = 4250472077505428297 (Adições = 2) +D(84, 86) = 579021670235007913 (Adições = 2) +D(84, 87) = 2994035357751472449 (Adições = 2) +D(84, 88) = 7789705332800129473 (Adições = 2) +D(84, 89) = 9461410671651341481 (Adições = 2) +D(84, 90) = 13991605666672814921 (Adições = 2) +D(84, 91) = 14259856422533330625 (Adições = 2) +D(84, 92) = 10359062262677667329 (Adições = 2) +D(84, 93) = 3971652457032232905 (Adições = 2) +D(84, 94) = 4829898244149565097 (Adições = 2) +D(84, 95) = 12910332867049742081 (Adições = 2) +D(84, 96) = 2142878854124523777 (Adições = 2) +D(84, 97) = 8903801223045749417 (Adições = 2) +D(84, 98) = 8063922978156457929 (Adições = 2) +D(84, 99) = 14008336118952378369 (Adições = 2) +D(84, 100) = 3618320797365894337 (Adições = 2) +D(85, 0) = 1 (Adições = 0) +D(85, 1) = 171 (Adições = 2) +D(85, 2) = 14621 (Adições = 2) +D(85, 3) = 833511 (Adições = 2) +D(85, 4) = 35643561 (Adições = 2) +D(85, 5) = 1219676595 (Adições = 2) +D(85, 6) = 34790485925 (Adições = 2) +D(85, 7) = 850927307535 (Adições = 2) +D(85, 8) = 18219012873745 (Adições = 2) +D(85, 9) = 346917624430075 (Adições = 2) +D(85, 10) = 5948688489340653 (Adições = 2) +D(85, 11) = 92790446174686583 (Adições = 2) +D(85, 12) = 1327716822437846073 (Adições = 2) +D(85, 13) = 17550235537766762883 (Adições = 2) +D(85, 14) = 12682286307038393077 (Adições = 2) +D(85, 15) = 2316284701584515871 (Adições = 2) +D(85, 16) = 7821898545861832481 (Adições = 2) +D(85, 17) = 8157256095834449995 (Adições = 2) +D(85, 18) = 16218400818266785725 (Adições = 2) +D(85, 19) = 294294000133226503 (Adições = 2) +D(85, 20) = 10544996849008712393 (Adições = 2) +D(85, 21) = 5332375542946457171 (Adições = 2) +D(85, 22) = 14619291474082130245 (Adições = 2) +D(85, 23) = 6319452092860278831 (Adições = 2) +D(85, 24) = 2158789597020410673 (Adições = 2) +D(85, 25) = 4599660067901071259 (Adições = 2) +D(85, 26) = 2528783093876626317 (Adições = 2) +D(85, 27) = 3364609962058968983 (Adições = 2) +D(85, 28) = 2563442170062732377 (Adições = 2) +D(85, 29) = 13911395913876258851 (Adições = 2) +D(85, 30) = 14749780672343945877 (Adições = 2) +D(85, 31) = 10326345610333747775 (Adições = 2) +D(85, 32) = 15282948665032354369 (Adições = 2) +D(85, 33) = 1445104899357967339 (Adições = 2) +D(85, 34) = 15048310905236939357 (Adições = 2) +D(85, 35) = 15368932886985948199 (Adições = 2) +D(85, 36) = 13333347629722362089 (Adições = 2) +D(85, 37) = 12260920083932051187 (Adições = 2) +D(85, 38) = 8447412515416665829 (Adições = 2) +D(85, 39) = 9253743618822191439 (Adições = 2) +D(85, 40) = 10902493025577014353 (Adições = 2) +D(85, 41) = 9957277776324670779 (Adições = 2) +D(85, 42) = 9458476828518306861 (Adições = 2) +D(85, 43) = 15165102296605820343 (Adições = 2) +D(85, 44) = 3197765111838681209 (Adições = 2) +D(85, 45) = 18371126880603777731 (Adições = 2) +D(85, 46) = 8461376240077979189 (Adições = 2) +D(85, 47) = 97253370662208863 (Adições = 2) +D(85, 48) = 9400177037798371681 (Adições = 2) +D(85, 49) = 4288691543946564491 (Adições = 2) +D(85, 50) = 12811452133113923837 (Adições = 2) +D(85, 51) = 139532595638578247 (Adições = 2) +D(85, 52) = 13023925627750134537 (Adições = 2) +D(85, 53) = 4219846665738451859 (Adições = 2) +D(85, 54) = 8723664636163801221 (Adições = 2) +D(85, 55) = 7117323625941794415 (Adições = 2) +D(85, 56) = 11854396908880732529 (Adições = 2) +D(85, 57) = 15370973548767428315 (Adições = 2) +D(85, 58) = 9260784303258607821 (Adições = 2) +D(85, 59) = 11310672245121978327 (Adições = 2) +D(85, 60) = 11827063278866653337 (Adições = 2) +D(85, 61) = 6176695116493654371 (Adições = 2) +D(85, 62) = 14390677570858423765 (Adições = 2) +D(85, 63) = 5610325585533453439 (Adições = 2) +D(85, 64) = 12150319714709963905 (Adições = 2) +D(85, 65) = 4568356863680567083 (Adições = 2) +D(85, 66) = 11504591907610672029 (Adições = 2) +D(85, 67) = 3026290044013023335 (Adições = 2) +D(85, 68) = 16775430922742141225 (Adições = 2) +D(85, 69) = 17821913092910674995 (Adições = 2) +D(85, 70) = 15272934000375848485 (Adições = 2) +D(85, 71) = 2132536221864753039 (Adições = 2) +D(85, 72) = 12695644858721958545 (Adições = 2) +D(85, 73) = 7583704763556166779 (Adições = 2) +D(85, 74) = 134950005535963501 (Adições = 2) +D(85, 75) = 4838795660870553079 (Adições = 2) +D(85, 76) = 16845752186751198393 (Adições = 2) +D(85, 77) = 13678046095963380739 (Adições = 2) +D(85, 78) = 499406492515613045 (Adições = 2) +D(85, 79) = 16920930967625430943 (Adições = 2) +D(85, 80) = 16370235373578019745 (Adições = 2) +D(85, 81) = 16655304038123753163 (Adições = 2) +D(85, 82) = 9960227248339548733 (Adições = 2) +D(85, 83) = 2970866835116255367 (Adições = 2) +D(85, 84) = 4250472077505428297 (Adições = 2) +D(85, 85) = 13657070354591637715 (Adições = 2) +D(85, 86) = 39820028622522309 (Adições = 2) +D(85, 87) = 3612877056609002671 (Adições = 2) +D(85, 88) = 14396617747160604593 (Adições = 2) +D(85, 89) = 13200989677902523931 (Adições = 2) +D(85, 90) = 18207261942517128717 (Adições = 2) +D(85, 91) = 9565235884304171031 (Adições = 2) +D(85, 92) = 15737410495805617369 (Adições = 2) +D(85, 93) = 11621381141805965987 (Adições = 2) +D(85, 94) = 1976187769278212373 (Adições = 2) +D(85, 95) = 1269674806767967935 (Adições = 2) +D(85, 96) = 16322886527942233793 (Adições = 2) +D(85, 97) = 8922822531402955371 (Adições = 2) +D(85, 98) = 7443802658895611101 (Adições = 2) +D(85, 99) = 11069317682294895783 (Adições = 2) +D(85, 100) = 10249230524903616873 (Adições = 2) +D(86, 0) = 1 (Adições = 0) +D(86, 1) = 173 (Adições = 2) +D(86, 2) = 14965 (Adições = 2) +D(86, 3) = 863097 (Adições = 2) +D(86, 4) = 37340169 (Adições = 2) +D(86, 5) = 1292660325 (Adições = 2) +D(86, 6) = 37302822845 (Adições = 2) +D(86, 7) = 923020616305 (Adições = 2) +D(86, 8) = 19992960797585 (Adições = 2) +D(86, 9) = 385129598101405 (Adições = 2) +D(86, 10) = 6680735711872133 (Adições = 2) +D(86, 11) = 105419870375899369 (Adições = 2) +D(86, 12) = 1525927138988432025 (Adições = 2) +D(86, 13) = 1957135425483489365 (Adições = 2) +D(86, 14) = 13742913196579093709 (Adições = 2) +D(86, 15) = 10294740131492451041 (Adições = 2) +D(86, 16) = 1986179305229247777 (Adições = 2) +D(86, 17) = 17965333946925530253 (Adições = 2) +D(86, 18) = 5447502713607662741 (Adições = 2) +D(86, 19) = 3513453458298123353 (Adições = 2) +D(86, 20) = 14352744307440062249 (Adições = 2) +D(86, 21) = 11783372625685680197 (Adições = 2) +D(86, 22) = 13288295569004715997 (Adições = 2) +D(86, 23) = 15780295062237573457 (Adições = 2) +D(86, 24) = 5811792678408711345 (Adições = 2) +D(86, 25) = 12570242343330193277 (Adições = 2) +D(86, 26) = 1251941431398339237 (Adições = 2) +D(86, 27) = 7145334487333934537 (Adições = 2) +D(86, 28) = 13073386619455635897 (Adições = 2) +D(86, 29) = 11101480629685075509 (Adições = 2) +D(86, 30) = 2869169068486177005 (Adições = 2) +D(86, 31) = 9498551277454319041 (Adições = 2) +D(86, 32) = 16661101479110869569 (Adições = 2) +D(86, 33) = 14942410969791639661 (Adições = 2) +D(86, 34) = 12989082700676994741 (Adições = 2) +D(86, 35) = 6512838345480779065 (Adições = 2) +D(86, 36) = 16768374788479537737 (Adições = 2) +D(86, 37) = 5469154354714847781 (Adições = 2) +D(86, 38) = 7730742880354013181 (Adições = 2) +D(86, 39) = 6985154940883318833 (Adições = 2) +D(86, 40) = 8694647511572973009 (Adições = 2) +D(86, 41) = 11107674239765106525 (Adições = 2) +D(86, 42) = 12076684770898532549 (Adições = 2) +D(86, 43) = 18253519822313108137 (Adições = 2) +D(86, 44) = 18169643157048058073 (Adições = 2) +D(86, 45) = 2845047002071413781 (Adições = 2) +D(86, 46) = 11230806049043619085 (Adições = 2) +D(86, 47) = 1342691586074255521 (Adições = 2) +D(86, 48) = 10840121994534836065 (Adições = 2) +D(86, 49) = 6082246502570220621 (Adições = 2) +D(86, 50) = 4735646105921157333 (Adições = 2) +D(86, 51) = 17686630834673659417 (Adições = 2) +D(86, 52) = 12403344984352820585 (Adições = 2) +D(86, 53) = 11200373204131855365 (Adições = 2) +D(86, 54) = 5697140432324556829 (Adições = 2) +D(86, 55) = 3091384620720600849 (Adições = 2) +D(86, 56) = 3616361081833576177 (Adições = 2) +D(86, 57) = 12394987465772185405 (Adições = 2) +D(86, 58) = 133257170379118309 (Adições = 2) +D(86, 59) = 2257969645050152841 (Adições = 2) +D(86, 60) = 6948961095329232889 (Adições = 2) +D(86, 61) = 6505975416979988981 (Adições = 2) +D(86, 62) = 8626604030622515501 (Adições = 2) +D(86, 63) = 10180863113304841089 (Adições = 2) +D(86, 64) = 9494764339838706817 (Adições = 2) +D(86, 65) = 7766696844519686189 (Adições = 2) +D(86, 66) = 5392901542101373685 (Adições = 2) +D(86, 67) = 1477039420015517433 (Adições = 2) +D(86, 68) = 2832016313061130377 (Adições = 2) +D(86, 69) = 535872181294843365 (Adições = 2) +D(86, 70) = 15183975200871815229 (Adições = 2) +D(86, 71) = 14142701349402865137 (Adições = 2) +D(86, 72) = 10524138356280025105 (Adições = 2) +D(86, 73) = 12356743904848598813 (Adições = 2) +D(86, 74) = 1628654600231177477 (Adições = 2) +D(86, 75) = 6602400266637694057 (Adições = 2) +D(86, 76) = 9840204040549893913 (Adições = 2) +D(86, 77) = 3470514175845369813 (Adições = 2) +D(86, 78) = 17647966764324363597 (Adições = 2) +D(86, 79) = 16621560150755855969 (Adições = 2) +D(86, 80) = 13019238344540203425 (Adições = 2) +D(86, 81) = 9151289608822873101 (Adições = 2) +D(86, 82) = 17320076821576623381 (Adições = 2) +D(86, 83) = 11804426831322875865 (Adições = 2) +D(86, 84) = 579021670235007913 (Adições = 2) +D(86, 85) = 39820028622522309 (Adições = 2) +D(86, 86) = 13736710411836682333 (Adições = 2) +D(86, 87) = 17389407497068207313 (Adições = 2) +D(86, 88) = 16952158227128262961 (Adições = 2) +D(86, 89) = 7656277504772288253 (Adições = 2) +D(86, 90) = 2171040977772837669 (Adições = 2) +D(86, 91) = 11496794730884585801 (Adições = 2) +D(86, 92) = 18352697037284822585 (Adições = 2) +D(86, 93) = 8818000527477302709 (Adições = 2) +D(86, 94) = 3968825364851929453 (Adições = 2) +D(86, 95) = 7214687940898109761 (Adições = 2) +D(86, 96) = 6360505201898759873 (Adições = 2) +D(86, 97) = 13159470187534397421 (Adições = 2) +D(86, 98) = 11079351304123412277 (Adições = 2) +D(86, 99) = 11145727571604367545 (Adições = 2) +D(86, 100) = 14017531705093328585 (Adições = 2) +D(87, 0) = 1 (Adições = 0) +D(87, 1) = 175 (Adições = 2) +D(87, 2) = 15313 (Adições = 2) +D(87, 3) = 893375 (Adições = 2) +D(87, 4) = 39096641 (Adições = 2) +D(87, 5) = 1369097135 (Adições = 2) +D(87, 6) = 39964580305 (Adições = 2) +D(87, 7) = 1000288019455 (Adições = 2) +D(87, 8) = 21916269433345 (Adições = 2) +D(87, 9) = 427038828332335 (Adições = 2) +D(87, 10) = 7492904138305873 (Adições = 2) +D(87, 11) = 119593510226077375 (Adições = 2) +D(87, 12) = 1750940519590408769 (Adições = 2) +D(87, 13) = 5234003084062330159 (Adições = 2) +D(87, 14) = 2487307632415361617 (Adições = 2) +D(87, 15) = 8078216886777354751 (Adições = 2) +D(87, 16) = 1912392249789501953 (Adições = 2) +D(87, 17) = 3417161428234728367 (Adições = 2) +D(87, 18) = 8383254015058369745 (Adições = 2) +D(87, 19) = 17344210186964155839 (Adições = 2) +D(87, 20) = 16763663878992789825 (Adições = 2) +D(87, 21) = 6006292664699429039 (Adições = 2) +D(87, 22) = 12631216785680273617 (Adições = 2) +D(87, 23) = 4806319269503459839 (Adições = 2) +D(87, 24) = 7951662936440193025 (Adições = 2) +D(87, 25) = 7886953884469546031 (Adições = 2) +D(87, 26) = 3262393585488526929 (Adições = 2) +D(87, 27) = 11659669504220800703 (Adições = 2) +D(87, 28) = 13431646537300819521 (Adições = 2) +D(87, 29) = 713025639022427695 (Adições = 2) +D(87, 30) = 14683675337193680209 (Adições = 2) +D(87, 31) = 8604651609424624639 (Adições = 2) +D(87, 32) = 16317560292280261633 (Adições = 2) +D(87, 33) = 11027584593763667631 (Adições = 2) +D(87, 34) = 2065590116813198801 (Adições = 2) +D(87, 35) = 3120767089261420991 (Adições = 2) +D(87, 36) = 7955236149512186177 (Adições = 2) +D(87, 37) = 11746021218997020079 (Adições = 2) +D(87, 38) = 6499174380356329425 (Adições = 2) +D(87, 39) = 2768328127884109823 (Adições = 2) +D(87, 40) = 1386506630850049 (Adições = 2) +D(87, 41) = 1356964184259377967 (Adições = 2) +D(87, 42) = 6094579121213465425 (Adições = 2) +D(87, 43) = 17978039640715554495 (Adições = 2) +D(87, 44) = 17507714472657617473 (Adições = 2) +D(87, 45) = 1628916484357986095 (Adições = 2) +D(87, 46) = 15704769535473018961 (Adições = 2) +D(87, 47) = 9831523096881341951 (Adições = 2) +D(87, 48) = 3567592603780881921 (Adições = 2) +D(87, 49) = 2043217027176386991 (Adições = 2) +D(87, 50) = 12861109635667764945 (Adições = 2) +D(87, 51) = 16836642502553030079 (Adições = 2) +D(87, 52) = 10033130174160406849 (Adições = 2) +D(87, 53) = 15190104288935531183 (Adições = 2) +D(87, 54) = 13640873851682391761 (Adições = 2) +D(87, 55) = 3982654831017997823 (Adições = 2) +D(87, 56) = 10690400533572174849 (Adições = 2) +D(87, 57) = 8255005007468384815 (Adições = 2) +D(87, 58) = 2336505569910136913 (Adições = 2) +D(87, 59) = 4727732385339408063 (Adições = 2) +D(87, 60) = 13934663125718793793 (Adições = 2) +D(87, 61) = 8942855564318464047 (Adições = 2) +D(87, 62) = 5628690938211416913 (Adições = 2) +D(87, 63) = 5989414008429221887 (Adições = 2) +D(87, 64) = 7218297387863218177 (Adições = 2) +D(87, 65) = 6033014498512059567 (Adições = 2) +D(87, 66) = 745868811423567825 (Adições = 2) +D(87, 67) = 7615809773540458943 (Adições = 2) +D(87, 68) = 11924865506617106753 (Adições = 2) +D(87, 69) = 15292754000973080495 (Adições = 2) +D(87, 70) = 12565857309430187473 (Adições = 2) +D(87, 71) = 4999045712285764607 (Adições = 2) +D(87, 72) = 11219141344259103233 (Adições = 2) +D(87, 73) = 15653279531678175535 (Adições = 2) +D(87, 74) = 11191933963048400209 (Adições = 2) +D(87, 75) = 976244756207720127 (Adições = 2) +D(87, 76) = 17418849063395308097 (Adições = 2) +D(87, 77) = 12282823206081020207 (Adições = 2) +D(87, 78) = 14954560072541202001 (Adições = 2) +D(87, 79) = 12330598840202318335 (Adições = 2) +D(87, 80) = 5077909188079274497 (Adições = 2) +D(87, 81) = 8801693067732799407 (Adições = 2) +D(87, 82) = 16826315424422744273 (Adições = 2) +D(87, 83) = 9057330929903140287 (Adições = 2) +D(87, 84) = 2994035357751472449 (Adições = 2) +D(87, 85) = 3612877056609002671 (Adições = 2) +D(87, 86) = 17389407497068207313 (Adições = 2) +D(87, 87) = 11622037258553993727 (Adições = 2) +D(87, 88) = 9070114835331360769 (Adições = 2) +D(87, 89) = 15231806493522360367 (Adições = 2) +D(87, 90) = 6612380902357934673 (Adições = 2) +D(87, 91) = 1833472537305806527 (Adições = 2) +D(87, 92) = 13236220231765663297 (Adições = 2) +D(87, 93) = 3513429649108685359 (Adições = 2) +D(87, 94) = 16300255541437917521 (Adições = 2) +D(87, 95) = 9037024773478405119 (Adições = 2) +D(87, 96) = 4165473842565723137 (Adições = 2) +D(87, 97) = 5238705158289328815 (Adições = 2) +D(87, 98) = 11030782576237586897 (Adições = 2) +D(87, 99) = 14809117378255815103 (Adições = 2) +D(87, 100) = 3078888507534408001 (Adições = 2) +D(88, 0) = 1 (Adições = 0) +D(88, 1) = 177 (Adições = 2) +D(88, 2) = 15665 (Adições = 2) +D(88, 3) = 924353 (Adições = 2) +D(88, 4) = 40914369 (Adições = 2) +D(88, 5) = 1449108145 (Adições = 2) +D(88, 6) = 42782785585 (Adições = 2) +D(88, 7) = 1083035385345 (Adições = 2) +D(88, 8) = 23999592838145 (Adições = 2) +D(88, 9) = 472954690603825 (Adições = 2) +D(88, 10) = 8392897657242033 (Adições = 2) +D(88, 11) = 135479312021625281 (Adições = 2) +D(88, 12) = 2006013341838111425 (Adições = 2) +D(88, 13) = 8990956945490850353 (Adições = 2) +D(88, 14) = 16712267661968542129 (Adições = 2) +D(88, 15) = 8831048107451706881 (Adições = 2) +D(88, 16) = 374913170309011969 (Adições = 2) +D(88, 17) = 5704466848333242289 (Adições = 2) +D(88, 18) = 17504882291626340401 (Adições = 2) +D(88, 19) = 6338858346229762753 (Adições = 2) +D(88, 20) = 3553244264767605185 (Adições = 2) +D(88, 21) = 7876456734750272433 (Adições = 2) +D(88, 22) = 8067222111420423473 (Adições = 2) +D(88, 23) = 7058014092894605313 (Adições = 2) +D(88, 24) = 1369252225128706561 (Adições = 2) +D(88, 25) = 17207869046038445617 (Adições = 2) +D(88, 26) = 9910472442286966961 (Adições = 2) +D(88, 27) = 6385791458286742977 (Adições = 2) +D(88, 28) = 13030363426098811585 (Adições = 2) +D(88, 29) = 8728291528712507185 (Adições = 2) +D(88, 30) = 5678248431219063473 (Adições = 2) +D(88, 31) = 10519831304127816705 (Adições = 2) +D(88, 32) = 16995299132123151361 (Adições = 2) +D(88, 33) = 7446955870747977393 (Adições = 2) +D(88, 34) = 2093386507615292209 (Adições = 2) +D(88, 35) = 7279743713689912001 (Adições = 2) +D(88, 36) = 18355746952463519169 (Adições = 2) +D(88, 37) = 1163516173553622193 (Adições = 2) +D(88, 38) = 961967699197420081 (Adições = 2) +D(88, 39) = 10229470207437859329 (Adições = 2) +D(88, 40) = 12999184841952819201 (Adições = 2) +D(88, 41) = 14357535532843047217 (Adições = 2) +D(88, 42) = 3362334764606338993 (Adições = 2) +D(88, 43) = 8988209452825807297 (Adições = 2) +D(88, 44) = 7580475418779876033 (Adições = 2) +D(88, 45) = 8270362302085927985 (Adições = 2) +D(88, 46) = 7157304248207381425 (Adições = 2) +D(88, 47) = 14246852806852190721 (Adições = 2) +D(88, 48) = 9199224433804862977 (Adições = 2) +D(88, 49) = 14810034064762131889 (Adições = 2) +D(88, 50) = 11267616653896732209 (Adições = 2) +D(88, 51) = 4071880644698424001 (Adições = 2) +D(88, 52) = 12494909247702309313 (Adições = 2) +D(88, 53) = 824655563379144113 (Adições = 2) +D(88, 54) = 11208889630287515441 (Adições = 2) +D(88, 55) = 10385674239278353409 (Adições = 2) +D(88, 56) = 6611985530158974465 (Adições = 2) +D(88, 57) = 7110646997489982513 (Adições = 2) +D(88, 58) = 17702157574868504241 (Adições = 2) +D(88, 59) = 6319651456408497601 (Adições = 2) +D(88, 60) = 6535302893757147841 (Adições = 2) +D(88, 61) = 10966077510084854065 (Adições = 2) +D(88, 62) = 7090879938905183409 (Adições = 2) +D(88, 63) = 262240811836270593 (Adições = 2) +D(88, 64) = 13469952208128710657 (Adições = 2) +D(88, 65) = 8274520020794436785 (Adições = 2) +D(88, 66) = 15053403330730064177 (Adições = 2) +D(88, 67) = 4968337841984539329 (Adições = 2) +D(88, 68) = 6062269048432553409 (Adições = 2) +D(88, 69) = 14833144482313189041 (Adições = 2) +D(88, 70) = 5798267645297353777 (Adições = 2) +D(88, 71) = 4916426593303754241 (Adições = 2) +D(88, 72) = 2687869576139070465 (Adições = 2) +D(88, 73) = 11113546378366797617 (Adições = 2) +D(88, 74) = 1065271725674270129 (Adições = 2) +D(88, 75) = 13233450444930390465 (Adições = 2) +D(88, 76) = 13181800190823867073 (Adições = 2) +D(88, 77) = 5989984312881092145 (Adições = 2) +D(88, 78) = 14780623517793762737 (Adições = 2) +D(88, 79) = 5172294283118179841 (Adições = 2) +D(88, 80) = 4134058237690221057 (Adições = 2) +D(88, 81) = 18013660493502294961 (Adições = 2) +D(88, 82) = 6748180838238735409 (Adições = 2) +D(88, 83) = 14185083118855068353 (Adições = 2) +D(88, 84) = 7789705332800129473 (Adições = 2) +D(88, 85) = 14396617747160604593 (Adições = 2) +D(88, 86) = 16952158227128262961 (Adições = 2) +D(88, 87) = 9070114835331360769 (Adições = 2) +D(88, 88) = 11315522855507163649 (Adições = 2) +D(88, 89) = 17170700110651333169 (Adições = 2) +D(88, 90) = 2121399359112524977 (Adições = 2) +D(88, 91) = 10567252798776266177 (Adições = 2) +D(88, 92) = 7190201494138184385 (Adições = 2) +D(88, 93) = 5493107301302981425 (Adições = 2) +D(88, 94) = 6860048418140032689 (Adições = 2) +D(88, 95) = 13750584659346803713 (Adições = 2) +D(88, 96) = 8506339201681380353 (Adições = 2) +D(88, 97) = 17910518202536432305 (Adições = 2) +D(88, 98) = 15733261863353796401 (Adições = 2) +D(88, 99) = 4679673670428095169 (Adições = 2) +D(88, 100) = 4120935482508766657 (Adições = 2) +D(89, 0) = 1 (Adições = 0) +D(89, 1) = 179 (Adições = 2) +D(89, 2) = 16021 (Adições = 2) +D(89, 3) = 956039 (Adições = 2) +D(89, 4) = 42794761 (Adições = 2) +D(89, 5) = 1532817275 (Adições = 2) +D(89, 6) = 45764711005 (Adições = 2) +D(89, 7) = 1171582881935 (Adições = 2) +D(89, 8) = 26254211105425 (Adições = 2) +D(89, 9) = 523208494547395 (Adições = 2) +D(89, 10) = 9389060842393253 (Adições = 2) +D(89, 11) = 153261270521260567 (Adições = 2) +D(89, 12) = 2294753924380997273 (Adições = 2) +D(89, 13) = 13291724211709959051 (Adições = 2) +D(89, 14) = 2101460671750248301 (Adições = 2) +D(89, 15) = 9198032367460945695 (Adições = 2) +D(89, 16) = 18403993645221664545 (Adições = 2) +D(89, 17) = 6036629590154367187 (Adições = 2) +D(89, 18) = 10799234656404398261 (Adições = 2) +D(89, 19) = 16196231220550949799 (Adições = 2) +D(89, 20) = 7641589757838766121 (Adições = 2) +D(89, 21) = 624546683647092123 (Adições = 2) +D(89, 22) = 16568225529817788029 (Adições = 2) +D(89, 23) = 13246717660423265199 (Adições = 2) +D(89, 24) = 3227239904737025457 (Adições = 2) +D(89, 25) = 3357617102194626019 (Adições = 2) +D(89, 26) = 12029214516810486981 (Adições = 2) +D(89, 27) = 9878734343674645303 (Adições = 2) +D(89, 28) = 10848145154350648249 (Adições = 2) +D(89, 29) = 14160056035452415403 (Adições = 2) +D(89, 30) = 10119851921674434445 (Adições = 2) +D(89, 31) = 7871187583311763007 (Adições = 2) +D(89, 32) = 16939573945853179457 (Adições = 2) +D(89, 33) = 4488340801305204979 (Adições = 2) +D(89, 34) = 14028683179668474581 (Adições = 2) +D(89, 35) = 4955069327264127175 (Adições = 2) +D(89, 36) = 12143815919708006729 (Adições = 2) +D(89, 37) = 13216334972015596475 (Adições = 2) +D(89, 38) = 15341818844766638749 (Adições = 2) +D(89, 39) = 8086512677692366543 (Adições = 2) +D(89, 40) = 12868423653373493457 (Adições = 2) +D(89, 41) = 3331655880750256643 (Adições = 2) +D(89, 42) = 2604782104490091237 (Adições = 2) +D(89, 43) = 14955326321922237527 (Adições = 2) +D(89, 44) = 13077267119818369241 (Adições = 2) +D(89, 45) = 10481360766974621643 (Adições = 2) +D(89, 46) = 7462283243558379437 (Adições = 2) +D(89, 47) = 10419696224908399967 (Adições = 2) +D(89, 48) = 15419029391855902049 (Adições = 2) +D(89, 49) = 2534799743003793683 (Adições = 2) +D(89, 50) = 10165706387953106165 (Adições = 2) +D(89, 51) = 7058459612838710759 (Adições = 2) +D(89, 52) = 5178505431529892457 (Adições = 2) +D(89, 53) = 51326168901794267 (Adições = 2) +D(89, 54) = 12084871362568453821 (Adições = 2) +D(89, 55) = 15232691158424771055 (Adições = 2) +D(89, 56) = 13783606854152547313 (Adições = 2) +D(89, 57) = 9059495308091952675 (Adições = 2) +D(89, 58) = 15425555806740887813 (Adições = 2) +D(89, 59) = 2553876690598786423 (Adições = 2) +D(89, 60) = 15408831040764431865 (Adições = 2) +D(89, 61) = 14463467370896882155 (Adições = 2) +D(89, 62) = 14073680746177368013 (Adições = 2) +D(89, 63) = 2980057423209270399 (Adições = 2) +D(89, 64) = 16712250443174251649 (Adições = 2) +D(89, 65) = 1563234524678295859 (Adições = 2) +D(89, 66) = 6444413802493245205 (Adições = 2) +D(89, 67) = 8019410901498297095 (Adições = 2) +D(89, 68) = 603273718205838217 (Adições = 2) +D(89, 69) = 3051943175242029051 (Adições = 2) +D(89, 70) = 5236611229143020253 (Adições = 2) +D(89, 71) = 15951305467744128271 (Adições = 2) +D(89, 72) = 5108857563477401361 (Adições = 2) +D(89, 73) = 463529444273717827 (Adições = 2) +D(89, 74) = 12642347548314785573 (Adições = 2) +D(89, 75) = 8494325645209894551 (Adições = 2) +D(89, 76) = 16462832207254600473 (Adições = 2) +D(89, 77) = 17187872637250008075 (Adições = 2) +D(89, 78) = 1064992320505759725 (Adições = 2) +D(89, 79) = 2571166047708150687 (Adições = 2) +D(89, 80) = 11877518568516551585 (Adições = 2) +D(89, 81) = 15578493225999515987 (Adições = 2) +D(89, 82) = 3446846410321443125 (Adições = 2) +D(89, 83) = 5933366293705695271 (Adições = 2) +D(89, 84) = 9461410671651341481 (Adições = 2) +D(89, 85) = 13200989677902523931 (Adições = 2) +D(89, 86) = 7656277504772288253 (Adições = 2) +D(89, 87) = 15231806493522360367 (Adições = 2) +D(89, 88) = 17170700110651333169 (Adições = 2) +D(89, 89) = 8763434929390726755 (Adições = 2) +D(89, 90) = 9608790325445033285 (Adições = 2) +D(89, 91) = 3850698409624272823 (Adições = 2) +D(89, 92) = 3161408628829171769 (Adições = 2) +D(89, 93) = 15844717424270337579 (Adições = 2) +D(89, 94) = 9751129070003800077 (Adições = 2) +D(89, 95) = 11915018073781084863 (Adições = 2) +D(89, 96) = 15725197861099717313 (Adições = 2) +D(89, 97) = 5248567117898426739 (Adições = 2) +D(89, 98) = 1998859036369552213 (Adições = 2) +D(89, 99) = 3965050496441892167 (Adições = 2) +D(89, 100) = 12765659649378753993 (Adições = 2) +D(90, 0) = 1 (Adições = 0) +D(90, 1) = 181 (Adições = 2) +D(90, 2) = 16381 (Adições = 2) +D(90, 3) = 988441 (Adições = 2) +D(90, 4) = 44739241 (Adições = 2) +D(90, 5) = 1620351277 (Adições = 2) +D(90, 6) = 48917879557 (Adições = 2) +D(90, 7) = 1266265472497 (Adições = 2) +D(90, 8) = 28692059459857 (Adições = 2) +D(90, 9) = 578154765112677 (Adições = 2) +D(90, 10) = 10490424102053325 (Adições = 2) +D(90, 11) = 173140755465707145 (Adições = 2) +D(90, 12) = 2621155950367964985 (Adições = 2) +D(90, 13) = 18207634086458921309 (Adições = 2) +D(90, 14) = 15154074896209577045 (Adições = 2) +D(90, 15) = 8006823861711219425 (Adições = 2) +D(90, 16) = 17162105800684278049 (Adições = 2) +D(90, 17) = 4709240888641206549 (Adições = 2) +D(90, 18) = 3098361061490420381 (Adições = 2) +D(90, 19) = 11647082864736216825 (Adições = 2) +D(90, 20) = 17038159769416381129 (Adições = 2) +D(90, 21) = 6857552137192687757 (Adições = 2) +D(90, 22) = 5603580276948016293 (Adições = 2) +D(90, 23) = 16971779393479517905 (Adições = 2) +D(90, 24) = 14998992884930256945 (Adições = 2) +D(90, 25) = 3137105818152356805 (Adições = 2) +D(90, 26) = 77193363447918189 (Adições = 2) +D(90, 27) = 3538398150223498857 (Adições = 2) +D(90, 28) = 5818533574539240793 (Adições = 2) +D(90, 29) = 12379990690632752829 (Adições = 2) +D(90, 30) = 18213154574050051061 (Adições = 2) +D(90, 31) = 17757450005326696897 (Adições = 2) +D(90, 32) = 5674723387072536129 (Adições = 2) +D(90, 33) = 8655894060521368949 (Adições = 2) +D(90, 34) = 8726173967785496893 (Adições = 2) +D(90, 35) = 9263182401008547033 (Adições = 2) +D(90, 36) = 7915323574271129321 (Adições = 2) +D(90, 37) = 14828730392285180909 (Adições = 2) +D(90, 38) = 6493396061648312901 (Adições = 2) +D(90, 39) = 11474983510397766577 (Adições = 2) +D(90, 40) = 13983175767754074961 (Adições = 2) +D(90, 41) = 11736511228168273445 (Adições = 2) +D(90, 42) = 17672949213408621325 (Adições = 2) +D(90, 43) = 16786313566111398473 (Adições = 2) +D(90, 44) = 7925418860432902009 (Adições = 2) +D(90, 45) = 13037302673516341277 (Adições = 2) +D(90, 46) = 12534202610339790741 (Adições = 2) +D(90, 47) = 11969438005097018529 (Adições = 2) +D(90, 48) = 914675474442217313 (Adições = 2) +D(90, 49) = 421760535592361429 (Adições = 2) +D(90, 50) = 13122266666549261277 (Adições = 2) +D(90, 51) = 11899688593631526585 (Adições = 2) +D(90, 52) = 5689909564290578185 (Adições = 2) +D(90, 53) = 10919741164722264909 (Adições = 2) +D(90, 54) = 4609194622482961381 (Adições = 2) +D(90, 55) = 13480013069766634641 (Adições = 2) +D(90, 56) = 5602822934924849777 (Adições = 2) +D(90, 57) = 9999181023459798149 (Adições = 2) +D(90, 58) = 16037488064583087021 (Adições = 2) +D(90, 59) = 15570176488213209641 (Adições = 2) +D(90, 60) = 15086140145866876313 (Adições = 2) +D(90, 61) = 8064950410109087101 (Adições = 2) +D(90, 62) = 18155354453473785653 (Adições = 2) +D(90, 63) = 16762348549150872449 (Adições = 2) +D(90, 64) = 18007912341824842881 (Adições = 2) +D(90, 65) = 17836653235967838773 (Adições = 2) +D(90, 66) = 7397557489429828221 (Adições = 2) +D(90, 67) = 3414638119711818905 (Adições = 2) +D(90, 68) = 12037322739415954217 (Adições = 2) +D(90, 69) = 15692539632863821485 (Adições = 2) +D(90, 70) = 5534349963539319173 (Adições = 2) +D(90, 71) = 8275522586716916081 (Adições = 2) +D(90, 72) = 10888941544228894097 (Adições = 2) +D(90, 73) = 16461328551980013285 (Adições = 2) +D(90, 74) = 11120461470858965069 (Adições = 2) +D(90, 75) = 13810390590674093577 (Adições = 2) +D(90, 76) = 1874060295719485369 (Adições = 2) +D(90, 77) = 17078021066514542301 (Adições = 2) +D(90, 78) = 16884141950560758485 (Adições = 2) +D(90, 79) = 2073556245065117281 (Adições = 2) +D(90, 80) = 16522240861289819553 (Adições = 2) +D(90, 81) = 7084764508386783893 (Adições = 2) +D(90, 82) = 7663360070998191389 (Adições = 2) +D(90, 83) = 17043572775025329785 (Adições = 2) +D(90, 84) = 13991605666672814921 (Adições = 2) +D(90, 85) = 18207261942517128717 (Adições = 2) +D(90, 86) = 2171040977772837669 (Adições = 2) +D(90, 87) = 6612380902357934673 (Adições = 2) +D(90, 88) = 2121399359112524977 (Adições = 2) +D(90, 89) = 9608790325445033285 (Adições = 2) +D(90, 90) = 9534271506571241709 (Adições = 2) +D(90, 91) = 4547016167930996201 (Adições = 2) +D(90, 92) = 11559123206384440793 (Adições = 2) +D(90, 93) = 12118505185774398525 (Adições = 2) +D(90, 94) = 820863532629432949 (Adições = 2) +D(90, 95) = 4040266602704766273 (Adições = 2) +D(90, 96) = 13233738463876016833 (Adições = 2) +D(90, 97) = 15760759369164609269 (Adições = 2) +D(90, 98) = 4561441449723036605 (Adições = 2) +D(90, 99) = 10525350982534480985 (Adições = 2) +D(90, 100) = 8809317054645575529 (Adições = 2) +D(91, 0) = 1 (Adições = 0) +D(91, 1) = 183 (Adições = 2) +D(91, 2) = 16745 (Adições = 2) +D(91, 3) = 1021567 (Adições = 2) +D(91, 4) = 46749249 (Adições = 2) +D(91, 5) = 1711839767 (Adições = 2) +D(91, 6) = 52250070601 (Adições = 2) +D(91, 7) = 1367433422655 (Adições = 2) +D(91, 8) = 31325758355009 (Adições = 2) +D(91, 9) = 638172582927543 (Adições = 2) +D(91, 10) = 11706751450093545 (Adições = 2) +D(91, 11) = 195337931017854015 (Adições = 2) +D(91, 12) = 2989634636851526145 (Adições = 2) +D(91, 13) = 5371680599968860823 (Adições = 2) +D(91, 14) = 1839901435218255945 (Adições = 2) +D(91, 15) = 6554056119429500799 (Adições = 2) +D(91, 16) = 13276241708115446657 (Adições = 2) +D(91, 17) = 16700844323731379639 (Adições = 2) +D(91, 18) = 6061702200153454953 (Adições = 2) +D(91, 19) = 2360402052670540543 (Adições = 2) +D(91, 20) = 12598900613113586881 (Adições = 2) +D(91, 21) = 18047868446013104151 (Adições = 2) +D(91, 22) = 12062256786444256585 (Adições = 2) +D(91, 23) = 16190872383162239167 (Adições = 2) +D(91, 24) = 11268156514152910785 (Adições = 2) +D(91, 25) = 10957511143525972919 (Adições = 2) +D(91, 26) = 14171810325126247913 (Adições = 2) +D(91, 27) = 17787401838797664959 (Adições = 2) +D(91, 28) = 8697589489850852993 (Adições = 2) +D(91, 29) = 8449369681313294999 (Adições = 2) +D(91, 30) = 2149026798576995657 (Adições = 2) +D(91, 31) = 1226143230534640383 (Adições = 2) +D(91, 32) = 6211572549224321793 (Adições = 2) +D(91, 33) = 2095445923108675255 (Adições = 2) +D(91, 34) = 1030769877705989481 (Adições = 2) +D(91, 35) = 573382172790481791 (Adições = 2) +D(91, 36) = 17751888148070158145 (Adições = 2) +D(91, 37) = 3602453967207365143 (Adições = 2) +D(91, 38) = 6477836347431307337 (Adições = 2) +D(91, 39) = 5999471845767835199 (Adições = 2) +D(91, 40) = 13010887050210125121 (Adições = 2) +D(91, 41) = 1837085898713370295 (Adições = 2) +D(91, 42) = 12799802266580713449 (Adições = 2) +D(91, 43) = 10365576898681630015 (Adições = 2) +D(91, 44) = 16630565251516378881 (Adições = 2) +D(91, 45) = 699798638046518935 (Adições = 2) +D(91, 46) = 7824559848193099337 (Adições = 2) +D(91, 47) = 13881456389920356991 (Adições = 2) +D(91, 48) = 8318825795750041217 (Adições = 2) +D(91, 49) = 9655261805784619959 (Adições = 2) +D(91, 50) = 4752544934216691049 (Adições = 2) +D(91, 51) = 11327756120687927295 (Adições = 2) +D(91, 52) = 10470610204900480449 (Adições = 2) +D(91, 53) = 8633516860203771927 (Adições = 2) +D(91, 54) = 5715708573699446601 (Adições = 2) +D(91, 55) = 5358172192239491007 (Adições = 2) +D(91, 56) = 5994264123221423809 (Adições = 2) +D(91, 57) = 3149524007896520119 (Adições = 2) +D(91, 58) = 10739449022229853673 (Adições = 2) +D(91, 59) = 5453625427607047103 (Adições = 2) +D(91, 60) = 17663197987977581441 (Adições = 2) +D(91, 61) = 3920800396534441623 (Adições = 2) +D(91, 62) = 11694361186407762761 (Adições = 2) +D(91, 63) = 9718576041613317631 (Adições = 2) +D(91, 64) = 7595348785169929729 (Adições = 2) +D(91, 65) = 6546426215543508151 (Adições = 2) +D(91, 66) = 13333892867231623529 (Adições = 2) +D(91, 67) = 5699344402663719039 (Adições = 2) +D(91, 68) = 2704561188081940545 (Adições = 2) +D(91, 69) = 11987679486652164631 (Adições = 2) +D(91, 70) = 14767825009345753673 (Adições = 2) +D(91, 71) = 10130953485892437311 (Adições = 2) +D(91, 72) = 10848673543128695873 (Adições = 2) +D(91, 73) = 1305455491918500023 (Adições = 2) +D(91, 74) = 10440501441047926761 (Adições = 2) +D(91, 75) = 16924609428871433791 (Adições = 2) +D(91, 76) = 14162316241555461121 (Adições = 2) +D(91, 77) = 14667653530079937175 (Adições = 2) +D(91, 78) = 11736328399736134729 (Adições = 2) +D(91, 79) = 12247282521652458879 (Adições = 2) +D(91, 80) = 12396335554297844097 (Adições = 2) +D(91, 81) = 17556596850264895927 (Adições = 2) +D(91, 82) = 13857977355940319593 (Adições = 2) +D(91, 83) = 1671422054544737535 (Adições = 2) +D(91, 84) = 14259856422533330625 (Adições = 2) +D(91, 85) = 9565235884304171031 (Adições = 2) +D(91, 86) = 11496794730884585801 (Adições = 2) +D(91, 87) = 1833472537305806527 (Adições = 2) +D(91, 88) = 10567252798776266177 (Adições = 2) +D(91, 89) = 3850698409624272823 (Adições = 2) +D(91, 90) = 4547016167930996201 (Adições = 2) +D(91, 91) = 181559768723682495 (Adições = 2) +D(91, 92) = 16287699143039119489 (Adições = 2) +D(91, 93) = 3071839387778855575 (Adições = 2) +D(91, 94) = 16011208106182687049 (Adições = 2) +D(91, 95) = 2425594167807334655 (Adições = 2) +D(91, 96) = 1252855160678566145 (Adições = 2) +D(91, 97) = 11800608920009640631 (Adições = 2) +D(91, 98) = 13676065665187734889 (Adições = 2) +D(91, 99) = 10316114023735700863 (Adições = 2) +D(91, 100) = 11204037987206205761 (Adições = 2) +D(92, 0) = 1 (Adições = 0) +D(92, 1) = 185 (Adições = 2) +D(92, 2) = 17113 (Adições = 2) +D(92, 3) = 1055425 (Adições = 2) +D(92, 4) = 48826241 (Adições = 2) +D(92, 5) = 1807415257 (Adições = 2) +D(92, 6) = 55769325625 (Adições = 2) +D(92, 7) = 1475452818881 (Adições = 2) +D(92, 8) = 34168644596545 (Adições = 2) +D(92, 9) = 703666985879097 (Adições = 2) +D(92, 10) = 13048591018900185 (Adições = 2) +D(92, 11) = 220093273486847745 (Adições = 2) +D(92, 12) = 3405065841356227905 (Adições = 2) +D(92, 13) = 11766381078176614873 (Adições = 2) +D(92, 14) = 531219039654180025 (Adições = 2) +D(92, 15) = 8925176594301936769 (Adições = 2) +D(92, 16) = 10308730348137332609 (Adições = 2) +D(92, 17) = 3392328232565055673 (Adições = 2) +D(92, 18) = 7708130682740338649 (Adições = 2) +D(92, 19) = 16130234935564334145 (Adições = 2) +D(92, 20) = 12642793527638909953 (Adições = 2) +D(92, 21) = 6396074439346497753 (Adições = 2) +D(92, 22) = 18059455598094306873 (Adições = 2) +D(92, 23) = 9419096620281699393 (Adições = 2) +D(92, 24) = 18431381443887297729 (Adições = 2) +D(92, 25) = 3763560954147078201 (Adições = 2) +D(92, 26) = 10446138349089747417 (Adições = 2) +D(92, 27) = 5511862365594557057 (Adições = 2) +D(92, 28) = 13550109620533523393 (Adições = 2) +D(92, 29) = 12250324717988119769 (Adições = 2) +D(92, 30) = 4401977124168858809 (Adições = 2) +D(92, 31) = 7777147153280494849 (Adições = 2) +D(92, 32) = 15214862933039457025 (Adições = 2) +D(92, 33) = 5075137331662902457 (Adições = 2) +D(92, 34) = 8201353132477567193 (Adições = 2) +D(92, 35) = 9805505182974038465 (Adições = 2) +D(92, 36) = 9684031430125126785 (Adições = 2) +D(92, 37) = 12591629471693098457 (Adições = 2) +D(92, 38) = 4225175712622219321 (Adições = 2) +D(92, 39) = 16702483905821361857 (Adições = 2) +D(92, 40) = 17266098728089770561 (Adições = 2) +D(92, 41) = 13667327603303714361 (Adições = 2) +D(92, 42) = 9857471694888246489 (Adições = 2) +D(92, 43) = 14576106786441038337 (Adições = 2) +D(92, 44) = 4678760789219944001 (Adições = 2) +D(92, 45) = 3562380605073290201 (Adições = 2) +D(92, 46) = 12086739091312908473 (Adições = 2) +D(92, 47) = 15346011255716813185 (Adições = 2) +D(92, 48) = 652805293968108161 (Adições = 2) +D(92, 49) = 180148821793217721 (Adições = 2) +D(92, 50) = 14587955561794528729 (Adições = 2) +D(92, 51) = 12221512542989595457 (Adições = 2) +D(92, 52) = 15573134794868451585 (Adições = 2) +D(92, 53) = 16230517786263152345 (Adições = 2) +D(92, 54) = 12132999146456819257 (Adições = 2) +D(92, 55) = 4760135838686205249 (Adições = 2) +D(92, 56) = 16112572154147120065 (Adições = 2) +D(92, 57) = 6809616211555512377 (Adições = 2) +D(92, 58) = 2251845167972334553 (Adições = 2) +D(92, 59) = 18444919617809235329 (Adições = 2) +D(92, 60) = 4668254885974760641 (Adições = 2) +D(92, 61) = 7805509196777232089 (Adições = 2) +D(92, 62) = 4973926706009884857 (Adições = 2) +D(92, 63) = 7940119860321413633 (Adições = 2) +D(92, 64) = 6807300613395109377 (Adições = 2) +D(92, 65) = 2502331540398995641 (Adições = 2) +D(92, 66) = 3935906549464575705 (Adições = 2) +D(92, 67) = 4522399745650366657 (Adições = 2) +D(92, 68) = 12926305336396026241 (Adições = 2) +D(92, 69) = 9171801937420579801 (Adições = 2) +D(92, 70) = 17480562359708946489 (Adições = 2) +D(92, 71) = 5485852707528034241 (Adições = 2) +D(92, 72) = 8018735662839615809 (Adições = 2) +D(92, 73) = 1726120624177260089 (Adições = 2) +D(92, 74) = 13472077557143686873 (Adições = 2) +D(92, 75) = 3943700279643944193 (Adições = 2) +D(92, 76) = 16583881876361287489 (Adições = 2) +D(92, 77) = 8520363500577582553 (Adições = 2) +D(92, 78) = 16477601356684102841 (Adições = 2) +D(92, 79) = 3567724130653593217 (Adições = 2) +D(92, 80) = 9764598132894344577 (Adições = 2) +D(92, 81) = 2824042390037981369 (Adições = 2) +D(92, 82) = 15791872522533645273 (Adições = 2) +D(92, 83) = 12874527859309150785 (Adições = 2) +D(92, 84) = 10359062262677667329 (Adições = 2) +D(92, 85) = 15737410495805617369 (Adições = 2) +D(92, 86) = 18352697037284822585 (Adições = 2) +D(92, 87) = 13236220231765663297 (Adições = 2) +D(92, 88) = 7190201494138184385 (Adições = 2) +D(92, 89) = 3161408628829171769 (Adições = 2) +D(92, 90) = 11559123206384440793 (Adições = 2) +D(92, 91) = 16287699143039119489 (Adições = 2) +D(92, 92) = 14310213981092369857 (Adições = 2) +D(92, 93) = 15223008438200793305 (Adições = 2) +D(92, 94) = 15859311858452784313 (Adições = 2) +D(92, 95) = 15849370058733254401 (Adições = 2) +D(92, 96) = 1081075313509603585 (Adições = 2) +D(92, 97) = 14134539394197810361 (Adições = 2) +D(92, 98) = 2717725831976082649 (Adições = 2) +D(92, 99) = 8263161447189966785 (Adições = 2) +D(92, 100) = 11336569384422321793 (Adições = 2) +D(93, 0) = 1 (Adições = 0) +D(93, 1) = 187 (Adições = 2) +D(93, 2) = 17485 (Adições = 2) +D(93, 3) = 1090023 (Adições = 2) +D(93, 4) = 50971689 (Adições = 2) +D(93, 5) = 1907213187 (Adições = 2) +D(93, 6) = 59483954069 (Adições = 2) +D(93, 7) = 1590706098575 (Adições = 2) +D(93, 8) = 37234803514001 (Adições = 2) +D(93, 9) = 775070433989643 (Adições = 2) +D(93, 10) = 14527328438768925 (Adições = 2) +D(93, 11) = 247669192944516855 (Adições = 2) +D(93, 12) = 3872828307787592505 (Adições = 2) +D(93, 13) = 597531153610883667 (Adições = 2) +D(93, 14) = 12895131271441678565 (Adições = 2) +D(93, 15) = 3904782831688243743 (Adições = 2) +D(93, 16) = 4691945700417961505 (Adições = 2) +D(93, 17) = 18393004281120349787 (Adições = 2) +D(93, 18) = 11046719122716192493 (Adições = 2) +D(93, 19) = 16438340667311313671 (Adições = 2) +D(93, 20) = 8317880983095454537 (Adições = 2) +D(93, 21) = 8910004876371310627 (Adições = 2) +D(93, 22) = 14918790840102563637 (Adições = 2) +D(93, 23) = 5503854911059466671 (Adições = 2) +D(93, 24) = 14907588901518912177 (Adições = 2) +D(93, 25) = 209043152134184875 (Adições = 2) +D(93, 26) = 14418742455371010493 (Adições = 2) +D(93, 27) = 11929999096345763351 (Adições = 2) +D(93, 28) = 12545227008764292185 (Adições = 2) +D(93, 29) = 1452173199866832115 (Adições = 2) +D(93, 30) = 18104475042023810693 (Adições = 2) +D(93, 31) = 11836855245763612735 (Adições = 2) +D(93, 32) = 16382121258374012993 (Adições = 2) +D(93, 33) = 18225377449366820859 (Adições = 2) +D(93, 34) = 13055123839797738893 (Adições = 2) +D(93, 35) = 12615238081539792935 (Adições = 2) +D(93, 36) = 13658030620929406569 (Adições = 2) +D(93, 37) = 17486947449038080195 (Adições = 2) +D(93, 38) = 15857008559643846357 (Adições = 2) +D(93, 39) = 18337924104377875919 (Adições = 2) +D(93, 40) = 15413018590869905105 (Adições = 2) +D(93, 41) = 9452956774844286795 (Adições = 2) +D(93, 42) = 14531011999326696029 (Adições = 2) +D(93, 43) = 2071102333236877623 (Adições = 2) +D(93, 44) = 2879225835188308345 (Adições = 2) +D(93, 45) = 11120367229481542547 (Adições = 2) +D(93, 46) = 8322742852158189605 (Adições = 2) +D(93, 47) = 17308749125478359647 (Adições = 2) +D(93, 48) = 14860821601453729377 (Adições = 2) +D(93, 49) = 15693775717215055259 (Adições = 2) +D(93, 50) = 12015136027093250093 (Adições = 2) +D(93, 51) = 1931115984458271047 (Adições = 2) +D(93, 52) = 11279019248606766473 (Adições = 2) +D(93, 53) = 6189183682319267171 (Adições = 2) +D(93, 54) = 16105956541329687157 (Adições = 2) +D(93, 55) = 14552347452763160047 (Adições = 2) +D(93, 56) = 16978311371886933745 (Adições = 2) +D(93, 57) = 3007011590170462955 (Adições = 2) +D(93, 58) = 12068472969698309885 (Adições = 2) +D(93, 59) = 14318493681770328151 (Adições = 2) +D(93, 60) = 538180038135220889 (Adições = 2) +D(93, 61) = 13011944120887213619 (Adições = 2) +D(93, 62) = 7344635949964778949 (Adições = 2) +D(93, 63) = 1811938442586525823 (Adições = 2) +D(93, 64) = 16559358916303048833 (Adições = 2) +D(93, 65) = 7422246996387602235 (Adições = 2) +D(93, 66) = 13860485086251173581 (Adições = 2) +D(93, 67) = 3872047307656564327 (Adições = 2) +D(93, 68) = 2874008315993405609 (Adições = 2) +D(93, 69) = 6525371516100460035 (Adições = 2) +D(93, 70) = 14730991739520434709 (Adições = 2) +D(93, 71) = 803918659338312207 (Adições = 2) +D(93, 72) = 14308507029705962257 (Adições = 2) +D(93, 73) = 5606619243013286539 (Adições = 2) +D(93, 74) = 2358073350624681885 (Adições = 2) +D(93, 75) = 1327107113702761335 (Adições = 2) +D(93, 76) = 3407945195998441401 (Adições = 2) +D(93, 77) = 10065446499227759827 (Adições = 2) +D(93, 78) = 16616667282779893605 (Adições = 2) +D(93, 79) = 18215248696408038047 (Adições = 2) +D(93, 80) = 13100826886246424225 (Adições = 2) +D(93, 81) = 7242723335469198555 (Adições = 2) +D(93, 82) = 7411894174331273581 (Adições = 2) +D(93, 83) = 17631550482464518023 (Adições = 2) +D(93, 84) = 3971652457032232905 (Adições = 2) +D(93, 85) = 11621381141805965987 (Adições = 2) +D(93, 86) = 8818000527477302709 (Adições = 2) +D(93, 87) = 3513429649108685359 (Adições = 2) +D(93, 88) = 5493107301302981425 (Adições = 2) +D(93, 89) = 15844717424270337579 (Adições = 2) +D(93, 90) = 12118505185774398525 (Adições = 2) +D(93, 91) = 3071839387778855575 (Adições = 2) +D(93, 92) = 15223008438200793305 (Adições = 2) +D(93, 93) = 7862742710074853235 (Adições = 2) +D(93, 94) = 2051574859309327621 (Adições = 2) +D(93, 95) = 15313512702785814719 (Adições = 2) +D(93, 96) = 13797214001319121089 (Adições = 2) +D(93, 97) = 10566084635316983419 (Adições = 2) +D(93, 98) = 8971605787781324813 (Adições = 2) +D(93, 99) = 1505748993237822631 (Adições = 2) +D(93, 100) = 2658735751140559593 (Adições = 2) +D(94, 0) = 1 (Adições = 0) +D(94, 1) = 189 (Adições = 2) +D(94, 2) = 17861 (Adições = 2) +D(94, 3) = 1125369 (Adições = 2) +D(94, 4) = 53187081 (Adições = 2) +D(94, 5) = 2011371957 (Adições = 2) +D(94, 6) = 63402539213 (Adições = 2) +D(94, 7) = 1713592591857 (Adições = 2) +D(94, 8) = 40539102204433 (Adições = 2) +D(94, 9) = 852844339708077 (Adições = 2) +D(94, 10) = 16155243212466645 (Adições = 2) +D(94, 11) = 278351764595752425 (Adições = 2) +D(94, 12) = 4398849265327861785 (Adições = 2) +D(94, 13) = 8869208726726337957 (Adições = 2) +D(94, 14) = 3915127078069348573 (Adições = 2) +D(94, 15) = 2268297107489719265 (Adições = 2) +D(94, 16) = 10865025639595924513 (Adições = 2) +D(94, 17) = 15503231547424684189 (Adições = 2) +D(94, 18) = 8049466803842123237 (Adições = 2) +D(94, 19) = 17087782520160077785 (Adições = 2) +D(94, 20) = 4950516023147742761 (Adições = 2) +D(94, 21) = 3731657808904956309 (Adições = 2) +D(94, 22) = 9113709451669278957 (Adições = 2) +D(94, 23) = 11089611129121757649 (Adições = 2) +D(94, 24) = 13054310867990584881 (Adições = 2) +D(94, 25) = 9724198847934130317 (Adições = 2) +D(94, 26) = 5905240381729774069 (Adições = 2) +D(94, 27) = 13807237859736996297 (Adições = 2) +D(94, 28) = 1388975817427948601 (Adições = 2) +D(94, 29) = 15386376026059072901 (Adições = 2) +D(94, 30) = 16496280194240164093 (Adições = 2) +D(94, 31) = 9544122334608484289 (Adições = 2) +D(94, 32) = 869610691327006785 (Adições = 2) +D(94, 33) = 17030365325358289021 (Adições = 2) +D(94, 34) = 11417378467103745541 (Adições = 2) +D(94, 35) = 194252241022174137 (Adições = 2) +D(94, 36) = 8020776869781822025 (Adições = 2) +D(94, 37) = 2272266792330205557 (Adições = 2) +D(94, 38) = 17169478727302580493 (Adições = 2) +D(94, 39) = 14470923243905199537 (Adições = 2) +D(94, 40) = 11328377791733877329 (Adições = 2) +D(94, 41) = 17747609083738517613 (Adições = 2) +D(94, 42) = 4838089710490397205 (Adições = 2) +D(94, 43) = 2993459969344419241 (Adições = 2) +D(94, 44) = 7943788137769605209 (Adições = 2) +D(94, 45) = 3496637128729904485 (Adições = 2) +D(94, 46) = 4493003136660085021 (Adições = 2) +D(94, 47) = 11677751040587082657 (Adições = 2) +D(94, 48) = 6953833620100068449 (Adições = 2) +D(94, 49) = 614942791349749853 (Adições = 2) +D(94, 50) = 9877110461948503589 (Adições = 2) +D(94, 51) = 5376618399790473113 (Adições = 2) +D(94, 52) = 140009559145959017 (Adições = 2) +D(94, 53) = 17608212490071992661 (Adições = 2) +D(94, 54) = 3009864566301843757 (Adições = 2) +D(94, 55) = 15221424486685139345 (Adições = 2) +D(94, 56) = 9858595163916129905 (Adições = 2) +D(94, 57) = 11397174052263974989 (Adições = 2) +D(94, 58) = 8025914538423196213 (Adições = 2) +D(94, 59) = 15966137116182282633 (Adições = 2) +D(94, 60) = 12376066762378280057 (Adições = 2) +D(94, 61) = 7479446847691162949 (Adições = 2) +D(94, 62) = 9389282844833603901 (Adições = 2) +D(94, 63) = 99113163675357057 (Adições = 2) +D(94, 64) = 23666448855380097 (Adições = 2) +D(94, 65) = 5558528287836479549 (Adições = 2) +D(94, 66) = 8394516296765703749 (Adições = 2) +D(94, 67) = 7680304616963890041 (Adições = 2) +D(94, 68) = 14426360240613859977 (Adições = 2) +D(94, 69) = 5378995998998174005 (Adições = 2) +D(94, 70) = 8188615180909517133 (Adições = 2) +D(94, 71) = 5276781506058712433 (Adições = 2) +D(94, 72) = 1942463121393435281 (Adições = 2) +D(94, 73) = 3410845320403132461 (Adições = 2) +D(94, 74) = 11375537914041100885 (Adições = 2) +D(94, 75) = 15060718378368544105 (Adições = 2) +D(94, 76) = 1349026614360195225 (Adições = 2) +D(94, 77) = 14822418309586396453 (Adições = 2) +D(94, 78) = 4611043944174946653 (Adições = 2) +D(94, 79) = 2549471775943775073 (Adições = 2) +D(94, 80) = 15418803284888685729 (Adições = 2) +D(94, 81) = 17315609432894756893 (Adições = 2) +D(94, 82) = 13523482868985677413 (Adições = 2) +D(94, 83) = 1673439378362365785 (Adições = 2) +D(94, 84) = 4829898244149565097 (Adições = 2) +D(94, 85) = 1976187769278212373 (Adições = 2) +D(94, 86) = 3968825364851929453 (Adições = 2) +D(94, 87) = 16300255541437917521 (Adições = 2) +D(94, 88) = 6860048418140032689 (Adições = 2) +D(94, 89) = 9751129070003800077 (Adições = 2) +D(94, 90) = 820863532629432949 (Adições = 2) +D(94, 91) = 16011208106182687049 (Adições = 2) +D(94, 92) = 15859311858452784313 (Adições = 2) +D(94, 93) = 2051574859309327621 (Adições = 2) +D(94, 94) = 11965892428693508477 (Adições = 2) +D(94, 95) = 10884235917079099201 (Adições = 2) +D(94, 96) = 3101474473764931777 (Adições = 2) +D(94, 97) = 9018029036691484669 (Adições = 2) +D(94, 98) = 10108975386080241285 (Adições = 2) +D(94, 99) = 2139586093389837113 (Adições = 2) +D(94, 100) = 6304070837768219337 (Adições = 2) +D(95, 0) = 1 (Adições = 0) +D(95, 1) = 191 (Adições = 2) +D(95, 2) = 18241 (Adições = 2) +D(95, 3) = 1161471 (Adições = 2) +D(95, 4) = 55473921 (Adições = 2) +D(95, 5) = 2120032959 (Adições = 2) +D(95, 6) = 67533944129 (Adições = 2) +D(95, 7) = 1844529075199 (Adições = 2) +D(95, 8) = 44097223871489 (Adições = 2) +D(95, 9) = 937480665783999 (Adições = 2) +D(95, 10) = 17945568217958721 (Adições = 2) +D(95, 11) = 312452576026177791 (Adições = 2) +D(95, 12) = 4989653605949792001 (Adições = 2) +D(95, 13) = 18257711598003991743 (Adições = 2) +D(95, 14) = 12595303329090126657 (Adições = 2) +D(95, 15) = 331983440939642879 (Adições = 2) +D(95, 16) = 13465306188025286657 (Adições = 2) +D(95, 17) = 2940075227626792127 (Adições = 2) +D(95, 18) = 8046029505184047937 (Adições = 2) +D(95, 19) = 14736534755476697343 (Adições = 2) +D(95, 20) = 18328089225074966273 (Adições = 2) +D(95, 21) = 8563518983418113727 (Adições = 2) +D(95, 22) = 2962142170282797377 (Adições = 2) +D(95, 23) = 4718718677364282367 (Adições = 2) +D(95, 24) = 10415896600767073281 (Adições = 2) +D(95, 25) = 14747662242982236863 (Adições = 2) +D(95, 26) = 11930357398936589633 (Adições = 2) +D(95, 27) = 13196091566693808383 (Adições = 2) +D(95, 28) = 9945561170149201665 (Adições = 2) +D(95, 29) = 8274168939926671551 (Adições = 2) +D(95, 30) = 3263337012806805313 (Adições = 2) +D(95, 31) = 10856995467945902079 (Adições = 2) +D(95, 32) = 2823984420171841537 (Adições = 2) +D(95, 33) = 2277216363147585727 (Adições = 2) +D(95, 34) = 12278216081900068673 (Adições = 2) +D(95, 35) = 5443102716316436735 (Adições = 2) +D(95, 36) = 13658131827120432897 (Adições = 2) +D(95, 37) = 5504431415522908863 (Adições = 2) +D(95, 38) = 6499432861446143297 (Adições = 2) +D(95, 39) = 1246346685234820095 (Adições = 2) +D(95, 40) = 8598903647164345345 (Adições = 2) +D(95, 41) = 781402375217637055 (Adições = 2) +D(95, 42) = 4920357095737000257 (Adições = 2) +D(95, 43) = 12751906775571816703 (Adições = 2) +D(95, 44) = 5242410808976289537 (Adições = 2) +D(95, 45) = 16682836075475799231 (Adições = 2) +D(95, 46) = 6225732267156237121 (Adições = 2) +D(95, 47) = 3949742370693853183 (Adições = 2) +D(95, 48) = 4134582957671452673 (Adições = 2) +D(95, 49) = 11703359369121270975 (Adições = 2) +D(95, 50) = 3748668548709972801 (Adições = 2) +D(95, 51) = 555653336739397887 (Adições = 2) +D(95, 52) = 6072281295675830017 (Adições = 2) +D(95, 53) = 5373759271184230079 (Adições = 2) +D(95, 54) = 7545092253848514881 (Adições = 2) +D(95, 55) = 7329637233125946367 (Adições = 2) +D(95, 56) = 13962912810017664001 (Adições = 2) +D(95, 57) = 16771937952488217279 (Adições = 2) +D(95, 58) = 17748282469465836865 (Adições = 2) +D(95, 59) = 4846845976652212479 (Adições = 2) +D(95, 60) = 14742305781503223553 (Adições = 2) +D(95, 61) = 16151075317863114943 (Adições = 2) +D(95, 62) = 14573060936678330177 (Adições = 2) +D(95, 63) = 5614712871477739519 (Adições = 2) +D(95, 64) = 5737492484008476673 (Adições = 2) +D(95, 65) = 11319687220700336319 (Adições = 2) +D(95, 66) = 6825987731592968001 (Adições = 2) +D(95, 67) = 4454064571613010175 (Adições = 2) +D(95, 68) = 8113985355481208577 (Adições = 2) +D(95, 69) = 9472597521383690943 (Adições = 2) +D(95, 70) = 4593464627581830465 (Adições = 2) +D(95, 71) = 18058861314550060031 (Adições = 2) +D(95, 72) = 6831361868292656129 (Adições = 2) +D(95, 73) = 12184670310089223871 (Adições = 2) +D(95, 74) = 8524309470823905601 (Adições = 2) +D(95, 75) = 16513821689523998975 (Adições = 2) +D(95, 76) = 14476822608543186689 (Adições = 2) +D(95, 77) = 12201523458780226751 (Adições = 2) +D(95, 78) = 13188241638832018241 (Adições = 2) +D(95, 79) = 1902013285241188351 (Adições = 2) +D(95, 80) = 1423544272364097537 (Adições = 2) +D(95, 81) = 15711212916437988543 (Adições = 2) +D(95, 82) = 9656817070899319617 (Adições = 2) +D(95, 83) = 6406995244537811199 (Adições = 2) +D(95, 84) = 12910332867049742081 (Adições = 2) +D(95, 85) = 1269674806767967935 (Adições = 2) +D(95, 86) = 7214687940898109761 (Adições = 2) +D(95, 87) = 9037024773478405119 (Adições = 2) +D(95, 88) = 13750584659346803713 (Adições = 2) +D(95, 89) = 11915018073781084863 (Adições = 2) +D(95, 90) = 4040266602704766273 (Adições = 2) +D(95, 91) = 2425594167807334655 (Adições = 2) +D(95, 92) = 15849370058733254401 (Adições = 2) +D(95, 93) = 15313512702785814719 (Adições = 2) +D(95, 94) = 10884235917079099201 (Adições = 2) +D(95, 95) = 15287620189142155263 (Adições = 2) +D(95, 96) = 10826586506276634625 (Adições = 2) +D(95, 97) = 4499345943023499455 (Adições = 2) +D(95, 98) = 5179606292085673793 (Adições = 2) +D(95, 99) = 17428167771555752191 (Adições = 2) +D(95, 100) = 7425080629004257025 (Adições = 2) +D(96, 0) = 1 (Adições = 0) +D(96, 1) = 193 (Adições = 2) +D(96, 2) = 18625 (Adições = 2) +D(96, 3) = 1198337 (Adições = 2) +D(96, 4) = 57833729 (Adições = 2) +D(96, 5) = 2233340609 (Adições = 2) +D(96, 6) = 71887317697 (Adições = 2) +D(96, 7) = 1983950337025 (Adições = 2) +D(96, 8) = 47925703283713 (Adições = 2) +D(96, 9) = 1029503592939201 (Adições = 2) +D(96, 10) = 19912552476681921 (Adições = 2) +D(96, 11) = 350310696720818433 (Adições = 2) +D(96, 12) = 5652416878696788225 (Adições = 2) +D(96, 13) = 10453038008941020353 (Adições = 2) +D(96, 14) = 4412564788616035521 (Adições = 2) +D(96, 15) = 17339851558645805057 (Adições = 2) +D(96, 16) = 12690397113901182977 (Adições = 2) +D(96, 17) = 10649034455843710145 (Adições = 2) +D(96, 18) = 3188395114944998593 (Adições = 2) +D(96, 19) = 7524215301896192257 (Adições = 2) +D(96, 20) = 3695351135028752641 (Adições = 2) +D(96, 21) = 12140215269812281025 (Adições = 2) +D(96, 22) = 5219132349803640513 (Adições = 2) +D(96, 23) = 12899993197450720257 (Adições = 2) +D(96, 24) = 9587864401872524289 (Adições = 2) +D(96, 25) = 16304679171912282817 (Adições = 2) +D(96, 26) = 6089210666412006081 (Adições = 2) +D(96, 27) = 12768915558332852481 (Adições = 2) +D(96, 28) = 17463824221466310913 (Adições = 2) +D(96, 29) = 17236810257832632513 (Adições = 2) +D(96, 30) = 10327572136856557761 (Adições = 2) +D(96, 31) = 6001160543899713537 (Adições = 2) +D(96, 32) = 1235396358307905537 (Adições = 2) +D(96, 33) = 6336597141627332801 (Adições = 2) +D(96, 34) = 2445285512965435585 (Adições = 2) +D(96, 35) = 1719860237472389377 (Adições = 2) +D(96, 36) = 2374350707199707393 (Adições = 2) +D(96, 37) = 3090169876133497537 (Adições = 2) +D(96, 38) = 15094034153102549697 (Adições = 2) +D(96, 39) = 4393069626073961473 (Adições = 2) +D(96, 40) = 14238319958473126913 (Adições = 2) +D(96, 41) = 5171881907145557697 (Adições = 2) +D(96, 42) = 10873641378100195009 (Adições = 2) +D(96, 43) = 10099161175699460353 (Adições = 2) +D(96, 44) = 9646734686538014977 (Adições = 2) +D(96, 45) = 13125237497280552129 (Adições = 2) +D(96, 46) = 17587061766203036865 (Adições = 2) +D(96, 47) = 9315792330343575553 (Adições = 2) +D(96, 48) = 17400117658708881409 (Adições = 2) +D(96, 49) = 14791315911792053441 (Adições = 2) +D(96, 50) = 11796599755913745601 (Adições = 2) +D(96, 51) = 16100921641363116289 (Adições = 2) +D(96, 52) = 4282112200068792577 (Adições = 2) +D(96, 53) = 15728152766928852673 (Adições = 2) +D(96, 54) = 10200260218252046017 (Adições = 2) +D(96, 55) = 6628245631516955649 (Adições = 2) +D(96, 56) = 9474051600951014401 (Adições = 2) +D(96, 57) = 3315414216037792449 (Adições = 2) +D(96, 58) = 942146490572743361 (Adições = 2) +D(96, 59) = 5090530862981241089 (Adições = 2) +D(96, 60) = 6232938547427125505 (Adições = 2) +D(96, 61) = 232831499374360769 (Adições = 2) +D(96, 62) = 12510223680206254273 (Adições = 2) +D(96, 63) = 14251253414652772353 (Adições = 2) +D(96, 64) = 7156714696429436929 (Adições = 2) +D(96, 65) = 5767150327428698305 (Adições = 2) +D(96, 66) = 5466081206012451009 (Adições = 2) +D(96, 67) = 16746133509218429185 (Adições = 2) +D(96, 68) = 10867439362603096321 (Adições = 2) +D(96, 69) = 10007278165758444225 (Adições = 2) +D(96, 70) = 5626596241014414017 (Adições = 2) +D(96, 71) = 9832178109436752897 (Adições = 2) +D(96, 72) = 16275657218569917441 (Adições = 2) +D(96, 73) = 16844945323242245825 (Adições = 2) +D(96, 74) = 660436956736272065 (Adições = 2) +D(96, 75) = 7251824043374625025 (Adições = 2) +D(96, 76) = 1348980194022707457 (Adições = 2) +D(96, 77) = 9580582187636569281 (Adições = 2) +D(96, 78) = 16523603211539262657 (Adições = 2) +D(96, 79) = 13167114061902917633 (Adições = 2) +D(96, 80) = 16492671619508203521 (Adições = 2) +D(96, 81) = 15180684734600737985 (Adições = 2) +D(96, 82) = 3655226574518942913 (Adições = 2) +D(96, 83) = 1272294816246522113 (Adições = 2) +D(96, 84) = 2142878854124523777 (Adições = 2) +D(96, 85) = 16322886527942233793 (Adições = 2) +D(96, 86) = 6360505201898759873 (Adições = 2) +D(96, 87) = 4165473842565723137 (Adições = 2) +D(96, 88) = 8506339201681380353 (Adições = 2) +D(96, 89) = 15725197861099717313 (Adições = 2) +D(96, 90) = 13233738463876016833 (Adições = 2) +D(96, 91) = 1252855160678566145 (Adições = 2) +D(96, 92) = 1081075313509603585 (Adições = 2) +D(96, 93) = 13797214001319121089 (Adições = 2) +D(96, 94) = 3101474473764931777 (Adições = 2) +D(96, 95) = 10826586506276634625 (Adições = 2) +D(96, 96) = 47305054276321281 (Adições = 2) +D(96, 97) = 15373237503576455361 (Adições = 2) +D(96, 98) = 6605445664976076993 (Adições = 2) +D(96, 99) = 10766475654907951361 (Adições = 2) +D(96, 100) = 17172979981758408961 (Adições = 2) +D(97, 0) = 1 (Adições = 0) +D(97, 1) = 195 (Adições = 2) +D(97, 2) = 19013 (Adições = 2) +D(97, 3) = 1235975 (Adições = 2) +D(97, 4) = 60268041 (Adições = 2) +D(97, 5) = 2351442379 (Adições = 2) +D(97, 6) = 76472100685 (Adições = 2) +D(97, 7) = 2132309755407 (Adições = 2) +D(97, 8) = 52041963376145 (Adições = 2) +D(97, 9) = 1129471259599059 (Adições = 2) +D(97, 10) = 22071527329220181 (Adições = 2) +D(97, 11) = 392294776526720535 (Adições = 2) +D(97, 12) = 6395022351944327193 (Adições = 2) +D(97, 13) = 4053733165872584155 (Adições = 2) +D(97, 14) = 472591889720088413 (Adições = 2) +D(97, 15) = 3778264163272377375 (Adições = 2) +D(97, 16) = 15361768762109813793 (Adições = 2) +D(97, 17) = 1807712184435603683 (Adições = 2) +D(97, 18) = 15645141755224312421 (Adições = 2) +D(97, 19) = 7911008098355951655 (Adições = 2) +D(97, 20) = 683830461571344937 (Adições = 2) +D(97, 21) = 16519396866412378603 (Adições = 2) +D(97, 22) = 15432000412318748525 (Adições = 2) +D(97, 23) = 15104381885863557679 (Adições = 2) +D(97, 24) = 698751337767698993 (Adições = 2) +D(97, 25) = 8144550837842954483 (Adições = 2) +D(97, 26) = 12091696602457691765 (Adições = 2) +D(97, 27) = 12503078753492998711 (Adições = 2) +D(97, 28) = 5842330385873058873 (Adições = 2) +D(97, 29) = 3649476717752899067 (Adições = 2) +D(97, 30) = 12767115038732537725 (Adições = 2) +D(97, 31) = 10649103645779257407 (Adições = 2) +D(97, 32) = 17885660547986876481 (Adições = 2) +D(97, 33) = 7010909974212563203 (Adições = 2) +D(97, 34) = 15792792628805331589 (Adições = 2) +D(97, 35) = 1511194305533604935 (Adições = 2) +D(97, 36) = 5605405250205701705 (Adições = 2) +D(97, 37) = 11069925833538906635 (Adições = 2) +D(97, 38) = 10807385789065402253 (Adições = 2) +D(97, 39) = 11847745494532361807 (Adições = 2) +D(97, 40) = 12032391005369898577 (Adições = 2) +D(97, 41) = 12995848797279031571 (Adições = 2) +D(97, 42) = 10594628008815232661 (Adições = 2) +D(97, 43) = 13120686488905336407 (Adições = 2) +D(97, 44) = 14419838277433260121 (Adições = 2) +D(97, 45) = 298322313832723995 (Adições = 2) +D(97, 46) = 12563877503606761373 (Adições = 2) +D(97, 47) = 2573243452734270559 (Adições = 2) +D(97, 48) = 10842409368077175905 (Adições = 2) +D(97, 49) = 6140354791159007523 (Adições = 2) +D(97, 50) = 14281526385155254949 (Adições = 2) +D(97, 51) = 5285559635013013607 (Adições = 2) +D(97, 52) = 7221849402735370857 (Adições = 2) +D(97, 53) = 8785370296023464491 (Adições = 2) +D(97, 54) = 16267039207494811565 (Adições = 2) +D(97, 55) = 14648800983554261615 (Adições = 2) +D(97, 56) = 12304354142312680049 (Adições = 2) +D(97, 57) = 6647075885591935283 (Adições = 2) +D(97, 58) = 10904636592202471093 (Adições = 2) +D(97, 59) = 16937313945756455543 (Adições = 2) +D(97, 60) = 9814039282455270521 (Adições = 2) +D(97, 61) = 16279809329256756795 (Adições = 2) +D(97, 62) = 10576120435127820221 (Adições = 2) +D(97, 63) = 444109382567743615 (Adições = 2) +D(97, 64) = 3405333419940401281 (Adições = 2) +D(97, 65) = 16329198443798536515 (Adições = 2) +D(97, 66) = 9115685903530134213 (Adições = 2) +D(97, 67) = 12881156545051462791 (Adições = 2) +D(97, 68) = 3601241269453885065 (Adições = 2) +D(97, 69) = 6029214724105873995 (Adições = 2) +D(97, 70) = 3216345057169180621 (Adições = 2) +D(97, 71) = 228375333910795919 (Adições = 2) +D(97, 72) = 7889466588207914641 (Adições = 2) +D(97, 73) = 4116580982600974675 (Adições = 2) +D(97, 74) = 3175219188869940949 (Adições = 2) +D(97, 75) = 11087480188980838039 (Adições = 2) +D(97, 76) = 1241540352668618905 (Adições = 2) +D(97, 77) = 12171102734327895643 (Adições = 2) +D(97, 78) = 1381799986084624349 (Adições = 2) +D(97, 79) = 12625773185817253023 (Adições = 2) +D(97, 80) = 5392070719809270945 (Adições = 2) +D(97, 81) = 171938926499109219 (Adições = 2) +D(97, 82) = 561106161909238501 (Adições = 2) +D(97, 83) = 5488627552674703527 (Adições = 2) +D(97, 84) = 8903801223045749417 (Adições = 2) +D(97, 85) = 8922822531402955371 (Adições = 2) +D(97, 86) = 13159470187534397421 (Adições = 2) +D(97, 87) = 5238705158289328815 (Adições = 2) +D(97, 88) = 17910518202536432305 (Adições = 2) +D(97, 89) = 5248567117898426739 (Adições = 2) +D(97, 90) = 15760759369164609269 (Adições = 2) +D(97, 91) = 11800608920009640631 (Adições = 2) +D(97, 92) = 14134539394197810361 (Adições = 2) +D(97, 93) = 10566084635316983419 (Adições = 2) +D(97, 94) = 9018029036691484669 (Adições = 2) +D(97, 95) = 4499345943023499455 (Adições = 2) +D(97, 96) = 15373237503576455361 (Adições = 2) +D(97, 97) = 12347035987719680387 (Adições = 2) +D(97, 98) = 15878975082562661125 (Adições = 2) +D(97, 99) = 14804152328737137863 (Adições = 2) +D(97, 100) = 5850119817984394953 (Adições = 2) +D(98, 0) = 1 (Adições = 0) +D(98, 1) = 197 (Adições = 2) +D(98, 2) = 19405 (Adições = 2) +D(98, 3) = 1274393 (Adições = 2) +D(98, 4) = 62778409 (Adições = 2) +D(98, 5) = 2474488829 (Adições = 2) +D(98, 6) = 81298031893 (Adições = 2) +D(98, 7) = 2290079887985 (Adições = 2) +D(98, 8) = 56464353019537 (Adições = 2) +D(98, 9) = 1237977575994741 (Adições = 2) +D(98, 10) = 24438976164813981 (Adições = 2) +D(98, 11) = 438805280020754697 (Adições = 2) +D(98, 12) = 7226122408491802425 (Adições = 2) +D(98, 13) = 17674877926308713773 (Adições = 2) +D(98, 14) = 3754458908191834725 (Adições = 2) +D(98, 15) = 8005314961184300513 (Adições = 2) +D(98, 16) = 8698603812856940065 (Adições = 2) +D(98, 17) = 7421340685692805925 (Adições = 2) +D(98, 18) = 6427450551643170413 (Adições = 2) +D(98, 19) = 11536856331513882873 (Adições = 2) +D(98, 20) = 1684950817731627849 (Adições = 2) +D(98, 21) = 441434072005799773 (Adições = 2) +D(98, 22) = 13946087277027375285 (Adições = 2) +D(98, 23) = 7588981427790578257 (Adições = 2) +D(98, 24) = 4945370577712283313 (Adições = 2) +D(98, 25) = 13788672753322936789 (Adições = 2) +D(98, 26) = 15578176119914031421 (Adições = 2) +D(98, 27) = 3279463328445618665 (Adições = 2) +D(98, 28) = 3178128394102124633 (Adições = 2) +D(98, 29) = 12669935497728082573 (Adições = 2) +D(98, 30) = 10639783180503967749 (Adições = 2) +D(98, 31) = 15609257791306211265 (Adições = 2) +D(98, 32) = 7250533837653241921 (Adições = 2) +D(98, 33) = 13700360286143129989 (Adições = 2) +D(98, 34) = 18057318815451473165 (Adições = 2) +D(98, 35) = 16914561676080858073 (Adições = 2) +D(98, 36) = 5584417158110613097 (Adições = 2) +D(98, 37) = 3813004168145669821 (Adições = 2) +D(98, 38) = 7243571717040427093 (Adições = 2) +D(98, 39) = 11451958926928639537 (Adições = 2) +D(98, 40) = 16885351353121348305 (Adições = 2) +D(98, 41) = 5020103008351175221 (Adições = 2) +D(98, 42) = 10163835740735887837 (Adições = 2) +D(98, 43) = 15432406164746905289 (Adições = 2) +D(98, 44) = 6079442783666398585 (Adições = 2) +D(98, 45) = 2350859301222831085 (Adições = 2) +D(98, 46) = 15213059118662316453 (Adições = 2) +D(98, 47) = 11903436001293796769 (Adições = 2) +D(98, 48) = 6872344748395691617 (Adições = 2) +D(98, 49) = 5408364833922323429 (Adições = 2) +D(98, 50) = 7383501936527034285 (Adições = 2) +D(98, 51) = 8503843882985751225 (Adições = 2) +D(98, 52) = 2564508847024584073 (Adições = 2) +D(98, 53) = 124984472073867805 (Adições = 2) +D(98, 54) = 6730649901882592245 (Adições = 2) +D(98, 55) = 753001945512562193 (Adições = 2) +D(98, 56) = 9259412997669952241 (Adições = 2) +D(98, 57) = 9764098951865015957 (Adições = 2) +D(98, 58) = 8869067355949870717 (Adições = 2) +D(98, 59) = 18264273820199245737 (Adições = 2) +D(98, 60) = 8122138900991868569 (Adições = 2) +D(98, 61) = 15769243438994344269 (Adições = 2) +D(98, 62) = 5731685055959818053 (Adições = 2) +D(98, 63) = 16751914873655381889 (Adições = 2) +D(98, 64) = 2154613602453975169 (Adições = 2) +D(98, 65) = 3442401392483361349 (Adições = 2) +D(98, 66) = 10440541666102480461 (Adições = 2) +D(98, 67) = 13990640040974525849 (Adições = 2) +D(98, 68) = 12026293781770322089 (Adições = 2) +D(98, 69) = 3210005701620529533 (Adições = 2) +D(98, 70) = 12455565482895584149 (Adições = 2) +D(98, 71) = 15900285873975560689 (Adições = 2) +D(98, 72) = 5571383722384719633 (Adições = 2) +D(98, 73) = 17577431293193608949 (Adições = 2) +D(98, 74) = 6422487390954972957 (Adições = 2) +D(98, 75) = 2238442695096200329 (Adições = 2) +D(98, 76) = 14567463236745657273 (Adições = 2) +D(98, 77) = 9533362250032620205 (Adições = 2) +D(98, 78) = 4639520896735588581 (Adições = 2) +D(98, 79) = 200349994927914337 (Adições = 2) +D(98, 80) = 18218193900554438305 (Adições = 2) +D(98, 81) = 5335459473153266853 (Adições = 2) +D(98, 82) = 6068504561561614573 (Adições = 2) +D(98, 83) = 12118238276145556601 (Adições = 2) +D(98, 84) = 8063922978156457929 (Adições = 2) +D(98, 85) = 7443802658895611101 (Adições = 2) +D(98, 86) = 11079351304123412277 (Adições = 2) +D(98, 87) = 11030782576237586897 (Adições = 2) +D(98, 88) = 15733261863353796401 (Adições = 2) +D(98, 89) = 1998859036369552213 (Adições = 2) +D(98, 90) = 4561441449723036605 (Adições = 2) +D(98, 91) = 13676065665187734889 (Adições = 2) +D(98, 92) = 2717725831976082649 (Adições = 2) +D(98, 93) = 8971605787781324813 (Adições = 2) +D(98, 94) = 10108975386080241285 (Adições = 2) +D(98, 95) = 5179606292085673793 (Adições = 2) +D(98, 96) = 6605445664976076993 (Adições = 2) +D(98, 97) = 15878975082562661125 (Adições = 2) +D(98, 98) = 7211498005425899405 (Adições = 2) +D(98, 99) = 1001137269306595161 (Adições = 2) +D(98, 100) = 3208665342318576361 (Adições = 2) +D(99, 0) = 1 (Adições = 0) +D(99, 1) = 199 (Adições = 2) +D(99, 2) = 19801 (Adições = 2) +D(99, 3) = 1313599 (Adições = 2) +D(99, 4) = 65366401 (Adições = 2) +D(99, 5) = 2602633639 (Adições = 2) +D(99, 6) = 86375154361 (Adições = 2) +D(99, 7) = 2457753074239 (Adições = 2) +D(99, 8) = 61212185981761 (Adições = 2) +D(99, 9) = 1355654114996039 (Adições = 2) +D(99, 10) = 27032607855804761 (Adições = 2) +D(99, 11) = 490276864041373439 (Adições = 2) +D(99, 12) = 8155204552553930561 (Adições = 2) +D(99, 13) = 14609460813644895143 (Adições = 2) +D(99, 14) = 17592053574435892025 (Adições = 2) +D(99, 15) = 10905083370102475647 (Adições = 2) +D(99, 16) = 9162258070434164609 (Adições = 2) +D(99, 17) = 6835458495274358983 (Adições = 2) +D(99, 18) = 2237505658900783705 (Adições = 2) +D(99, 19) = 1755068468348285375 (Adições = 2) +D(99, 20) = 14976875617593796097 (Adições = 2) +D(99, 21) = 17103260507331223719 (Adições = 2) +D(99, 22) = 13044037782654847161 (Adições = 2) +D(99, 23) = 16132362413763249087 (Adições = 2) +D(99, 24) = 10219970345556559041 (Adições = 2) +D(99, 25) = 10507269602882227527 (Adições = 2) +D(99, 26) = 2980630328700092505 (Adições = 2) +D(99, 27) = 3391525703350190975 (Adições = 2) +D(99, 28) = 9849117425897934273 (Adições = 2) +D(99, 29) = 7250437244018589863 (Adições = 2) +D(99, 30) = 12113411848541088569 (Adições = 2) +D(99, 31) = 1468964672932164351 (Adições = 2) +D(99, 32) = 5882012228182065921 (Adições = 2) +D(99, 33) = 8386162278268886215 (Adições = 2) +D(99, 34) = 3250353232444386137 (Adições = 2) +D(99, 35) = 1328745576557614143 (Adições = 2) +D(99, 36) = 5380980337039533697 (Adições = 2) +D(99, 37) = 14778401663295816615 (Adições = 2) +D(99, 38) = 7388233474772361913 (Adições = 2) +D(99, 39) = 7637020045031876927 (Adições = 2) +D(99, 40) = 17527586251372313153 (Adições = 2) +D(99, 41) = 2539552465425733447 (Adições = 2) +D(99, 42) = 17723491214512796505 (Adições = 2) +D(99, 43) = 6426244972576486399 (Adições = 2) +D(99, 44) = 9491349847280238657 (Adições = 2) +D(99, 45) = 17921651932169468327 (Adições = 2) +D(99, 46) = 17038826278345064249 (Adições = 2) +D(99, 47) = 7261833250882074239 (Adições = 2) +D(99, 48) = 7590869926862011009 (Adições = 2) +D(99, 49) = 1424835435470474439 (Adições = 2) +D(99, 50) = 14216702205919832153 (Adições = 2) +D(99, 51) = 11657303951723066047 (Adições = 2) +D(99, 52) = 4278912608023849729 (Adições = 2) +D(99, 53) = 6968405927122301607 (Adições = 2) +D(99, 54) = 13824040301078761657 (Adições = 2) +D(99, 55) = 2860948074764364479 (Adições = 2) +D(99, 56) = 12873363017946878913 (Adições = 2) +D(99, 57) = 13450130893772295495 (Adições = 2) +D(99, 58) = 13636553127877630553 (Adições = 2) +D(99, 59) = 3876406156607643775 (Adições = 2) +D(99, 60) = 11816074804089206465 (Adições = 2) +D(99, 61) = 17260713070365867687 (Adições = 2) +D(99, 62) = 1868153417900926777 (Adições = 2) +D(99, 63) = 5905009273806575103 (Adições = 2) +D(99, 64) = 6364793676206380545 (Adições = 2) +D(99, 65) = 11961808671143717063 (Adições = 2) +D(99, 66) = 7398007656020007257 (Adições = 2) +D(99, 67) = 13382445289387461951 (Adições = 2) +D(99, 68) = 2505890964713206657 (Adições = 2) +D(99, 69) = 17742190448104058279 (Adições = 2) +D(99, 70) = 14961017558910620345 (Adições = 2) +D(99, 71) = 6423380768362661951 (Adições = 2) +D(99, 72) = 9448306291013390657 (Adições = 2) +D(99, 73) = 14150377232882167623 (Adições = 2) +D(99, 74) = 1256807769611646297 (Adições = 2) +D(99, 75) = 9917737855662819583 (Adições = 2) +D(99, 76) = 8276899713795125569 (Adições = 2) +D(99, 77) = 13930981126863851431 (Adições = 2) +D(99, 78) = 9657120199922508601 (Adições = 2) +D(99, 79) = 14496991091586011519 (Adições = 2) +D(99, 80) = 14468790913358812545 (Adições = 2) +D(99, 81) = 1128956139647414471 (Adições = 2) +D(99, 82) = 12532920174362295897 (Adições = 2) +D(99, 83) = 12272918938359915455 (Adições = 2) +D(99, 84) = 14008336118952378369 (Adições = 2) +D(99, 85) = 11069317682294895783 (Adições = 2) +D(99, 86) = 11145727571604367545 (Adições = 2) +D(99, 87) = 14809117378255815103 (Adições = 2) +D(99, 88) = 4679673670428095169 (Adições = 2) +D(99, 89) = 3965050496441892167 (Adições = 2) +D(99, 90) = 10525350982534480985 (Adições = 2) +D(99, 91) = 10316114023735700863 (Adições = 2) +D(99, 92) = 8263161447189966785 (Adições = 2) +D(99, 93) = 1505748993237822631 (Adições = 2) +D(99, 94) = 2139586093389837113 (Adições = 2) +D(99, 95) = 17428167771555752191 (Adições = 2) +D(99, 96) = 10766475654907951361 (Adições = 2) +D(99, 97) = 14804152328737137863 (Adições = 2) +D(99, 98) = 1001137269306595161 (Adições = 2) +D(99, 99) = 9213772544039089727 (Adições = 2) +D(99, 100) = 13423575155664261249 (Adições = 2) +D(100, 0) = 1 (Adições = 0) +D(100, 1) = 201 (Adições = 2) +D(100, 2) = 20201 (Adições = 2) +D(100, 3) = 1353601 (Adições = 2) +D(100, 4) = 68033601 (Adições = 2) +D(100, 5) = 2736033641 (Adições = 2) +D(100, 6) = 91713821641 (Adições = 2) +D(100, 7) = 2635842050241 (Adições = 2) +D(100, 8) = 66305781106241 (Adições = 2) +D(100, 9) = 1483172082084041 (Adições = 2) +D(100, 10) = 29871434052884841 (Adições = 2) +D(100, 11) = 547180905950063041 (Adições = 2) +D(100, 12) = 9192662322545367041 (Adições = 2) +D(100, 13) = 13510583615034641129 (Adições = 2) +D(100, 14) = 8818609855696325065 (Adições = 2) +D(100, 15) = 422258652815589505 (Adições = 2) +D(100, 16) = 2042856019642678145 (Adições = 2) +D(100, 17) = 18040572585351201737 (Adições = 2) +D(100, 18) = 8666792665816792809 (Adições = 2) +D(100, 19) = 12659366793065861889 (Adições = 2) +D(100, 20) = 10944566805298391745 (Adições = 2) +D(100, 21) = 6131214782804308329 (Adições = 2) +D(100, 22) = 17831768999080827593 (Adições = 2) +D(100, 23) = 10114681048079820609 (Adições = 2) +D(100, 24) = 18020269733690077121 (Adições = 2) +D(100, 25) = 1854021534709760457 (Adições = 2) +D(100, 26) = 15341921466292080489 (Adições = 2) +D(100, 27) = 3267333424632812353 (Adições = 2) +D(100, 28) = 16507976553880937601 (Adições = 2) +D(100, 29) = 15160787150087910121 (Adições = 2) +D(100, 30) = 16077892168938036937 (Adições = 2) +D(100, 31) = 11213524616701738241 (Adições = 2) +D(100, 32) = 117757444106416897 (Adições = 2) +D(100, 33) = 14385931950557369033 (Adições = 2) +D(100, 34) = 7575703387561089769 (Adições = 2) +D(100, 35) = 12154802196563090049 (Adições = 2) +D(100, 36) = 417784036450686273 (Adições = 2) +D(100, 37) = 2130421963076484969 (Adições = 2) +D(100, 38) = 5850313027435111881 (Adições = 2) +D(100, 39) = 2428822473529799105 (Adições = 2) +D(100, 40) = 9146684696224437569 (Adições = 2) +D(100, 41) = 10767079339312932553 (Adições = 2) +D(100, 42) = 12583378945541910889 (Adições = 2) +D(100, 43) = 18286371058921642177 (Adições = 2) +D(100, 44) = 15757221805068815617 (Adições = 2) +D(100, 45) = 6276735437099419369 (Adições = 2) +D(100, 46) = 4343725500194848713 (Adições = 2) +D(100, 47) = 10197640955712435585 (Adições = 2) +D(100, 48) = 6603600059746969217 (Adições = 2) +D(100, 49) = 15619305422079454665 (Adições = 2) +D(100, 50) = 12814098989760209641 (Adições = 2) +D(100, 51) = 1794616999984004609 (Adições = 2) +D(100, 52) = 17730833559730920385 (Adições = 2) +D(100, 53) = 10531408021167520105 (Adições = 2) +D(100, 54) = 12877110175659031753 (Adições = 2) +D(100, 55) = 11115354477792606273 (Adições = 2) +D(100, 56) = 8402921496794298049 (Adições = 2) +D(100, 57) = 16279671334803920841 (Adições = 2) +D(100, 58) = 6472867209034743657 (Adições = 2) +D(100, 59) = 5539082419810466369 (Adições = 2) +D(100, 60) = 2784819306797764993 (Adições = 2) +D(100, 61) = 13414863107543287529 (Adições = 2) +D(100, 62) = 14096985522100530377 (Adições = 2) +D(100, 63) = 3423404140098480641 (Adições = 2) +D(100, 64) = 15693207090111436289 (Adições = 2) +D(100, 65) = 15573065363751982281 (Adições = 2) +D(100, 66) = 16486137617206154985 (Adições = 2) +D(100, 67) = 373102415194520961 (Adições = 2) +D(100, 68) = 16261438669295189569 (Adições = 2) +D(100, 69) = 18062776008402902889 (Adições = 2) +D(100, 70) = 13872495867998478281 (Adições = 2) +D(100, 71) = 16810150121562208961 (Adições = 2) +D(100, 72) = 14235093107228709953 (Adições = 2) +D(100, 73) = 940288483705165001 (Adições = 2) +D(100, 74) = 16347473486198978921 (Adições = 2) +D(100, 75) = 9075275037763893185 (Adições = 2) +D(100, 76) = 8823168533512286721 (Adições = 2) +D(100, 77) = 12584305300461712105 (Adições = 2) +D(100, 78) = 17725662553538520521 (Adições = 2) +D(100, 79) = 4986285697627937409 (Adições = 2) +D(100, 80) = 15505323628863209857 (Adições = 2) +D(100, 81) = 12656326608159885257 (Adições = 2) +D(100, 82) = 7871458848460044009 (Adições = 2) +D(100, 83) = 14230553887472703745 (Adições = 2) +D(100, 84) = 3618320797365894337 (Adições = 2) +D(100, 85) = 10249230524903616873 (Adições = 2) +D(100, 86) = 14017531705093328585 (Adições = 2) +D(100, 87) = 3078888507534408001 (Adições = 2) +D(100, 88) = 4120935482508766657 (Adições = 2) +D(100, 89) = 12765659649378753993 (Adições = 2) +D(100, 90) = 8809317054645575529 (Adições = 2) +D(100, 91) = 11204037987206205761 (Adições = 2) +D(100, 92) = 11336569384422321793 (Adições = 2) +D(100, 93) = 2658735751140559593 (Adições = 2) +D(100, 94) = 6304070837768219337 (Adições = 2) +D(100, 95) = 7425080629004257025 (Adições = 2) +D(100, 96) = 17172979981758408961 (Adições = 2) +D(100, 97) = 5850119817984394953 (Adições = 2) +D(100, 98) = 3208665342318576361 (Adições = 2) +D(100, 99) = 13423575155664261249 (Adições = 2) +D(100, 100) = 17614178781658060609 (Adições = 2) diff --git a/2ano1/AED/aula06/recursive_stats.txt b/2ano1/AED/aula06/recursive_stats.txt new file mode 100644 index 0000000..ac1ebe0 --- /dev/null +++ b/2ano1/AED/aula06/recursive_stats.txt @@ -0,0 +1,121 @@ +D(0, 0) = 1 (Adições = 0) +D(0, 1) = 1 (Adições = 0) +D(0, 2) = 1 (Adições = 0) +D(0, 3) = 1 (Adições = 0) +D(0, 4) = 1 (Adições = 0) +D(0, 5) = 1 (Adições = 0) +D(0, 6) = 1 (Adições = 0) +D(0, 7) = 1 (Adições = 0) +D(0, 8) = 1 (Adições = 0) +D(0, 9) = 1 (Adições = 0) +D(0, 10) = 1 (Adições = 0) +D(1, 0) = 1 (Adições = 0) +D(1, 1) = 3 (Adições = 2) +D(1, 2) = 5 (Adições = 4) +D(1, 3) = 7 (Adições = 6) +D(1, 4) = 9 (Adições = 8) +D(1, 5) = 11 (Adições = 10) +D(1, 6) = 13 (Adições = 12) +D(1, 7) = 15 (Adições = 14) +D(1, 8) = 17 (Adições = 16) +D(1, 9) = 19 (Adições = 18) +D(1, 10) = 21 (Adições = 20) +D(2, 0) = 1 (Adições = 0) +D(2, 1) = 5 (Adições = 4) +D(2, 2) = 13 (Adições = 12) +D(2, 3) = 25 (Adições = 24) +D(2, 4) = 41 (Adições = 40) +D(2, 5) = 61 (Adições = 60) +D(2, 6) = 85 (Adições = 84) +D(2, 7) = 113 (Adições = 112) +D(2, 8) = 145 (Adições = 144) +D(2, 9) = 181 (Adições = 180) +D(2, 10) = 221 (Adições = 220) +D(3, 0) = 1 (Adições = 0) +D(3, 1) = 7 (Adições = 6) +D(3, 2) = 25 (Adições = 24) +D(3, 3) = 63 (Adições = 62) +D(3, 4) = 129 (Adições = 128) +D(3, 5) = 231 (Adições = 230) +D(3, 6) = 377 (Adições = 376) +D(3, 7) = 575 (Adições = 574) +D(3, 8) = 833 (Adições = 832) +D(3, 9) = 1159 (Adições = 1158) +D(3, 10) = 1561 (Adições = 1560) +D(4, 0) = 1 (Adições = 0) +D(4, 1) = 9 (Adições = 8) +D(4, 2) = 41 (Adições = 40) +D(4, 3) = 129 (Adições = 128) +D(4, 4) = 321 (Adições = 320) +D(4, 5) = 681 (Adições = 680) +D(4, 6) = 1289 (Adições = 1288) +D(4, 7) = 2241 (Adições = 2240) +D(4, 8) = 3649 (Adições = 3648) +D(4, 9) = 5641 (Adições = 5640) +D(4, 10) = 8361 (Adições = 8360) +D(5, 0) = 1 (Adições = 0) +D(5, 1) = 11 (Adições = 10) +D(5, 2) = 61 (Adições = 60) +D(5, 3) = 231 (Adições = 230) +D(5, 4) = 681 (Adições = 680) +D(5, 5) = 1683 (Adições = 1682) +D(5, 6) = 3653 (Adições = 3652) +D(5, 7) = 7183 (Adições = 7182) +D(5, 8) = 13073 (Adições = 13072) +D(5, 9) = 22363 (Adições = 22362) +D(5, 10) = 36365 (Adições = 36364) +D(6, 0) = 1 (Adições = 0) +D(6, 1) = 13 (Adições = 12) +D(6, 2) = 85 (Adições = 84) +D(6, 3) = 377 (Adições = 376) +D(6, 4) = 1289 (Adições = 1288) +D(6, 5) = 3653 (Adições = 3652) +D(6, 6) = 8989 (Adições = 8988) +D(6, 7) = 19825 (Adições = 19824) +D(6, 8) = 40081 (Adições = 40080) +D(6, 9) = 75517 (Adições = 75516) +D(6, 10) = 134245 (Adições = 134244) +D(7, 0) = 1 (Adições = 0) +D(7, 1) = 15 (Adições = 14) +D(7, 2) = 113 (Adições = 112) +D(7, 3) = 575 (Adições = 574) +D(7, 4) = 2241 (Adições = 2240) +D(7, 5) = 7183 (Adições = 7182) +D(7, 6) = 19825 (Adições = 19824) +D(7, 7) = 48639 (Adições = 48638) +D(7, 8) = 108545 (Adições = 108544) +D(7, 9) = 224143 (Adições = 224142) +D(7, 10) = 433905 (Adições = 433904) +D(8, 0) = 1 (Adições = 0) +D(8, 1) = 17 (Adições = 16) +D(8, 2) = 145 (Adições = 144) +D(8, 3) = 833 (Adições = 832) +D(8, 4) = 3649 (Adições = 3648) +D(8, 5) = 13073 (Adições = 13072) +D(8, 6) = 40081 (Adições = 40080) +D(8, 7) = 108545 (Adições = 108544) +D(8, 8) = 265729 (Adições = 265728) +D(8, 9) = 598417 (Adições = 598416) +D(8, 10) = 1256465 (Adições = 1256464) +D(9, 0) = 1 (Adições = 0) +D(9, 1) = 19 (Adições = 18) +D(9, 2) = 181 (Adições = 180) +D(9, 3) = 1159 (Adições = 1158) +D(9, 4) = 5641 (Adições = 5640) +D(9, 5) = 22363 (Adições = 22362) +D(9, 6) = 75517 (Adições = 75516) +D(9, 7) = 224143 (Adições = 224142) +D(9, 8) = 598417 (Adições = 598416) +D(9, 9) = 1462563 (Adições = 1462562) +D(9, 10) = 3317445 (Adições = 3317444) +D(10, 0) = 1 (Adições = 0) +D(10, 1) = 21 (Adições = 20) +D(10, 2) = 221 (Adições = 220) +D(10, 3) = 1561 (Adições = 1560) +D(10, 4) = 8361 (Adições = 8360) +D(10, 5) = 36365 (Adições = 36364) +D(10, 6) = 134245 (Adições = 134244) +D(10, 7) = 433905 (Adições = 433904) +D(10, 8) = 1256465 (Adições = 1256464) +D(10, 9) = 3317445 (Adições = 3317444) +D(10, 10) = 8097453 (Adições = 8097452) diff --git a/2ano1/AED/aula07/ex01/Makefile b/2ano1/AED/aula07/ex01/Makefile new file mode 100644 index 0000000..f100aac --- /dev/null +++ b/2ano1/AED/aula07/ex01/Makefile @@ -0,0 +1,40 @@ +SRC_DIR = src +BUILD_DIR = build +OBJS_DIR = $(BUILD_DIR)/objs + +TARGET = 01_example +LIBS = -lm +CC = gcc +CFLAGS = -g -Wextra -Wall -Werror -Wpedantic -std=c11 + +.PHONY: default all clean + +default: run +all: default + +OBJECTS = $(patsubst $(SRC_DIR)/%.c, $(OBJS_DIR)/%.o, $(wildcard $(SRC_DIR)/*.c)) +HEADERS = $(wildcard $(SRC_DIR)/*.h) + +$(OBJS_DIR): + mkdir -p $(OBJS_DIR) + +$(BUILD_DIR): + mkdir -p $(OBJS_DIR) + +$(OBJS_DIR)/%.o: $(SRC_DIR)/%.c $(HEADERS) $(OBJS_DIR) + $(CC) $(CFLAGS) -c $< -o $@ + +.PRECIOUS: $(TARGET) $(OBJECTS) + +$(TARGET): $(OBJECTS) $(BUILD_DIR) + $(CC) $(OBJECTS) -Wall $(LIBS) -o $(BUILD_DIR)/$@ + +run: $(TARGET) + $(BUILD_DIR)/$(TARGET) + +valgrind: $(TARGET) + valgrind $(BUILD_DIR)/$(TARGET) + +clean: + -rm -f *.o + -rm -f $(TARGET) diff --git a/2ano1/AED/aula07/ex01/src/01_example.c b/2ano1/AED/aula07/ex01/src/01_example.c new file mode 100644 index 0000000..51fde07 --- /dev/null +++ b/2ano1/AED/aula07/ex01/src/01_example.c @@ -0,0 +1,42 @@ +#include + +#include "IntegersQueue.h" +#include "IntegersStack.h" + +int capicua(int n) { + // Completely unnecessary + Queue *queue = QueueCreate(10); + if (queue == NULL) + return 1; + Stack *stack = StackCreate(10); + if (stack == NULL) + return 1; + + for (; n > 0; n /= 10) { + int digit = n % 10; + QueueEnqueue(queue, digit); + StackPush(stack, digit); + } + + int result = 1; + while (!QueueIsEmpty(queue)) { + if (StackPop(stack) != QueueDequeue(queue)) { + result = 0; + break; + } + } + + StackDestroy(&stack); + QueueDestroy(&queue); + + return result; +} + +int main(void) { + int test_corpus[] = {242, 243, 6573, 9191, 1911, 1991}; + for (size_t i = 0; i < sizeof(test_corpus) / sizeof(int); i++) { + int test = test_corpus[i]; + printf("%d is %s\n", test, capicua(test) ? "true" : "false"); + } + return 0; +} diff --git a/2ano1/AED/aula07/ex01/src/IntegersQueue.c b/2ano1/AED/aula07/ex01/src/IntegersQueue.c new file mode 100644 index 0000000..df8d625 --- /dev/null +++ b/2ano1/AED/aula07/ex01/src/IntegersQueue.c @@ -0,0 +1,87 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// Joaquim Madeira, April 2020 +// João Manuel Rodrigues, May 2020 +// +// Integers queue (First In First Out) implementation based on a circular array + +#include "IntegersQueue.h" + +#include +#include + +struct _IntegersQueue { + int max_size; // maximum Queue size + int cur_size; // current Queue size + int head; + int tail; + int* data; // the Queue data (integers stored in an array) +}; + +// PRIVATE auxiliary function + +static int increment_index(const Queue* q, int i) { + return (i + 1 < q->max_size) ? i + 1 : 0; +} + +// PUBLIC functions + +Queue* QueueCreate(int size) { + assert(size >= 10 && size <= 1000000); + Queue* q = (Queue*)malloc(sizeof(Queue)); + if (q == NULL) return NULL; + + q->max_size = size; + q->cur_size = 0; + + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; + + q->data = (int*)malloc(size * sizeof(int)); + if (q->data == NULL) { + free(q); + return NULL; + } + return q; +} + +void QueueDestroy(Queue** p) { + assert(*p != NULL); + Queue* q = *p; + free(q->data); + free(q); + *p = NULL; +} + +void QueueClear(Queue* q) { + q->cur_size = 0; + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; +} + +int QueueSize(const Queue* q) { return q->cur_size; } + +int QueueIsFull(const Queue* q) { return (q->cur_size == q->max_size) ? 1 : 0; } + +int QueueIsEmpty(const Queue* q) { return (q->cur_size == 0) ? 1 : 0; } + +int QueuePeek(const Queue* q) { + assert(q->cur_size > 0); + return q->data[q->head]; +} + +void QueueEnqueue(Queue* q, int i) { + assert(q->cur_size < q->max_size); + q->tail = increment_index(q, q->tail); + q->data[q->tail] = i; + q->cur_size++; +} + +int QueueDequeue(Queue* q) { + assert(q->cur_size > 0); + int old_head = q->head; + q->head = increment_index(q, q->head); + q->cur_size--; + return q->data[old_head]; +} diff --git a/2ano1/AED/aula07/ex01/src/IntegersQueue.h b/2ano1/AED/aula07/ex01/src/IntegersQueue.h new file mode 100644 index 0000000..477f6a9 --- /dev/null +++ b/2ano1/AED/aula07/ex01/src/IntegersQueue.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// Joaquim Madeira, May 2020 +// João Manuel Rodrigues, May 2020 +// +// Integers queue (First In First Out) implementation based on a circular array +// + +#ifndef _INTEGERS_QUEUE_ +#define _INTEGERS_QUEUE_ + +typedef struct _IntegersQueue Queue; + +Queue* QueueCreate(int size); + +void QueueDestroy(Queue** p); + +void QueueClear(Queue* q); + +int QueueSize(const Queue* q); + +int QueueIsFull(const Queue* q); + +int QueueIsEmpty(const Queue* q); + +int QueuePeek(const Queue* q); + +void QueueEnqueue(Queue* q, int i); + +int QueueDequeue(Queue* q); + +#endif // _INTEGERS_QUEUE_ diff --git a/2ano1/AED/aula07/ex01/src/IntegersStack.c b/2ano1/AED/aula07/ex01/src/IntegersStack.c new file mode 100644 index 0000000..2b83e3b --- /dev/null +++ b/2ano1/AED/aula07/ex01/src/IntegersStack.c @@ -0,0 +1,65 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// J. Madeira - April 2020 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// Integers stack (First In Last Out) implementation based on an array +// + +#include "IntegersStack.h" + +#include +#include + +struct _IntStack { + int max_size; // maximum stack size + int cur_size; // current stack size + int* data; // the stack data (stored in an array) +}; + +Stack* StackCreate(int size) { + assert(size >= 10 && size <= 1000000); + Stack* s = (Stack*)malloc(sizeof(Stack)); + if (s == NULL) return NULL; + s->max_size = size; + s->cur_size = 0; + s->data = (int*)malloc(size * sizeof(int)); + if (s->data == NULL) { + free(s); + return NULL; + } + return s; +} + +void StackDestroy(Stack** p) { + assert(*p != NULL); + Stack* s = *p; + free(s->data); + free(s); + *p = NULL; +} + +void StackClear(Stack* s) { s->cur_size = 0; } + +int StackSize(const Stack* s) { return s->cur_size; } + +int StackIsFull(const Stack* s) { return (s->cur_size == s->max_size) ? 1 : 0; } + +int StackIsEmpty(const Stack* s) { return (s->cur_size == 0) ? 1 : 0; } + +int StackPeek(const Stack* s) { + assert(s->cur_size > 0); + return s->data[s->cur_size - 1]; +} + +void StackPush(Stack* s, int i) { + assert(s->cur_size < s->max_size); + s->data[s->cur_size++] = i; +} + +int StackPop(Stack* s) { + assert(s->cur_size > 0); + return s->data[--(s->cur_size)]; +} diff --git a/2ano1/AED/aula07/ex01/src/IntegersStack.h b/2ano1/AED/aula07/ex01/src/IntegersStack.h new file mode 100644 index 0000000..c31b08e --- /dev/null +++ b/2ano1/AED/aula07/ex01/src/IntegersStack.h @@ -0,0 +1,34 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// J. Madeira - April 2020 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// Integers stack (First In Last Out) implementation based on an array +// + +#ifndef _INTEGERS_STACK_ +#define _INTEGERS_STACK_ + +typedef struct _IntStack Stack; + +Stack* StackCreate(int size); + +void StackDestroy(Stack** p); + +void StackClear(Stack* s); + +int StackSize(const Stack* s); + +int StackIsFull(const Stack* s); + +int StackIsEmpty(const Stack* s); + +int StackPeek(const Stack* s); + +void StackPush(Stack* s, int i); + +int StackPop(Stack* s); + +#endif // _INTEGERS_STACK_ diff --git a/2ano1/AED/aula07/ex02/Makefile b/2ano1/AED/aula07/ex02/Makefile new file mode 100644 index 0000000..7fcf1ed --- /dev/null +++ b/2ano1/AED/aula07/ex02/Makefile @@ -0,0 +1,40 @@ +SRC_DIR = src +BUILD_DIR = build +OBJS_DIR = $(BUILD_DIR)/objs + +TARGET = Tests +LIBS = -lm +CC = gcc +CFLAGS = -g -Wextra -Wall -Werror -Wpedantic -std=c11 + +.PHONY: default all clean + +default: run +all: default + +OBJECTS = $(patsubst $(SRC_DIR)/%.c, $(OBJS_DIR)/%.o, $(wildcard $(SRC_DIR)/*.c)) +HEADERS = $(wildcard $(SRC_DIR)/*.h) + +$(OBJS_DIR): + mkdir -p $(OBJS_DIR) + +$(BUILD_DIR): + mkdir -p $(OBJS_DIR) + +$(OBJS_DIR)/%.o: $(SRC_DIR)/%.c $(HEADERS) $(OBJS_DIR) + $(CC) $(CFLAGS) -c $< -o $@ + +.PRECIOUS: $(TARGET) $(OBJECTS) + +$(TARGET): $(OBJECTS) $(BUILD_DIR) + $(CC) $(OBJECTS) -Wall $(LIBS) -o $(BUILD_DIR)/$@ + +run: $(TARGET) + $(BUILD_DIR)/$(TARGET) + +valgrind: $(TARGET) + valgrind $(BUILD_DIR)/$(TARGET) + +clean: + -rm -f *.o + -rm -f $(TARGET) diff --git a/2ano1/AED/aula07/ex02/src/Date.c b/2ano1/AED/aula07/ex02/src/Date.c new file mode 100644 index 0000000..823c1ff --- /dev/null +++ b/2ano1/AED/aula07/ex02/src/Date.c @@ -0,0 +1,186 @@ + +// JMR, 2021 + +// Complete the functions (marked by ...) +// so that it passes all tests in DateTest. + +#include "Date.h" + +#include +#include +#include + +const Date DateMIN = {0, 1, 1}; +const Date DateMAX = {9999, 12, 31}; + +// Check if a yy,mm,dd tuple forms a valid date. +// (This would be a public static method in Java.) +int DateIsValid(int yy, int mm, int dd) { + return (DateMIN.year) <= yy && yy <= (DateMAX.year) && 1 <= mm && mm <= 12 && + 1 <= dd && dd <= DateDaysInMonth(yy, mm); +} + +// Function to test desired internal invariant for valid Date values: +// the Date should contain valid year,month,day fields. +static int invariant(Date *d) { return DateIsValid(d->year, d->month, d->day); } + +// Alocate and store a date given by yy, mm, dd integers. +// (yy, mm, dd) are required to form a valid date. +// Returns the pointer to the new date structure, +// or NULL if allocation fails. +Date *DateCreate(int yy, int mm, int dd) { + assert(DateIsValid(yy, mm, dd)); + + Date *d = (Date *)malloc(sizeof(Date)); + if (d == NULL) + return NULL; + d->year = yy; + d->month = mm; + d->day = dd; + + assert(invariant(d)); // check invariant + return d; +} + +// Free the memory pointed to by *pd and invalidate *pd contents. +// Precondition: *pd must not be NULL. +// Postcondition: *pd is set to NULL. +void DateDestroy(Date **pd) { + assert(*pd != NULL); + + free(*pd); + *pd = NULL; +} + +// table of month lengths in common and leap years +static const uint8_t monthLength[][12] = { + {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, + {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}}; + +int DateDaysInMonth(int yy, int mm) { + int isLeap = DateIsLeapYear(yy); + return monthLength[isLeap][mm - 1]; +} + +int DateIsLeapYear(int yy) { + return (yy % 4 == 0 && yy % 100 != 0) || yy % 400 == 0; +} + +static char *fmts[] = { + (char *)"%04d-%02d-%02d", // YMD + (char *)"%3$02d/%2$02d/%1$04d", // DMY + (char *)"%2$02d/%3$02d/%1$04d", // MDY +}; + +static char strBuffer[64]; + +// Return a formatted string representation of date d. +// Careful: the string buffer will be overwritten by the next call. +// You should strcpy or strdup the result if you need persistence! +char *DateFormat(const Date *d, int FMT) { + if (d == NULL) + snprintf(strBuffer, sizeof(strBuffer), "NULL"); + else + snprintf(strBuffer, sizeof(strBuffer), fmts[FMT], d->year, d->month, + d->day); + return strBuffer; +} + +// Parse str according to format and return NEW Date, +// or NULL if invalid or memory error. +Date *DateParse1(const char *str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + Date *d = NULL; + if (n == 3 && DateIsValid(yy, mm, dd)) { + d = DateCreate(yy, mm, dd); + } + return d; +} + +// Parse str according to format and fill in *d. +// Return 1 and update *d if str contains a correctly formatted and valid date. +// Return 0 and leave *d untouched, otherwise. +int DateParse(Date *d, const char *str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + if (!(n == 3 && DateIsValid(yy, mm, dd))) + return 0; + d->year = yy; + d->month = mm; + d->day = dd; + return 1; +} + +// Compare dates a and b. +// Return an integer >0 if a>b, 0 if a==b and <0 if ayear > b->year) { + return 1; + } else if (a->year < b->year) { + return -1; + } + + if (a->month > b->month) { + return 1; + } else if (a->month < b->month) { + return -1; + } + + if (a->day > b->day) { + return 1; + } else if (a->day < b->day) { + return -1; + } + + return 0; +} + +// Increment date. +// Precondition: d must precede DateMAX. +void DateIncr(Date *d) { + assert(DateCompare(d, &DateMAX) < 0); + + const int month_days = DateDaysInMonth(d->year, d->month); + + if (d->day == month_days) { + d->day = 1; + + if (d->month == 12) { + d->month = 1; + d->year++; + } else { + d->month++; + } + } else { + d->day++; + } + + assert(invariant(d)); // check invariant +} + +// Decrement date. +// Precondition: d must succeed DateMIN. +void DateDecr(Date *d) { + assert(DateCompare(d, &DateMIN) > 0); + + if (d->day == 1) { + if (d->month == 1) { + d->month = 12; + d->year--; + } else { + d->month--; + } + + const int month_days = DateDaysInMonth(d->year, d->month); + + d->day = month_days; + } else { + d->day--; + } + + assert(invariant(d)); // check invariant +} diff --git a/2ano1/AED/aula07/ex02/src/Date.h b/2ano1/AED/aula07/ex02/src/Date.h new file mode 100644 index 0000000..3acfa49 --- /dev/null +++ b/2ano1/AED/aula07/ex02/src/Date.h @@ -0,0 +1,49 @@ + +// JMR, 2021 + +#ifndef _DATE_ +#define _DATE_ + +#include + +struct _date { + uint16_t year; + uint8_t month; + uint8_t day; +}; + +// The Date type. (To be used in clients.) +typedef struct _date Date; + +// Constants +extern const Date DateMIN; +extern const Date DateMAX; + +// Macros to select date format +#define YMD 0 +#define DMY 1 +#define MDY 2 + +Date* DateCreate(int yy, int mm, int dd); + +void DateDestroy(Date** pd); + +int DateIsValid(int yy, int mm, int dd); + +int DateDaysInMonth(int yy, int mm); + +int DateIsLeapYear(int yy); + +char* DateFormat(const Date* d, int FMT); + +Date* DateParse1(const char* str, int FMT); + +int DateParse(Date* d, const char* str, int FMT); + +int DateCompare(const Date* a, const Date* b); + +void DateIncr(Date* d); + +void DateDecr(Date* d); + +#endif //_DATE_ diff --git a/2ano1/AED/aula07/ex02/src/Person.c b/2ano1/AED/aula07/ex02/src/Person.c new file mode 100644 index 0000000..20bdc09 --- /dev/null +++ b/2ano1/AED/aula07/ex02/src/Person.c @@ -0,0 +1,86 @@ + +// JMR, 2021 + +// Complete the functions (marked by ...) +// so that it passes all tests in PersonTest. + +#include "Person.h" +#include "Date.h" + +#include +#include +#include +#include + +// This variable stores the last ID that was assigned to a Person. +// It should be used to assign serial, unique IDs automatically upon creation. +// The first person will have id=1, the second id=2, etc. +static int lastID = 0; + +// Alocate and store a Person. +// Returns the pointer to the new structure, +// or NULL if allocation fails. +// The names are copied to internally allocated memory. +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd) { + Person *p = (Person *)malloc(sizeof(Person)); + p->id = ++lastID; + p->birthDate.year = yy; + p->birthDate.month = mm; + p->birthDate.day = dd; + + // Plus 1 for the null byte + p->firstName = malloc(strlen(fname) + 1); + strcpy(p->firstName, fname); + + p->lastName = malloc(strlen(lname) + 1); + strcpy(p->lastName, lname); + + return p; +} + +// Free the memory pointed to by *pp and by the names inside it, +// and invalidate *pp contents. +// Precondition: *pp must not be NULL. +// Postcondition: *pp is set to NULL. +void PersonDestroy(Person **pp) { + assert(*pp != NULL); + + // Free first the names + free((*pp)->firstName); + free((*pp)->lastName); + // Then the struct + free(*pp); + *pp = NULL; +} + +// Prints a person formatted as "[id, lastname, firstname, birthdate]", +// followed by a suffix string. +void PersonPrintf(Person *p, const char *suffix) { + if (p == NULL) + printf("NULL%s", suffix); + else + printf("(%d, %s, %s, %s)%s", p->id, p->lastName, p->firstName, + DateFormat(&(p->birthDate), YMD), suffix); +} + +// Compare birth dates of two persons. +// Return a negative/positive integer if p1 was born before/after p2. +// Return zero if p1 and p2 were born on the same date. +int PersonCompareByBirth(const Person *p1, const Person *p2) { + assert(p1 != NULL); + assert(p2 != NULL); + return DateCompare(&p1->birthDate, &p2->birthDate); +} + +// Compare two persons by last name, then first name (if last name is the same). +// Return a -/+/0 integer if p1 precedes/succeeds/is equal to p2. +int PersonCompareByLastFirstName(const Person *p1, const Person *p2) { + assert(p1 != NULL); + assert(p2 != NULL); + + int result = strcmp(p1->lastName, p2->lastName); + if (result == 0) + return strcmp(p1->firstName, p2->firstName); + return result; +} diff --git a/2ano1/AED/aula07/ex02/src/Person.h b/2ano1/AED/aula07/ex02/src/Person.h new file mode 100644 index 0000000..d9a7a21 --- /dev/null +++ b/2ano1/AED/aula07/ex02/src/Person.h @@ -0,0 +1,27 @@ + +// JMR, 2021 + +#ifndef _PERSON_ +#define _PERSON_ + +#include "Date.h" + +typedef struct { + int id; + Date birthDate; // this is the actual structure, not a pointer! + char *firstName; + char *lastName; +} Person; + +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd); + +void PersonDestroy(Person **pd); + +void PersonPrintf(Person *p, const char *suffix); + +int PersonCompareByBirth(const Person *p1, const Person *p2); + +int PersonCompareByLastFirstName(const Person *p1, const Person *p2); + +#endif // PERSON diff --git a/2ano1/AED/aula07/ex02/src/Tests.c b/2ano1/AED/aula07/ex02/src/Tests.c new file mode 100644 index 0000000..cbf56fe --- /dev/null +++ b/2ano1/AED/aula07/ex02/src/Tests.c @@ -0,0 +1,205 @@ + +// JMR, 2021 + +// DO NOT CHANGE THIS FILE. + +#include +#include +#include + +#include "Date.h" +#include "Person.h" + +// MACRO to print expression X of type int (int X) and its result +#define SHOWint(X) \ + do { \ + printf("%s -> %d\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type string (char* X) and its result +#define SHOWstr(X) \ + do { \ + printf("%s -> %s\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type date (Date* X) and its result +#define SHOWDate(X) \ + do { \ + printf("%s -> %s\n", #X, DateFormat(X, YMD)); \ + } while (0) + +// MACRO to print expression X of type Person and its result +#define SHOWPerson(X) \ + do { \ + printf("%s -> ", #X); \ + PersonPrintf(X, "\n"); \ + } while (0) + +// (C preprocessor macros are quite powerful.) + +// Returns +1, -1 or 0 if d>0, d<0 or d==0 +int signum(int d) { return (d > 0) - (d < 0); } + +int main(int argc, char* argv[]) { + int lasttest = 9999; + if (argc > 1) { + lasttest = atoi(argv[1]); // last test to perform + } + int test = 0; + + printf("\n%d) Date Constants---\n", test); + SHOWDate(&DateMIN); + SHOWDate(&DateMAX); + // DateMIN.day = 9; // Changing constants is forbiden! + + printf("\n%d) Date Automatic Variables---\n", test); + // We can define automatic or static variables of type Date. + // We may even initialize them directly: + Date dd0 = {1999, 9, 9}; // BUT we should be CAREFUL! + SHOWDate(&dd0); + Date dd1 = {1999, 9, 31}; // This works, BUT date is INVALID! + SHOWDate(&dd1); + + // Since the data structure is public (exposed in Date.h), + // we can access the fields directly. + SHOWint(dd0.year); + SHOWint(dd0.month); + SHOWint(dd0.day); + + // Since the fields are public, we can even do this: + dd1.day = 0; // This works, BUT date is INVALID! + // Who is responsible for ensuring the invariant? + + if (++test > lasttest) return 0; + printf("\n%d) DateCreate---\n", test); + // We can dynamically create (allocate) a Date variable + // and initialize it (DateCreate is analogous to a constructor). + Date* d1 = DateCreate(2019, 12, 25); // NOTE: d1 is a POINTER! + SHOWDate(d1); + // ADVANTAGE: DateCreate requires that arguments satisfy preconditions + // so that the created date is guaranteed to satisfy the invariant! + // d1 = DateCreate(1999, 9, 31); // would FAIL! + // DISADVANTAGE: We must keep track of memory and eventually free it! + + Date* d2 = DateCreate(2020, 4, 2); + SHOWDate(d2); + assert(d2 != d1); // should be two different addresses in memory + SHOWDate(d1); // d1 should not be changed + + if (++test > lasttest) return 0; + printf("\n%d) DateDestroy---\n", test); + DateDestroy(&d2); // argument is the address of the pointer varible + SHOWDate(d2); // d2 should now be NULL + assert(d2 == NULL); // AND memory should be freed! (check with valgrind) + d2 = DateCreate(2020, 3, 2); // After freeing, d2 can be reused + SHOWDate(d1); + SHOWDate(d2); + + if (++test > lasttest) return 0; + printf("\n%d) DateFormat---\n", test); + SHOWstr(DateFormat(d1, YMD)); + SHOWstr(DateFormat(d1, DMY)); + SHOWstr(DateFormat(d1, MDY)); + // What happens if we print two dates on the same call? Why? + // This was planned, but it may be surpring! + printf("d1 -> %s d2 -> %s\n", DateFormat(d1, YMD), DateFormat(d2, YMD)); + + if (++test > lasttest) return 0; + printf("\n%d) DateParse1---\n", test); + Date* d3 = DateParse1("1111-2-3", YMD); + SHOWDate(d3); + Date* d4 = DateParse1("11/2/3333", DMY); + SHOWDate(d4); + Date* d5 = DateParse1("11/22/3333", MDY); + SHOWDate(d5); + // DateParse allocates memory. + // Remember to free it! + DateDestroy(&d3); + DateDestroy(&d4); + DateDestroy(&d5); + + if (++test > lasttest) return 0; + printf("\n%d) DateParse---\n", test); + Date dd3, dd4, dd5; + SHOWint(DateParse(&dd3, "1111-2-3", YMD)); + SHOWDate(&dd3); + SHOWint(DateParse(&dd4, "11/2/3333", DMY)); + SHOWDate(&dd4); + SHOWint(DateParse(&dd5, "11/22/3333", MDY)); + SHOWDate(&dd5); + SHOWint(DateParse(&dd5, "11/22/1111", DMY)); // should fail + SHOWDate(&dd5); + + if (++test > lasttest) return 0; + printf("\n%d) DateCompare---\n", test); + SHOWint(signum(DateCompare(d1, d1))); + SHOWint(signum(DateCompare(d1, d2))); + SHOWint(signum(DateCompare(d2, d1))); + SHOWint(signum(DateCompare(d2, d2))); + + if (++test > lasttest) return 0; + dd0 = *d1; // Copy *d1 into dd0 + printf("\n%d) DateIncr---\n", test); + while (DateCompare(d1, d2) <= 0) { + SHOWDate(d1); + DateIncr(d1); + } + + if (++test > lasttest) return 0; + *d2 = dd0; // Copy dd0 into *d2 + printf("\n%d) DateDecr---\n", test); + while (DateCompare(d1, d2) >= 0) { + SHOWDate(d1); + DateDecr(d1); + } + + // Free the dates + // (If you comment out any of these, valgrind should detect it!) + DateDestroy(&d1); + DateDestroy(&d2); + + if (++test > lasttest) return 0; + printf("\n%d) PersonCreate---\n", test); + Person* p1 = PersonCreate("Edsgar", "Dijkstra", 1930, 5, 11); + SHOWPerson(p1); + + char name1[10] = "Alan"; + char name2[10] = "Turing"; + Person* p2 = PersonCreate(name1, name2, 1912, 6, 23); + SHOWPerson(p2); + assert(p2 != p1); // should be two different addresses in memory + SHOWPerson(p1); // p1 should not be changed + name1[3] = '\0'; // truncate name1->"Ala" + name1[2] = '\0'; // truncate name2->"Tu" + SHOWPerson(p2); // *p2 should keep a copy of the original names! + + if (++test > lasttest) return 0; + printf("\n%d) PersonDestroy---\n", test); + PersonDestroy(&p2); // argument is the address of the pointer varible + SHOWPerson(p2); // p2 should now be NULL + assert(p2 == NULL); + p2 = PersonCreate("Ada", "Lovelace", 1815, 12, 10); + SHOWPerson(p1); + SHOWPerson(p2); + + if (++test > lasttest) return 0; + printf("\n%d) PersonCompareByBirth---\n", test); + SHOWint(signum(PersonCompareByBirth(p1, p1))); + SHOWint(signum(PersonCompareByBirth(p1, p2))); + SHOWint(signum(PersonCompareByBirth(p2, p1))); + SHOWint(signum(PersonCompareByBirth(p2, p2))); + + if (++test > lasttest) return 0; + printf("\n%d) PersonCompareByBirth---\n", test); + SHOWint(signum(PersonCompareByLastFirstName(p1, p1))); + SHOWint(signum(PersonCompareByLastFirstName(p1, p2))); + SHOWint(signum(PersonCompareByLastFirstName(p2, p1))); + SHOWint(signum(PersonCompareByLastFirstName(p2, p2))); + + // Free everything + // (If you comment out any of these, valgrind should detect it!) + PersonDestroy(&p1); + PersonDestroy(&p2); + + return 0; +} diff --git a/2ano1/AED/aula07/ex03/Makefile b/2ano1/AED/aula07/ex03/Makefile new file mode 100644 index 0000000..1a0d63c --- /dev/null +++ b/2ano1/AED/aula07/ex03/Makefile @@ -0,0 +1,40 @@ +SRC_DIR = src +BUILD_DIR = build +OBJS_DIR = $(BUILD_DIR)/objs + +TARGET = Ex03 +LIBS = -lm +CC = gcc +CFLAGS = -g -Wextra -Wall -Werror -Wpedantic -std=c11 + +.PHONY: default all clean + +default: run +all: default + +OBJECTS = $(patsubst $(SRC_DIR)/%.c, $(OBJS_DIR)/%.o, $(wildcard $(SRC_DIR)/*.c)) +HEADERS = $(wildcard $(SRC_DIR)/*.h) + +$(OBJS_DIR): + mkdir -p $(OBJS_DIR) + +$(BUILD_DIR): + mkdir -p $(OBJS_DIR) + +$(OBJS_DIR)/%.o: $(SRC_DIR)/%.c $(HEADERS) $(OBJS_DIR) + $(CC) $(CFLAGS) -c $< -o $@ + +.PRECIOUS: $(TARGET) $(OBJECTS) + +$(TARGET): $(OBJECTS) $(BUILD_DIR) + $(CC) $(OBJECTS) -Wall $(LIBS) -o $(BUILD_DIR)/$@ + +run: $(TARGET) + $(BUILD_DIR)/$(TARGET) + +valgrind: $(TARGET) + valgrind $(BUILD_DIR)/$(TARGET) + +clean: + -rm -f *.o + -rm -f $(TARGET) diff --git a/2ano1/AED/aula07/ex03/src/Date.c b/2ano1/AED/aula07/ex03/src/Date.c new file mode 100644 index 0000000..823c1ff --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/Date.c @@ -0,0 +1,186 @@ + +// JMR, 2021 + +// Complete the functions (marked by ...) +// so that it passes all tests in DateTest. + +#include "Date.h" + +#include +#include +#include + +const Date DateMIN = {0, 1, 1}; +const Date DateMAX = {9999, 12, 31}; + +// Check if a yy,mm,dd tuple forms a valid date. +// (This would be a public static method in Java.) +int DateIsValid(int yy, int mm, int dd) { + return (DateMIN.year) <= yy && yy <= (DateMAX.year) && 1 <= mm && mm <= 12 && + 1 <= dd && dd <= DateDaysInMonth(yy, mm); +} + +// Function to test desired internal invariant for valid Date values: +// the Date should contain valid year,month,day fields. +static int invariant(Date *d) { return DateIsValid(d->year, d->month, d->day); } + +// Alocate and store a date given by yy, mm, dd integers. +// (yy, mm, dd) are required to form a valid date. +// Returns the pointer to the new date structure, +// or NULL if allocation fails. +Date *DateCreate(int yy, int mm, int dd) { + assert(DateIsValid(yy, mm, dd)); + + Date *d = (Date *)malloc(sizeof(Date)); + if (d == NULL) + return NULL; + d->year = yy; + d->month = mm; + d->day = dd; + + assert(invariant(d)); // check invariant + return d; +} + +// Free the memory pointed to by *pd and invalidate *pd contents. +// Precondition: *pd must not be NULL. +// Postcondition: *pd is set to NULL. +void DateDestroy(Date **pd) { + assert(*pd != NULL); + + free(*pd); + *pd = NULL; +} + +// table of month lengths in common and leap years +static const uint8_t monthLength[][12] = { + {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, + {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}}; + +int DateDaysInMonth(int yy, int mm) { + int isLeap = DateIsLeapYear(yy); + return monthLength[isLeap][mm - 1]; +} + +int DateIsLeapYear(int yy) { + return (yy % 4 == 0 && yy % 100 != 0) || yy % 400 == 0; +} + +static char *fmts[] = { + (char *)"%04d-%02d-%02d", // YMD + (char *)"%3$02d/%2$02d/%1$04d", // DMY + (char *)"%2$02d/%3$02d/%1$04d", // MDY +}; + +static char strBuffer[64]; + +// Return a formatted string representation of date d. +// Careful: the string buffer will be overwritten by the next call. +// You should strcpy or strdup the result if you need persistence! +char *DateFormat(const Date *d, int FMT) { + if (d == NULL) + snprintf(strBuffer, sizeof(strBuffer), "NULL"); + else + snprintf(strBuffer, sizeof(strBuffer), fmts[FMT], d->year, d->month, + d->day); + return strBuffer; +} + +// Parse str according to format and return NEW Date, +// or NULL if invalid or memory error. +Date *DateParse1(const char *str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + Date *d = NULL; + if (n == 3 && DateIsValid(yy, mm, dd)) { + d = DateCreate(yy, mm, dd); + } + return d; +} + +// Parse str according to format and fill in *d. +// Return 1 and update *d if str contains a correctly formatted and valid date. +// Return 0 and leave *d untouched, otherwise. +int DateParse(Date *d, const char *str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + if (!(n == 3 && DateIsValid(yy, mm, dd))) + return 0; + d->year = yy; + d->month = mm; + d->day = dd; + return 1; +} + +// Compare dates a and b. +// Return an integer >0 if a>b, 0 if a==b and <0 if ayear > b->year) { + return 1; + } else if (a->year < b->year) { + return -1; + } + + if (a->month > b->month) { + return 1; + } else if (a->month < b->month) { + return -1; + } + + if (a->day > b->day) { + return 1; + } else if (a->day < b->day) { + return -1; + } + + return 0; +} + +// Increment date. +// Precondition: d must precede DateMAX. +void DateIncr(Date *d) { + assert(DateCompare(d, &DateMAX) < 0); + + const int month_days = DateDaysInMonth(d->year, d->month); + + if (d->day == month_days) { + d->day = 1; + + if (d->month == 12) { + d->month = 1; + d->year++; + } else { + d->month++; + } + } else { + d->day++; + } + + assert(invariant(d)); // check invariant +} + +// Decrement date. +// Precondition: d must succeed DateMIN. +void DateDecr(Date *d) { + assert(DateCompare(d, &DateMIN) > 0); + + if (d->day == 1) { + if (d->month == 1) { + d->month = 12; + d->year--; + } else { + d->month--; + } + + const int month_days = DateDaysInMonth(d->year, d->month); + + d->day = month_days; + } else { + d->day--; + } + + assert(invariant(d)); // check invariant +} diff --git a/2ano1/AED/aula07/ex03/src/Date.h b/2ano1/AED/aula07/ex03/src/Date.h new file mode 100644 index 0000000..3acfa49 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/Date.h @@ -0,0 +1,49 @@ + +// JMR, 2021 + +#ifndef _DATE_ +#define _DATE_ + +#include + +struct _date { + uint16_t year; + uint8_t month; + uint8_t day; +}; + +// The Date type. (To be used in clients.) +typedef struct _date Date; + +// Constants +extern const Date DateMIN; +extern const Date DateMAX; + +// Macros to select date format +#define YMD 0 +#define DMY 1 +#define MDY 2 + +Date* DateCreate(int yy, int mm, int dd); + +void DateDestroy(Date** pd); + +int DateIsValid(int yy, int mm, int dd); + +int DateDaysInMonth(int yy, int mm); + +int DateIsLeapYear(int yy); + +char* DateFormat(const Date* d, int FMT); + +Date* DateParse1(const char* str, int FMT); + +int DateParse(Date* d, const char* str, int FMT); + +int DateCompare(const Date* a, const Date* b); + +void DateIncr(Date* d); + +void DateDecr(Date* d); + +#endif //_DATE_ diff --git a/2ano1/AED/aula07/ex03/src/Ex03.c b/2ano1/AED/aula07/ex03/src/Ex03.c new file mode 100644 index 0000000..631f751 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/Ex03.c @@ -0,0 +1,47 @@ +#include + +#include "Date.h" +#include "Person.h" + +#include "PointersQueue.h" +#include "PointersStack.h" + +int main(void) { + Queue *person_queue = QueueCreate(10); + if (person_queue == NULL) + return 1; + Stack *date_stack = StackCreate(10); + if (date_stack == NULL) + return 1; + + for (int i = 0; i < 10; i++) { + Person *person = PersonCreate("fname", "lname", 1991, 9, i + 1); + if (person == NULL) + return 1; + + QueueEnqueue(person_queue, person); + + Date *date = DateCreate(1991, 9, i + 1); + if (date == NULL) + return 1; + + StackPush(date_stack, date); + } + + while (!QueueIsEmpty(person_queue)) { + Person *person = (Person *)QueueDequeue(person_queue); + PersonPrintf(person, "\n"); + PersonDestroy(&person); + } + + while (!StackIsEmpty(date_stack)) { + Date *date = (Date *)StackPop(date_stack); + printf("%s\n", DateFormat(date, DMY)); + DateDestroy(&date); + } + + QueueDestroy(&person_queue); + StackDestroy(&date_stack); + + return 0; +} diff --git a/2ano1/AED/aula07/ex03/src/Person.c b/2ano1/AED/aula07/ex03/src/Person.c new file mode 100644 index 0000000..20bdc09 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/Person.c @@ -0,0 +1,86 @@ + +// JMR, 2021 + +// Complete the functions (marked by ...) +// so that it passes all tests in PersonTest. + +#include "Person.h" +#include "Date.h" + +#include +#include +#include +#include + +// This variable stores the last ID that was assigned to a Person. +// It should be used to assign serial, unique IDs automatically upon creation. +// The first person will have id=1, the second id=2, etc. +static int lastID = 0; + +// Alocate and store a Person. +// Returns the pointer to the new structure, +// or NULL if allocation fails. +// The names are copied to internally allocated memory. +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd) { + Person *p = (Person *)malloc(sizeof(Person)); + p->id = ++lastID; + p->birthDate.year = yy; + p->birthDate.month = mm; + p->birthDate.day = dd; + + // Plus 1 for the null byte + p->firstName = malloc(strlen(fname) + 1); + strcpy(p->firstName, fname); + + p->lastName = malloc(strlen(lname) + 1); + strcpy(p->lastName, lname); + + return p; +} + +// Free the memory pointed to by *pp and by the names inside it, +// and invalidate *pp contents. +// Precondition: *pp must not be NULL. +// Postcondition: *pp is set to NULL. +void PersonDestroy(Person **pp) { + assert(*pp != NULL); + + // Free first the names + free((*pp)->firstName); + free((*pp)->lastName); + // Then the struct + free(*pp); + *pp = NULL; +} + +// Prints a person formatted as "[id, lastname, firstname, birthdate]", +// followed by a suffix string. +void PersonPrintf(Person *p, const char *suffix) { + if (p == NULL) + printf("NULL%s", suffix); + else + printf("(%d, %s, %s, %s)%s", p->id, p->lastName, p->firstName, + DateFormat(&(p->birthDate), YMD), suffix); +} + +// Compare birth dates of two persons. +// Return a negative/positive integer if p1 was born before/after p2. +// Return zero if p1 and p2 were born on the same date. +int PersonCompareByBirth(const Person *p1, const Person *p2) { + assert(p1 != NULL); + assert(p2 != NULL); + return DateCompare(&p1->birthDate, &p2->birthDate); +} + +// Compare two persons by last name, then first name (if last name is the same). +// Return a -/+/0 integer if p1 precedes/succeeds/is equal to p2. +int PersonCompareByLastFirstName(const Person *p1, const Person *p2) { + assert(p1 != NULL); + assert(p2 != NULL); + + int result = strcmp(p1->lastName, p2->lastName); + if (result == 0) + return strcmp(p1->firstName, p2->firstName); + return result; +} diff --git a/2ano1/AED/aula07/ex03/src/Person.h b/2ano1/AED/aula07/ex03/src/Person.h new file mode 100644 index 0000000..d9a7a21 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/Person.h @@ -0,0 +1,27 @@ + +// JMR, 2021 + +#ifndef _PERSON_ +#define _PERSON_ + +#include "Date.h" + +typedef struct { + int id; + Date birthDate; // this is the actual structure, not a pointer! + char *firstName; + char *lastName; +} Person; + +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd); + +void PersonDestroy(Person **pd); + +void PersonPrintf(Person *p, const char *suffix); + +int PersonCompareByBirth(const Person *p1, const Person *p2); + +int PersonCompareByLastFirstName(const Person *p1, const Person *p2); + +#endif // PERSON diff --git a/2ano1/AED/aula07/ex03/src/PointersQueue.c b/2ano1/AED/aula07/ex03/src/PointersQueue.c new file mode 100644 index 0000000..e92f296 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/PointersQueue.c @@ -0,0 +1,88 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// Joaquim Madeira, April 2020 +// +// Pointers queue (First In First Out) implementation based on a circular +// array of pointers to void +// + +#include "PointersQueue.h" + +#include +#include + +struct _PointersQueue { + int max_size; // maximum Queue size + int cur_size; // current Queue size + int head; + int tail; + void** data; // the Queue data (pointers stored in an array) +}; + +// PRIVATE auxiliary function + +static int increment_index(const Queue* q, int i) { + return (i + 1 < q->max_size) ? i + 1 : 0; +} + +// PUBLIC functions + +Queue* QueueCreate(int size) { + assert(size >= 10 && size <= 1000000); + Queue* q = (Queue*)malloc(sizeof(Queue)); + if (q == NULL) return NULL; + + q->max_size = size; + q->cur_size = 0; + + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; + + q->data = (void**)malloc(size * sizeof(void*)); + if (q->data == NULL) { + free(q); + return NULL; + } + return q; +} + +void QueueDestroy(Queue** p) { + assert(*p != NULL); + Queue* q = *p; + free(q->data); + free(q); + *p = NULL; +} + +void QueueClear(Queue* q) { + q->cur_size = 0; + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; +} + +int QueueSize(const Queue* q) { return q->cur_size; } + +int QueueIsFull(const Queue* q) { return (q->cur_size == q->max_size) ? 1 : 0; } + +int QueueIsEmpty(const Queue* q) { return (q->cur_size == 0) ? 1 : 0; } + +void* QueuePeek(const Queue* q) { + assert(q->cur_size > 0); + return q->data[q->head]; +} + +void QueueEnqueue(Queue* q, void* p) { + assert(q->cur_size < q->max_size); + q->tail = increment_index(q, q->tail); + q->data[q->tail] = p; + q->cur_size++; +} + +void* QueueDequeue(Queue* q) { + assert(q->cur_size > 0); + int old_head = q->head; + q->head = increment_index(q, q->head); + q->cur_size--; + return q->data[old_head]; +} diff --git a/2ano1/AED/aula07/ex03/src/PointersQueue.h b/2ano1/AED/aula07/ex03/src/PointersQueue.h new file mode 100644 index 0000000..b4a73f0 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/PointersQueue.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// Joaquim Madeira, April 2020 +// +// Pointers queue (First In First Out) implementation based on a circular array +// of pointers to void +// + +#ifndef _POINTERS_QUEUE_ +#define _POINTERS_QUEUE_ + +typedef struct _PointersQueue Queue; + +Queue* QueueCreate(int size); + +void QueueDestroy(Queue** p); + +void QueueClear(Queue* q); + +int QueueSize(const Queue* q); + +int QueueIsFull(const Queue* q); + +int QueueIsEmpty(const Queue* q); + +void* QueuePeek(const Queue* q); + +void QueueEnqueue(Queue* q, void* p); + +void* QueueDequeue(Queue* q); + +#endif // _POINTERS_QUEUE_ diff --git a/2ano1/AED/aula07/ex03/src/PointersStack.c b/2ano1/AED/aula07/ex03/src/PointersStack.c new file mode 100644 index 0000000..fec3a83 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/PointersStack.c @@ -0,0 +1,64 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// J. Madeira - April 2020 +// +// Pointers stack (First In Last Out) implementation based on an array of +// pointers to void +// + +#include "PointersStack.h" + +#include +#include + +struct _PointersStack { + int max_size; // maximum stack size + int cur_size; // current stack size + void** data; // the stack data (pointers stored in an array) +}; + +Stack* StackCreate(int size) { + assert(size >= 10 && size <= 1000000); + Stack* s = (Stack*)malloc(sizeof(Stack)); + if (s == NULL) return NULL; + s->max_size = size; + s->cur_size = 0; + s->data = (void**)malloc(size * sizeof(void*)); + if (s->data == NULL) { + free(s); + return NULL; + } + return s; +} + +void StackDestroy(Stack** p) { + assert(*p != NULL); + Stack* s = *p; + free(s->data); + free(s); + *p = NULL; +} + +void StackClear(Stack* s) { s->cur_size = 0; } + +int StackSize(const Stack* s) { return s->cur_size; } + +int StackIsFull(const Stack* s) { return (s->cur_size == s->max_size) ? 1 : 0; } + +int StackIsEmpty(const Stack* s) { return (s->cur_size == 0) ? 1 : 0; } + +void* StackPeek(const Stack* s) { + assert(s->cur_size > 0); + return s->data[s->cur_size - 1]; +} + +void StackPush(Stack* s, void* p) { + assert(s->cur_size < s->max_size); + s->data[s->cur_size++] = p; +} + +void* StackPop(Stack* s) { + assert(s->cur_size > 0); + return s->data[--(s->cur_size)]; +} diff --git a/2ano1/AED/aula07/ex03/src/PointersStack.h b/2ano1/AED/aula07/ex03/src/PointersStack.h new file mode 100644 index 0000000..0e097c5 --- /dev/null +++ b/2ano1/AED/aula07/ex03/src/PointersStack.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 - 1o semestre +// +// J. Madeira - April 2020 +// +// Pointers stack (First In Last Out) implementation based on an array of +// pointers to void +// + +#ifndef _POINTERS_STACK_ +#define _POINTERS_STACK_ + +typedef struct _PointersStack Stack; + +Stack* StackCreate(int size); + +void StackDestroy(Stack** p); + +void StackClear(Stack* s); + +int StackSize(const Stack* s); + +int StackIsFull(const Stack* s); + +int StackIsEmpty(const Stack* s); + +void* StackPeek(const Stack* s); + +void StackPush(Stack* s, void* p); + +void* StackPop(Stack* s); + +#endif // _POINTERS_STACK_ diff --git a/2ano1/AED/aula08/Date.c b/2ano1/AED/aula08/Date.c new file mode 100644 index 0000000..e9e1fd8 --- /dev/null +++ b/2ano1/AED/aula08/Date.c @@ -0,0 +1,149 @@ +// A possible solution. +// JMR 2021 + +#include +#include +#include +#include "Date.h" + +const Date DateMIN = {0, 1, 1}; +const Date DateMAX = {9999, 12, 31}; + +// Check if a yy,mm,dd tuple forms a valid date. +// (This would be a public static method in Java.) +int DateIsValid(int yy, int mm, int dd) { + return (DateMIN.year)<=yy && yy<=(DateMAX.year) && + 1<=mm && mm<=12 && + 1<=dd && dd<=DateDaysInMonth(yy, mm); +} + +// Function to test desired internal invariant for valid Date values: +// the Date should contain valid year,month,day fields. +static int invariant(Date* d) { + return DateIsValid(d->year, d->month, d->day); +} + +// Alocate and store a date given by yy, mm, dd integers. +// (yy, mm, dd) are required to form a valid date. +// Returns the pointer to the new date structure. +// (Exits if allocation fails.) +Date* DateCreate(int yy, int mm, int dd) { + assert( DateIsValid(yy, mm, dd) ); + // SOLUTION + Date* d = (Date*) malloc(sizeof(*d)); + if (d == NULL) { perror("DateCreate"); exit(2); } + d->year = (uint16_t)yy; + d->month = (uint8_t)mm; + d->day = (uint8_t)dd; + assert( invariant(d) ); // check invariant + return d; +} + +// Free the memory pointed to by *pd and invalidate *pd contents. +// Precondition: *pd must not be NULL. +// Postcondition: *pd is set to NULL. +void DateDestroy(Date* *pd) { + assert(*pd != NULL); + // SOLUTION + free(*pd); + *pd = NULL; +} + +// table of month lengths in common and leap years +static const uint8_t monthLength[][12] = { + {31,28,31,30,31,30,31,31,30,31,30,31}, + {31,29,31,30,31,30,31,31,30,31,30,31} +}; + +int DateDaysInMonth(int yy, int mm) { + int isLeap = DateIsLeapYear(yy); + return monthLength[isLeap][mm-1]; +} + +int DateIsLeapYear(int yy) { + return (yy%4==0 && yy%100!=0) || yy%400==0; +} + +static char* fmts[] = { + (char*)"%04d-%02d-%02d", // YMD + (char*)"%3$02d/%2$02d/%1$04d", // DMY + (char*)"%2$02d/%3$02d/%1$04d", // MDY +}; + +static char strBuffer[64]; + +// Return a formatted string representation of date d. +// Careful: the string buffer will be overwritten by the next call. +// You should strcpy or strdup the result if you need persistence! +char* DateFormat(const Date* d, int FMT) { + if (d==NULL) + snprintf(strBuffer, sizeof(strBuffer), "NULL"); + else + snprintf(strBuffer, sizeof(strBuffer), fmts[FMT], d->year, d->month, d->day); + return strBuffer; +} + +// Parse str according to format and fill in *d. +// Return 1 and update *d if str contains a correctly formatted and valid date. +// Return 0 and leave *d untouched, otherwise. +int DateParse(Date *d, const char* str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + if (!(n==3 && DateIsValid(yy, mm, dd))) + return 0; + d->year = yy; + d->month = mm; + d->day = dd; + return 1; +} + +// Compare dates a and b. +// Return an integer >0 if a>b, 0 if a==b and <0 if ayear - (int)b->year; + if (r!=0) return r; + r = (int)a->month - (int)b->month; + if (r!=0) return r; + r = (int)a->day - (int)b->day; + return r; +} + +// Increment date. +// Precondition: d must precede DateMAX. +void DateIncr(Date* d) { + assert( DateCompare(d, &DateMAX) < 0 ); + // SOLUTION + if ((int)d->day < DateDaysInMonth((int)(d->year), (int)(d->month))) { + d->day++; + } else { + d->day = 1; + if ((int)d->month < 12) { + d->month++; + } else { + d->month = 1; + d->year++; + } + } + assert( invariant(d) ); // check invariant +} + +// Decrement date. +// Precondition: d must succeed DateMIN. +void DateDecr(Date* d) { + assert( DateCompare(d, &DateMIN) > 0 ); + // SOLUTION + if ((int)d->day > 1) { + d->day--; + } else { + // decrMonth + if ((int)d->month > 1) { + d->month--; + } else { + d->year--; + d->month = (uint8_t)12; + } + d->day = DateDaysInMonth((int)(d->year), (int)(d->month)); + } + assert( invariant(d) ); // check invariant +} diff --git a/2ano1/AED/aula08/Date.h b/2ano1/AED/aula08/Date.h new file mode 100644 index 0000000..f5a4597 --- /dev/null +++ b/2ano1/AED/aula08/Date.h @@ -0,0 +1,46 @@ +#ifndef _DATE_ +#define _DATE_ + +#include + +struct _date { + uint16_t year; + uint8_t month; + uint8_t day; +}; + +// The Date type. (To be used in clients.) +typedef struct _date Date; + +// Constants +extern const Date DateMIN; +extern const Date DateMAX; + +// Macros to select date format +#define YMD 0 +#define DMY 1 +#define MDY 2 + + +Date* DateCreate(int yy, int mm, int dd) ; + +void DateDestroy(Date* *pd) ; + +int DateIsValid(int yy, int mm, int dd) ; + +int DateDaysInMonth(int yy, int mm) ; + +int DateIsLeapYear(int yy) ; + +char* DateFormat(const Date* d, int FMT) ; + +int DateParse(Date *d, const char* str, int FMT) ; + +int DateCompare(const Date* a, const Date* b) ; + +void DateIncr(Date* d) ; + +void DateDecr(Date* d) ; + + +#endif //_DATE_ diff --git a/2ano1/AED/aula08/Makefile b/2ano1/AED/aula08/Makefile new file mode 100644 index 0000000..ab3b99c --- /dev/null +++ b/2ano1/AED/aula08/Makefile @@ -0,0 +1,36 @@ +# To compile all programs, run: +# make +# +# JMR 2021, JMadeira 2023 + +# Options for the C compiler. +CFLAGS += -g -Wall -Wextra + +TARGETS = Tests + +all: $(TARGETS) + +Date.o: Date.c Date.h + +Person.o: Person.c Person.h Date.h + +Tests.o: Tests.c Person.h Date.h PersonSet.h + +Tests: Tests.o Person.o Date.o PersonSet.o + +# make tst # to run program twice and log outputs +tst: tst-12.txt tst-14.txt + +tst-%.txt: Tests + valgrind --log-fd=1 ./Tests $* > $@ + +clean: + rm -f *.o + rm -f $(TARGETS) + rm -f tst-*.txt + +run: Tests + ./Tests + +valgrind: Tests + valgrind ./Tests diff --git a/2ano1/AED/aula08/Person.c b/2ano1/AED/aula08/Person.c new file mode 100644 index 0000000..0db2509 --- /dev/null +++ b/2ano1/AED/aula08/Person.c @@ -0,0 +1,79 @@ +// A possible solution. +// JMR 2021 + +#include +#include +#include +#include +#include "Person.h" + +// This variable stores the last ID that was assigned to a Person. +// It should be used to assign serial, unique IDs automatically upon creation. +// The first person will have id=1, the second id=2, etc. +static int lastID = 0; + +// Alocate and store a Person. +// Returns the pointer to the new structure. +// (Exits if allocation fails.) +// The names are copied to internally allocated memory. +Person* PersonCreate(const char *fname, const char *lname, int yy, int mm, int dd) { + // SOLUTION + size_t flen = strnlen(fname, 100); + size_t llen = strnlen(lname, 100); + Person* p = (Person*) malloc(sizeof(*p)); + if (p == NULL) { perror("PersonCreate"); exit(2); } + + // Here we decided to allocate space for both strings at once. + char *s = (char*) malloc((flen+llen+2)*sizeof(char)); + if (s == NULL) { free(p); perror("PersonCreate"); exit(2); } + p->id = ++lastID; + p->birthDate.year = (uint16_t)yy; + p->birthDate.month = (uint8_t)mm; + p->birthDate.day = (uint8_t)dd; + p->firstName = s; + p->lastName = s+flen+1; // Use pointer arithmetic to find address! + strcpy(p->firstName, fname); // copy the names + strcpy(p->lastName, lname); + return p; +} + +// Free the memory pointed to by *pp and by the names inside it, +// and invalidate *pp contents. +// Precondition: *pp must not be NULL. +// Postcondition: *pp is set to NULL. +void PersonDestroy(Person* *pp) { + assert(*pp != NULL); + // SOLUTION + free((*pp)->firstName); // free the names + free(*pp); + *pp = NULL; +} + +// Prints a person formatted as "[id, lastname, firstname, birthdate]", +// followed by a suffix string. +void PersonPrintf(Person* p, const char *suffix) { + if (p == NULL) + printf("NULL%s", suffix); + else + printf("(%d, %s, %s, %s)%s", + p->id, p->lastName, p->firstName, + DateFormat(&(p->birthDate), YMD), suffix); +} + +// Compare birth dates of two persons. +// Return a negative/positive integer if p1 was born before/after p2. +// Return zero if p1 and p2 were born on the same date. +int PersonCompareByBirth(const Person *p1, const Person *p2) { + // SOLUTION + return DateCompare(&(p1->birthDate), &(p2->birthDate)); +} + +// Compare two persons by last name, then first name (if last name is the same). +// Return a -/+/0 integer if p1 precedes/succeeds/is equal to p2. +int PersonCompareByLastFirstName(const Person *p1, const Person *p2) { + // SOLUTION + int cmp = strcmp(p1->lastName, p2->lastName); + if (cmp != 0) return cmp; + cmp = strcmp(p1->firstName, p2->firstName); + return cmp; +} diff --git a/2ano1/AED/aula08/Person.h b/2ano1/AED/aula08/Person.h new file mode 100644 index 0000000..d9a7a21 --- /dev/null +++ b/2ano1/AED/aula08/Person.h @@ -0,0 +1,27 @@ + +// JMR, 2021 + +#ifndef _PERSON_ +#define _PERSON_ + +#include "Date.h" + +typedef struct { + int id; + Date birthDate; // this is the actual structure, not a pointer! + char *firstName; + char *lastName; +} Person; + +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd); + +void PersonDestroy(Person **pd); + +void PersonPrintf(Person *p, const char *suffix); + +int PersonCompareByBirth(const Person *p1, const Person *p2); + +int PersonCompareByLastFirstName(const Person *p1, const Person *p2); + +#endif // PERSON diff --git a/2ano1/AED/aula08/PersonSet.c b/2ano1/AED/aula08/PersonSet.c new file mode 100644 index 0000000..c73ffaa --- /dev/null +++ b/2ano1/AED/aula08/PersonSet.c @@ -0,0 +1,234 @@ + +// Complete the functions (marked by ...) +// so that it passes all tests in DateTimeTest. + +#include "PersonSet.h" + +#include +#include +#include +#include + +// Definition of the structure +struct _PersonSet_ { + int capacity; // the current capacity of the array + int size; // the number of elements currently stored + Person **array; // points to an array of pointers to persons +}; + +#define INITIAL_CAPACITY 4 + +// You may add auxiliary definitions and declarations here, if you need to. + +// Create a PersonSet. +PersonSet *PersonSetCreate() { + PersonSet *set = (PersonSet *)malloc(sizeof(struct _PersonSet_)); + + if (set == NULL) { + return NULL; + } + + set->array = (Person **)malloc(sizeof(Person *) * INITIAL_CAPACITY); + + if (set->array == NULL) { + free(set); + return NULL; + } + + set->capacity = INITIAL_CAPACITY; + set->size = 0; + + return set; +} + +// Destroy PersonSet *pps +void PersonSetDestroy(PersonSet **pps) { + assert(*pps != NULL); + + free((*pps)->array); + free(*pps); + *pps = NULL; +} + +int PersonSetSize(const PersonSet *ps) { return ps->size; } + +int PersonSetIsEmpty(const PersonSet *ps) { return ps->size == 0; } + +void PersonSetPrint(const PersonSet *ps) { + printf("{\n"); + for (int i = 0; i < ps->size; i++) { + Person *p = ps->array[i]; + PersonPrintf(p, ";\n"); + } + printf("}(size=%d, capacity=%d)\n", ps->size, ps->capacity); +} + +// Find index in ps->array of person with given id. +// (INTERNAL function.) +static int search(const PersonSet *ps, int id) { + for (int i = 0; i < ps->size; i++) { + if (id == ps->array[i]->id) + return i; + } + + return -1; +} + +// Append person *p to *ps, without verifying presence. +// Use only when sure that *p is not contained in *ps! +// (INTERNAL function.) +static void append(PersonSet *ps, Person *p) { + if (ps->size >= ps->capacity) { + ps->capacity *= 2; + ps->array = (Person **)realloc(ps->array, ps->capacity * sizeof(Person *)); + } + + ps->array[ps->size] = p; + ps->size++; +} + +// Add person *p to *ps. +// Do nothing if *ps already contains a person with the same id. +void PersonSetAdd(PersonSet *ps, Person *p) { + if (search(ps, p->id) >= 0) + return; + + append(ps, p); +} + +// Pop one person out of *ps. +Person *PersonSetPop(PersonSet *ps) { + assert(!PersonSetIsEmpty(ps)); + + return ps->array[--ps->size]; +} + +// Remove the person with given id from *ps, and return it. +// If no such person is found, return NULL and leave set untouched. +Person *PersonSetRemove(PersonSet *ps, int id) { + const int idx = search(ps, id); + + if (idx < 0) + return NULL; + + Person *ret = ps->array[idx]; + memmove(ps->array + idx, ps->array + idx + 1, + (--ps->size - idx) * sizeof(Person *)); + + return ret; +} + +// Get the person with given id of *ps. +// return NULL if it is not in the set. +Person *PersonSetGet(const PersonSet *ps, int id) { + const int idx = search(ps, id); + + if (idx < 0) + return NULL; + + return ps->array[idx]; +} + +// Return true (!= 0) if set contains person wiht given id, false otherwise. +int PersonSetContains(const PersonSet *ps, int id) { + return search(ps, id) >= 0; +} + +// Return a NEW PersonSet with the union of *ps1 and *ps2. +// Return NULL if allocation fails. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetUnion(const PersonSet *ps1, const PersonSet *ps2) { + PersonSet *ps = PersonSetCreate(); + + ps->capacity = ps1->size + ps2->size; + Person **grown_array = + (Person **)realloc(ps->array, ps->capacity * sizeof(Person *)); + + if (grown_array == NULL) { + PersonSetDestroy(&ps); + return NULL; + } + + ps->array = grown_array; + + memcpy(ps->array, ps1->array, ps1->size * sizeof(Person *)); + + ps->size = ps1->size; + + for (int i = 0; i < ps2->size; i++) { + PersonSetAdd(ps, ps2->array[i]); + } + + return ps; +} + +// Return a NEW PersonSet with the intersection of *ps1 and *ps2. +// Return NULL if allocation fails. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetIntersection(const PersonSet *ps1, const PersonSet *ps2) { + PersonSet *ps = PersonSetCreate(); + + ps->capacity = ps1->size; + Person **grown_array = + (Person **)realloc(ps->array, ps->capacity * sizeof(Person *)); + + if (grown_array == NULL) { + PersonSetDestroy(&ps); + return NULL; + } + + ps->array = grown_array; + + for (int i = 0; i < ps1->size; i++) { + Person *person = ps1->array[i]; + if (search(ps2, person->id) >= 0) + append(ps, person); + } + + return ps; +} + +// Return a NEW PersonSet with the set difference of *ps1 and *ps2. +// Return NULL if allocation fails. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetDifference(const PersonSet *ps1, const PersonSet *ps2) { + PersonSet *ps = PersonSetCreate(); + + ps->capacity = ps1->size; + Person **grown_array = + (Person **)realloc(ps->array, ps->capacity * sizeof(Person *)); + + if (grown_array == NULL) { + PersonSetDestroy(&ps); + return NULL; + } + + ps->array = grown_array; + + for (int i = 0; i < ps1->size; i++) { + Person *person = ps1->array[i]; + if (search(ps2, person->id) < 0) + append(ps, person); + } + + return ps; +} + +// Return true iff *ps1 is a subset of *ps2. +int PersonSetIsSubset(const PersonSet *ps1, const PersonSet *ps2) { + for (int i = 0; i < ps1->size; i++) { + Person *person = ps1->array[i]; + if (search(ps2, person->id) < 0) + return 0; + } + + return 1; +} + +// Return true if the two sets contain exactly the same elements. +int PersonSetEquals(const PersonSet *ps1, const PersonSet *ps2) { + if (ps1->size != ps2->size) + return 0; + + return PersonSetIsSubset(ps1, ps2); +} diff --git a/2ano1/AED/aula08/PersonSet.h b/2ano1/AED/aula08/PersonSet.h new file mode 100644 index 0000000..13d7126 --- /dev/null +++ b/2ano1/AED/aula08/PersonSet.h @@ -0,0 +1,30 @@ +#ifndef _PERSONSET_ +#define _PERSONSET_ + +#include "Person.h" + +// Type for sorted sequences: +typedef struct _PersonSet_ PersonSet; + +PersonSet* PersonSetCreate() ; +void PersonSetDestroy(PersonSet **pps) ; +int PersonSetSize(const PersonSet *ps) ; +int PersonSetIsEmpty(const PersonSet *ps) ; +void PersonSetPrint(const PersonSet *ps) ; + +void PersonSetAdd(PersonSet *ps, Person *p) ; +Person* PersonSetPop(PersonSet *ps) ; +Person* PersonSetRemove(PersonSet *ps, int id) ; + +Person *PersonSetGet(const PersonSet *ps, int id) ; +int PersonSetContains(const PersonSet *ps, int id) ; + +PersonSet *PersonSetUnion(const PersonSet *ps1, const PersonSet *ps2) ; +PersonSet *PersonSetIntersection(const PersonSet *ps1, const PersonSet *ps2) ; +PersonSet *PersonSetDifference(const PersonSet *ps1, const PersonSet *ps2) ; + +int PersonSetIsSubset(const PersonSet *ps1, const PersonSet *ps2) ; +int PersonSetEquals(const PersonSet *ps1, const PersonSet *ps2) ; + +#endif + diff --git a/2ano1/AED/aula08/Tests.c b/2ano1/AED/aula08/Tests.c new file mode 100644 index 0000000..3e0a0d3 --- /dev/null +++ b/2ano1/AED/aula08/Tests.c @@ -0,0 +1,160 @@ +// Algoritmos e Estruturas de Dados, November 2023 + +// Run this program with an integer argument such as: ./Tests 8 + +#include +#include +#include + +#include "Person.h" +#include "PersonSet.h" + +// MACRO to print expression X of type int (int X) and its result +#define SHOWint(X) \ + do { \ + printf("%s -> %d\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type string (char* X) and its result +#define SHOWstr(X) \ + do { \ + printf("%s -> %s\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type date (Date* X) and its result +#define SHOWDate(X) \ + do { \ + printf("%s -> %s\n", #X, DateFormat(X, YMD)); \ + } while (0) + +// MACRO to print expression X of type Person and its result +#define SHOWPerson(X) \ + do { \ + printf("%s -> ", #X); \ + PersonPrintf(X, "\n"); \ + } while (0) + +#define SHOWPersonSet(X) \ + do { \ + printf("%s -> ", #X); \ + PersonSetPrint(X); \ + } while (0) + +int main(int argc, char *argv[]) { + int lasttest = 9999; + if (argc > 1) { + lasttest = atoi(argv[1]); // last test to perform + } + srand(lasttest); // Initialize generator for repeatability + int test = 0; + + if (++test > lasttest) return 0; + printf("\n%d) PersonCreate---\n", test); + const int NP = 10; // number of persons + Person *person[NP]; + person[0] = PersonCreate("Eva", "Maia", 1977, 10, 20); + person[1] = PersonCreate("Maria", "Silva", 2003, 12, 30); + person[2] = PersonCreate("Paulo", "Guedes", 2003, 12, 31); + person[3] = PersonCreate("Carlos", "Silva", 1999, 8, 31); + person[4] = PersonCreate("Filipe", "Matos", 2001, 1, 1); + person[5] = PersonCreate("Carla", "Oliveira", 1959, 1, 1); + person[6] = PersonCreate("Vitor", "Maia", 1969, 2, 28); + person[7] = PersonCreate("Olga", "Costa", 1967, 2, 29); + person[8] = PersonCreate("Tiago", "Santos", 1996, 6, 13); + person[9] = PersonCreate("Sara", "Santos", 2007, 3, 1); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetCreate---\n", test); + PersonSet *ps1 = PersonSetCreate(); + PersonSet *ps2 = PersonSetCreate(); + PersonSet *ps3 = PersonSetCreate(); + SHOWint(PersonSetSize(ps1)); + // SHOWint( ps1->capacity ); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetAdd---\n", test); + for (int n = 0; n < 7; n++) { + int i = rand() % NP; + PersonSetAdd(ps1, person[i]); + } + SHOWPersonSet(ps1); + for (int n = 0; n < 5; n++) { + int i = rand() % NP; + PersonSetAdd(ps2, person[i]); + } + SHOWPersonSet(ps2); + for (int n = 0; n < 3; n++) { + int i = rand() % NP; + PersonSetAdd(ps3, person[i]); + } + SHOWPersonSet(ps3); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetRemove---\n", test); + Person *p; + for (int k = 0; k < 2;) { + int id = 1 + rand() % NP; + SHOWint(id); + SHOWPerson(p = PersonSetRemove(ps1, id)); + if (p != NULL) { + k++; + SHOWPersonSet(ps1); + PersonSetAdd(ps1, p); // reinsert removed person + SHOWPersonSet(ps1); + } + } + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetPop---\n", test); + while (!PersonSetIsEmpty(ps3)) { + SHOWPerson(PersonSetPop(ps3)); + } + SHOWPersonSet(ps3); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetGet / Contains---\n", test); + for (int k = 0; k < 4; k++) { + int id = 1 + rand() % NP; + SHOWint(id); + SHOWPerson(PersonSetGet(ps1, id)); + SHOWint(PersonSetContains(ps1, id)); + } + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetUnion/Intersection/Difference---\n", test); + SHOWPersonSet(ps1); + SHOWPersonSet(ps2); + PersonSet *ps4; + SHOWPersonSet(ps4 = PersonSetUnion(ps1, ps2)); + PersonSet *ps5; + SHOWPersonSet(ps5 = PersonSetIntersection(ps1, ps2)); + PersonSet *ps6; + SHOWPersonSet(ps6 = PersonSetIntersection(ps2, ps1)); + PersonSet *ps7; + SHOWPersonSet(ps7 = PersonSetDifference(ps1, ps2)); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetIsSubset/Equals---\n", test); + SHOWint(PersonSetIsSubset(ps5, ps1)); // must be true + SHOWint(PersonSetIsSubset(ps5, ps2)); // must be true + SHOWint(PersonSetIsSubset(ps6, ps2)); // must be false + + SHOWint(PersonSetEquals(ps1, ps2)); // should be false (different sizes) + SHOWint(PersonSetEquals(ps5, ps6)); // must be true + + PersonSetDestroy(&ps1); + PersonSetDestroy(&ps2); + PersonSetDestroy(&ps3); + PersonSetDestroy(&ps4); + PersonSetDestroy(&ps5); + PersonSetDestroy(&ps6); + PersonSetDestroy(&ps7); + + // Free everything + // (If you comment out any of these, valgrind should detect it!) + for (int i = 0; i < NP; i++) { + PersonDestroy(&(person[i])); + } + + return 0; +} diff --git a/2ano1/AED/aula08/ref-12.txt b/2ano1/AED/aula08/ref-12.txt new file mode 100644 index 0000000..0f588e8 --- /dev/null +++ b/2ano1/AED/aula08/ref-12.txt @@ -0,0 +1,153 @@ +==5783== Memcheck, a memory error detector +==5783== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. +==5783== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info +==5783== Command: ./Tests 12 +==5783== + +1) PersonCreate--- + +2) PersonSetCreate--- +PersonSetSize(ps1) -> 0 + +3) PersonSetAdd--- +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(10, Santos, Sara, 2007-03-01); +}(size=6, capacity=8) +ps2 -> { +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5, capacity=8) +ps3 -> { +(8, Costa, Olga, 1967-02-29); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +}(size=3, capacity=4) + +4) PersonSetRemove--- +id -> 5 +p = PersonSetRemove(ps1, id) -> (5, Matos, Filipe, 2001-01-01) +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +}(size=5, capacity=8) +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(5, Matos, Filipe, 2001-01-01); +}(size=6, capacity=8) +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 1 +p = PersonSetRemove(ps1, id) -> (1, Maia, Eva, 1977-10-20) +ps1 -> { +(5, Matos, Filipe, 2001-01-01); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +}(size=5, capacity=8) +ps1 -> { +(5, Matos, Filipe, 2001-01-01); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(1, Maia, Eva, 1977-10-20); +}(size=6, capacity=8) + +5) PersonSetPop--- +PersonSetPop(ps3) -> (9, Santos, Tiago, 1996-06-13) +PersonSetPop(ps3) -> (5, Matos, Filipe, 2001-01-01) +PersonSetPop(ps3) -> (8, Costa, Olga, 1967-02-29) +ps3 -> { +}(size=0, capacity=4) + +6) PersonSetGet / Contains--- +id -> 3 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 9 +PersonSetGet(ps1, id) -> (9, Santos, Tiago, 1996-06-13) +PersonSetContains(ps1, id) -> 1 +id -> 1 +PersonSetGet(ps1, id) -> (1, Maia, Eva, 1977-10-20) +PersonSetContains(ps1, id) -> 1 +id -> 5 +PersonSetGet(ps1, id) -> (5, Matos, Filipe, 2001-01-01) +PersonSetContains(ps1, id) -> 1 + +7) PersonSetUnion/Intersection/Difference--- +ps1 -> { +(5, Matos, Filipe, 2001-01-01); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(1, Maia, Eva, 1977-10-20); +}(size=6, capacity=8) +ps2 -> { +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5, capacity=8) +ps4 = PersonSetUnion(ps1, ps2) -> { +(5, Matos, Filipe, 2001-01-01); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(1, Maia, Eva, 1977-10-20); +(8, Costa, Olga, 1967-02-29); +}(size=7, capacity=8) +ps5 = PersonSetIntersection(ps1, ps2) -> { +(5, Matos, Filipe, 2001-01-01); +(10, Santos, Sara, 2007-03-01); +(9, Santos, Tiago, 1996-06-13); +(4, Silva, Carlos, 1999-08-31); +}(size=4, capacity=4) +ps6 = PersonSetIntersection(ps2, ps1) -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=4, capacity=4) +ps7 = PersonSetDifference(ps1, ps2) -> { +(6, Oliveira, Carla, 1959-01-01); +(1, Maia, Eva, 1977-10-20); +}(size=2, capacity=4) + +8) PersonSetIsSubset/Equals--- +PersonSetIsSubset(ps5, ps1) -> 1 +PersonSetIsSubset(ps5, ps2) -> 1 +PersonSetIsSubset(ps6, ps2) -> 1 +PersonSetEquals(ps1, ps2) -> 0 +PersonSetEquals(ps5, ps6) -> 1 +==5783== +==5783== HEAP SUMMARY: +==5783== in use at exit: 0 bytes in 0 blocks +==5783== total heap usage: 38 allocs, 38 frees, 4,986 bytes allocated +==5783== +==5783== All heap blocks were freed -- no leaks are possible +==5783== +==5783== For lists of detected and suppressed errors, rerun with: -s +==5783== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) diff --git a/2ano1/AED/aula08/ref-14.txt b/2ano1/AED/aula08/ref-14.txt new file mode 100644 index 0000000..f3caa80 --- /dev/null +++ b/2ano1/AED/aula08/ref-14.txt @@ -0,0 +1,151 @@ +==5785== Memcheck, a memory error detector +==5785== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. +==5785== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info +==5785== Command: ./Tests 14 +==5785== + +1) PersonCreate--- + +2) PersonSetCreate--- +PersonSetSize(ps1) -> 0 + +3) PersonSetAdd--- +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(2, Silva, Maria, 2003-12-30); +(9, Santos, Tiago, 1996-06-13); +(8, Costa, Olga, 1967-02-29); +}(size=5, capacity=8) +ps2 -> { +(1, Maia, Eva, 1977-10-20); +(10, Santos, Sara, 2007-03-01); +(7, Maia, Vitor, 1969-02-28); +(9, Santos, Tiago, 1996-06-13); +(5, Matos, Filipe, 2001-01-01); +}(size=5, capacity=8) +ps3 -> { +(1, Maia, Eva, 1977-10-20); +(7, Maia, Vitor, 1969-02-28); +}(size=2, capacity=4) + +4) PersonSetRemove--- +id -> 6 +p = PersonSetRemove(ps1, id) -> NULL +id -> 7 +p = PersonSetRemove(ps1, id) -> NULL +id -> 7 +p = PersonSetRemove(ps1, id) -> NULL +id -> 6 +p = PersonSetRemove(ps1, id) -> NULL +id -> 2 +p = PersonSetRemove(ps1, id) -> (2, Silva, Maria, 2003-12-30) +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=4, capacity=8) +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +(2, Silva, Maria, 2003-12-30); +}(size=5, capacity=8) +id -> 1 +p = PersonSetRemove(ps1, id) -> NULL +id -> 10 +p = PersonSetRemove(ps1, id) -> NULL +id -> 10 +p = PersonSetRemove(ps1, id) -> NULL +id -> 9 +p = PersonSetRemove(ps1, id) -> (9, Santos, Tiago, 1996-06-13) +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(2, Silva, Maria, 2003-12-30); +}(size=4, capacity=8) +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(2, Silva, Maria, 2003-12-30); +(9, Santos, Tiago, 1996-06-13); +}(size=5, capacity=8) + +5) PersonSetPop--- +PersonSetPop(ps3) -> (7, Maia, Vitor, 1969-02-28) +PersonSetPop(ps3) -> (1, Maia, Eva, 1977-10-20) +ps3 -> { +}(size=0, capacity=4) + +6) PersonSetGet / Contains--- +id -> 1 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 3 +PersonSetGet(ps1, id) -> (3, Guedes, Paulo, 2003-12-31) +PersonSetContains(ps1, id) -> 1 +id -> 1 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 5 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 + +7) PersonSetUnion/Intersection/Difference--- +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(2, Silva, Maria, 2003-12-30); +(9, Santos, Tiago, 1996-06-13); +}(size=5, capacity=8) +ps2 -> { +(1, Maia, Eva, 1977-10-20); +(10, Santos, Sara, 2007-03-01); +(7, Maia, Vitor, 1969-02-28); +(9, Santos, Tiago, 1996-06-13); +(5, Matos, Filipe, 2001-01-01); +}(size=5, capacity=8) +ps4 = PersonSetUnion(ps1, ps2) -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(2, Silva, Maria, 2003-12-30); +(9, Santos, Tiago, 1996-06-13); +(1, Maia, Eva, 1977-10-20); +(10, Santos, Sara, 2007-03-01); +(7, Maia, Vitor, 1969-02-28); +(5, Matos, Filipe, 2001-01-01); +}(size=9, capacity=16) +ps5 = PersonSetIntersection(ps1, ps2) -> { +(9, Santos, Tiago, 1996-06-13); +}(size=1, capacity=4) +ps6 = PersonSetIntersection(ps2, ps1) -> { +(9, Santos, Tiago, 1996-06-13); +}(size=1, capacity=4) +ps7 = PersonSetDifference(ps1, ps2) -> { +(4, Silva, Carlos, 1999-08-31); +(3, Guedes, Paulo, 2003-12-31); +(8, Costa, Olga, 1967-02-29); +(2, Silva, Maria, 2003-12-30); +}(size=4, capacity=4) + +8) PersonSetIsSubset/Equals--- +PersonSetIsSubset(ps5, ps1) -> 1 +PersonSetIsSubset(ps5, ps2) -> 1 +PersonSetIsSubset(ps6, ps2) -> 1 +PersonSetEquals(ps1, ps2) -> 0 +PersonSetEquals(ps5, ps6) -> 1 +==5785== +==5785== HEAP SUMMARY: +==5785== in use at exit: 0 bytes in 0 blocks +==5785== total heap usage: 39 allocs, 39 frees, 5,114 bytes allocated +==5785== +==5785== All heap blocks were freed -- no leaks are possible +==5785== +==5785== For lists of detected and suppressed errors, rerun with: -s +==5785== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) diff --git a/2ano1/AED/aula10/BSTree.c b/2ano1/AED/aula10/BSTree.c new file mode 100644 index 0000000..0757321 --- /dev/null +++ b/2ano1/AED/aula10/BSTree.c @@ -0,0 +1,564 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Binary Search Tree storing pointers to items --- BALANCED TREE version +// + +//// SEARCH ... AND COMPLETE //// + +#include "BSTree.h" +#include "PointersQueue.h" + +#include +#include +#include + +#define MAX(a, b) (a > b ? a : b) + +struct _BSTreeNode { + void *item; + struct _BSTreeNode *left; + struct _BSTreeNode *right; + int height; +}; + +struct _BSTreeHeader { + unsigned int numNodes; + struct _BSTreeNode *root; + compFunc compare; + printFunc print; +}; + +BSTree *BSTreeCreate(compFunc compF, printFunc printF) { + BSTree *t = (BSTree *)malloc(sizeof(struct _BSTreeHeader)); + if (t == NULL) + abort(); + + t->numNodes = 0; + t->root = NULL; + t->compare = compF; + t->print = printF; + return t; +} + +static void _treeDestroy(struct _BSTreeNode **pRoot) { + struct _BSTreeNode *root = *pRoot; + + if (root == NULL) + return; + + _treeDestroy(&(root->left)); + _treeDestroy(&(root->right)); + free(root); + + *pRoot = NULL; +} +// Q: What kind of tree traversal is this function doing? +// 1) Breadth-first, +// 2) Depth-first pre-order, +// 3) Depth-first in-order or +// 4) Depth-first post-order? +// A: ... +// Q: Is this the best order here? Why? +// A: ... + +void BSTreeDestroy(BSTree **pHeader) { + BSTree *header = *pHeader; + if (header == NULL) + return; + + _treeDestroy(&(header->root)); + + free(header); + + *pHeader = NULL; +} + +// GETTERS + +int BSTreeIsEmpty(const BSTree *header) { + assert(header != NULL); + return header->root == NULL; +} + +unsigned int BSTreeGetNumberOfNodes(const BSTree *header) { + assert(header != NULL); + return header->numNodes; +} + +// Compute the height of the (sub-)tree whose root node is root. +// (Internal RECURSIVE function, that can be used for checking.) +static int _treeGetHeightREC(const struct _BSTreeNode *root) { + if (root == NULL) + return -1; + + const int child_height = + MAX(_treeGetHeightREC(root->left), _treeGetHeightREC(root->right)); + + return 1 + child_height; +} + +// Internal function that acccesses the height field, if the node exists +static int _treeGetHeight(const struct _BSTreeNode *root) { + if (root == NULL) { + return -1; + } + return root->height; +} + +// Returns the tree height. +// An EMPTY TREE has height=-1 +// and a tree with a single node has height=0. +int BSTreeGetHeight(const BSTree *header) { + assert(header != NULL); + return _treeGetHeight(header->root); +} + +// Finds and returns the smallest item stored in the tree. +// Requires that the tree is not empty. +void *BSTreeGetMin(const BSTree *header) { + assert(header != NULL); + assert(!BSTreeIsEmpty(header)); + + const struct _BSTreeNode *current = header->root; + + if (current == NULL) + return NULL; + + while (current->left != NULL) + current = current->left; + + return current->item; +} + +// Finds and returns the largest item stored in the (sub-)tree rooted in the +// root node. +// (Înternal function called by BSTreeGetMax.) +static void *_treeGetMax(const struct _BSTreeNode *root) { + assert(root != NULL); + + if (root->right == NULL) + return root->item; + + return _treeGetMax(root->right); +} + +// Finds and returns the largest item stored in the tree. +// Requires that the tree is not empty. +void *BSTreeGetMax(const BSTree *header) { + assert(header != NULL); + assert(!BSTreeIsEmpty(header)); + + return _treeGetMax(header->root); // calls the internal recursive function +} + +// Search a tree item. +// Returns a pointer to the item instance stored in the tree +// or NULL, if the item is not found. +void *BSTreeSearch(const BSTree *header, const void *item) { + assert(header != NULL); + assert(item != NULL); + + struct _BSTreeNode *current = header->root; + while (current != NULL) { + const int res = header->compare(item, current->item); + if (res == 0) { + return current->item; + } else if (res > 0) { + current = current->right; + } else { + current = current->left; + } + } + return NULL; +} + +// Does the tree contain an element that compares==0 with this item? +int BSTreeContains(const BSTree *header, const void *item) { + return BSTreeSearch(header, item) != NULL; +} + +// Applies the function function to every tree item. +// (Internal function used in BSTreeTraverseINOrder.) +static void _treeTraverseINOrder(struct _BSTreeNode *root, + void (*function)(void *p)) { + if (root == NULL) + return; + _treeTraverseINOrder(root->left, function); + function(root->item); + _treeTraverseINOrder(root->right, function); +} + +// Applies the function function to every tree item. +void BSTreeTraverseINOrder(BSTree *header, void (*function)(void *p)) { + assert(header != NULL); + _treeTraverseINOrder(header->root, function); +} + +// +// Internal functions the keep the TREE BALANCED +// + +static void _updateNodeHeight(struct _BSTreeNode *t) { + assert(t != NULL); + + int leftHeight = _treeGetHeight(t->left); + int rightHeight = _treeGetHeight(t->right); + + t->height = 1 + (leftHeight >= rightHeight ? leftHeight : rightHeight); +} + +static void _singleRotateWithLeftChild(struct _BSTreeNode **p) { + struct _BSTreeNode *pLeft = (*p)->left; + + (*p)->left = pLeft->right; + pLeft->right = *p; + + _updateNodeHeight(*p); + _updateNodeHeight(pLeft); + + *p = pLeft; +} + +static void _singleRotateWithRightChild(struct _BSTreeNode **p) { + struct _BSTreeNode *pRight = (*p)->right; + + (*p)->right = pRight->left; + pRight->left = *p; + + _updateNodeHeight(*p); + _updateNodeHeight(pRight); + + *p = pRight; +} + +static void _doubleRotateWithLeftChild(struct _BSTreeNode **p) { + _singleRotateWithRightChild(&(*p)->left); + _singleRotateWithLeftChild(p); +} + +static void _doubleRotateWithRightChild(struct _BSTreeNode **p) { + _singleRotateWithLeftChild(&(*p)->right); + _singleRotateWithRightChild(p); +} + +static void _balanceNode(struct _BSTreeNode **pRoot) { + int leftHeight, rightHeight; + + if (*pRoot == NULL) + return; + leftHeight = _treeGetHeight((*pRoot)->left); + rightHeight = _treeGetHeight((*pRoot)->right); + + if (leftHeight - rightHeight == 2) { + leftHeight = _treeGetHeight((*pRoot)->left->left); + rightHeight = _treeGetHeight((*pRoot)->left->right); + if (leftHeight >= rightHeight) + _singleRotateWithLeftChild(pRoot); + else + _doubleRotateWithLeftChild(pRoot); + } else if (rightHeight - leftHeight == 2) { + rightHeight = _treeGetHeight((*pRoot)->right->right); + leftHeight = _treeGetHeight((*pRoot)->right->left); + if (rightHeight >= leftHeight) + _singleRotateWithRightChild(pRoot); + else + _doubleRotateWithRightChild(pRoot); + } else + (*pRoot)->height = + 1 + (leftHeight > rightHeight ? leftHeight : rightHeight); +} + +// Operations with items + +// Internal recursive function + +static int _BSTreeAdd(struct _BSTreeNode **pRoot, compFunc compF, void *item) { + struct _BSTreeNode *root = *pRoot; + + if (root == NULL) { + root = (struct _BSTreeNode *)malloc(sizeof(*root)); + if (root == NULL) + abort(); + + root->item = item; + root->left = root->right = NULL; + root->height = 0; + + *pRoot = root; + return 1; + } + + // Compare with current node + int comp = compF(item, root->item); + + if (comp < 0) { + // Try to insert on the left + if (_BSTreeAdd(&(root->left), compF, item) == 0) { + // No success + return 0; + } + + // Unbalanced on the left ? + if (_treeGetHeight(root->left) - _treeGetHeight(root->right) == 2) { + if (compF(item, root->left->item) < 0) { + _singleRotateWithLeftChild(pRoot); + } else { + _doubleRotateWithLeftChild(pRoot); + } + } + _updateNodeHeight(root); + return 1; + } else if (comp > 0) { + // Try to insert on the right + if (_BSTreeAdd(&(root->right), compF, item) == 0) { + return 0; + } + + // Unbalanced on the right ? + if (_treeGetHeight(root->right) - _treeGetHeight(root->left) == 2) { + if (compF(item, root->right->item) > 0) { + _singleRotateWithRightChild(pRoot); + } else { + _doubleRotateWithRightChild(pRoot); + } + } + _updateNodeHeight(root); + return 1; + } else { // (comp == 0) + // Not allowed + return 0; + } +} + +// Adds an item to the tree. +// Returns 1 (success) if the item was added +// or 0 (fail) if the item collides with an already existing item. +int BSTreeAdd(BSTree *header, void *item) { + assert(header != NULL); + + if (_BSTreeAdd(&(header->root), header->compare, item) == 1) { + header->numNodes++; + return 1; + } + return 0; +} + +// Internal auxiliary function + +static void _deleteNextNode(struct _BSTreeNode **pRoot, void **pItem) { + if ((*pRoot)->left == NULL) { + // FOUND IT + struct _BSTreeNode *auxPointer = *pRoot; + *pItem = auxPointer->item; + *pRoot = auxPointer->right; + free(auxPointer); + } else { + _deleteNextNode(&((*pRoot)->left), pItem); + _updateNodeHeight(*pRoot); + } +} + +// This internal function removes the node pointed to by *pPointer. +// Note that pPointer is the address of a variable that points to the node to +// be removed. When it removes the node, it also sets that variable to NULL. +// That variable is either the root field of the _BSTreeHeader struct or +// the left or the right field of the parent _BSTreeNode struct. +// (Pointing to fields inside a struct is something you cannot do in Java.) +static void _removeNode(struct _BSTreeNode **pPointer) { + struct _BSTreeNode *nodePointer = *pPointer; + + if ((nodePointer->left == NULL) && (nodePointer->right == NULL)) { + /* A LEAF node */ + free(nodePointer); // FREE it and + *pPointer = NULL; // SET field in parent node (or header) to NULL + } else if (nodePointer->left == NULL) { + /* It has only a RIGHT sub-tree */ + *pPointer = nodePointer->right; + free(nodePointer); + } else if (nodePointer->right == NULL) { + /* It has only a LEFT sub-tree */ + *pPointer = nodePointer->left; + free(nodePointer); + } else { + /* Node has TWO CHILDREN */ + /* Replace its item with the item of the next node in-order */ + /* And remove that node */ + _deleteNextNode(&(nodePointer->right), &(nodePointer->item)); + } +} + +static int _treeRemoveItem(struct _BSTreeNode **pRoot, const void *item, + compFunc compare) { + struct _BSTreeNode *root = *pRoot; + + if (root == NULL) { + return 0; + } + int result; + int cmp = compare(item, root->item); + if (cmp < 0) { + result = _treeRemoveItem(&(root->left), item, compare); + } else if (cmp > 0) { + result = _treeRemoveItem(&(root->right), item, compare); + } else { // (cmp == 0) + _removeNode(pRoot); + result = 1; + } + if (result) { + _balanceNode(pRoot); // Balance at this node + } + return result; +} + +int BSTreeRemove(BSTree *header, const void *item) { + assert(header != NULL); + + if (_treeRemoveItem(&(header->root), item, header->compare) == 1) { + header->numNodes--; + return 1; + } + return 0; +} + +// Internal function required by BSTreeGetItems + +// Traverses the tree recursively and adds the items to a QUEUE. +static void _BSTreeAddItems(const struct _BSTreeNode *p, Queue *q) { + if (p == NULL) { + return; + } + + _BSTreeAddItems(p->left, q); + QueueEnqueue(q, p->item); + _BSTreeAddItems(p->right, q); +} +// Q: What kind of tree traversal is this function doing? +// 1) Breadth-first, +// 2) Depth-first pre-order, +// 3) Depth-first in-order or +// 4) Depth-first post-order? +// A: ... +// Q: Is this the required order here? Why? +// A: ... + +// Returns a QUEUE with the ordered tree elements +// or an EMPTY QUEUE, if the tree is empty. +// The function ALLOCATES MEMORY for the QUEUE, that will have to be freed +// by the calling function. +Queue *BSTreeGetItems(const BSTree *header) { + assert(header != NULL); + + Queue *itemsQ = QueueCreate(); + assert(itemsQ != NULL); + _BSTreeAddItems(header->root, itemsQ); + return itemsQ; +} + +// Tree Visualization + +static void _treeView(struct _BSTreeNode *root, int level, const char *edge, + printFunc print) { + if (root == NULL) { + printf("%*s%s\n", 4 * level, edge, "#"); // # represents NULL pointer + } else { + _treeView(root->left, level + 1, "/", print); + printf("%*s[%d]", 4 * level, edge, root->height); + print(root->item); + printf("\n"); + _treeView(root->right, level + 1, "\\", print); + } +} + +void BSTreeView(const BSTree *header) { + _treeView(header->root, 0, ":", header->print); // : marks the root + printf("numNodes: %d\n", header->numNodes); +} + +// +// Tests - Auxiliary Functions +// + +static unsigned int _BSTreeCountNodes(const struct _BSTreeNode *root) { + if (root == NULL) { + return 0; + } + return 1 + _BSTreeCountNodes(root->left) + _BSTreeCountNodes(root->right); +} + +static int _BSTreeCheckNodesHeight(const struct _BSTreeNode *root) { + if (root == NULL) { + return 1; + } + if (_BSTreeCheckNodesHeight(root->left) == 0) { + return 0; + } + if (_BSTreeCheckNodesHeight(root->right) == 0) { + return 0; + } + return root->height == _treeGetHeightREC(root); +} + +static int _BSTreeIsBalanced(const struct _BSTreeNode *root) { + if (root == NULL) { + return 1; + } + if (_BSTreeIsBalanced(root->left) == 0) { + return 0; + } + if (_BSTreeIsBalanced(root->right) == 0) { + return 0; + } + // Fator de equilíbrio na raiz + int F = _treeGetHeight(root->right) - _treeGetHeight(root->left); + int ok = (-1 <= F && F <= 1); + return ok; +} + +int _isBST(struct _BSTreeNode *root, compFunc compF, + struct _BSTreeNode **previous) { + if (root == NULL) { + return 1; + } + + // IN_ORDER TRAVERSAL + if (_isBST(root->left, compF, previous) == 0) { + return 0; + } + + // Allow only distinct valued nodes + if (*previous != NULL && compF(root->item, (*previous)->item) <= 0) { + return 0; + } + // Update previous to current + *previous = root; + + return _isBST(root->right, compF, previous); +} + +int BSTreeIsBST(const BSTree *header) { + struct _BSTreeNode *p = NULL; + return _isBST(header->root, header->compare, &p); +} + +void BSTreeTestInvariants(const BSTree *header) { + // check equivalence: numNodes==0 <=> root==NULL + assert((header->numNodes == 0) == (header->root == NULL)); + // check equivalence: numNodes>0 <=> root!=NULL + assert((header->numNodes > 0) == (header->root != NULL)); + // check equivalence: numNodes==0 <=> height = -1 + assert((header->numNodes == 0) == (BSTreeGetHeight(header) == -1)); + // check equivalence: numNodes==1 <=> height = 0 + assert((header->numNodes == 1) == (BSTreeGetHeight(header) == 0)); + // check equivalence: numNodes>1 <=> height > 0 + assert((header->numNodes > 1) == (BSTreeGetHeight(header) > 0)); + // Number of nodes ? + assert(header->numNodes == _BSTreeCountNodes(header->root)); + // Height of each node ? + assert((header->root == NULL) || + (_BSTreeCheckNodesHeight(header->root) == 1)); + // Is BST ? + assert(BSTreeIsBST(header) == 1); + // Is BALANCED ? + assert(_BSTreeIsBalanced(header->root) == 1); +} diff --git a/2ano1/AED/aula10/BSTree.h b/2ano1/AED/aula10/BSTree.h new file mode 100644 index 0000000..860b4a2 --- /dev/null +++ b/2ano1/AED/aula10/BSTree.h @@ -0,0 +1,66 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Binary Search Tree storing pointers to items --- BALANCED TREE version +// + +#ifndef _BINARY_SEARCH_Tree_ +#define _BINARY_SEARCH_Tree_ + +#include "PointersQueue.h" + +// The Binary Search Tree type + +typedef struct _BSTreeHeader BSTree; + +// The type for item comparator functions + +typedef int (*compFunc)(const void* p1, const void* p2); + +// The type for item printer functions + +typedef void (*printFunc)(void* p); + +// The BSTree constructor/destructor + +BSTree* BSTreeCreate(compFunc compF, printFunc printF); + +void BSTreeDestroy(BSTree** pHeader); + +// BSTree properties and getters + +int BSTreeIsEmpty(const BSTree* header); + +unsigned int BSTreeGetNumberOfNodes(const BSTree* header); + +int BSTreeGetHeight(const BSTree* header); + +void* BSTreeGetMin(const BSTree* header); + +void* BSTreeGetMax(const BSTree* header); + +void* BSTreeSearch(const BSTree* header, const void* item); + +int BSTreeContains(const BSTree* header, const void* item); + +// Recursive Traversal + +void BSTreeTraverseINOrder(BSTree* header, void (*function)(void* p)); + +// Operations with items + +int BSTreeAdd(BSTree* header, void* item); + +int BSTreeRemove(BSTree* header, const void* item); + +Queue* BSTreeGetItems(const BSTree* header); + +// Tree visualization (nice for debugging) + +void BSTreeView(const BSTree* header); + +// Check some invariants BSTree* header + +void BSTreeTestInvariants(const BSTree* header); + +#endif // _BINARY_SEARCH_Tree_ diff --git a/2ano1/AED/aula10/BSTreeTest.c b/2ano1/AED/aula10/BSTreeTest.c new file mode 100644 index 0000000..c1f18f5 --- /dev/null +++ b/2ano1/AED/aula10/BSTreeTest.c @@ -0,0 +1,104 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// TESTING the TAD BST implementation +// + +#include +#include +#include + +#include "BSTree.h" + +// Storing pointers to integers + +// The comparator for integer items +int comparator(const void* p1, const void* p2) { + int d = *(int*)p1 - *(int*)p2; + return (d > 0) - (d < 0); +} + +// The printer for integer items +void printer(void* p) { printf("%d ", *(int*)p); } + +int main(void) { + BSTree* t1 = BSTreeCreate(comparator, printer); + + printf("CREATED AN EMPTY TREE\n"); + + printf("%d elements\n", BSTreeGetNumberOfNodes(t1)); + printf("height = %d\n", BSTreeGetHeight(t1)); + + printf("\nINSERTING\n"); + // Numbers to insert: + int nums[] = {8, 4, 9, (4), 3, 1, 10, 0, 2, 5, 7, (8), 6}; + int size = sizeof(nums) / sizeof(*nums); + + for (int i = 0; i < size; i++) { + int* aux = &(nums[i]); + int ok = BSTreeAdd(t1, aux); + printf("BSTreeAdd(t1, &(%d)) -> %d\n", *aux, ok); + BSTreeView(t1); + BSTreeTestInvariants(t1); + } + printf("\nFINISHED INSERTING\n"); + + printf("\nQUERY FUNCTIONS\n"); + printf("NumElements = %d\n", BSTreeGetNumberOfNodes(t1)); + printf("Height = %d\n", BSTreeGetHeight(t1)); + printf("Min = %d\n", *((int*)BSTreeGetMin(t1))); + printf("Max = %d\n", *((int*)BSTreeGetMax(t1))); + + printf("\nTREE CONTAINS\n"); + for (int n = -1; n < size + 3; n += 3) { + int ok = BSTreeContains(t1, &n); + printf("BSTreeContains(t1, &(%d)) -> %d\n", n, ok); + } + + printf("\nTRAVERSE\n"); + BSTreeTraverseINOrder(t1, printer); + printf("\n"); + + printf("\nTRAVERSE with BSTreeGetItems\n"); + Queue* q = BSTreeGetItems(t1); + while (!QueueIsEmpty(q)) { + int* aux = (int*)QueueDequeue(q); + printf("%d ", *aux); + } + printf("\n"); + QueueDestroy(&q); + + printf("\nREMOVING items using their VALUE\n"); + for (int i = 1; i < size; i += 2) { + int* aux = &(nums[i]); + int ok = BSTreeRemove(t1, aux); + printf("BSTreeRemove(t1, &(%d)) -> %d\n", *aux, ok); + BSTreeView(t1); + BSTreeTestInvariants(t1); + } + printf("\nFINISHED REMOVING\n"); + + printf("%d elements\n", BSTreeGetNumberOfNodes(t1)); + printf("height = %d\n", BSTreeGetHeight(t1)); + BSTreeTraverseINOrder(t1, printer); + printf("\n"); + + printf("\nREMOVING remaining items in decreasing order\n"); + while (BSTreeGetNumberOfNodes(t1) > 0) { + int* aux = (int*)BSTreeGetMax(t1); + int ok = BSTreeRemove(t1, aux); + printf("BSTreeRemove(t1, &(%d)) -> %d\n", *aux, ok); + BSTreeView(t1); + BSTreeTestInvariants(t1); + } + printf("\nFINISHED REMOVING\n"); + + printf("%d elements\n", BSTreeGetNumberOfNodes(t1)); + printf("height = %d\n", BSTreeGetHeight(t1)); + BSTreeTraverseINOrder(t1, printer); + printf("\n"); + + BSTreeDestroy(&t1); + + return 0; +} diff --git a/2ano1/AED/aula10/Date.c b/2ano1/AED/aula10/Date.c new file mode 100644 index 0000000..bbf3959 --- /dev/null +++ b/2ano1/AED/aula10/Date.c @@ -0,0 +1,150 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +#include "Date.h" + +#include +#include +#include + +const Date DateMIN = {0, 1, 1}; +const Date DateMAX = {9999, 12, 31}; + +// Check if a yy,mm,dd tuple forms a valid date. +// (This would be a public static method in Java.) +int DateIsValid(int yy, int mm, int dd) { + return (DateMIN.year) <= yy && yy <= (DateMAX.year) && 1 <= mm && mm <= 12 && + 1 <= dd && dd <= DateDaysInMonth(yy, mm); +} + +// Function to test desired internal invariant for valid Date values: +// the Date should contain valid year,month,day fields. +static int invariant(Date* d) { return DateIsValid(d->year, d->month, d->day); } + +// Alocate and store a date given by yy, mm, dd integers. +// (yy, mm, dd) are required to form a valid date. +// Returns the pointer to the new date structure. +// (Exits if allocation fails.) +Date* DateCreate(int yy, int mm, int dd) { + assert(DateIsValid(yy, mm, dd)); + // SOLUTION + Date* d = (Date*)malloc(sizeof(*d)); + if (d == NULL) { + perror("DateCreate"); + exit(2); + } + d->year = (uint16_t)yy; + d->month = (uint8_t)mm; + d->day = (uint8_t)dd; + assert(invariant(d)); // check invariant + return d; +} + +// Free the memory pointed to by *pd and invalidate *pd contents. +// Precondition: *pd must not be NULL. +// Postcondition: *pd is set to NULL. +void DateDestroy(Date** pd) { + assert(*pd != NULL); + // SOLUTION + free(*pd); + *pd = NULL; +} + +// table of month lengths in common and leap years +static const uint8_t monthLength[][12] = { + {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, + {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}}; + +int DateDaysInMonth(int yy, int mm) { + int isLeap = DateIsLeapYear(yy); + return monthLength[isLeap][mm - 1]; +} + +int DateIsLeapYear(int yy) { + return (yy % 4 == 0 && yy % 100 != 0) || yy % 400 == 0; +} + +static char* fmts[] = { + (char*)"%04d-%02d-%02d", // YMD + (char*)"%3$02d/%2$02d/%1$04d", // DMY + (char*)"%2$02d/%3$02d/%1$04d", // MDY +}; + +static char strBuffer[64]; + +// Return a formatted string representation of date d. +// Careful: the string buffer will be overwritten by the next call. +// You should strcpy or strdup the result if you need persistence! +char* DateFormat(const Date* d, int FMT) { + if (d == NULL) + snprintf(strBuffer, sizeof(strBuffer), "NULL"); + else + snprintf(strBuffer, sizeof(strBuffer), fmts[FMT], d->year, d->month, + d->day); + return strBuffer; +} + +// Parse str according to format and fill in *d. +// Return 1 and update *d if str contains a correctly formatted and valid date. +// Return 0 and leave *d untouched, otherwise. +int DateParse(Date* d, const char* str, int FMT) { + int yy, mm, dd; + int n = sscanf(str, fmts[FMT], &yy, &mm, &dd); + if (!(n == 3 && DateIsValid(yy, mm, dd))) return 0; + d->year = yy; + d->month = mm; + d->day = dd; + return 1; +} + +// Compare dates a and b. +// Return an integer >0 if a>b, 0 if a==b and <0 if ayear - (int)b->year; + if (r != 0) return r; + r = (int)a->month - (int)b->month; + if (r != 0) return r; + r = (int)a->day - (int)b->day; + return r; +} + +// Increment date. +// Precondition: d must precede DateMAX. +void DateIncr(Date* d) { + assert(DateCompare(d, &DateMAX) < 0); + // SOLUTION + if ((int)d->day < DateDaysInMonth((int)(d->year), (int)(d->month))) { + d->day++; + } else { + d->day = 1; + if ((int)d->month < 12) { + d->month++; + } else { + d->month = 1; + d->year++; + } + } + assert(invariant(d)); // check invariant +} + +// Decrement date. +// Precondition: d must succeed DateMIN. +void DateDecr(Date* d) { + assert(DateCompare(d, &DateMIN) > 0); + // SOLUTION + if ((int)d->day > 1) { + d->day--; + } else { + // decrMonth + if ((int)d->month > 1) { + d->month--; + } else { + d->year--; + d->month = (uint8_t)12; + } + d->day = DateDaysInMonth((int)(d->year), (int)(d->month)); + } + assert(invariant(d)); // check invariant +} diff --git a/2ano1/AED/aula10/Date.h b/2ano1/AED/aula10/Date.h new file mode 100644 index 0000000..7d13cf0 --- /dev/null +++ b/2ano1/AED/aula10/Date.h @@ -0,0 +1,48 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +#ifndef _DATE_ +#define _DATE_ + +#include + +struct _date { + uint16_t year; + uint8_t month; + uint8_t day; +}; + +// The Date type. (To be used in clients.) +typedef struct _date Date; + +// Constants +extern const Date DateMIN; +extern const Date DateMAX; + +// Macros to select date format +#define YMD 0 +#define DMY 1 +#define MDY 2 + +Date* DateCreate(int yy, int mm, int dd); + +void DateDestroy(Date** pd); + +int DateIsValid(int yy, int mm, int dd); + +int DateDaysInMonth(int yy, int mm); + +int DateIsLeapYear(int yy); + +char* DateFormat(const Date* d, int FMT); + +int DateParse(Date* d, const char* str, int FMT); + +int DateCompare(const Date* a, const Date* b); + +void DateIncr(Date* d); + +void DateDecr(Date* d); + +#endif //_DATE_ diff --git a/2ano1/AED/aula10/Makefile b/2ano1/AED/aula10/Makefile new file mode 100644 index 0000000..4874e89 --- /dev/null +++ b/2ano1/AED/aula10/Makefile @@ -0,0 +1,39 @@ +# To compile all programs, run: +# make +# +# AED ua.pt 2023 + +# Options for the C compiler. +CFLAGS += -g -Wall -Wextra + +TARGETS = BSTreeTest Tests + +all: $(TARGETS) + +clean: + rm -f *.o + rm -f $(TARGETS) + +# Object file dependencies (obtained with `gcc -MM *.c`): + +BSTree.o: BSTree.c BSTree.h PointersQueue.h +BSTreeTest.o: BSTreeTest.c BSTree.h PointersQueue.h +Date.o: Date.c Date.h +Person.o: Person.c Person.h Date.h +PersonSet.o: PersonSet.c PersonSet.h Person.h Date.h BSTree.h PointersQueue.h +PointersQueue.o: PointersQueue.c PointersQueue.h +Tests.o: Tests.c Person.h Date.h PersonSet.h + +# Executable file dependencies: + +BSTreeTest: BSTreeTest.o BSTree.o PointersQueue.o + +Tests: Tests.o PersonSet.o BSTree.o PointersQueue.o Person.o Date.o + +# make tst # to run program twice and log outputs + +tst: tst-12.txt tst-14.txt + +tst-%.txt: Tests + valgrind --log-fd=1 ./Tests $* > $@ + diff --git a/2ano1/AED/aula10/Person.c b/2ano1/AED/aula10/Person.c new file mode 100644 index 0000000..b4eb9b1 --- /dev/null +++ b/2ano1/AED/aula10/Person.c @@ -0,0 +1,88 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +#include "Person.h" + +#include +#include +#include +#include + +// This variable stores the last ID that was assigned to a Person. +// It should be used to assign serial, unique IDs automatically upon creation. +// The first person will have id=1, the second id=2, etc. +static int lastID = 0; + +// Alocate and store a Person. +// Returns the pointer to the new structure. +// (Exits if allocation fails.) +// The names are copied to internally allocated memory. +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd) { + // SOLUTION + size_t flen = strnlen(fname, 100); + size_t llen = strnlen(lname, 100); + Person *p = (Person *)malloc(sizeof(*p)); + if (p == NULL) { + perror("PersonCreate"); + exit(2); + } + + // Here we decided to allocate space for both strings at once. + char *s = (char *)malloc((flen + llen + 2) * sizeof(char)); + if (s == NULL) { + free(p); + perror("PersonCreate"); + exit(2); + } + p->id = ++lastID; + p->birthDate.year = (uint16_t)yy; + p->birthDate.month = (uint8_t)mm; + p->birthDate.day = (uint8_t)dd; + p->firstName = s; + p->lastName = s + flen + 1; // Use pointer arithmetic to find address! + strcpy(p->firstName, fname); // copy the names + strcpy(p->lastName, lname); + return p; +} + +// Free the memory pointed to by *pp and by the names inside it, +// and invalidate *pp contents. +// Precondition: *pp must not be NULL. +// Postcondition: *pp is set to NULL. +void PersonDestroy(Person **pp) { + assert(*pp != NULL); + // SOLUTION + free((*pp)->firstName); // free the names + free(*pp); + *pp = NULL; +} + +// Prints a person formatted as "[id, lastname, firstname, birthdate]", +// followed by a suffix string. +void PersonPrintf(Person *p, const char *suffix) { + if (p == NULL) + printf("NULL%s", suffix); + else + printf("(%d, %s, %s, %s)%s", p->id, p->lastName, p->firstName, + DateFormat(&(p->birthDate), YMD), suffix); +} + +// Compare birth dates of two persons. +// Return a negative/positive integer if p1 was born before/after p2. +// Return zero if p1 and p2 were born on the same date. +int PersonCompareByBirth(const Person *p1, const Person *p2) { + // SOLUTION + return DateCompare(&(p1->birthDate), &(p2->birthDate)); +} + +// Compare two persons by last name, then first name (if last name is the same). +// Return a -/+/0 integer if p1 precedes/succeeds/is equal to p2. +int PersonCompareByLastFirstName(const Person *p1, const Person *p2) { + // SOLUTION + int cmp = strcmp(p1->lastName, p2->lastName); + if (cmp != 0) return cmp; + cmp = strcmp(p1->firstName, p2->firstName); + return cmp; +} diff --git a/2ano1/AED/aula10/Person.h b/2ano1/AED/aula10/Person.h new file mode 100644 index 0000000..cc2b28a --- /dev/null +++ b/2ano1/AED/aula10/Person.h @@ -0,0 +1,28 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +#ifndef _PERSON_ +#define _PERSON_ + +#include "Date.h" + +typedef struct { + int id; + Date birthDate; // this is the actual structure, not a pointer! + char *firstName; + char *lastName; +} Person; + +Person *PersonCreate(const char *fname, const char *lname, int yy, int mm, + int dd); + +void PersonDestroy(Person **pd); + +void PersonPrintf(Person *p, const char *suffix); + +int PersonCompareByBirth(const Person *p1, const Person *p2); + +int PersonCompareByLastFirstName(const Person *p1, const Person *p2); + +#endif // _PERSON_ diff --git a/2ano1/AED/aula10/PersonSet.c b/2ano1/AED/aula10/PersonSet.c new file mode 100644 index 0000000..a105735 --- /dev/null +++ b/2ano1/AED/aula10/PersonSet.c @@ -0,0 +1,209 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +// Complete the functions (marked by ...) +// so that it passes all tests in Tests. + +#include "PersonSet.h" + +#include +#include +#include +#include + +#include "BSTree.h" +#include "PointersQueue.h" + +// NOTE THAT: +// - Field capacity was eliminated. +// - Field size was eliminated, because size==BSTreeGetNumberOfNodes(...). + +// Definition of the structure +struct _PersonSet_ { + BSTree *persons; // points to a BSTree of Person pointers +}; + +// Comparison function to be used in generic BSTree. +// Comparison is based on Person ID +static int cmpP(const void *a, const void *b) { + Person *p1 = (Person *)a; + Person *p2 = (Person *)b; + int d = p1->id - p2->id; + return (d > 0) - (d < 0); +} + +// Print function to be used in generic BSTree. +static void printP(void *p) { PersonPrintf((Person *)p, ""); } + +// Create a PersonSet. +PersonSet *PersonSetCreate() { + PersonSet *person_set = (PersonSet *)malloc(sizeof(PersonSet)); + + if (person_set == NULL) + return NULL; + + BSTree *persons = BSTreeCreate(&cmpP, &printP); + + if (persons == NULL) { + free(person_set); + return NULL; + } + + person_set->persons = persons; + + return person_set; +} + +// Destroy PersonSet *pps +void PersonSetDestroy(PersonSet **pps) { + assert(*pps != NULL); + + BSTreeDestroy(&(*pps)->persons); + free(*pps); + *pps = NULL; +} + +int PersonSetSize(const PersonSet *ps) { + return BSTreeGetNumberOfNodes(ps->persons); +} + +int PersonSetIsEmpty(const PersonSet *ps) { return BSTreeIsEmpty(ps->persons); } + +// Print function to use in PersonSetPrint +static void printlnP(void *p) { PersonPrintf((Person *)p, ";\n"); } + +void PersonSetPrint(const PersonSet *ps) { + printf("{\n"); + BSTreeTraverseINOrder(ps->persons, printlnP); + printf("}(size=%d)\n", PersonSetSize(ps)); +} + +// Find node in BSTree ps->persons of person with given id. +// Return a pointer to the stored Person instance. +// Or NULL, if it does not belong to the BSTree. +// (INTERNAL function.) +static Person *search(const PersonSet *ps, int id) { + Person dummyPerson; + dummyPerson.id = id; + return BSTreeSearch(ps->persons, &dummyPerson); +} + +// Add person *p to *ps. +// Do nothing if *ps already contains a person with the same id. +void PersonSetAdd(PersonSet *ps, Person *p) { BSTreeAdd(ps->persons, p); } + +// Pop one person out of *ps. +Person *PersonSetPop(PersonSet *ps) { + assert(!PersonSetIsEmpty(ps)); + // It is easiest to pop and return the first person in the set! + Person *item = BSTreeGetMin(ps->persons); + BSTreeRemove(ps->persons, item); + + return item; +} + +// Remove the person with given id from *ps, and return it. +// If no such person is found, return NULL and leave set untouched. +Person *PersonSetRemove(PersonSet *ps, int id) { + Person *item = search(ps, id); + + if (item == NULL) + return NULL; + + BSTreeRemove(ps->persons, item); + + return item; +} + +// Get the person with given id of *ps. +// return NULL if it is not in the set. +Person *PersonSetGet(const PersonSet *ps, int id) { + assert(ps != NULL); + return search(ps, id); +} + +// Return true (!= 0) if set contains person with given id, false otherwise. +int PersonSetContains(const PersonSet *ps, int id) { + return search(ps, id) != NULL; +} + +static PersonSet *current_working_set = NULL; +static void traverseAndAdd(void *p) { + BSTreeAdd(current_working_set->persons, p); +} + +// Return a NEW PersonSet with the union of *ps1 and *ps2. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetUnion(const PersonSet *ps1, const PersonSet *ps2) { + current_working_set = PersonSetCreate(); + + if (current_working_set == NULL) + return NULL; + + BSTreeTraverseINOrder(ps1->persons, &traverseAndAdd); + BSTreeTraverseINOrder(ps2->persons, &traverseAndAdd); + + return current_working_set; +} + +static const PersonSet *intersect_set = NULL; +static void traverseAndIntersect(void *p) { + if (BSTreeContains(intersect_set->persons, p)) + BSTreeAdd(current_working_set->persons, p); +} + +// Return a NEW PersonSet with the intersection of *ps1 and *ps2. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetIntersection(const PersonSet *ps1, const PersonSet *ps2) { + current_working_set = PersonSetCreate(); + + if (current_working_set == NULL) + return NULL; + + intersect_set = ps1; + BSTreeTraverseINOrder(ps2->persons, &traverseAndIntersect); + + return current_working_set; +} + +static const PersonSet *difference_set = NULL; +static void traverseAndDiff(void *p) { + if (!BSTreeContains(difference_set->persons, p)) + BSTreeAdd(current_working_set->persons, p); +} + +// Return a NEW PersonSet with the set difference of *ps1 and *ps2. +// NOTE: memory is allocated. Client must call PersonSetDestroy! +PersonSet *PersonSetDifference(const PersonSet *ps1, const PersonSet *ps2) { + current_working_set = PersonSetCreate(); + + if (current_working_set == NULL) + return NULL; + + difference_set = ps2; + BSTreeTraverseINOrder(ps1->persons, &traverseAndDiff); + + return current_working_set; +} + +// Return true iff *ps1 is a subset of *ps2. +int PersonSetIsSubset(const PersonSet *ps1, const PersonSet *ps2) { + Queue *items = BSTreeGetItems(ps2->persons); + + while (!QueueIsEmpty(items)) { + const Person *item = QueueDequeue(items); + if (!BSTreeContains(ps1->persons, item)) + return 0; + } + + free(items); + + return 1; +} + +// Return true if the two sets contain exactly the same elements. +int PersonSetEquals(const PersonSet *ps1, const PersonSet *ps2) { + return PersonSetSize(ps1) == PersonSetSize(ps2) && + PersonSetIsSubset(ps1, ps2); +} diff --git a/2ano1/AED/aula10/PersonSet.h b/2ano1/AED/aula10/PersonSet.h new file mode 100644 index 0000000..138985d --- /dev/null +++ b/2ano1/AED/aula10/PersonSet.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +#ifndef _PERSONSET_ +#define _PERSONSET_ + +#include "Person.h" + +// Type for sorted sequences: +typedef struct _PersonSet_ PersonSet; + +PersonSet *PersonSetCreate(); +void PersonSetDestroy(PersonSet **pps); +int PersonSetSize(const PersonSet *ps); +int PersonSetIsEmpty(const PersonSet *ps); +void PersonSetPrint(const PersonSet *ps); + +void PersonSetAdd(PersonSet *ps, Person *p); +Person *PersonSetPop(PersonSet *ps); +Person *PersonSetRemove(PersonSet *ps, int id); + +Person *PersonSetGet(const PersonSet *ps, int id); +int PersonSetContains(const PersonSet *ps, int id); + +PersonSet *PersonSetUnion(const PersonSet *ps1, const PersonSet *ps2); +PersonSet *PersonSetIntersection(const PersonSet *ps1, const PersonSet *ps2); +PersonSet *PersonSetDifference(const PersonSet *ps1, const PersonSet *ps2); + +int PersonSetIsSubset(const PersonSet *ps1, const PersonSet *ps2); +int PersonSetEquals(const PersonSet *ps1, const PersonSet *ps2); + +#endif diff --git a/2ano1/AED/aula10/PointersQueue.c b/2ano1/AED/aula10/PointersQueue.c new file mode 100644 index 0000000..b400468 --- /dev/null +++ b/2ano1/AED/aula10/PointersQueue.c @@ -0,0 +1,118 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, April 2020 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// Pointers queue (First In First Out) implementation based on a linked list +// + +#include "PointersQueue.h" + +#include +#include + +struct _PointersQueueNode { + void* data; + struct _PointersQueueNode* next; +}; + +struct _PointersQueue { + int size; // current Queue size + struct _PointersQueueNode* head; // the head of the Queue + struct _PointersQueueNode* tail; // the tail of the Queue +}; + +Queue* QueueCreate(void) { + Queue* q = (Queue*)malloc(sizeof(Queue)); + if (q == NULL) abort(); + + q->size = 0; + q->head = NULL; + q->tail = NULL; + return q; +} + +void QueueDestroy(Queue** p) { + assert(*p != NULL); + Queue* q = *p; + + QueueClear(q); + + free(q); + *p = NULL; +} + +void QueueClear(Queue* q) { + assert(q != NULL); + + struct _PointersQueueNode* p = q->head; + struct _PointersQueueNode* aux; + + while (p != NULL) { + aux = p; + p = aux->next; + free(aux); + } + + q->size = 0; + q->head = NULL; + q->tail = NULL; +} + +int QueueSize(const Queue* q) { + assert(q != NULL); + return q->size; +} + +int QueueIsEmpty(const Queue* q) { + assert(q != NULL); + return (q->size == 0) ? 1 : 0; +} + +void* QueuePeek(const Queue* q) { + assert(q != NULL && q->size > 0); + return q->head->data; +} + +void QueueEnqueue(Queue* q, void* p) { + assert(q != NULL); + + struct _PointersQueueNode* aux; + aux = (struct _PointersQueueNode*)malloc(sizeof(*aux)); + if (aux == NULL) abort(); + + aux->data = p; + aux->next = NULL; + + q->size++; + + if (q->size == 1) { + q->head = aux; + q->tail = aux; + } else { + q->tail->next = aux; + q->tail = aux; + } +} + +void* QueueDequeue(Queue* q) { + assert(q != NULL && q->size > 0); + + struct _PointersQueueNode* aux = q->head; + void* p = aux->data; + + q->size--; + + if (q->size == 0) { + q->head = NULL; + q->tail = NULL; + } else { + q->head = aux->next; + } + + free(aux); + + return p; +} diff --git a/2ano1/AED/aula10/PointersQueue.h b/2ano1/AED/aula10/PointersQueue.h new file mode 100644 index 0000000..9e7f707 --- /dev/null +++ b/2ano1/AED/aula10/PointersQueue.h @@ -0,0 +1,30 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, April 2020 +// +// Pointers queue (First In First Out) implementation based on a linked list +// + +#ifndef _POINTERS_QUEUE_ +#define _POINTERS_QUEUE_ + +typedef struct _PointersQueue Queue; + +Queue* QueueCreate(void); + +void QueueDestroy(Queue** p); + +void QueueClear(Queue* q); + +int QueueSize(const Queue* q); + +int QueueIsEmpty(const Queue* q); + +void* QueuePeek(const Queue* q); + +void QueueEnqueue(Queue* q, void* p); + +void* QueueDequeue(Queue* q); + +#endif // _POINTERS_QUEUE_ diff --git a/2ano1/AED/aula10/Tests.c b/2ano1/AED/aula10/Tests.c new file mode 100644 index 0000000..3553745 --- /dev/null +++ b/2ano1/AED/aula10/Tests.c @@ -0,0 +1,162 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// + +// Run this program with an integer argument such as: ./Tests 8 + +#include +#include +#include + +#include "Person.h" +#include "PersonSet.h" + +// MACRO to print expression X of type int (int X) and its result +#define SHOWint(X) \ + do { \ + printf("%s -> %d\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type string (char* X) and its result +#define SHOWstr(X) \ + do { \ + printf("%s -> %s\n", #X, (X)); \ + } while (0) + +// MACRO to print expression X of type date (Date* X) and its result +#define SHOWDate(X) \ + do { \ + printf("%s -> %s\n", #X, DateFormat(X, YMD)); \ + } while (0) + +// MACRO to print expression X of type Person and its result +#define SHOWPerson(X) \ + do { \ + printf("%s -> ", #X); \ + PersonPrintf(X, "\n"); \ + } while (0) + +#define SHOWPersonSet(X) \ + do { \ + printf("%s -> ", #X); \ + PersonSetPrint(X); \ + } while (0) + +int main(int argc, char *argv[]) { + int lasttest = 9999; + if (argc > 1) { + lasttest = atoi(argv[1]); // last test to perform + } + srand(lasttest); // Initialize generator for repeatability + int test = 0; + + if (++test > lasttest) return 0; + printf("\n%d) PersonCreate---\n", test); + const int NP = 10; // number of persons + Person *person[NP]; + person[0] = PersonCreate("Eva", "Maia", 1977, 10, 20); + person[1] = PersonCreate("Maria", "Silva", 2003, 12, 30); + person[2] = PersonCreate("Paulo", "Guedes", 2003, 12, 31); + person[3] = PersonCreate("Carlos", "Silva", 1999, 8, 31); + person[4] = PersonCreate("Filipe", "Matos", 2001, 1, 1); + person[5] = PersonCreate("Carla", "Oliveira", 1959, 1, 1); + person[6] = PersonCreate("Vitor", "Maia", 1969, 2, 28); + person[7] = PersonCreate("Olga", "Costa", 1967, 2, 29); + person[8] = PersonCreate("Tiago", "Santos", 1996, 6, 13); + person[9] = PersonCreate("Sara", "Santos", 2007, 3, 1); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetCreate---\n", test); + PersonSet *ps1 = PersonSetCreate(); + PersonSet *ps2 = PersonSetCreate(); + PersonSet *ps3 = PersonSetCreate(); + SHOWint(PersonSetSize(ps1)); + // SHOWint( ps1->capacity ); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetAdd---\n", test); + for (int n = 0; n < 7; n++) { + int i = rand() % NP; + PersonSetAdd(ps1, person[i]); + } + SHOWPersonSet(ps1); + for (int n = 0; n < 5; n++) { + int i = rand() % NP; + PersonSetAdd(ps2, person[i]); + } + SHOWPersonSet(ps2); + for (int n = 0; n < 3; n++) { + int i = rand() % NP; + PersonSetAdd(ps3, person[i]); + } + SHOWPersonSet(ps3); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetRemove---\n", test); + Person *p; + for (int k = 0; k < 2;) { + int id = 1 + rand() % NP; + SHOWint(id); + SHOWPerson(p = PersonSetRemove(ps1, id)); + if (p != NULL) { + k++; + SHOWPersonSet(ps1); + PersonSetAdd(ps1, p); // reinsert removed person + SHOWPersonSet(ps1); + } + } + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetPop---\n", test); + while (!PersonSetIsEmpty(ps3)) { + SHOWPerson(PersonSetPop(ps3)); + } + SHOWPersonSet(ps3); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetGet / Contains---\n", test); + for (int k = 0; k < 4; k++) { + int id = 1 + rand() % NP; + SHOWint(id); + SHOWPerson(PersonSetGet(ps1, id)); + SHOWint(PersonSetContains(ps1, id)); + } + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetUnion/Intersection/Difference---\n", test); + SHOWPersonSet(ps1); + SHOWPersonSet(ps2); + PersonSet *ps4; + SHOWPersonSet(ps4 = PersonSetUnion(ps1, ps2)); + PersonSet *ps5; + SHOWPersonSet(ps5 = PersonSetIntersection(ps1, ps2)); + PersonSet *ps6; + SHOWPersonSet(ps6 = PersonSetIntersection(ps2, ps1)); + PersonSet *ps7; + SHOWPersonSet(ps7 = PersonSetDifference(ps1, ps2)); + + if (++test > lasttest) return 0; + printf("\n%d) PersonSetIsSubset/Equals---\n", test); + SHOWint(PersonSetIsSubset(ps5, ps1)); // must be true + SHOWint(PersonSetIsSubset(ps5, ps2)); // must be true + SHOWint(PersonSetIsSubset(ps6, ps2)); // must be false + + SHOWint(PersonSetEquals(ps1, ps2)); // should be false (different sizes) + SHOWint(PersonSetEquals(ps5, ps6)); // must be true + + PersonSetDestroy(&ps1); + PersonSetDestroy(&ps2); + PersonSetDestroy(&ps3); + PersonSetDestroy(&ps4); + PersonSetDestroy(&ps5); + PersonSetDestroy(&ps6); + PersonSetDestroy(&ps7); + + // Free everything + // (If you comment out any of these, valgrind should detect it!) + for (int i = 0; i < NP; i++) { + PersonDestroy(&(person[i])); + } + + return 0; +} diff --git a/2ano1/AED/aula10/ref-0.txt b/2ano1/AED/aula10/ref-0.txt new file mode 100644 index 0000000..73d75a8 --- /dev/null +++ b/2ano1/AED/aula10/ref-0.txt @@ -0,0 +1,418 @@ +==5508== Memcheck, a memory error detector +==5508== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. +==5508== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info +==5508== Command: ./BSTreeTest +==5508== +CREATED AN EMPTY TREE +0 elements +height = -1 + +INSERTING +BSTreeAdd(t1, &(8)) -> 1 + /# +:[0]8 + \# +numNodes: 1 +BSTreeAdd(t1, &(4)) -> 1 + /# + /[0]4 + \# +:[1]8 + \# +numNodes: 2 +BSTreeAdd(t1, &(9)) -> 1 + /# + /[0]4 + \# +:[1]8 + /# + \[0]9 + \# +numNodes: 3 +BSTreeAdd(t1, &(4)) -> 0 + /# + /[0]4 + \# +:[1]8 + /# + \[0]9 + \# +numNodes: 3 +BSTreeAdd(t1, &(3)) -> 1 + /# + /[0]3 + \# + /[1]4 + \# +:[2]8 + /# + \[0]9 + \# +numNodes: 4 +BSTreeAdd(t1, &(1)) -> 1 + /# + /[0]1 + \# + /[1]3 + /# + \[0]4 + \# +:[2]8 + /# + \[0]9 + \# +numNodes: 5 +BSTreeAdd(t1, &(10)) -> 1 + /# + /[0]1 + \# + /[1]3 + /# + \[0]4 + \# +:[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 6 +BSTreeAdd(t1, &(0)) -> 1 + /# + /[0]0 + \# + /[1]1 + \# + /[2]3 + /# + \[0]4 + \# +:[3]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 7 +BSTreeAdd(t1, &(2)) -> 1 + /# + /[0]0 + \# + /[1]1 + /# + \[0]2 + \# + /[2]3 + /# + \[0]4 + \# +:[3]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 8 +BSTreeAdd(t1, &(5)) -> 1 + /# + /[0]0 + \# + /[1]1 + /# + \[0]2 + \# + /[2]3 + /# + \[1]4 + /# + \[0]5 + \# +:[3]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 9 +BSTreeAdd(t1, &(7)) -> 1 + /# + /[0]0 + \# + /[1]1 + /# + \[0]2 + \# + /[2]3 + /# + /[0]4 + \# + \[1]5 + /# + \[0]7 + \# +:[3]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 10 +BSTreeAdd(t1, &(8)) -> 0 + /# + /[0]0 + \# + /[1]1 + /# + \[0]2 + \# + /[2]3 + /# + /[0]4 + \# + \[1]5 + /# + \[0]7 + \# +:[3]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 10 +BSTreeAdd(t1, &(6)) -> 1 + /# + /[0]0 + \# + /[1]1 + /# + \[0]2 + \# + /[2]3 + /# + \[0]4 + \# +:[3]5 + /# + /[0]6 + \# + /[1]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 11 + +FINISHED INSERTING + +QUERY FUNCTIONS +NumElements = 11 +Height = 3 +Min = 0 +Max = 10 + +TREE CONTAINS +BSTreeContains(t1, &(-1)) -> 0 +BSTreeContains(t1, &(2)) -> 1 +BSTreeContains(t1, &(5)) -> 1 +BSTreeContains(t1, &(8)) -> 1 +BSTreeContains(t1, &(11)) -> 0 +BSTreeContains(t1, &(14)) -> 0 + +TRAVERSE +0 1 2 3 4 5 6 7 8 9 10 + +TRAVERSE with BSTreeGetItems +0 1 2 3 4 5 6 7 8 9 10 + +REMOVING items using their VALUE +BSTreeRemove(t1, &(4)) -> 1 + /# + /[0]0 + \# + /[2]1 + /# + /[0]2 + \# + \[1]3 + \# +:[3]5 + /# + /[0]6 + \# + /[1]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 10 +BSTreeRemove(t1, &(4)) -> 0 + /# + /[0]0 + \# + /[2]1 + /# + /[0]2 + \# + \[1]3 + \# +:[3]5 + /# + /[0]6 + \# + /[1]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 10 +BSTreeRemove(t1, &(1)) -> 1 + /# + /[0]0 + \# + /[1]2 + /# + \[0]3 + \# +:[3]5 + /# + /[0]6 + \# + /[1]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 9 +BSTreeRemove(t1, &(0)) -> 1 + /# + /[1]2 + /# + \[0]3 + \# +:[3]5 + /# + /[0]6 + \# + /[1]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 8 +BSTreeRemove(t1, &(5)) -> 1 + /# + /[1]2 + /# + \[0]3 + \# +:[3]6 + /# + /[0]7 + \# + \[2]8 + /# + \[1]9 + /# + \[0]10 + \# +numNodes: 7 +BSTreeRemove(t1, &(8)) -> 1 + /# + /[1]2 + /# + \[0]3 + \# +:[2]6 + /# + /[0]7 + \# + \[1]9 + /# + \[0]10 + \# +numNodes: 6 + +FINISHED REMOVING +6 elements +height = 2 +2 3 6 7 9 10 + +REMOVING remaining items in decreasing order +BSTreeRemove(t1, &(10)) -> 1 + /# + /[1]2 + /# + \[0]3 + \# +:[2]6 + /# + /[0]7 + \# + \[1]9 + \# +numNodes: 5 +BSTreeRemove(t1, &(9)) -> 1 + /# + /[1]2 + /# + \[0]3 + \# +:[2]6 + /# + \[0]7 + \# +numNodes: 4 +BSTreeRemove(t1, &(7)) -> 1 + /# + /[0]2 + \# +:[1]3 + /# + \[0]6 + \# +numNodes: 3 +BSTreeRemove(t1, &(6)) -> 1 + /# + /[0]2 + \# +:[1]3 + \# +numNodes: 2 +BSTreeRemove(t1, &(3)) -> 1 + /# +:[0]2 + \# +numNodes: 1 +BSTreeRemove(t1, &(2)) -> 1 +:# +numNodes: 0 + +FINISHED REMOVING +0 elements +height = -1 + +==5508== +==5508== HEAP SUMMARY: +==5508== in use at exit: 0 bytes in 0 blocks +==5508== total heap usage: 25 allocs, 25 frees, 4,680 bytes allocated +==5508== +==5508== All heap blocks were freed -- no leaks are possible +==5508== +==5508== For lists of detected and suppressed errors, rerun with: -s +==5508== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) diff --git a/2ano1/AED/aula10/ref-12.txt b/2ano1/AED/aula10/ref-12.txt new file mode 100644 index 0000000..0a24ae3 --- /dev/null +++ b/2ano1/AED/aula10/ref-12.txt @@ -0,0 +1,153 @@ +==5471== Memcheck, a memory error detector +==5471== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. +==5471== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info +==5471== Command: ./Tests 12 +==5471== + +1) PersonCreate--- + +2) PersonSetCreate--- +PersonSetSize(ps1) -> 0 + +3) PersonSetAdd--- +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=6) +ps2 -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps3 -> { +(5, Matos, Filipe, 2001-01-01); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=3) + +4) PersonSetRemove--- +id -> 5 +p = PersonSetRemove(ps1, id) -> (5, Matos, Filipe, 2001-01-01) +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=6) +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 8 +p = PersonSetRemove(ps1, id) -> NULL +id -> 1 +p = PersonSetRemove(ps1, id) -> (1, Maia, Eva, 1977-10-20) +ps1 -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=6) + +5) PersonSetPop--- +PersonSetPop(ps3) -> (5, Matos, Filipe, 2001-01-01) +PersonSetPop(ps3) -> (8, Costa, Olga, 1967-02-29) +PersonSetPop(ps3) -> (9, Santos, Tiago, 1996-06-13) +ps3 -> { +}(size=0) + +6) PersonSetGet / Contains--- +id -> 3 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 9 +PersonSetGet(ps1, id) -> (9, Santos, Tiago, 1996-06-13) +PersonSetContains(ps1, id) -> 1 +id -> 1 +PersonSetGet(ps1, id) -> (1, Maia, Eva, 1977-10-20) +PersonSetContains(ps1, id) -> 1 +id -> 5 +PersonSetGet(ps1, id) -> (5, Matos, Filipe, 2001-01-01) +PersonSetContains(ps1, id) -> 1 + +7) PersonSetUnion/Intersection/Difference--- +ps1 -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=6) +ps2 -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps4 = PersonSetUnion(ps1, ps2) -> { +(1, Maia, Eva, 1977-10-20); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(6, Oliveira, Carla, 1959-01-01); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=7) +ps5 = PersonSetIntersection(ps1, ps2) -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=4) +ps6 = PersonSetIntersection(ps2, ps1) -> { +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=4) +ps7 = PersonSetDifference(ps1, ps2) -> { +(1, Maia, Eva, 1977-10-20); +(6, Oliveira, Carla, 1959-01-01); +}(size=2) + +8) PersonSetIsSubset/Equals--- +PersonSetIsSubset(ps5, ps1) -> 1 +PersonSetIsSubset(ps5, ps2) -> 1 +PersonSetIsSubset(ps6, ps2) -> 1 +PersonSetEquals(ps1, ps2) -> 0 +PersonSetEquals(ps5, ps6) -> 1 +==5471== +==5471== HEAP SUMMARY: +==5471== in use at exit: 0 bytes in 0 blocks +==5471== total heap usage: 120 allocs, 120 frees, 6,698 bytes allocated +==5471== +==5471== All heap blocks were freed -- no leaks are possible +==5471== +==5471== For lists of detected and suppressed errors, rerun with: -s +==5471== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) diff --git a/2ano1/AED/aula10/ref-14.txt b/2ano1/AED/aula10/ref-14.txt new file mode 100644 index 0000000..9a448e1 --- /dev/null +++ b/2ano1/AED/aula10/ref-14.txt @@ -0,0 +1,151 @@ +==5473== Memcheck, a memory error detector +==5473== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. +==5473== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info +==5473== Command: ./Tests 14 +==5473== + +1) PersonCreate--- + +2) PersonSetCreate--- +PersonSetSize(ps1) -> 0 + +3) PersonSetAdd--- +ps1 -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=5) +ps2 -> { +(1, Maia, Eva, 1977-10-20); +(5, Matos, Filipe, 2001-01-01); +(7, Maia, Vitor, 1969-02-28); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps3 -> { +(1, Maia, Eva, 1977-10-20); +(7, Maia, Vitor, 1969-02-28); +}(size=2) + +4) PersonSetRemove--- +id -> 6 +p = PersonSetRemove(ps1, id) -> NULL +id -> 7 +p = PersonSetRemove(ps1, id) -> NULL +id -> 7 +p = PersonSetRemove(ps1, id) -> NULL +id -> 6 +p = PersonSetRemove(ps1, id) -> NULL +id -> 2 +p = PersonSetRemove(ps1, id) -> (2, Silva, Maria, 2003-12-30) +ps1 -> { +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=4) +ps1 -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=5) +id -> 1 +p = PersonSetRemove(ps1, id) -> NULL +id -> 10 +p = PersonSetRemove(ps1, id) -> NULL +id -> 10 +p = PersonSetRemove(ps1, id) -> NULL +id -> 9 +p = PersonSetRemove(ps1, id) -> (9, Santos, Tiago, 1996-06-13) +ps1 -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +}(size=4) +ps1 -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=5) + +5) PersonSetPop--- +PersonSetPop(ps3) -> (1, Maia, Eva, 1977-10-20) +PersonSetPop(ps3) -> (7, Maia, Vitor, 1969-02-28) +ps3 -> { +}(size=0) + +6) PersonSetGet / Contains--- +id -> 1 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 3 +PersonSetGet(ps1, id) -> (3, Guedes, Paulo, 2003-12-31) +PersonSetContains(ps1, id) -> 1 +id -> 1 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 +id -> 5 +PersonSetGet(ps1, id) -> NULL +PersonSetContains(ps1, id) -> 0 + +7) PersonSetUnion/Intersection/Difference--- +ps1 -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +}(size=5) +ps2 -> { +(1, Maia, Eva, 1977-10-20); +(5, Matos, Filipe, 2001-01-01); +(7, Maia, Vitor, 1969-02-28); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=5) +ps4 = PersonSetUnion(ps1, ps2) -> { +(1, Maia, Eva, 1977-10-20); +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(5, Matos, Filipe, 2001-01-01); +(7, Maia, Vitor, 1969-02-28); +(8, Costa, Olga, 1967-02-29); +(9, Santos, Tiago, 1996-06-13); +(10, Santos, Sara, 2007-03-01); +}(size=9) +ps5 = PersonSetIntersection(ps1, ps2) -> { +(9, Santos, Tiago, 1996-06-13); +}(size=1) +ps6 = PersonSetIntersection(ps2, ps1) -> { +(9, Santos, Tiago, 1996-06-13); +}(size=1) +ps7 = PersonSetDifference(ps1, ps2) -> { +(2, Silva, Maria, 2003-12-30); +(3, Guedes, Paulo, 2003-12-31); +(4, Silva, Carlos, 1999-08-31); +(8, Costa, Olga, 1967-02-29); +}(size=4) + +8) PersonSetIsSubset/Equals--- +PersonSetIsSubset(ps5, ps1) -> 1 +PersonSetIsSubset(ps5, ps2) -> 1 +PersonSetIsSubset(ps6, ps2) -> 1 +PersonSetEquals(ps1, ps2) -> 0 +PersonSetEquals(ps5, ps6) -> 1 +==5473== +==5473== HEAP SUMMARY: +==5473== in use at exit: 0 bytes in 0 blocks +==5473== total heap usage: 108 allocs, 108 frees, 6,450 bytes allocated +==5473== +==5473== All heap blocks were freed -- no leaks are possible +==5473== +==5473== For lists of detected and suppressed errors, rerun with: -s +==5473== ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0) diff --git a/2ano1/AED/aula11/FileMerge.c b/2ano1/AED/aula11/FileMerge.c new file mode 100644 index 0000000..429ce37 --- /dev/null +++ b/2ano1/AED/aula11/FileMerge.c @@ -0,0 +1,102 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, May 2020, Nov 2023 +// +// Using the TAD MinHeap implementation +// + +// This program merges several sorted files into a sorted output. + +//// SEARCH ... AND COMPLETE //// + +// Try the arguments below. + +// ARGS file10.txt file20.txt +// ARGS file10.txt file11.txt file12.txt +// ARGS file10.txt file11.txt file12.txt file20.txt file99.txt + +#include +#include +#include +#include + +#include "FileReader.h" +#include "MinHeap.h" + +// THE ALGORITHM: +// +// Read one line from each file and insert it into a heap. Then: +// +// 1. Extract one line from the heap and output it. +// 2. Get next line from the same file and insert into the heap. +// 3. Repeat from 1. +// +// Each heap item must store the current line but also the corresponding file. +// That is why the items are stored as FileReader objects. + +// The comparator for FileReaders (compares the last lines read from each) +int comparator(const void *p1, const void *p2) { + FileReader *f1 = (FileReader *)p1; + FileReader *f2 = (FileReader *)p2; + return strcmp(f1->buffer, f2->buffer); +} + +// The printer for FileReader: print the last line (and its file serial number) +void printer(void *p) { + FileReader *fr = (FileReader *)p; + printf("%s ", fr->buffer); +} + +int main(int argc, char *argv[]) { + // Number of files in arguments: + int numFiles = argc - 1; + + // Create heap with capacity for one line buffer per file: + MinHeap *H = MinHeapCreate(numFiles, &comparator, &printer); + if (H == NULL) + abort(); + + for (int i = 0; i < numFiles; i++) { + // Open a FileReader for each argument: + FileReader *fr = FileReaderOpen(argv[1 + i]); + if (FileReaderError(fr)) { + perror(fr->name); + exit(1); + } + + // Insert this file reader object into the Heap: + MinHeapInsert(H, fr); + } + + while (numFiles > 0) { + FileReader *fr; + + // 1a. Get the first file reader from the Heap and remove it: + fr = MinHeapGetMin(H); + MinHeapRemoveMin(H); + + // 1b. Output the current line from that reader: + char *line = FileReaderBuffer(fr); + fputs(line, stdout); // output the line + + // 2a. Advance the reader to the next line: + int ok = FileReaderNextLine(fr); + + if (ok) { // On success: + // 2b: Reinsert file reader into the Heap: + MinHeapInsert(H, fr); + } else { // On EOF or Error: + if (FileReaderError(fr)) { + perror(fr->name); + exit(2); + } + // 2c: Close the file reader: + FileReaderClose(fr); + numFiles--; // Decrease number of open files + } + } + + // House-keeping + MinHeapDestroy(&H); +} diff --git a/2ano1/AED/aula11/FileReader.c b/2ano1/AED/aula11/FileReader.c new file mode 100644 index 0000000..2651ba5 --- /dev/null +++ b/2ano1/AED/aula11/FileReader.c @@ -0,0 +1,59 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, May 2020, Nov 2023 +// +// A FileReader is an object that keeps a buffer of the last read data +// from a file, together with the file pointer and file name. +// + +#include "FileReader.h" + +#include + +FileReader* FileReaderOpen(char* fname) { + FileReader* fr = (FileReader*)malloc(sizeof(*fr)); + if (fr == NULL) abort(); + fr->name = fname; + fr->bsize = (size_t)1; // initial buffer: 1 char + fr->buffer = (char*)malloc(fr->bsize); + // DEBUG: fprintf(stderr, "FROpen name=%s, addr=%p, size=%zd\n", fr->name, + // fr->buffer, fr->bsize); + if (fr->buffer == NULL) abort(); + fr->buffer[0] = '\0'; // fill with empty string + fr->error = 0; + fr->file = fopen(fname, "r"); + if (fr->file == NULL) { + fr->error = errno; + return NULL; + } + return fr; +} + +void FileReaderClose(FileReader* fr) { + if (fclose(fr->file) != 0) fr->error = errno; + free(fr->buffer); + free(fr); +} + +// Advance file reader to the next line, which is stored in a new buffer. +// Return 1 on success, 0 on EOF or Error. +// NOTE: the client is responsible for freeing the allocated buffer. +int FileReaderNextLine(FileReader* fr) { + // Read a line from file and store in allocated memory (see man getline) + ssize_t read = getline(&(fr->buffer), &(fr->bsize), fr->file); + // DEBUG: fprintf(stderr, "FRNextLine name=%s, addr=%p, size=%zd\n", fr->name, + // fr->buffer, fr->bsize); + if (read < (ssize_t)0) { + fr->error = errno; + return 0; + } + return 1; +} + +// Report the error number (errno) from last failed FileReader operation. +// 0 means No Error. +int FileReaderError(FileReader* fr) { return fr->error; } + +// Return the pointer to the read buffer. +char* FileReaderBuffer(FileReader* fr) { return fr->buffer; } diff --git a/2ano1/AED/aula11/FileReader.h b/2ano1/AED/aula11/FileReader.h new file mode 100644 index 0000000..7fffc34 --- /dev/null +++ b/2ano1/AED/aula11/FileReader.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, May 2020, Nov 2023 +// +// A FileReader is an object that keeps a buffer of the last read data +// from a file, together with the file pointer and file name. +// +#ifndef _FILEREADER_ +#define _FILEREADER_ + +#include +#include + +typedef struct { + FILE* file; // the open file + char* name; // the file name + char* buffer; // the buffer with last line read from the file + size_t bsize; // the current size of the buffer + int error; // the error code of the last operation 0=OK, otherwise errno +} FileReader; + +FileReader* FileReaderOpen(char* fname); + +void FileReaderClose(FileReader* fr); + +int FileReaderNextLine(FileReader* fr); + +int FileReaderError(FileReader* fr); + +char* FileReaderBuffer(FileReader* fr); + +#endif diff --git a/2ano1/AED/aula11/HashTable.c b/2ano1/AED/aula11/HashTable.c new file mode 100644 index 0000000..5899d78 --- /dev/null +++ b/2ano1/AED/aula11/HashTable.c @@ -0,0 +1,371 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, May 2020, November 2023 +// +// Simple Hash Table using Open Addressing +// Keys are STRINGS - Values are INTEGERS +// + +#include "HashTable.h" + +#include +#include +#include +#include + +struct _HashTableBin { + char* key; + unsigned int value; + int isDeleted; + int isFree; +}; + +struct _HashTableHeader { + unsigned int size; + unsigned int numActive; + unsigned int numUsed; + hashFunction hashF; + probeFunction probeF; + int resizeIsEnabled; + struct _HashTableBin* table; +}; + +// Auxiliary functions for experimenting + +unsigned int hash1(const char* key) { + assert(strlen(key) > 0); + return key[0]; +} + +unsigned int hash2(const char* key) { + assert(strlen(key) > 0); + if (strlen(key) == 1) return key[0]; + return key[0] + key[1]; +} + +unsigned int hash3(const char* s) { + unsigned int hash = 0; + for (unsigned int i = 0; i < strlen(s); i++) { + hash = s[i] + (31 * hash); + } + return hash; +} + +unsigned int linearProbing(unsigned int index, unsigned int i, + unsigned int size) { + return (index + i) % size; +} + +// +// Simple quadratic probing --- improve !! +// +unsigned int quadraticProbing(unsigned int index, unsigned int i, + unsigned int size) { + return (index + i * i) % size; +} + +// TAD Functions + +HashTable* HashTableCreate(unsigned int size, hashFunction hashF, + probeFunction probeF, int resizeIsEnabled) { + assert(size > 0); + HashTable* hTable = (HashTable*)malloc(sizeof(struct _HashTableHeader)); + assert(hTable != NULL); + hTable->table = + (struct _HashTableBin*)malloc(size * sizeof(struct _HashTableBin)); + assert(hTable->table != NULL); + + hTable->size = size; + hTable->numActive = 0; + hTable->numUsed = 0; + hTable->hashF = hashF; + hTable->probeF = probeF; + hTable->resizeIsEnabled = resizeIsEnabled; + + for (unsigned int i = 0; i < size; i++) { + hTable->table[i].key = NULL; + hTable->table[i].value = 0; + hTable->table[i].isFree = 1; + hTable->table[i].isDeleted = 0; + } + + return hTable; +} + +void HashTableDestroy(HashTable** p) { + assert(*p != NULL); + HashTable* t = *p; + + for (unsigned int i = 0; i < t->size; i++) { + if (t->table[i].key) free(t->table[i].key); + } + free(t->table); + free(t); + *p = NULL; +} + +static void _resizeHashTable(HashTable* hashT, unsigned int newSize) { + if (newSize == 0) return; + + // Do this is a better way: choose a near prime + if (newSize % 2 == 0) { + newSize++; + } + + struct _HashTableBin* oldBinsArray = hashT->table; + unsigned int oldSize = hashT->size; + + hashT->table = + (struct _HashTableBin*)malloc(newSize * sizeof(struct _HashTableBin)); + assert(hashT->table != NULL); + + for (unsigned int i = 0; i < newSize; i++) { + hashT->table[i].key = NULL; + hashT->table[i].value = 0; + hashT->table[i].isFree = 1; + hashT->table[i].isDeleted = 0; + } + + hashT->size = newSize; + hashT->numActive = 0; + hashT->numUsed = 0; + + // Copy items to the new array of bins + // Disable resizing while copying + + hashT->resizeIsEnabled = 0; + + for (unsigned int i = 0; i < oldSize; i++) { + if (oldBinsArray[i].isFree || oldBinsArray[i].isDeleted) { + continue; + } + HashTablePut(hashT, oldBinsArray[i].key, oldBinsArray[i].value); + } + + hashT->resizeIsEnabled = 1; + + // Free the old array + + for (unsigned int i = 0; i < oldSize; i++) { + if (oldBinsArray[i].key) free(oldBinsArray[i].key); + } + free(oldBinsArray); +} + +// HashTable properties + +int HashTableIsEmpty(const HashTable* hashT) { return hashT->numActive == 0; } + +int HashTableIsFull(const HashTable* hashT) { + return hashT->numUsed == hashT->size; +} + +// Getters + +int HashTableGetNumberOfItems(const HashTable* hashT) { + return hashT->numActive; +} + +double HashTableGetLoadFactor(const HashTable* hashT) { + return (double)hashT->numActive / (double)hashT->size; +} + +// Operations with items + +// +// If the key belongs to the table, return the corresponding index +// If not, return one (next) available index or -1, if the table is full +// +static int _searchHashTable(const HashTable* hashT, const char* key) { + unsigned int hashKey = hashT->hashF(key); + + unsigned int index; + struct _HashTableBin* bin; + + for (unsigned int i = 0; i < hashT->size; i++) { + index = hashT->probeF(hashKey, i, hashT->size); + + bin = &(hashT->table[index]); + + if (bin->isFree) { + // Not in the table ! + return index; + } + + if ((bin->isDeleted == 0) && (strcmp(bin->key, key) == 0)) { + // Found it ! + return index; + } + } + + // SHOULD NEVER HAPPEN !! + return -1; +} + +int HashTableContains(const HashTable* hashT, const char* key) { + int result = _searchHashTable(hashT, key); + if (result == -1 || hashT->table[result].isFree == 1) { + // NOT FOUND + return 0; + } + return 1; +} + +unsigned int HashTableGet(const HashTable* hashT, const char* key) { + int index = _searchHashTable(hashT, key); + if (index == -1 || hashT->table[index].isFree == 1) { + // NOT FOUND + return 0; + } + + return hashT->table[index].value; +} + +int HashTablePut(HashTable* hashT, const char* key, unsigned int value) { + int result = _searchHashTable(hashT, key); + + if (result == -1) { + // NO PLACE AVAILABLE + return 0; + } + + if (hashT->table[result].isFree == 0) { + // ALREADY IN THE TABLE + return 0; + } + + // Does NOT BELONG to the table + // See if it can be stored earlier in the chain, by starting again + // Losing some efficiency here + + unsigned int hashKey = hashT->hashF(key); + + unsigned int index; + struct _HashTableBin* bin; + + for (unsigned int i = 0; i < hashT->size; i++) { + index = hashT->probeF(hashKey, i, hashT->size); + + bin = &(hashT->table[index]); + + if (bin->isFree) { + bin->key = (char*)malloc(sizeof(char) * (1 + strlen(key))); + strcpy(bin->key, key); + bin->value = value; + bin->isFree = bin->isDeleted = 0; + + hashT->numActive++; + hashT->numUsed++; + + if (hashT->resizeIsEnabled && HashTableGetLoadFactor(hashT) > 0.5) { + _resizeHashTable(hashT, hashT->size * 2); + } + + return 1; + } + + if (bin->isDeleted) { + bin->key = (char*)malloc(sizeof(char) * (1 + strlen(key))); + strcpy(bin->key, key); + bin->value = value; + bin->isFree = bin->isDeleted = 0; + + hashT->numActive++; + + return 1; + } + } + + return 0; +} + +// +// Increment the current value +// If key does not exist, insert it with a count of 1 +// +int HashTableIncrement(HashTable* hashT, const char* key) { + int index = _searchHashTable(hashT, key); + if (index == -1) { + // NOT FOUND AND NO PLACE --- SHOULD NOT HAPPEN !! + return 0; + } + + if (hashT->table[index].isFree == 0) { + // ALREADY IN THE TABLE - INCREMENT + + hashT->table[index].value++; + return 1; + } + + // NEW KEY - INSERT + // LOOSING SOME EFFICIENCY HERE + + return HashTablePut(hashT, key, 1); +} + +int HashTableReplace(const HashTable* hashT, const char* key, + unsigned int value) { + int index = _searchHashTable(hashT, key); + if (index == -1 || hashT->table[index].isFree == 1) { + // NOT FOUND + return 0; + } + + hashT->table[index].value = value; + + return 1; +} + +int HashTableRemove(HashTable* hashT, const char* key) { + int index = _searchHashTable(hashT, key); + if (index == -1 || hashT->table[index].isFree == 1) { + // NOT FOUND + return 0; + } + + // Mark as deleted to keep the chain + + hashT->table[index].isDeleted = 1; + hashT->numActive--; + + free(hashT->table[index].key); + hashT->table[index].key = NULL; + hashT->table[index].value = 0; + + if (hashT->resizeIsEnabled && HashTableGetLoadFactor(hashT) < 0.125) { + _resizeHashTable(hashT, hashT->size / 2); + } + + return 1; +} + +// DISPLAYING on the console + +void HashTableDisplay(const HashTable* hashT) { + printf("---\n"); + printf("size = %2d | Used = %2d | Active = %2d\n", hashT->size, + hashT->numUsed, hashT->numActive); + for (unsigned int i = 0; i < hashT->size; i++) { + printf("%3d - ", i); + printf("Free = %d - ", hashT->table[i].isFree); + printf("Deleted = %d - ", hashT->table[i].isDeleted); + if (hashT->table[i].key) { + unsigned int hashValue = hashT->hashF(hashT->table[i].key); + unsigned int firstIndex = hashValue % hashT->size; + printf("Hash = %4d, 1st index = %3d, (%s, %d)\n", hashValue, firstIndex, + hashT->table[i].key, hashT->table[i].value); + } else + printf("\n"); + } + printf("---\n"); +} + +void HashTableDisplayItems(const HashTable* hashT) { + printf("NUMBER OF ITEMS = %d\n\n", hashT->numActive); + for (unsigned int i = 0; i < hashT->size; i++) { + if (hashT->table[i].key) { + printf("%s %d\n", hashT->table[i].key, hashT->table[i].value); + } + } +} diff --git a/2ano1/AED/aula11/HashTable.h b/2ano1/AED/aula11/HashTable.h new file mode 100644 index 0000000..9dbc9da --- /dev/null +++ b/2ano1/AED/aula11/HashTable.h @@ -0,0 +1,71 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, May 2020, November 2023 +// +// Simple Hash Table using Open Addressing +// Keys are STRINGS - Values are INTEGERS +// + +#ifndef _HASH_TABLE_ +#define _HASH_TABLE_ + +typedef struct _HashTableHeader HashTable; + +typedef unsigned int (*hashFunction)(const char* key); + +typedef unsigned int (*probeFunction)(unsigned int index, unsigned int i, + unsigned int size); + +// Auxiliary functions for experimenting + +unsigned int hash1(const char* key); +unsigned int hash2(const char* key); +unsigned int hash3(const char* key); + +unsigned int linearProbing(unsigned int index, unsigned int i, + unsigned int size); +unsigned int quadraticProbing(unsigned int index, unsigned int i, + unsigned int size); + +// TAD Functions + +HashTable* HashTableCreate(unsigned int capacity, hashFunction hashF, + probeFunction probeF, int resizeIsEnabled); + +void HashTableDestroy(HashTable** p); + +// HashTable properties + +int HashTableIsEmpty(const HashTable* hashT); + +int HashTableIsFull(const HashTable* hashT); + +// Getters + +int HashTableGetNumberOfItems(const HashTable* hashT); + +double HashTableGetLoadFactor(const HashTable* hashT); + +// Operations with items + +int HashTableContains(const HashTable* hashT, const char* key); + +unsigned int HashTableGet(const HashTable* hashT, const char* key); + +int HashTablePut(HashTable* hashT, const char* key, unsigned int value); + +int HashTableIncrement(HashTable* hashT, const char* key); + +int HashTableReplace(const HashTable* hashT, const char* key, + unsigned int value); + +int HashTableRemove(HashTable* hashT, const char* key); + +// DISPLAYING on the console + +void HashTableDisplay(const HashTable* hashT); + +void HashTableDisplayItems(const HashTable* hashT); + +#endif // _HASH_TABLE_ diff --git a/2ano1/AED/aula11/KLongestWords.c b/2ano1/AED/aula11/KLongestWords.c new file mode 100644 index 0000000..63d4706 --- /dev/null +++ b/2ano1/AED/aula11/KLongestWords.c @@ -0,0 +1,195 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, May 2020, November 2023 +// + +// +// This program creates a HASH TABLE that stores the words of a text file and +// the number of occurrences of each word. +// +// It also creates a MIN-HEAP that stores the K longest words of the text file. +// + +//// SEARCH ... AND COMPLETE //// + +// Try the arguments below. + +// ARGS 5 file20.txt +// ARGS 10 file99.txt +// ARGS 20 SherlockHolmes.txt + +#include +#include +#include + +#include "HashTable.h" +#include "MinHeap.h" + +// +// The MIN-HEAP stores pairs (word, length), where length is the word length. +// Examples: (dog, 3), (house, 5) +// +// The MIN-HEAP elements are orderer according to the second attribute (length). +// + +// The info for each min-heap node +struct heapElem { + char word[64]; // A word + unsigned int length; // Its length +}; + +typedef struct heapElem *heapElemPtr; + +// The comparator for heap elements + +int comparator(const void *p1, const void *p2) { + heapElemPtr item1 = (heapElemPtr)p1; + heapElemPtr item2 = (heapElemPtr)p2; + + int d = item1->length - item2->length; + return (d > 0) - (d < 0); +} + +// The printer for heap elements + +void printer(void *p) { + heapElemPtr item = (heapElemPtr)p; + printf("(%s, %d)", item->word, item->length); +} + +// +// main +// + +int main(int argc, char **argv) { + if (argc < 3) { + fprintf(stderr, "Usage: %s K FILE\n", argv[0]); + exit(1); + } + + // k -> number of words we are looking for + unsigned int k = atoi(argv[1]); + + FILE *file = fopen(argv[2], "r"); + if (file == NULL) { + fprintf(stderr, "Unable to open file %s\n", argv[1]); + exit(1); + } + + // + // The hash table for registering words and counting word occurrences. + // It uses the hash3 hashing function + // + HashTable *hashT = HashTableCreate(50021, hash3, linearProbing, 1); + + // + // The MIN-HEAP for registering K words according to their length + // + MinHeap *topKByLength = MinHeapCreate(k, comparator, printer); + + // + // Scan the entire file + // + // Token processing SHOULD BE improved !!!!! + // + + char line[10000]; + char word[64]; + + while (fgets(line, sizeof(line), file) != NULL) { + // Replace non-digits and non-letters by a space + for (size_t i = 0; line[i] != '\0'; i++) { + if ((line[i] < '0' || line[i] > '9') && + (line[i] < 'A' || line[i] > 'Z') && + (line[i] < 'a' || line[i] > 'z') && line[i] != '\'') { + line[i] = ' '; + } + } + // Go again over the line and extract each word + size_t j; + for (size_t i = 0; line[i] != '\0'; i += j) { + if (line[i] == ' ') { + j = 1; + } else { + for (j = 0; line[i + j] != '\0' && line[i + j] != ' '; j++) { + if (j < 63) + word[j] = line[i + j]; + } + word[(j < 63) ? j : 63] = '\0'; + + // Update the HASH TABLE with the occurrence of the current word + HashTableIncrement(hashT, word); + + // Update the MIN-HEAP, if needed + heapElemPtr p; + if (MinHeapSize(topKByLength) != k) { + // Add to the MIN-HEAP until it has k elements + + // Allocate the new heap element and set its attributes + heapElemPtr ptr = (heapElemPtr)malloc(sizeof(struct heapElem)); + strcpy(ptr->word, word); + ptr->length = strlen(word); + + // Add it to the MIN-HEAP + MinHeapInsert(topKByLength, ptr); + + } else if (HashTableGet(hashT, word) == 1) { + // The MIN-HEAP has K elements + // AND the current word just appeared for the first time + // Replace the min element of the heap, if the word is longer + // than the min word + + p = MinHeapGetMin(topKByLength); + + // If the current word is longer than the min word + // ---> remove the min from the heap + // ---> free its allocated memory + // ---> allocate the pair (word, length) for the current word + // and set its attributes + // ---> add it to the heap + if (strlen(word) > p->length) { + MinHeapRemoveMin(topKByLength); + free(p); + + heapElemPtr ptr = (heapElemPtr)malloc(sizeof(struct heapElem)); + strcpy(ptr->word, word); + ptr->length = strlen(word); + + // Add it to the MIN-HEAP + MinHeapInsert(topKByLength, ptr); + } + } + } + } + } + + // Closing the file + fclose(file); + + // FOR DEBUGGING + // HashTableDisplayItems(hashT); + // MinHeapView(topKByLength); + + // List the words in ascending order + printf("*** The %u longest words ***\n", k); + + // Loop to print and remove the min element from the heap, + // and free its allocated memory + // until the heap is empty + while (!MinHeapIsEmpty(topKByLength)) { + void *ptr = MinHeapGetMin(topKByLength); + MinHeapRemoveMin(topKByLength); + + printer(ptr); + free(ptr); + + printf("\n"); + } + + // Freeing the allocated memory + HashTableDestroy(&hashT); + MinHeapDestroy(&topKByLength); + + return 0; +} diff --git a/2ano1/AED/aula11/Makefile b/2ano1/AED/aula11/Makefile new file mode 100644 index 0000000..8976984 --- /dev/null +++ b/2ano1/AED/aula11/Makefile @@ -0,0 +1,44 @@ +# To compile all programs, run: +# make +# +# AED ua.pt 2023 + +# Options for the C compiler. +CFLAGS += -g -Wall -Wextra + +TARGETS = MinHeapTest TopKValues FileMerge KLongestWords + +all: $(TARGETS) + +# Object file dependencies (obtained with `gcc -MM *.c`): + +FileMerge.o: FileMerge.c FileReader.h MinHeap.h +FileReader.o: FileReader.c FileReader.h +HashTable.o: HashTable.c HashTable.h +KLongestWords.o: KLongestWords.c HashTable.h MinHeap.h +MinHeap.o: MinHeap.c MinHeap.h +MinHeapTest.o: MinHeapTest.c MinHeap.h +TopKValues.o: TopKValues.c MinHeap.h + +# Executable file dependencies: + +MinHeapTest: MinHeapTest.o MinHeap.o + +FileMerge: FileMerge.o MinHeap.o FileReader.o + +TopKValues: TopKValues.o MinHeap.o + +KLongestWords: KLongestWords.o HashTable.o MinHeap.o + +file%.txt: + @# Generate a sample file with % sorted lines taken from word list + cat /etc/dictionaries-common/words | \ + grep -v "'" | tr '[:upper:]' '[:lower:]' | \ + shuf -n $* - | \ + LC_ALL=C sort -o $@ + +clean: + rm -f *.o + rm -f $(TARGETS) + + diff --git a/2ano1/AED/aula11/MinHeap.c b/2ano1/AED/aula11/MinHeap.c new file mode 100644 index 0000000..e881b5c --- /dev/null +++ b/2ano1/AED/aula11/MinHeap.c @@ -0,0 +1,194 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, June 2021, Nov 2023 +// +// Binary Min Heap storing pointers to generic items. +// + +//// SEARCH ... AND COMPLETE //// + +#include "MinHeap.h" + +#include +#include +#include + +// +// A binary or 2-way heap is a complete tree stored in an array. +// +// +-------------------------------------------------------------------------------+ +// | 0 | +// +---------------------------------------+---------------------------------------+ +// | 1 | 2 | +// +-------------------+-------------------+-------------------+-------------------+ +// | 3 | 4 | 5 | 6 | +// +---------+---------+---------+---------+---------+---------+---------+---------+ +// | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 +// | +// +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+ +// | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | +// 30 | +// +----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+----+ +// +// The children of node k, if any, are 2*k+1 and 2*k+2. +// +// The value of each node cannot be larger that those of its descendents. +// + +// The heap data structure +struct _Heap { + void **array; + unsigned int capacity; + unsigned int size; + compFunc compare; + printFunc print; +}; + +MinHeap *MinHeapCreate(unsigned int capacity, compFunc compF, + printFunc printF) { + MinHeap *h = (MinHeap *)malloc(sizeof(MinHeap)); // alloc heap header + if (h == NULL) + abort(); + h->array = (void **)malloc(capacity * sizeof(void *)); // alloc array + if (h->array == NULL) { + free(h); + abort(); + } + h->capacity = capacity; + h->size = 0; + h->compare = compF; + h->print = printF; + return h; +} + +void MinHeapDestroy(MinHeap **pph) { + MinHeap *ph = *pph; + if (ph == NULL) + return; + free(ph->array); + free(ph); + *pph = NULL; +} + +unsigned int MinHeapCapacity(MinHeap *ph) { return ph->capacity; } + +unsigned int MinHeapSize(MinHeap *ph) { return ph->size; } + +int MinHeapIsEmpty(MinHeap *ph) { return ph->size == 0; } + +int MinHeapIsFull(MinHeap *ph) { return ph->size == ph->capacity; } + +void *MinHeapGetMin(MinHeap *ph) { + assert(!MinHeapIsEmpty(ph)); + return ph->array[0]; +} + +// Internal functions + +// n is the index of a node (n in [0, size[). +// _child(n, 1) is the index of the first child of node n, if < size. +// _child(n, 2) is the index of the second child of node n, if < size. +static inline int _child(int n, int c) { return 2 * n + c; } + +// _parent(n) is the index of the parent node of node n, if >=0. +static inline int _parent(int n) { + assert(n > 0); + return (n - 1) / 2; +} + +// Insert the item into the heap +void MinHeapInsert(MinHeap *ph, void *item) { + assert(!MinHeapIsFull(ph)); + // start at the first vacant spot (just after the last occupied node) + int n = ph->size; + while (n > 0) { + int p = _parent(n); + + // if item not less than parent, then we've found the right spot! + if (ph->compare(item, ph->array[p]) >= 0) + break; + + // otherwise, move up the item at node p to open up space for new item + ph->array[n] = ph->array[p]; + + // update + n = p; // the new vacant spot + } + ph->array[n] = item; // store item at node n + ph->size++; +} + +// Remove the Min item +void MinHeapRemoveMin(MinHeap *ph) { + assert(!MinHeapIsEmpty(ph)); + + ph->size--; // NOTE: we're decreasing the size first! + int n = 0; // the just emptied spot... must fill it with smallest child + while (1) { + // index of first child + unsigned int min = _child(n, 1); // first child (might not exist) + + if (!(min < ph->size)) + break; // if no second child, stop looking + + unsigned int second_child = _child(n, 2); + + // if second child is smaller, choose it + if (ph->compare(ph->array[second_child], ph->array[min]) < 0) { + min = second_child; + } + + // if smallest child is not smaller than last, stop looking + if (!(ph->compare(ph->array[min], ph->array[ph->size]) < 0)) + break; + + // move smallest child down to fill empty parent spot + ph->array[n] = ph->array[min]; + + n = min; // now, the smallest child spot was just emptied! + } + // move last element to emptied spot + ph->array[n] = ph->array[ph->size]; + + // mark last element as vacant + ph->array[ph->size] = NULL; +} + +// Check the (min-)heap property (the heap invariant): +// Each node must be <= than each of its children. +// Equivalently (but easier): +// Each node must be >= its parent. +int MinHeapCheck(MinHeap *ph) { + // For each node other than root: compare with its parent + for (unsigned int n = 1; n < ph->size; n++) { + int p = _parent(n); + if (ph->compare(ph->array[p], ph->array[n]) > 0) + return 0; + } + return 1; +} + +// Visualize the heap items as a tree +static void _HeapView(MinHeap *ph, int level, const char *edge, + unsigned int root) { + if (root < ph->size) { + _HeapView(ph, level + 1, "/", _child(root, 1)); + printf("%*s", 4 * level, edge); + ph->print(ph->array[root]); + printf("\n"); + _HeapView(ph, level + 1, "\\", _child(root, 2)); + } +} + +// Visualize the heap both as a tree and as an array. +void MinHeapView(MinHeap *ph) { + printf("tree:\n"); + _HeapView(ph, 0, ":", 0); // : marks the root + printf("array:"); + for (unsigned int i = 0; i < ph->size; i++) { + printf(" "); + ph->print(ph->array[i]); + } + printf("\nsize: %d\n", ph->size); +} diff --git a/2ano1/AED/aula11/MinHeap.h b/2ano1/AED/aula11/MinHeap.h new file mode 100644 index 0000000..3a265af --- /dev/null +++ b/2ano1/AED/aula11/MinHeap.h @@ -0,0 +1,51 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, June 2021, Nov 2023 +// +// Binary Min Heap storing pointers to generic items. +// + +#ifndef _MinHeap_ +#define _MinHeap_ + +// The type for MinHeap structures +typedef struct _Heap MinHeap; + +// The type for item comparator functions +typedef int (*compFunc)(const void* p1, const void* p2); + +// The type for item printer functions +typedef void (*printFunc)(void* p); + +// CREATE/DESTROY + +MinHeap* MinHeapCreate(unsigned int capacity, compFunc compF, printFunc printF); + +void MinHeapDestroy(MinHeap** pph); + +// GETTERS + +unsigned int MinHeapCapacity(MinHeap* ph); + +unsigned int MinHeapSize(MinHeap* ph); + +int MinHeapIsEmpty(MinHeap* ph); + +int MinHeapIsFull(MinHeap* ph); + +void* MinHeapGetMin(MinHeap* ph); + +// MODIFY + +void MinHeapInsert(MinHeap* ph, void* item); + +void MinHeapRemoveMin(MinHeap* ph); + +// CHECK/VIEW + +int MinHeapCheck(MinHeap* ph); + +void MinHeapView(MinHeap* ph); + +#endif diff --git a/2ano1/AED/aula11/MinHeapTest.c b/2ano1/AED/aula11/MinHeapTest.c new file mode 100644 index 0000000..f004a89 --- /dev/null +++ b/2ano1/AED/aula11/MinHeapTest.c @@ -0,0 +1,92 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, June 2021, Nov 2023 +// +// TESTING the TAD MinHeap implementation +// + +// This program accepts multiple arguments. +// If the argument is: +// a number : it is inserted into a min-heap. +// - : the first (minimum) item is removed from the head +// ? : the heap content is shown, both in tree form and array form. + +// Try the arguments below. + +// ARGS 1 2 3 4 5 6 ? +// ARGS 6 5 4 3 2 1 ? +// ARGS 3 5 2 1 6 4 ? +// ARGS 5 6 3 1 4 2 ? +// ARGS 5 6 3 ? 1 ? 4 ? 2 ? +// ARGS 8 4 9 4 3 1 10 2 5 7 11 6 ? +// ARGS 5 6 3 ? - ? 1 ? 4 ? 2 ? - ? - ? - ? - ? + +#include +#include +#include + +#include "MinHeap.h" + +// Storing pointers to integers + +// The comparator for integer items + +int comparator(const void* p1, const void* p2) { + int d = *(int*)p1 - *(int*)p2; + return (d > 0) - (d < 0); +} + +// The printer for integer items + +void printer(void* p) { printf("%d ", *(int*)p); } + +int main(int argc, char* argv[]) { + printf("CREATE AN EMPTY HEAP\n"); + // with capacity for at most argc items + MinHeap* h1 = MinHeapCreate(argc, comparator, printer); + printf("Capacity = %d\n", MinHeapCapacity(h1)); + printf("Size = %d\n", MinHeapSize(h1)); + + printf("\nPROCESS ARGS\n"); + for (int i = 1; i < argc; i++) { + int* aux; + char* arg = argv[i]; + printf("ARG %s: ", arg); + switch (arg[0]) { + case '?': // View and Check + printf("View\n"); + MinHeapView(h1); // for debugging + printf("Check: %s\n", MinHeapCheck(h1) ? "OK" : "ERROR"); + break; + case '-': + aux = (int*)MinHeapGetMin(h1); + printf("Removing %d\n", *aux); + MinHeapRemoveMin(h1); + free(aux); + break; + default: // assume it's an item to insert + aux = (int*)malloc(sizeof(*aux)); + *aux = atoi(arg); + printf("Inserting %d\n", *aux); + MinHeapInsert(h1, aux); + } + } + printf("\nFINISHED ARGS\n"); + + printf("Size = %d\n", MinHeapSize(h1)); + + printf("\nREMOVING REMAINING ITEMS\n"); + while (!MinHeapIsEmpty(h1)) { + int* aux = (int*)MinHeapGetMin(h1); + printf("Removing %d\n", *aux); + MinHeapRemoveMin(h1); + free(aux); + } + printf("\nFINISHED REMOVING\n"); + MinHeapView(h1); + + MinHeapDestroy(&h1); + + return 0; +} diff --git a/2ano1/AED/aula11/SherlockHolmes.txt b/2ano1/AED/aula11/SherlockHolmes.txt new file mode 100644 index 0000000..24d142b --- /dev/null +++ b/2ano1/AED/aula11/SherlockHolmes.txt @@ -0,0 +1,76758 @@ + + + + + THE COMPLETE SHERLOCK HOLMES + + Arthur Conan Doyle + + + + Table of contents + + A Study In Scarlet + + The Sign of the Four + + The Adventures of Sherlock Holmes + A Scandal in Bohemia + The Red-Headed League + A Case of Identity + The Boscombe Valley Mystery + The Five Orange Pips + The Man with the Twisted Lip + The Adventure of the Blue Carbuncle + The Adventure of the Speckled Band + The Adventure of the Engineer's Thumb + The Adventure of the Noble Bachelor + The Adventure of the Beryl Coronet + The Adventure of the Copper Beeches + + The Memoirs of Sherlock Holmes + Silver Blaze + The Yellow Face + The Stock-Broker's Clerk + The "Gloria Scott" + The Musgrave Ritual + The Reigate Squires + The Crooked Man + The Resident Patient + The Greek Interpreter + The Naval Treaty + The Final Problem + + The Return of Sherlock Holmes + The Adventure of the Empty House + The Adventure of the Norwood Builder + The Adventure of the Dancing Men + The Adventure of the Solitary Cyclist + The Adventure of the Priory School + The Adventure of Black Peter + The Adventure of Charles Augustus Milverton + The Adventure of the Six Napoleons + The Adventure of the Three Students + The Adventure of the Golden Pince-Nez + The Adventure of the Missing Three-Quarter + The Adventure of the Abbey Grange + The Adventure of the Second Stain + + The Hound of the Baskervilles + + The Valley Of Fear + + His Last Bow + Preface + The Adventure of Wisteria Lodge + The Adventure of the Cardboard Box + The Adventure of the Red Circle + The Adventure of the Bruce-Partington Plans + The Adventure of the Dying Detective + The Disappearance of Lady Frances Carfax + The Adventure of the Devil's Foot + His Last Bow + + The Case-Book of Sherlock Holmes + Preface + The Illustrious Client + The Blanched Soldier + The Adventure Of The Mazarin Stone + The Adventure of the Three Gables + The Adventure of the Sussex Vampire + The Adventure of the Three Garridebs + The Problem of Thor Bridge + The Adventure of the Creeping Man + The Adventure of the Lion's Mane + The Adventure of the Veiled Lodger + The Adventure of Shoscombe Old Place + The Adventure of the Retired Colourman + + + + + + + + + + + + A STUDY IN SCARLET + + + + + + Table of contents + + Part I + Mr. Sherlock Holmes + The Science Of Deduction + The Lauriston Garden Mystery + What John Rance Had To Tell + Our Advertisement Brings A Visitor + Tobias Gregson Shows What He Can Do + Light In The Darkness + + Part II + On The Great Alkali Plain + The Flower Of Utah + John Ferrier Talks With The Prophet + A Flight For Life + The Avenging Angels + A Continuation Of The Reminiscences Of John Watson, M.D. + The Conclusion + + + + + + + + + + + + + + + + + + + + PART I + + (Being a reprint from the reminiscences of + John H. Watson, M.D., + late of the Army Medical Department.) + + + + + + CHAPTER I + Mr. Sherlock Holmes + + + In the year 1878 I took my degree of Doctor of Medicine of the + University of London, and proceeded to Netley to go through the + course prescribed for surgeons in the army. Having completed my + studies there, I was duly attached to the Fifth Northumberland + Fusiliers as Assistant Surgeon. The regiment was stationed in India + at the time, and before I could join it, the second Afghan war had + broken out. On landing at Bombay, I learned that my corps had + advanced through the passes, and was already deep in the enemy's + country. I followed, however, with many other officers who were in + the same situation as myself, and succeeded in reaching Candahar in + safety, where I found my regiment, and at once entered upon my new + duties. + + The campaign brought honours and promotion to many, but for me it had + nothing but misfortune and disaster. I was removed from my brigade + and attached to the Berkshires, with whom I served at the fatal + battle of Maiwand. There I was struck on the shoulder by a Jezail + bullet, which shattered the bone and grazed the subclavian artery. I + should have fallen into the hands of the murderous Ghazis had it not + been for the devotion and courage shown by Murray, my orderly, who + threw me across a pack-horse, and succeeded in bringing me safely to + the British lines. + + Worn with pain, and weak from the prolonged hardships which I had + undergone, I was removed, with a great train of wounded sufferers, to + the base hospital at Peshawar. Here I rallied, and had already + improved so far as to be able to walk about the wards, and even to + bask a little upon the verandah, when I was struck down by enteric + fever, that curse of our Indian possessions. For months my life was + despaired of, and when at last I came to myself and became + convalescent, I was so weak and emaciated that a medical board + determined that not a day should be lost in sending me back to + England. I was dispatched, accordingly, in the troopship Orontes, and + landed a month later on Portsmouth jetty, with my health + irretrievably ruined, but with permission from a paternal government + to spend the next nine months in attempting to improve it. + + I had neither kith nor kin in England, and was therefore as free as + air--or as free as an income of eleven shillings and sixpence a day + will permit a man to be. Under such circumstances, I naturally + gravitated to London, that great cesspool into which all the loungers + and idlers of the Empire are irresistibly drained. There I stayed for + some time at a private hotel in the Strand, leading a comfortless, + meaningless existence, and spending such money as I had, considerably + more freely than I ought. So alarming did the state of my finances + become, that I soon realized that I must either leave the metropolis + and rusticate somewhere in the country, or that I must make a + complete alteration in my style of living. Choosing the latter + alternative, I began by making up my mind to leave the hotel, and to + take up my quarters in some less pretentious and less expensive + domicile. + + On the very day that I had come to this conclusion, I was standing at + the Criterion Bar, when some one tapped me on the shoulder, and + turning round I recognized young Stamford, who had been a dresser + under me at Bart's. The sight of a friendly face in the great + wilderness of London is a pleasant thing indeed to a lonely man. In + old days Stamford had never been a particular crony of mine, but now + I hailed him with enthusiasm, and he, in his turn, appeared to be + delighted to see me. In the exuberance of my joy, I asked him to + lunch with me at the Holborn, and we started off together in a + hansom. + + "Whatever have you been doing with yourself, Watson?" he asked in + undisguised wonder, as we rattled through the crowded London streets. + "You are as thin as a lath and as brown as a nut." + + I gave him a short sketch of my adventures, and had hardly concluded + it by the time that we reached our destination. + + "Poor devil!" he said, commiseratingly, after he had listened to my + misfortunes. "What are you up to now?" + + "Looking for lodgings," I answered. "Trying to solve the problem as + to whether it is possible to get comfortable rooms at a reasonable + price." + + "That's a strange thing," remarked my companion; "you are the second + man to-day that has used that expression to me." + + "And who was the first?" I asked. + + "A fellow who is working at the chemical laboratory up at the + hospital. He was bemoaning himself this morning because he could not + get someone to go halves with him in some nice rooms which he had + found, and which were too much for his purse." + + "By Jove!" I cried, "if he really wants someone to share the rooms + and the expense, I am the very man for him. I should prefer having a + partner to being alone." + + Young Stamford looked rather strangely at me over his wine-glass. + "You don't know Sherlock Holmes yet," he said; "perhaps you would not + care for him as a constant companion." + + "Why, what is there against him?" + + "Oh, I didn't say there was anything against him. He is a little + queer in his ideas--an enthusiast in some branches of science. As far + as I know he is a decent fellow enough." + + "A medical student, I suppose?" said I. + + "No--I have no idea what he intends to go in for. I believe he is + well up in anatomy, and he is a first-class chemist; but, as far as I + know, he has never taken out any systematic medical classes. His + studies are very desultory and eccentric, but he has amassed a lot of + out-of-the way knowledge which would astonish his professors." + + "Did you never ask him what he was going in for?" I asked. + + "No; he is not a man that it is easy to draw out, though he can be + communicative enough when the fancy seizes him." + + "I should like to meet him," I said. "If I am to lodge with anyone, I + should prefer a man of studious and quiet habits. I am not strong + enough yet to stand much noise or excitement. I had enough of both in + Afghanistan to last me for the remainder of my natural existence. How + could I meet this friend of yours?" + + "He is sure to be at the laboratory," returned my companion. "He + either avoids the place for weeks, or else he works there from + morning to night. If you like, we shall drive round together after + luncheon." + + "Certainly," I answered, and the conversation drifted away into other + channels. + + As we made our way to the hospital after leaving the Holborn, + Stamford gave me a few more particulars about the gentleman whom I + proposed to take as a fellow-lodger. + + "You mustn't blame me if you don't get on with him," he said; "I know + nothing more of him than I have learned from meeting him occasionally + in the laboratory. You proposed this arrangement, so you must not + hold me responsible." + + "If we don't get on it will be easy to part company," I answered. "It + seems to me, Stamford," I added, looking hard at my companion, "that + you have some reason for washing your hands of the matter. Is this + fellow's temper so formidable, or what is it? Don't be mealy-mouthed + about it." + + "It is not easy to express the inexpressible," he answered with a + laugh. "Holmes is a little too scientific for my tastes--it + approaches to cold-bloodedness. I could imagine his giving a friend a + little pinch of the latest vegetable alkaloid, not out of + malevolence, you understand, but simply out of a spirit of inquiry in + order to have an accurate idea of the effects. To do him justice, I + think that he would take it himself with the same readiness. He + appears to have a passion for definite and exact knowledge." + + "Very right too." + + "Yes, but it may be pushed to excess. When it comes to beating the + subjects in the dissecting-rooms with a stick, it is certainly taking + rather a bizarre shape." + + "Beating the subjects!" + + "Yes, to verify how far bruises may be produced after death. I saw + him at it with my own eyes." + + "And yet you say he is not a medical student?" + + "No. Heaven knows what the objects of his studies are. But here we + are, and you must form your own impressions about him." As he spoke, + we turned down a narrow lane and passed through a small side-door, + which opened into a wing of the great hospital. It was familiar + ground to me, and I needed no guiding as we ascended the bleak stone + staircase and made our way down the long corridor with its vista of + whitewashed wall and dun-coloured doors. Near the further end a low + arched passage branched away from it and led to the chemical + laboratory. + + This was a lofty chamber, lined and littered with countless bottles. + Broad, low tables were scattered about, which bristled with retorts, + test-tubes, and little Bunsen lamps, with their blue flickering + flames. There was only one student in the room, who was bending over + a distant table absorbed in his work. At the sound of our steps he + glanced round and sprang to his feet with a cry of pleasure. "I've + found it! I've found it," he shouted to my companion, running towards + us with a test-tube in his hand. "I have found a re-agent which is + precipitated by hoemoglobin, and by nothing else." Had he discovered + a gold mine, greater delight could not have shone upon his features. + + "Dr. Watson, Mr. Sherlock Holmes," said Stamford, introducing us. + + "How are you?" he said cordially, gripping my hand with a strength + for which I should hardly have given him credit. "You have been in + Afghanistan, I perceive." + + "How on earth did you know that?" I asked in astonishment. + + "Never mind," said he, chuckling to himself. "The question now is + about hoemoglobin. No doubt you see the significance of this + discovery of mine?" + + "It is interesting, chemically, no doubt," I answered, "but + practically--" + + "Why, man, it is the most practical medico-legal discovery for years. + Don't you see that it gives us an infallible test for blood stains. + Come over here now!" He seized me by the coat-sleeve in his + eagerness, and drew me over to the table at which he had been + working. "Let us have some fresh blood," he said, digging a long + bodkin into his finger, and drawing off the resulting drop of blood + in a chemical pipette. "Now, I add this small quantity of blood to a + litre of water. You perceive that the resulting mixture has the + appearance of pure water. The proportion of blood cannot be more than + one in a million. I have no doubt, however, that we shall be able to + obtain the characteristic reaction." As he spoke, he threw into the + vessel a few white crystals, and then added some drops of a + transparent fluid. In an instant the contents assumed a dull mahogany + colour, and a brownish dust was precipitated to the bottom of the + glass jar. + + "Ha! ha!" he cried, clapping his hands, and looking as delighted as a + child with a new toy. "What do you think of that?" + + "It seems to be a very delicate test," I remarked. + + "Beautiful! beautiful! The old Guiacum test was very clumsy and + uncertain. So is the microscopic examination for blood corpuscles. + The latter is valueless if the stains are a few hours old. Now, this + appears to act as well whether the blood is old or new. Had this test + been invented, there are hundreds of men now walking the earth who + would long ago have paid the penalty of their crimes." + + "Indeed!" I murmured. + + "Criminal cases are continually hinging upon that one point. A man is + suspected of a crime months perhaps after it has been committed. His + linen or clothes are examined, and brownish stains discovered upon + them. Are they blood stains, or mud stains, or rust stains, or fruit + stains, or what are they? That is a question which has puzzled many + an expert, and why? Because there was no reliable test. Now we have + the Sherlock Holmes' test, and there will no longer be any + difficulty." + + His eyes fairly glittered as he spoke, and he put his hand over his + heart and bowed as if to some applauding crowd conjured up by his + imagination. + + "You are to be congratulated," I remarked, considerably surprised at + his enthusiasm. + + "There was the case of Von Bischoff at Frankfort last year. He would + certainly have been hung had this test been in existence. Then there + was Mason of Bradford, and the notorious Muller, and Lefevre of + Montpellier, and Samson of new Orleans. I could name a score of cases + in which it would have been decisive." + + "You seem to be a walking calendar of crime," said Stamford with a + laugh. "You might start a paper on those lines. Call it the 'Police + News of the Past.'" + + "Very interesting reading it might be made, too," remarked Sherlock + Holmes, sticking a small piece of plaster over the prick on his + finger. "I have to be careful," he continued, turning to me with a + smile, "for I dabble with poisons a good deal." He held out his hand + as he spoke, and I noticed that it was all mottled over with similar + pieces of plaster, and discoloured with strong acids. + + "We came here on business," said Stamford, sitting down on a high + three-legged stool, and pushing another one in my direction with his + foot. "My friend here wants to take diggings, and as you were + complaining that you could get no one to go halves with you, I + thought that I had better bring you together." + + Sherlock Holmes seemed delighted at the idea of sharing his rooms + with me. "I have my eye on a suite in Baker Street," he said, "which + would suit us down to the ground. You don't mind the smell of strong + tobacco, I hope?" + + "I always smoke 'ship's' myself," I answered. + + "That's good enough. I generally have chemicals about, and + occasionally do experiments. Would that annoy you?" + + "By no means." + + "Let me see--what are my other shortcomings. I get in the dumps at + times, and don't open my mouth for days on end. You must not think I + am sulky when I do that. Just let me alone, and I'll soon be right. + What have you to confess now? It's just as well for two fellows to + know the worst of one another before they begin to live together." + + I laughed at this cross-examination. "I keep a bull pup," I said, + "and I object to rows because my nerves are shaken, and I get up at + all sorts of ungodly hours, and I am extremely lazy. I have another + set of vices when I'm well, but those are the principal ones at + present." + + "Do you include violin-playing in your category of rows?" he asked, + anxiously. + + "It depends on the player," I answered. "A well-played violin is a + treat for the gods--a badly-played one--" + + "Oh, that's all right," he cried, with a merry laugh. "I think we may + consider the thing as settled--that is, if the rooms are agreeable to + you." + + "When shall we see them?" + + "Call for me here at noon to-morrow, and we'll go together and settle + everything," he answered. + + "All right--noon exactly," said I, shaking his hand. + + We left him working among his chemicals, and we walked together + towards my hotel. + + "By the way," I asked suddenly, stopping and turning upon Stamford, + "how the deuce did he know that I had come from Afghanistan?" + + My companion smiled an enigmatical smile. "That's just his little + peculiarity," he said. "A good many people have wanted to know how he + finds things out." + + "Oh! a mystery is it?" I cried, rubbing my hands. "This is very + piquant. I am much obliged to you for bringing us together. 'The + proper study of mankind is man,' you know." + + "You must study him, then," Stamford said, as he bade me good-bye. + "You'll find him a knotty problem, though. I'll wager he learns more + about you than you about him. Good-bye." + + "Good-bye," I answered, and strolled on to my hotel, considerably + interested in my new acquaintance. + + + + + + CHAPTER II + The Science Of Deduction + + + We met next day as he had arranged, and inspected the rooms at No. + 221b, Baker Street, of which he had spoken at our meeting. They + consisted of a couple of comfortable bed-rooms and a single large + airy sitting-room, cheerfully furnished, and illuminated by two broad + windows. So desirable in every way were the apartments, and so + moderate did the terms seem when divided between us, that the bargain + was concluded upon the spot, and we at once entered into possession. + That very evening I moved my things round from the hotel, and on the + following morning Sherlock Holmes followed me with several boxes and + portmanteaus. For a day or two we were busily employed in unpacking + and laying out our property to the best advantage. That done, we + gradually began to settle down and to accommodate ourselves to our + new surroundings. + + Holmes was certainly not a difficult man to live with. He was quiet + in his ways, and his habits were regular. It was rare for him to be + up after ten at night, and he had invariably breakfasted and gone out + before I rose in the morning. Sometimes he spent his day at the + chemical laboratory, sometimes in the dissecting-rooms, and + occasionally in long walks, which appeared to take him into the + lowest portions of the City. Nothing could exceed his energy when the + working fit was upon him; but now and again a reaction would seize + him, and for days on end he would lie upon the sofa in the + sitting-room, hardly uttering a word or moving a muscle from morning + to night. On these occasions I have noticed such a dreamy, vacant + expression in his eyes, that I might have suspected him of being + addicted to the use of some narcotic, had not the temperance and + cleanliness of his whole life forbidden such a notion. + + As the weeks went by, my interest in him and my curiosity as to his + aims in life, gradually deepened and increased. His very person and + appearance were such as to strike the attention of the most casual + observer. In height he was rather over six feet, and so excessively + lean that he seemed to be considerably taller. His eyes were sharp + and piercing, save during those intervals of torpor to which I have + alluded; and his thin, hawk-like nose gave his whole expression an + air of alertness and decision. His chin, too, had the prominence and + squareness which mark the man of determination. His hands were + invariably blotted with ink and stained with chemicals, yet he was + possessed of extraordinary delicacy of touch, as I frequently had + occasion to observe when I watched him manipulating his fragile + philosophical instruments. + + The reader may set me down as a hopeless busybody, when I confess how + much this man stimulated my curiosity, and how often I endeavoured to + break through the reticence which he showed on all that concerned + himself. Before pronouncing judgment, however, be it remembered, how + objectless was my life, and how little there was to engage my + attention. My health forbade me from venturing out unless the weather + was exceptionally genial, and I had no friends who would call upon me + and break the monotony of my daily existence. Under these + circumstances, I eagerly hailed the little mystery which hung around + my companion, and spent much of my time in endeavouring to unravel + it. + + He was not studying medicine. He had himself, in reply to a question, + confirmed Stamford's opinion upon that point. Neither did he appear + to have pursued any course of reading which might fit him for a + degree in science or any other recognized portal which would give him + an entrance into the learned world. Yet his zeal for certain studies + was remarkable, and within eccentric limits his knowledge was so + extraordinarily ample and minute that his observations have fairly + astounded me. Surely no man would work so hard or attain such precise + information unless he had some definite end in view. Desultory + readers are seldom remarkable for the exactness of their learning. No + man burdens his mind with small matters unless he has some very good + reason for doing so. + + His ignorance was as remarkable as his knowledge. Of contemporary + literature, philosophy and politics he appeared to know next to + nothing. Upon my quoting Thomas Carlyle, he inquired in the naivest + way who he might be and what he had done. My surprise reached a + climax, however, when I found incidentally that he was ignorant of + the Copernican Theory and of the composition of the Solar System. + That any civilized human being in this nineteenth century should not + be aware that the earth travelled round the sun appeared to be to me + such an extraordinary fact that I could hardly realize it. + + "You appear to be astonished," he said, smiling at my expression of + surprise. "Now that I do know it I shall do my best to forget it." + + "To forget it!" + + "You see," he explained, "I consider that a man's brain originally is + like a little empty attic, and you have to stock it with such + furniture as you choose. A fool takes in all the lumber of every sort + that he comes across, so that the knowledge which might be useful to + him gets crowded out, or at best is jumbled up with a lot of other + things so that he has a difficulty in laying his hands upon it. Now + the skilful workman is very careful indeed as to what he takes into + his brain-attic. He will have nothing but the tools which may help + him in doing his work, but of these he has a large assortment, and + all in the most perfect order. It is a mistake to think that that + little room has elastic walls and can distend to any extent. Depend + upon it there comes a time when for every addition of knowledge you + forget something that you knew before. It is of the highest + importance, therefore, not to have useless facts elbowing out the + useful ones." + + "But the Solar System!" I protested. + + "What the deuce is it to me?" he interrupted impatiently; "you say + that we go round the sun. If we went round the moon it would not make + a pennyworth of difference to me or to my work." + + I was on the point of asking him what that work might be, but + something in his manner showed me that the question would be an + unwelcome one. I pondered over our short conversation, however, and + endeavoured to draw my deductions from it. He said that he would + acquire no knowledge which did not bear upon his object. Therefore + all the knowledge which he possessed was such as would be useful to + him. I enumerated in my own mind all the various points upon which he + had shown me that he was exceptionally well-informed. I even took a + pencil and jotted them down. I could not help smiling at the document + when I had completed it. It ran in this way-- + + Sherlock Holmes--his limits. + + 1. Knowledge of Literature.--Nil. + 2. Philosophy.--Nil. + 3. Astronomy.--Nil. + 4. Politics.--Feeble. + 5. Botany.--Variable. Well up in belladonna, opium, and poisons + generally. Knows nothing of practical gardening. + 6. Geology.--Practical, but limited. Tells at a glance different + soils from each other. After walks has shown me splashes upon his + trousers, and told me by their colour and consistence in what part of + London he had received them. + 7. Chemistry.--Profound. + 8. Anatomy.--Accurate, but unsystematic. + 9. Sensational Literature.--Immense. He appears to know every detail + of every horror perpetrated in the century. + 10. Plays the violin well. + 11. Is an expert singlestick player, boxer, and swordsman. + 12. Has a good practical knowledge of British law. + + When I had got so far in my list I threw it into the fire in despair. + "If I can only find what the fellow is driving at by reconciling all + these accomplishments, and discovering a calling which needs them + all," I said to myself, "I may as well give up the attempt at once." + + I see that I have alluded above to his powers upon the violin. These + were very remarkable, but as eccentric as all his other + accomplishments. That he could play pieces, and difficult pieces, I + knew well, because at my request he has played me some of + Mendelssohn's Lieder, and other favourites. When left to himself, + however, he would seldom produce any music or attempt any recognized + air. Leaning back in his arm-chair of an evening, he would close his + eyes and scrape carelessly at the fiddle which was thrown across his + knee. Sometimes the chords were sonorous and melancholy. Occasionally + they were fantastic and cheerful. Clearly they reflected the thoughts + which possessed him, but whether the music aided those thoughts, or + whether the playing was simply the result of a whim or fancy was more + than I could determine. I might have rebelled against these + exasperating solos had it not been that he usually terminated them by + playing in quick succession a whole series of my favourite airs as a + slight compensation for the trial upon my patience. + + During the first week or so we had no callers, and I had begun to + think that my companion was as friendless a man as I was myself. + Presently, however, I found that he had many acquaintances, and those + in the most different classes of society. There was one little sallow + rat-faced, dark-eyed fellow who was introduced to me as Mr. Lestrade, + and who came three or four times in a single week. One morning a + young girl called, fashionably dressed, and stayed for half an hour + or more. The same afternoon brought a grey-headed, seedy visitor, + looking like a Jew pedlar, who appeared to me to be much excited, and + who was closely followed by a slipshod elderly woman. On another + occasion an old white-haired gentleman had an interview with my + companion; and on another a railway porter in his velveteen uniform. + When any of these nondescript individuals put in an appearance, + Sherlock Holmes used to beg for the use of the sitting-room, and I + would retire to my bed-room. He always apologized to me for putting + me to this inconvenience. "I have to use this room as a place of + business," he said, "and these people are my clients." Again I had an + opportunity of asking him a point blank question, and again my + delicacy prevented me from forcing another man to confide in me. I + imagined at the time that he had some strong reason for not alluding + to it, but he soon dispelled the idea by coming round to the subject + of his own accord. + + It was upon the 4th of March, as I have good reason to remember, that + I rose somewhat earlier than usual, and found that Sherlock Holmes + had not yet finished his breakfast. The landlady had become so + accustomed to my late habits that my place had not been laid nor my + coffee prepared. With the unreasonable petulance of mankind I rang + the bell and gave a curt intimation that I was ready. Then I picked + up a magazine from the table and attempted to while away the time + with it, while my companion munched silently at his toast. One of the + articles had a pencil mark at the heading, and I naturally began to + run my eye through it. + + Its somewhat ambitious title was "The Book of Life," and it attempted + to show how much an observant man might learn by an accurate and + systematic examination of all that came in his way. It struck me as + being a remarkable mixture of shrewdness and of absurdity. The + reasoning was close and intense, but the deductions appeared to me to + be far-fetched and exaggerated. The writer claimed by a momentary + expression, a twitch of a muscle or a glance of an eye, to fathom a + man's inmost thoughts. Deceit, according to him, was an impossibility + in the case of one trained to observation and analysis. His + conclusions were as infallible as so many propositions of Euclid. So + startling would his results appear to the uninitiated that until they + learned the processes by which he had arrived at them they might well + consider him as a necromancer. + + "From a drop of water," said the writer, "a logician could infer the + possibility of an Atlantic or a Niagara without having seen or heard + of one or the other. So all life is a great chain, the nature of + which is known whenever we are shown a single link of it. Like all + other arts, the Science of Deduction and Analysis is one which can + only be acquired by long and patient study nor is life long enough to + allow any mortal to attain the highest possible perfection in it. + Before turning to those moral and mental aspects of the matter which + present the greatest difficulties, let the enquirer begin by + mastering more elementary problems. Let him, on meeting a + fellow-mortal, learn at a glance to distinguish the history of the + man, and the trade or profession to which he belongs. Puerile as such + an exercise may seem, it sharpens the faculties of observation, and + teaches one where to look and what to look for. By a man's finger + nails, by his coat-sleeve, by his boot, by his trouser knees, by the + callosities of his forefinger and thumb, by his expression, by his + shirt cuffs--by each of these things a man's calling is plainly + revealed. That all united should fail to enlighten the competent + enquirer in any case is almost inconceivable." + + "What ineffable twaddle!" I cried, slapping the magazine down on the + table, "I never read such rubbish in my life." + + "What is it?" asked Sherlock Holmes. + + "Why, this article," I said, pointing at it with my egg spoon as I + sat down to my breakfast. "I see that you have read it since you have + marked it. I don't deny that it is smartly written. It irritates me + though. It is evidently the theory of some arm-chair lounger who + evolves all these neat little paradoxes in the seclusion of his own + study. It is not practical. I should like to see him clapped down in + a third class carriage on the Underground, and asked to give the + trades of all his fellow-travellers. I would lay a thousand to one + against him." + + "You would lose your money," Sherlock Holmes remarked calmly. "As + for the article I wrote it myself." + + "You!" + + "Yes, I have a turn both for observation and for deduction. The + theories which I have expressed there, and which appear to you to be + so chimerical are really extremely practical--so practical that I + depend upon them for my bread and cheese." + + "And how?" I asked involuntarily. + + "Well, I have a trade of my own. I suppose I am the only one in the + world. I'm a consulting detective, if you can understand what that + is. Here in London we have lots of Government detectives and lots of + private ones. When these fellows are at fault they come to me, and I + manage to put them on the right scent. They lay all the evidence + before me, and I am generally able, by the help of my knowledge of + the history of crime, to set them straight. There is a strong family + resemblance about misdeeds, and if you have all the details of a + thousand at your finger ends, it is odd if you can't unravel the + thousand and first. Lestrade is a well-known detective. He got + himself into a fog recently over a forgery case, and that was what + brought him here." + + "And these other people?" + + "They are mostly sent on by private inquiry agencies. They are all + people who are in trouble about something, and want a little + enlightening. I listen to their story, they listen to my comments, + and then I pocket my fee." + + "But do you mean to say," I said, "that without leaving your room you + can unravel some knot which other men can make nothing of, although + they have seen every detail for themselves?" + + "Quite so. I have a kind of intuition that way. Now and again a case + turns up which is a little more complex. Then I have to bustle about + and see things with my own eyes. You see I have a lot of special + knowledge which I apply to the problem, and which facilitates matters + wonderfully. Those rules of deduction laid down in that article which + aroused your scorn, are invaluable to me in practical work. + Observation with me is second nature. You appeared to be surprised + when I told you, on our first meeting, that you had come from + Afghanistan." + + "You were told, no doubt." + + "Nothing of the sort. I knew you came from Afghanistan. From long + habit the train of thoughts ran so swiftly through my mind, that I + arrived at the conclusion without being conscious of intermediate + steps. There were such steps, however. The train of reasoning ran, + 'Here is a gentleman of a medical type, but with the air of a + military man. Clearly an army doctor, then. He has just come from the + tropics, for his face is dark, and that is not the natural tint of + his skin, for his wrists are fair. He has undergone hardship and + sickness, as his haggard face says clearly. His left arm has been + injured. He holds it in a stiff and unnatural manner. Where in the + tropics could an English army doctor have seen much hardship and got + his arm wounded? Clearly in Afghanistan.' The whole train of thought + did not occupy a second. I then remarked that you came from + Afghanistan, and you were astonished." + + "It is simple enough as you explain it," I said, smiling. "You remind + me of Edgar Allen Poe's Dupin. I had no idea that such individuals + did exist outside of stories." + + Sherlock Holmes rose and lit his pipe. "No doubt you think that you + are complimenting me in comparing me to Dupin," he observed. "Now, in + my opinion, Dupin was a very inferior fellow. That trick of his of + breaking in on his friends' thoughts with an apropos remark after a + quarter of an hour's silence is really very showy and superficial. He + had some analytical genius, no doubt; but he was by no means such a + phenomenon as Poe appeared to imagine." + + "Have you read Gaboriau's works?" I asked. "Does Lecoq come up to + your idea of a detective?" + + Sherlock Holmes sniffed sardonically. "Lecoq was a miserable + bungler," he said, in an angry voice; "he had only one thing to + recommend him, and that was his energy. That book made me positively + ill. The question was how to identify an unknown prisoner. I could + have done it in twenty-four hours. Lecoq took six months or so. It + might be made a text-book for detectives to teach them what to + avoid." + + I felt rather indignant at having two characters whom I had admired + treated in this cavalier style. I walked over to the window, and + stood looking out into the busy street. "This fellow may be very + clever," I said to myself, "but he is certainly very conceited." + + "There are no crimes and no criminals in these days," he said, + querulously. "What is the use of having brains in our profession? I + know well that I have it in me to make my name famous. No man lives + or has ever lived who has brought the same amount of study and of + natural talent to the detection of crime which I have done. And what + is the result? There is no crime to detect, or, at most, some + bungling villany with a motive so transparent that even a Scotland + Yard official can see through it." + + I was still annoyed at his bumptious style of conversation. I thought + it best to change the topic. + + "I wonder what that fellow is looking for?" I asked, pointing to a + stalwart, plainly-dressed individual who was walking slowly down the + other side of the street, looking anxiously at the numbers. He had a + large blue envelope in his hand, and was evidently the bearer of a + message. + + "You mean the retired sergeant of Marines," said Sherlock Holmes. + + "Brag and bounce!" thought I to myself. "He knows that I cannot + verify his guess." + + The thought had hardly passed through my mind when the man whom we + were watching caught sight of the number on our door, and ran rapidly + across the roadway. We heard a loud knock, a deep voice below, and + heavy steps ascending the stair. + + "For Mr. Sherlock Holmes," he said, stepping into the room and + handing my friend the letter. + + Here was an opportunity of taking the conceit out of him. He little + thought of this when he made that random shot. "May I ask, my lad," I + said, in the blandest voice, "what your trade may be?" + + "Commissionaire, sir," he said, gruffly. "Uniform away for repairs." + + "And you were?" I asked, with a slightly malicious glance at my + companion. + + "A sergeant, sir, Royal Marine Light Infantry, sir. No answer? Right, + sir." + + He clicked his heels together, raised his hand in a salute, and was + gone. + + + + + + CHAPTER III + The Lauriston Garden Mystery + + + I confess that I was considerably startled by this fresh proof of the + practical nature of my companion's theories. My respect for his + powers of analysis increased wondrously. There still remained some + lurking suspicion in my mind, however, that the whole thing was a + pre-arranged episode, intended to dazzle me, though what earthly + object he could have in taking me in was past my comprehension. When + I looked at him he had finished reading the note, and his eyes had + assumed the vacant, lack-lustre expression which showed mental + abstraction. + + "How in the world did you deduce that?" I asked. + + "Deduce what?" said he, petulantly. + + "Why, that he was a retired sergeant of Marines." + + "I have no time for trifles," he answered, brusquely; then with a + smile, "Excuse my rudeness. You broke the thread of my thoughts; but + perhaps it is as well. So you actually were not able to see that that + man was a sergeant of Marines?" + + "No, indeed." + + "It was easier to know it than to explain why I knew it. If you were + asked to prove that two and two made four, you might find some + difficulty, and yet you are quite sure of the fact. Even across the + street I could see a great blue anchor tattooed on the back of the + fellow's hand. That smacked of the sea. He had a military carriage, + however, and regulation side whiskers. There we have the marine. He + was a man with some amount of self-importance and a certain air of + command. You must have observed the way in which he held his head and + swung his cane. A steady, respectable, middle-aged man, too, on the + face of him--all facts which led me to believe that he had been a + sergeant." + + "Wonderful!" I ejaculated. + + "Commonplace," said Holmes, though I thought from his expression that + he was pleased at my evident surprise and admiration. "I said just + now that there were no criminals. It appears that I am wrong--look at + this!" He threw me over the note which the commissionaire had + brought. + + "Why," I cried, as I cast my eye over it, "this is terrible!" + + "It does seem to be a little out of the common," he remarked, calmly. + "Would you mind reading it to me aloud?" + + This is the letter which I read to him-- + + "My dear Mr. Sherlock Holmes: + "There has been a bad business during the night at 3, Lauriston + Gardens, off the Brixton Road. Our man on the beat saw a light there + about two in the morning, and as the house was an empty one, + suspected that something was amiss. He found the door open, and in + the front room, which is bare of furniture, discovered the body of a + gentleman, well dressed, and having cards in his pocket bearing the + name of 'Enoch J. Drebber, Cleveland, Ohio, U.S.A.' There had been no + robbery, nor is there any evidence as to how the man met his death. + There are marks of blood in the room, but there is no wound upon his + person. We are at a loss as to how he came into the empty house; + indeed, the whole affair is a puzzler. If you can come round to the + house any time before twelve, you will find me there. I have left + everything in statu quo until I hear from you. If you are unable to + come I shall give you fuller details, and would esteem it a great + kindness if you would favour me with your opinion. + "Yours faithfully, + "Tobias Gregson." + + "Gregson is the smartest of the Scotland Yarders," my friend + remarked; "he and Lestrade are the pick of a bad lot. They are both + quick and energetic, but conventional--shockingly so. They have their + knives into one another, too. They are as jealous as a pair of + professional beauties. There will be some fun over this case if they + are both put upon the scent." + + I was amazed at the calm way in which he rippled on. "Surely there is + not a moment to be lost," I cried, "shall I go and order you a cab?" + + "I'm not sure about whether I shall go. I am the most incurably lazy + devil that ever stood in shoe leather--that is, when the fit is on + me, for I can be spry enough at times." + + "Why, it is just such a chance as you have been longing for." + + "My dear fellow, what does it matter to me. Supposing I unravel the + whole matter, you may be sure that Gregson, Lestrade, and Co. will + pocket all the credit. That comes of being an unofficial personage." + + "But he begs you to help him." + + "Yes. He knows that I am his superior, and acknowledges it to me; but + he would cut his tongue out before he would own it to any third + person. However, we may as well go and have a look. I shall work it + out on my own hook. I may have a laugh at them if I have nothing + else. Come on!" + + He hustled on his overcoat, and bustled about in a way that showed + that an energetic fit had superseded the apathetic one. + + "Get your hat," he said. + + "You wish me to come?" + + "Yes, if you have nothing better to do." A minute later we were both + in a hansom, driving furiously for the Brixton Road. + + It was a foggy, cloudy morning, and a dun-coloured veil hung over the + house-tops, looking like the reflection of the mud-coloured streets + beneath. My companion was in the best of spirits, and prattled away + about Cremona fiddles, and the difference between a Stradivarius and + an Amati. As for myself, I was silent, for the dull weather and the + melancholy business upon which we were engaged, depressed my spirits. + + "You don't seem to give much thought to the matter in hand," I said + at last, interrupting Holmes' musical disquisition. + + "No data yet," he answered. "It is a capital mistake to theorize + before you have all the evidence. It biases the judgment." + + "You will have your data soon," I remarked, pointing with my finger; + "this is the Brixton Road, and that is the house, if I am not very + much mistaken." + + "So it is. Stop, driver, stop!" We were still a hundred yards or so + from it, but he insisted upon our alighting, and we finished our + journey upon foot. + + Number 3, Lauriston Gardens wore an ill-omened and minatory look. It + was one of four which stood back some little way from the street, two + being occupied and two empty. The latter looked out with three tiers + of vacant melancholy windows, which were blank and dreary, save that + here and there a "To Let" card had developed like a cataract upon the + bleared panes. A small garden sprinkled over with a scattered + eruption of sickly plants separated each of these houses from the + street, and was traversed by a narrow pathway, yellowish in colour, + and consisting apparently of a mixture of clay and of gravel. The + whole place was very sloppy from the rain which had fallen through + the night. The garden was bounded by a three-foot brick wall with a + fringe of wood rails upon the top, and against this wall was leaning + a stalwart police constable, surrounded by a small knot of loafers, + who craned their necks and strained their eyes in the vain hope of + catching some glimpse of the proceedings within. + + I had imagined that Sherlock Holmes would at once have hurried into + the house and plunged into a study of the mystery. Nothing appeared + to be further from his intention. With an air of nonchalance which, + under the circumstances, seemed to me to border upon affectation, he + lounged up and down the pavement, and gazed vacantly at the ground, + the sky, the opposite houses and the line of railings. Having + finished his scrutiny, he proceeded slowly down the path, or rather + down the fringe of grass which flanked the path, keeping his eyes + riveted upon the ground. Twice he stopped, and once I saw him smile, + and heard him utter an exclamation of satisfaction. There were many + marks of footsteps upon the wet clayey soil, but since the police had + been coming and going over it, I was unable to see how my companion + could hope to learn anything from it. Still I had had such + extraordinary evidence of the quickness of his perceptive faculties, + that I had no doubt that he could see a great deal which was hidden + from me. + + At the door of the house we were met by a tall, white-faced, + flaxen-haired man, with a notebook in his hand, who rushed forward + and wrung my companion's hand with effusion. "It is indeed kind of + you to come," he said, "I have had everything left untouched." + + "Except that!" my friend answered, pointing at the pathway. "If a + herd of buffaloes had passed along there could not be a greater mess. + No doubt, however, you had drawn your own conclusions, Gregson, + before you permitted this." + + "I have had so much to do inside the house," the detective said + evasively. "My colleague, Mr. Lestrade, is here. I had relied upon + him to look after this." + + Holmes glanced at me and raised his eyebrows sardonically. "With two + such men as yourself and Lestrade upon the ground, there will not be + much for a third party to find out," he said. + + Gregson rubbed his hands in a self-satisfied way. "I think we have + done all that can be done," he answered; "it's a queer case though, + and I knew your taste for such things." + + "You did not come here in a cab?" asked Sherlock Holmes. + + "No, sir." + + "Nor Lestrade?" + + "No, sir." + + "Then let us go and look at the room." With which inconsequent remark + he strode on into the house, followed by Gregson, whose features + expressed his astonishment. + + A short passage, bare planked and dusty, led to the kitchen and + offices. Two doors opened out of it to the left and to the right. One + of these had obviously been closed for many weeks. The other belonged + to the dining-room, which was the apartment in which the mysterious + affair had occurred. Holmes walked in, and I followed him with that + subdued feeling at my heart which the presence of death inspires. + + It was a large square room, looking all the larger from the absence + of all furniture. A vulgar flaring paper adorned the walls, but it + was blotched in places with mildew, and here and there great strips + had become detached and hung down, exposing the yellow plaster + beneath. Opposite the door was a showy fireplace, surmounted by a + mantelpiece of imitation white marble. On one corner of this was + stuck the stump of a red wax candle. The solitary window was so dirty + that the light was hazy and uncertain, giving a dull grey tinge to + everything, which was intensified by the thick layer of dust which + coated the whole apartment. + + All these details I observed afterwards. At present my attention was + centred upon the single grim motionless figure which lay stretched + upon the boards, with vacant sightless eyes staring up at the + discoloured ceiling. It was that of a man about forty-three or + forty-four years of age, middle-sized, broad shouldered, with crisp + curling black hair, and a short stubbly beard. He was dressed in a + heavy broadcloth frock coat and waistcoat, with light-coloured + trousers, and immaculate collar and cuffs. A top hat, well brushed + and trim, was placed upon the floor beside him. His hands were + clenched and his arms thrown abroad, while his lower limbs were + interlocked as though his death struggle had been a grievous one. On + his rigid face there stood an expression of horror, and as it seemed + to me, of hatred, such as I have never seen upon human features. This + malignant and terrible contortion, combined with the low forehead, + blunt nose, and prognathous jaw gave the dead man a singularly + simious and ape-like appearance, which was increased by his writhing, + unnatural posture. I have seen death in many forms, but never has it + appeared to me in a more fearsome aspect than in that dark grimy + apartment, which looked out upon one of the main arteries of suburban + London. + + Lestrade, lean and ferret-like as ever, was standing by the doorway, + and greeted my companion and myself. + + "This case will make a stir, sir," he remarked. "It beats anything I + have seen, and I am no chicken." + + "There is no clue?" said Gregson. + + "None at all," chimed in Lestrade. + + Sherlock Holmes approached the body, and, kneeling down, examined it + intently. "You are sure that there is no wound?" he asked, pointing + to numerous gouts and splashes of blood which lay all round. + + "Positive!" cried both detectives. + + "Then, of course, this blood belongs to a second + individual--presumably the murderer, if murder has been committed. It + reminds me of the circumstances attendant on the death of Van Jansen, + in Utrecht, in the year '34. Do you remember the case, Gregson?" + + "No, sir." + + "Read it up--you really should. There is nothing new under the sun. + It has all been done before." + + As he spoke, his nimble fingers were flying here, there, and + everywhere, feeling, pressing, unbuttoning, examining, while his eyes + wore the same far-away expression which I have already remarked upon. + So swiftly was the examination made, that one would hardly have + guessed the minuteness with which it was conducted. Finally, he + sniffed the dead man's lips, and then glanced at the soles of his + patent leather boots. + + "He has not been moved at all?" he asked. + + "No more than was necessary for the purposes of our examination." + + "You can take him to the mortuary now," he said. "There is nothing + more to be learned." + + Gregson had a stretcher and four men at hand. At his call they + entered the room, and the stranger was lifted and carried out. As + they raised him, a ring tinkled down and rolled across the floor. + Lestrade grabbed it up and stared at it with mystified eyes. + + "There's been a woman here," he cried. "It's a woman's wedding-ring." + + He held it out, as he spoke, upon the palm of his hand. We all + gathered round him and gazed at it. There could be no doubt that that + circlet of plain gold had once adorned the finger of a bride. + + "This complicates matters," said Gregson. "Heaven knows, they were + complicated enough before." + + "You're sure it doesn't simplify them?" observed Holmes. "There's + nothing to be learned by staring at it. What did you find in his + pockets?" + + "We have it all here," said Gregson, pointing to a litter of objects + upon one of the bottom steps of the stairs. "A gold watch, No. 97163, + by Barraud, of London. Gold Albert chain, very heavy and solid. Gold + ring, with masonic device. Gold pin--bull-dog's head, with rubies as + eyes. Russian leather card-case, with cards of Enoch J. Drebber of + Cleveland, corresponding with the E. J. D. upon the linen. No purse, + but loose money to the extent of seven pounds thirteen. Pocket + edition of Boccaccio's 'Decameron,' with name of Joseph Stangerson + upon the fly-leaf. Two letters--one addressed to E. J. Drebber and + one to Joseph Stangerson." + + "At what address?" + + "American Exchange, Strand--to be left till called for. They are both + from the Guion Steamship Company, and refer to the sailing of their + boats from Liverpool. It is clear that this unfortunate man was about + to return to New York." + + "Have you made any inquiries as to this man, Stangerson?" + + "I did it at once, sir," said Gregson. "I have had advertisements + sent to all the newspapers, and one of my men has gone to the + American Exchange, but he has not returned yet." + + "Have you sent to Cleveland?" + + "We telegraphed this morning." + + "How did you word your inquiries?" + + "We simply detailed the circumstances, and said that we should be + glad of any information which could help us." + + "You did not ask for particulars on any point which appeared to you + to be crucial?" + + "I asked about Stangerson." + + "Nothing else? Is there no circumstance on which this whole case + appears to hinge? Will you not telegraph again?" + + "I have said all I have to say," said Gregson, in an offended voice. + + Sherlock Holmes chuckled to himself, and appeared to be about to make + some remark, when Lestrade, who had been in the front room while we + were holding this conversation in the hall, reappeared upon the + scene, rubbing his hands in a pompous and self-satisfied manner. + + "Mr. Gregson," he said, "I have just made a discovery of the highest + importance, and one which would have been overlooked had I not made a + careful examination of the walls." + + The little man's eyes sparkled as he spoke, and he was evidently in a + state of suppressed exultation at having scored a point against his + colleague. + + "Come here," he said, bustling back into the room, the atmosphere of + which felt clearer since the removal of its ghastly inmate. "Now, + stand there!" + + He struck a match on his boot and held it up against the wall. + + "Look at that!" he said, triumphantly. + + I have remarked that the paper had fallen away in parts. In this + particular corner of the room a large piece had peeled off, leaving a + yellow square of coarse plastering. Across this bare space there was + scrawled in blood-red letters a single word-- + + RACHE. + + "What do you think of that?" cried the detective, with the air of a + showman exhibiting his show. "This was overlooked because it was in + the darkest corner of the room, and no one thought of looking there. + The murderer has written it with his or her own blood. See this smear + where it has trickled down the wall! That disposes of the idea of + suicide anyhow. Why was that corner chosen to write it on? I will + tell you. See that candle on the mantelpiece. It was lit at the time, + and if it was lit this corner would be the brightest instead of the + darkest portion of the wall." + + "And what does it mean now that you have found it?" asked Gregson in + a depreciatory voice. + + "Mean? Why, it means that the writer was going to put the female name + Rachel, but was disturbed before he or she had time to finish. You + mark my words, when this case comes to be cleared up you will find + that a woman named Rachel has something to do with it. It's all very + well for you to laugh, Mr. Sherlock Holmes. You may be very smart and + clever, but the old hound is the best, when all is said and done." + + "I really beg your pardon!" said my companion, who had ruffled the + little man's temper by bursting into an explosion of laughter. "You + certainly have the credit of being the first of us to find this out, + and, as you say, it bears every mark of having been written by the + other participant in last night's mystery. I have not had time to + examine this room yet, but with your permission I shall do so now." + + As he spoke, he whipped a tape measure and a large round magnifying + glass from his pocket. With these two implements he trotted + noiselessly about the room, sometimes stopping, occasionally + kneeling, and once lying flat upon his face. So engrossed was he with + his occupation that he appeared to have forgotten our presence, for + he chattered away to himself under his breath the whole time, keeping + up a running fire of exclamations, groans, whistles, and little cries + suggestive of encouragement and of hope. As I watched him I was + irresistibly reminded of a pure-blooded well-trained foxhound as it + dashes backwards and forwards through the covert, whining in its + eagerness, until it comes across the lost scent. For twenty minutes + or more he continued his researches, measuring with the most exact + care the distance between marks which were entirely invisible to me, + and occasionally applying his tape to the walls in an equally + incomprehensible manner. In one place he gathered up very carefully a + little pile of grey dust from the floor, and packed it away in an + envelope. Finally, he examined with his glass the word upon the wall, + going over every letter of it with the most minute exactness. This + done, he appeared to be satisfied, for he replaced his tape and his + glass in his pocket. + + "They say that genius is an infinite capacity for taking pains," he + remarked with a smile. "It's a very bad definition, but it does apply + to detective work." + + Gregson and Lestrade had watched the manoeuvres of their amateur + companion with considerable curiosity and some contempt. They + evidently failed to appreciate the fact, which I had begun to + realize, that Sherlock Holmes' smallest actions were all directed + towards some definite and practical end. + + "What do you think of it, sir?" they both asked. + + "It would be robbing you of the credit of the case if I was to + presume to help you," remarked my friend. "You are doing so well now + that it would be a pity for anyone to interfere." There was a world + of sarcasm in his voice as he spoke. "If you will let me know how + your investigations go," he continued, "I shall be happy to give you + any help I can. In the meantime I should like to speak to the + constable who found the body. Can you give me his name and address?" + + Lestrade glanced at his note-book. "John Rance," he said. "He is off + duty now. You will find him at 46, Audley Court, Kennington Park + Gate." + + Holmes took a note of the address. + + "Come along, Doctor," he said; "we shall go and look him up. I'll + tell you one thing which may help you in the case," he continued, + turning to the two detectives. "There has been murder done, and the + murderer was a man. He was more than six feet high, was in the prime + of life, had small feet for his height, wore coarse, square-toed + boots and smoked a Trichinopoly cigar. He came here with his victim + in a four-wheeled cab, which was drawn by a horse with three old + shoes and one new one on his off fore leg. In all probability the + murderer had a florid face, and the finger-nails of his right hand + were remarkably long. These are only a few indications, but they may + assist you." + + Lestrade and Gregson glanced at each other with an incredulous smile. + + "If this man was murdered, how was it done?" asked the former. + + "Poison," said Sherlock Holmes curtly, and strode off. "One other + thing, Lestrade," he added, turning round at the door: "'Rache,' is + the German for 'revenge;' so don't lose your time looking for Miss + Rachel." + + With which Parthian shot he walked away, leaving the two rivals + open-mouthed behind him. + + + + + + CHAPTER IV + What John Rance Had To Tell + + + It was one o'clock when we left No. 3, Lauriston Gardens. Sherlock + Holmes led me to the nearest telegraph office, whence he dispatched a + long telegram. He then hailed a cab, and ordered the driver to take + us to the address given us by Lestrade. + + "There is nothing like first hand evidence," he remarked; "as a + matter of fact, my mind is entirely made up upon the case, but still + we may as well learn all that is to be learned." + + "You amaze me, Holmes," said I. "Surely you are not as sure as you + pretend to be of all those particulars which you gave." + + "There's no room for a mistake," he answered. "The very first thing + which I observed on arriving there was that a cab had made two ruts + with its wheels close to the curb. Now, up to last night, we have had + no rain for a week, so that those wheels which left such a deep + impression must have been there during the night. There were the + marks of the horse's hoofs, too, the outline of one of which was far + more clearly cut than that of the other three, showing that that was + a new shoe. Since the cab was there after the rain began, and was not + there at any time during the morning--I have Gregson's word for + that--it follows that it must have been there during the night, and, + therefore, that it brought those two individuals to the house." + + "That seems simple enough," said I; "but how about the other man's + height?" + + "Why, the height of a man, in nine cases out of ten, can be told from + the length of his stride. It is a simple calculation enough, though + there is no use my boring you with figures. I had this fellow's + stride both on the clay outside and on the dust within. Then I had a + way of checking my calculation. When a man writes on a wall, his + instinct leads him to write about the level of his own eyes. Now that + writing was just over six feet from the ground. It was child's play." + + "And his age?" I asked. + + "Well, if a man can stride four and a-half feet without the smallest + effort, he can't be quite in the sere and yellow. That was the + breadth of a puddle on the garden walk which he had evidently walked + across. Patent-leather boots had gone round, and Square-toes had + hopped over. There is no mystery about it at all. I am simply + applying to ordinary life a few of those precepts of observation and + deduction which I advocated in that article. Is there anything else + that puzzles you?" + + "The finger nails and the Trichinopoly," I suggested. + + "The writing on the wall was done with a man's forefinger dipped in + blood. My glass allowed me to observe that the plaster was slightly + scratched in doing it, which would not have been the case if the + man's nail had been trimmed. I gathered up some scattered ash from + the floor. It was dark in colour and flakey--such an ash as is only + made by a Trichinopoly. I have made a special study of cigar + ashes--in fact, I have written a monograph upon the subject. I + flatter myself that I can distinguish at a glance the ash of any + known brand, either of cigar or of tobacco. It is just in such + details that the skilled detective differs from the Gregson and + Lestrade type." + + "And the florid face?" I asked. + + "Ah, that was a more daring shot, though I have no doubt that I was + right. You must not ask me that at the present state of the affair." + + I passed my hand over my brow. "My head is in a whirl," I remarked; + "the more one thinks of it the more mysterious it grows. How came + these two men--if there were two men--into an empty house? What has + become of the cabman who drove them? How could one man compel another + to take poison? Where did the blood come from? What was the object of + the murderer, since robbery had no part in it? How came the woman's + ring there? Above all, why should the second man write up the German + word RACHE before decamping? I confess that I cannot see any possible + way of reconciling all these facts." + + My companion smiled approvingly. + + "You sum up the difficulties of the situation succinctly and well," + he said. "There is much that is still obscure, though I have quite + made up my mind on the main facts. As to poor Lestrade's discovery it + was simply a blind intended to put the police upon a wrong track, by + suggesting Socialism and secret societies. It was not done by a + German. The A, if you noticed, was printed somewhat after the German + fashion. Now, a real German invariably prints in the Latin character, + so that we may safely say that this was not written by one, but by a + clumsy imitator who overdid his part. It was simply a ruse to divert + inquiry into a wrong channel. I'm not going to tell you much more of + the case, Doctor. You know a conjuror gets no credit when once he has + explained his trick, and if I show you too much of my method of + working, you will come to the conclusion that I am a very ordinary + individual after all." + + "I shall never do that," I answered; "you have brought detection as + near an exact science as it ever will be brought in this world." + + My companion flushed up with pleasure at my words, and the earnest + way in which I uttered them. I had already observed that he was as + sensitive to flattery on the score of his art as any girl could be of + her beauty. + + "I'll tell you one other thing," he said. "Patent-leathers and + Square-toes came in the same cab, and they walked down the pathway + together as friendly as possible--arm-in-arm, in all probability. + When they got inside they walked up and down the room--or rather, + Patent-leathers stood still while Square-toes walked up and down. I + could read all that in the dust; and I could read that as he walked + he grew more and more excited. That is shown by the increased length + of his strides. He was talking all the while, and working himself up, + no doubt, into a fury. Then the tragedy occurred. I've told you all I + know myself now, for the rest is mere surmise and conjecture. We have + a good working basis, however, on which to start. We must hurry up, + for I want to go to Halle's concert to hear Norman Neruda this + afternoon." + + This conversation had occurred while our cab had been threading its + way through a long succession of dingy streets and dreary by-ways. In + the dingiest and dreariest of them our driver suddenly came to a + stand. "That's Audley Court in there," he said, pointing to a narrow + slit in the line of dead-coloured brick. "You'll find me here when + you come back." + + Audley Court was not an attractive locality. The narrow passage led + us into a quadrangle paved with flags and lined by sordid dwellings. + We picked our way among groups of dirty children, and through lines + of discoloured linen, until we came to Number 46, the door of which + was decorated with a small slip of brass on which the name Rance was + engraved. On enquiry we found that the constable was in bed, and we + were shown into a little front parlour to await his coming. + + He appeared presently, looking a little irritable at being disturbed + in his slumbers. "I made my report at the office," he said. + + Holmes took a half-sovereign from his pocket and played with it + pensively. "We thought that we should like to hear it all from your + own lips," he said. + + "I shall be most happy to tell you anything I can," the constable + answered with his eyes upon the little golden disk. + + "Just let us hear it all in your own way as it occurred." + + Rance sat down on the horsehair sofa, and knitted his brows as though + determined not to omit anything in his narrative. + + "I'll tell it ye from the beginning," he said. "My time is from ten + at night to six in the morning. At eleven there was a fight at the + 'White Hart'; but bar that all was quiet enough on the beat. At one + o'clock it began to rain, and I met Harry Murcher--him who has the + Holland Grove beat--and we stood together at the corner of Henrietta + Street a-talkin'. Presently--maybe about two or a little after--I + thought I would take a look round and see that all was right down the + Brixton Road. It was precious dirty and lonely. Not a soul did I meet + all the way down, though a cab or two went past me. I was a strollin' + down, thinkin' between ourselves how uncommon handy a four of gin hot + would be, when suddenly the glint of a light caught my eye in the + window of that same house. Now, I knew that them two houses in + Lauriston Gardens was empty on account of him that owns them who + won't have the drains seed to, though the very last tenant what lived + in one of them died o' typhoid fever. I was knocked all in a heap + therefore at seeing a light in the window, and I suspected as + something was wrong. When I got to the door--" + + "You stopped, and then walked back to the garden gate," my companion + interrupted. "What did you do that for?" + + Rance gave a violent jump, and stared at Sherlock Holmes with the + utmost amazement upon his features. + + "Why, that's true, sir," he said; "though how you come to know it, + Heaven only knows. Ye see, when I got up to the door it was so still + and so lonesome, that I thought I'd be none the worse for some one + with me. I ain't afeared of anything on this side o' the grave; but I + thought that maybe it was him that died o' the typhoid inspecting the + drains what killed him. The thought gave me a kind o' turn, and I + walked back to the gate to see if I could see Murcher's lantern, but + there wasn't no sign of him nor of anyone else." + + "There was no one in the street?" + + "Not a livin' soul, sir, nor as much as a dog. Then I pulled myself + together and went back and pushed the door open. All was quiet + inside, so I went into the room where the light was a-burnin'. There + was a candle flickerin' on the mantelpiece--a red wax one--and by its + light I saw--" + + "Yes, I know all that you saw. You walked round the room several + times, and you knelt down by the body, and then you walked through + and tried the kitchen door, and then--" + + John Rance sprang to his feet with a frightened face and suspicion in + his eyes. "Where was you hid to see all that?" he cried. "It seems to + me that you knows a deal more than you should." + + Holmes laughed and threw his card across the table to the constable. + "Don't get arresting me for the murder," he said. "I am one of the + hounds and not the wolf; Mr. Gregson or Mr. Lestrade will answer for + that. Go on, though. What did you do next?" + + Rance resumed his seat, without however losing his mystified + expression. "I went back to the gate and sounded my whistle. That + brought Murcher and two more to the spot." + + "Was the street empty then?" + + "Well, it was, as far as anybody that could be of any good goes." + + "What do you mean?" + + The constable's features broadened into a grin. "I've seen many a + drunk chap in my time," he said, "but never anyone so cryin' drunk as + that cove. He was at the gate when I came out, a-leanin' up ag'in the + railings, and a-singin' at the pitch o' his lungs about Columbine's + New-fangled Banner, or some such stuff. He couldn't stand, far less + help." + + "What sort of a man was he?" asked Sherlock Holmes. + + John Rance appeared to be somewhat irritated at this digression. "He + was an uncommon drunk sort o' man," he said. "He'd ha' found hisself + in the station if we hadn't been so took up." + + "His face--his dress--didn't you notice them?" Holmes broke in + impatiently. + + "I should think I did notice them, seeing that I had to prop him + up--me and Murcher between us. He was a long chap, with a red face, + the lower part muffled round--" + + "That will do," cried Holmes. "What became of him?" + + "We'd enough to do without lookin' after him," the policeman said, in + an aggrieved voice. "I'll wager he found his way home all right." + + "How was he dressed?" + + "A brown overcoat." + + "Had he a whip in his hand?" + + "A whip--no." + + "He must have left it behind," muttered my companion. "You didn't + happen to see or hear a cab after that?" + + "No." + + "There's a half-sovereign for you," my companion said, standing up + and taking his hat. "I am afraid, Rance, that you will never rise in + the force. That head of yours should be for use as well as ornament. + You might have gained your sergeant's stripes last night. The man + whom you held in your hands is the man who holds the clue of this + mystery, and whom we are seeking. There is no use of arguing about it + now; I tell you that it is so. Come along, Doctor." + + We started off for the cab together, leaving our informant + incredulous, but obviously uncomfortable. + + "The blundering fool," Holmes said, bitterly, as we drove back to our + lodgings. "Just to think of his having such an incomparable bit of + good luck, and not taking advantage of it." + + "I am rather in the dark still. It is true that the description of + this man tallies with your idea of the second party in this mystery. + But why should he come back to the house after leaving it? That is + not the way of criminals." + + "The ring, man, the ring: that was what he came back for. If we have + no other way of catching him, we can always bait our line with the + ring. I shall have him, Doctor--I'll lay you two to one that I have + him. I must thank you for it all. I might not have gone but for you, + and so have missed the finest study I ever came across: a study in + scarlet, eh? Why shouldn't we use a little art jargon. There's the + scarlet thread of murder running through the colourless skein of + life, and our duty is to unravel it, and isolate it, and expose every + inch of it. And now for lunch, and then for Norman Neruda. Her attack + and her bowing are splendid. What's that little thing of Chopin's she + plays so magnificently: Tra-la-la-lira-lira-lay." + + Leaning back in the cab, this amateur bloodhound carolled away like a + lark while I meditated upon the many-sidedness of the human mind. + + + + + + CHAPTER V + Our Advertisement Brings A Visitor + + + Our morning's exertions had been too much for my weak health, and I + was tired out in the afternoon. After Holmes' departure for the + concert, I lay down upon the sofa and endeavoured to get a couple of + hours' sleep. It was a useless attempt. My mind had been too much + excited by all that had occurred, and the strangest fancies and + surmises crowded into it. Every time that I closed my eyes I saw + before me the distorted baboon-like countenance of the murdered man. + So sinister was the impression which that face had produced upon me + that I found it difficult to feel anything but gratitude for him who + had removed its owner from the world. If ever human features bespoke + vice of the most malignant type, they were certainly those of Enoch + J. Drebber, of Cleveland. Still I recognized that justice must be + done, and that the depravity of the victim was no condonement in the + eyes of the law. + + The more I thought of it the more extraordinary did my companion's + hypothesis, that the man had been poisoned, appear. I remembered how + he had sniffed his lips, and had no doubt that he had detected + something which had given rise to the idea. Then, again, if not + poison, what had caused the man's death, since there was neither + wound nor marks of strangulation? But, on the other hand, whose blood + was that which lay so thickly upon the floor? There were no signs of + a struggle, nor had the victim any weapon with which he might have + wounded an antagonist. As long as all these questions were unsolved, + I felt that sleep would be no easy matter, either for Holmes or + myself. His quiet self-confident manner convinced me that he had + already formed a theory which explained all the facts, though what it + was I could not for an instant conjecture. + + He was very late in returning--so late, that I knew that the concert + could not have detained him all the time. Dinner was on the table + before he appeared. + + "It was magnificent," he said, as he took his seat. "Do you remember + what Darwin says about music? He claims that the power of producing + and appreciating it existed among the human race long before the + power of speech was arrived at. Perhaps that is why we are so subtly + influenced by it. There are vague memories in our souls of those + misty centuries when the world was in its childhood." + + "That's rather a broad idea," I remarked. + + "One's ideas must be as broad as Nature if they are to interpret + Nature," he answered. "What's the matter? You're not looking quite + yourself. This Brixton Road affair has upset you." + + "To tell the truth, it has," I said. "I ought to be more + case-hardened after my Afghan experiences. I saw my own comrades + hacked to pieces at Maiwand without losing my nerve." + + "I can understand. There is a mystery about this which stimulates the + imagination; where there is no imagination there is no horror. Have + you seen the evening paper?" + + "No." + + "It gives a fairly good account of the affair. It does not mention + the fact that when the man was raised up, a woman's wedding ring fell + upon the floor. It is just as well it does not." + + "Why?" + + "Look at this advertisement," he answered. "I had one sent to every + paper this morning immediately after the affair." + + He threw the paper across to me and I glanced at the place indicated. + It was the first announcement in the "Found" column. "In Brixton + Road, this morning," it ran, "a plain gold wedding ring, found in the + roadway between the 'White Hart' Tavern and Holland Grove. Apply Dr. + Watson, 221b, Baker Street, between eight and nine this evening." + + "Excuse my using your name," he said. "If I used my own some of these + dunderheads would recognize it, and want to meddle in the affair." + + "That is all right," I answered. "But supposing anyone applies, I + have no ring." + + "Oh yes, you have," said he, handing me one. "This will do very well. + It is almost a facsimile." + + "And who do you expect will answer this advertisement." + + "Why, the man in the brown coat--our florid friend with the square + toes. If he does not come himself he will send an accomplice." + + "Would he not consider it as too dangerous?" + + "Not at all. If my view of the case is correct, and I have every + reason to believe that it is, this man would rather risk anything + than lose the ring. According to my notion he dropped it while + stooping over Drebber's body, and did not miss it at the time. After + leaving the house he discovered his loss and hurried back, but found + the police already in possession, owing to his own folly in leaving + the candle burning. He had to pretend to be drunk in order to allay + the suspicions which might have been aroused by his appearance at the + gate. Now put yourself in that man's place. On thinking the matter + over, it must have occurred to him that it was possible that he had + lost the ring in the road after leaving the house. What would he do, + then? He would eagerly look out for the evening papers in the hope of + seeing it among the articles found. His eye, of course, would light + upon this. He would be overjoyed. Why should he fear a trap? There + would be no reason in his eyes why the finding of the ring should be + connected with the murder. He would come. He will come. You shall see + him within an hour." + + "And then?" I asked. + + "Oh, you can leave me to deal with him then. Have you any arms?" + + "I have my old service revolver and a few cartridges." + + "You had better clean it and load it. He will be a desperate man, and + though I shall take him unawares, it is as well to be ready for + anything." + + I went to my bedroom and followed his advice. When I returned with + the pistol the table had been cleared, and Holmes was engaged in his + favourite occupation of scraping upon his violin. + + "The plot thickens," he said, as I entered; "I have just had an + answer to my American telegram. My view of the case is the correct + one." + + "And that is?" I asked eagerly. + + "My fiddle would be the better for new strings," he remarked. "Put + your pistol in your pocket. When the fellow comes speak to him in an + ordinary way. Leave the rest to me. Don't frighten him by looking at + him too hard." + + "It is eight o'clock now," I said, glancing at my watch. + + "Yes. He will probably be here in a few minutes. Open the door + slightly. That will do. Now put the key on the inside. Thank you! + This is a queer old book I picked up at a stall yesterday--De Jure + inter Gentes--published in Latin at Liege in the Lowlands, in 1642. + Charles' head was still firm on his shoulders when this little + brown-backed volume was struck off." + + "Who is the printer?" + + "Philippe de Croy, whoever he may have been. On the fly-leaf, in very + faded ink, is written 'Ex libris Guliolmi Whyte.' I wonder who + William Whyte was. Some pragmatical seventeenth century lawyer, I + suppose. His writing has a legal twist about it. Here comes our man, + I think." + + As he spoke there was a sharp ring at the bell. Sherlock Holmes rose + softly and moved his chair in the direction of the door. We heard the + servant pass along the hall, and the sharp click of the latch as she + opened it. + + "Does Dr. Watson live here?" asked a clear but rather harsh voice. We + could not hear the servant's reply, but the door closed, and some one + began to ascend the stairs. The footfall was an uncertain and + shuffling one. A look of surprise passed over the face of my + companion as he listened to it. It came slowly along the passage, and + there was a feeble tap at the door. + + "Come in," I cried. + + At my summons, instead of the man of violence whom we expected, a + very old and wrinkled woman hobbled into the apartment. She appeared + to be dazzled by the sudden blaze of light, and after dropping a + curtsey, she stood blinking at us with her bleared eyes and fumbling + in her pocket with nervous, shaky fingers. I glanced at my companion, + and his face had assumed such a disconsolate expression that it was + all I could do to keep my countenance. + + The old crone drew out an evening paper, and pointed at our + advertisement. "It's this as has brought me, good gentlemen," she + said, dropping another curtsey; "a gold wedding ring in the Brixton + Road. It belongs to my girl Sally, as was married only this time + twelvemonth, which her husband is steward aboard a Union boat, and + what he'd say if he comes 'ome and found her without her ring is more + than I can think, he being short enough at the best o' times, but + more especially when he has the drink. If it please you, she went to + the circus last night along with--" + + "Is that her ring?" I asked. + + "The Lord be thanked!" cried the old woman; "Sally will be a glad + woman this night. That's the ring." + + "And what may your address be?" I inquired, taking up a pencil. + + "13, Duncan Street, Houndsditch. A weary way from here." + + "The Brixton Road does not lie between any circus and Houndsditch," + said Sherlock Holmes sharply. + + The old woman faced round and looked keenly at him from her little + red-rimmed eyes. "The gentleman asked me for my address," she said. + "Sally lives in lodgings at 3, Mayfield Place, Peckham." + + "And your name is--?" + + "My name is Sawyer--her's is Dennis, which Tom Dennis married + her--and a smart, clean lad, too, as long as he's at sea, and no + steward in the company more thought of; but when on shore, what with + the women and what with liquor shops--" + + "Here is your ring, Mrs. Sawyer," I interrupted, in obedience to a + sign from my companion; "it clearly belongs to your daughter, and I + am glad to be able to restore it to the rightful owner." + + With many mumbled blessings and protestations of gratitude the old + crone packed it away in her pocket, and shuffled off down the stairs. + Sherlock Holmes sprang to his feet the moment that she was gone and + rushed into his room. He returned in a few seconds enveloped in an + ulster and a cravat. "I'll follow her," he said, hurriedly; "she must + be an accomplice, and will lead me to him. Wait up for me." The hall + door had hardly slammed behind our visitor before Holmes had + descended the stair. Looking through the window I could see her + walking feebly along the other side, while her pursuer dogged her + some little distance behind. "Either his whole theory is incorrect," + I thought to myself, "or else he will be led now to the heart of the + mystery." There was no need for him to ask me to wait up for him, for + I felt that sleep was impossible until I heard the result of his + adventure. + + It was close upon nine when he set out. I had no idea how long he + might be, but I sat stolidly puffing at my pipe and skipping over the + pages of Henri Murger's Vie de Bohème. Ten o'clock passed, and I + heard the footsteps of the maid as they pattered off to bed. Eleven, + and the more stately tread of the landlady passed my door, bound for + the same destination. It was close upon twelve before I heard the + sharp sound of his latch-key. The instant he entered I saw by his + face that he had not been successful. Amusement and chagrin seemed to + be struggling for the mastery, until the former suddenly carried the + day, and he burst into a hearty laugh. + + "I wouldn't have the Scotland Yarders know it for the world," he + cried, dropping into his chair; "I have chaffed them so much that + they would never have let me hear the end of it. I can afford to + laugh, because I know that I will be even with them in the long run." + + "What is it then?" I asked. + + "Oh, I don't mind telling a story against myself. That creature had + gone a little way when she began to limp and show every sign of being + foot-sore. Presently she came to a halt, and hailed a four-wheeler + which was passing. I managed to be close to her so as to hear the + address, but I need not have been so anxious, for she sang it out + loud enough to be heard at the other side of the street, 'Drive to + 13, Duncan Street, Houndsditch,' she cried. This begins to look + genuine, I thought, and having seen her safely inside, I perched + myself behind. That's an art which every detective should be an + expert at. Well, away we rattled, and never drew rein until we + reached the street in question. I hopped off before we came to the + door, and strolled down the street in an easy, lounging way. I saw + the cab pull up. The driver jumped down, and I saw him open the door + and stand expectantly. Nothing came out though. When I reached him he + was groping about frantically in the empty cab, and giving vent to + the finest assorted collection of oaths that ever I listened to. + There was no sign or trace of his passenger, and I fear it will be + some time before he gets his fare. On inquiring at Number 13 we found + that the house belonged to a respectable paperhanger, named Keswick, + and that no one of the name either of Sawyer or Dennis had ever been + heard of there." + + "You don't mean to say," I cried, in amazement, "that that tottering, + feeble old woman was able to get out of the cab while it was in + motion, without either you or the driver seeing her?" + + "Old woman be damned!" said Sherlock Holmes, sharply. "We were the + old women to be so taken in. It must have been a young man, and an + active one, too, besides being an incomparable actor. The get-up was + inimitable. He saw that he was followed, no doubt, and used this + means of giving me the slip. It shows that the man we are after is + not as lonely as I imagined he was, but has friends who are ready to + risk something for him. Now, Doctor, you are looking done-up. Take my + advice and turn in." + + I was certainly feeling very weary, so I obeyed his injunction. I + left Holmes seated in front of the smouldering fire, and long into + the watches of the night I heard the low, melancholy wailings of his + violin, and knew that he was still pondering over the strange problem + which he had set himself to unravel. + + + + + + CHAPTER VI + Tobias Gregson Shows What He Can Do + + + The papers next day were full of the "Brixton Mystery," as they + termed it. Each had a long account of the affair, and some had + leaders upon it in addition. There was some information in them which + was new to me. I still retain in my scrap-book numerous clippings and + extracts bearing upon the case. Here is a condensation of a few of + them:-- + + The Daily Telegraph remarked that in the history of crime there had + seldom been a tragedy which presented stranger features. The German + name of the victim, the absence of all other motive, and the sinister + inscription on the wall, all pointed to its perpetration by political + refugees and revolutionists. The Socialists had many branches in + America, and the deceased had, no doubt, infringed their unwritten + laws, and been tracked down by them. After alluding airily to the + Vehmgericht, aqua tofana, Carbonari, the Marchioness de Brinvilliers, + the Darwinian theory, the principles of Malthus, and the Ratcliff + Highway murders, the article concluded by admonishing the Government + and advocating a closer watch over foreigners in England. + + The Standard commented upon the fact that lawless outrages of the + sort usually occurred under a Liberal Administration. They arose from + the unsettling of the minds of the masses, and the consequent + weakening of all authority. The deceased was an American gentleman + who had been residing for some weeks in the Metropolis. He had stayed + at the boarding-house of Madame Charpentier, in Torquay Terrace, + Camberwell. He was accompanied in his travels by his private + secretary, Mr. Joseph Stangerson. The two bade adieu to their + landlady upon Tuesday, the 4th inst., and departed to Euston Station + with the avowed intention of catching the Liverpool express. They + were afterwards seen together upon the platform. Nothing more is + known of them until Mr. Drebber's body was, as recorded, discovered + in an empty house in the Brixton Road, many miles from Euston. How he + came there, or how he met his fate, are questions which are still + involved in mystery. Nothing is known of the whereabouts of + Stangerson. We are glad to learn that Mr. Lestrade and Mr. Gregson, + of Scotland Yard, are both engaged upon the case, and it is + confidently anticipated that these well-known officers will speedily + throw light upon the matter. + + The Daily News observed that there was no doubt as to the crime being + a political one. The despotism and hatred of Liberalism which + animated the Continental Governments had had the effect of driving to + our shores a number of men who might have made excellent citizens + were they not soured by the recollection of all that they had + undergone. Among these men there was a stringent code of honour, any + infringement of which was punished by death. Every effort should be + made to find the secretary, Stangerson, and to ascertain some + particulars of the habits of the deceased. A great step had been + gained by the discovery of the address of the house at which he had + boarded--a result which was entirely due to the acuteness and energy + of Mr. Gregson of Scotland Yard. + + Sherlock Holmes and I read these notices over together at breakfast, + and they appeared to afford him considerable amusement. + + "I told you that, whatever happened, Lestrade and Gregson would be + sure to score." + + "That depends on how it turns out." + + "Oh, bless you, it doesn't matter in the least. If the man is caught, + it will be on account of their exertions; if he escapes, it will be + in spite of their exertions. It's heads I win and tails you lose. + Whatever they do, they will have followers. 'Un sot trouve toujours + un plus sot qui l'admire.'" + + "What on earth is this?" I cried, for at this moment there came the + pattering of many steps in the hall and on the stairs, accompanied by + audible expressions of disgust upon the part of our landlady. + + "It's the Baker Street division of the detective police force," said + my companion, gravely; and as he spoke there rushed into the room + half a dozen of the dirtiest and most ragged street Arabs that ever I + clapped eyes on. + + "'Tention!" cried Holmes, in a sharp tone, and the six dirty little + scoundrels stood in a line like so many disreputable statuettes. "In + future you shall send up Wiggins alone to report, and the rest of you + must wait in the street. Have you found it, Wiggins?" + + "No, sir, we hain't," said one of the youths. + + "I hardly expected you would. You must keep on until you do. Here are + your wages." He handed each of them a shilling. "Now, off you go, and + come back with a better report next time." + + He waved his hand, and they scampered away downstairs like so many + rats, and we heard their shrill voices next moment in the street. + + "There's more work to be got out of one of those little beggars than + out of a dozen of the force," Holmes remarked. "The mere sight of an + official-looking person seals men's lips. These youngsters, however, + go everywhere and hear everything. They are as sharp as needles, too; + all they want is organisation." + + "Is it on this Brixton case that you are employing them?" I asked. + + "Yes; there is a point which I wish to ascertain. It is merely a + matter of time. Hullo! we are going to hear some news now with a + vengeance! Here is Gregson coming down the road with beatitude + written upon every feature of his face. Bound for us, I know. Yes, he + is stopping. There he is!" + + There was a violent peal at the bell, and in a few seconds the + fair-haired detective came up the stairs, three steps at a time, and + burst into our sitting-room. + + "My dear fellow," he cried, wringing Holmes' unresponsive hand, + "congratulate me! I have made the whole thing as clear as day." + + A shade of anxiety seemed to me to cross my companion's expressive + face. + + "Do you mean that you are on the right track?" he asked. + + "The right track! Why, sir, we have the man under lock and key." + + "And his name is?" + + "Arthur Charpentier, sub-lieutenant in Her Majesty's navy," cried + Gregson, pompously, rubbing his fat hands and inflating his chest. + + Sherlock Holmes gave a sigh of relief, and relaxed into a smile. + + "Take a seat, and try one of these cigars," he said. "We are anxious + to know how you managed it. Will you have some whiskey and water?" + + "I don't mind if I do," the detective answered. "The tremendous + exertions which I have gone through during the last day or two have + worn me out. Not so much bodily exertion, you understand, as the + strain upon the mind. You will appreciate that, Mr. Sherlock Holmes, + for we are both brain-workers." + + "You do me too much honour," said Holmes, gravely. "Let us hear how + you arrived at this most gratifying result." + + The detective seated himself in the arm-chair, and puffed + complacently at his cigar. Then suddenly he slapped his thigh in a + paroxysm of amusement. + + "The fun of it is," he cried, "that that fool Lestrade, who thinks + himself so smart, has gone off upon the wrong track altogether. He is + after the secretary Stangerson, who had no more to do with the crime + than the babe unborn. I have no doubt that he has caught him by this + time." + + The idea tickled Gregson so much that he laughed until he choked. + + "And how did you get your clue?" + + "Ah, I'll tell you all about it. Of course, Doctor Watson, this is + strictly between ourselves. The first difficulty which we had to + contend with was the finding of this American's antecedents. Some + people would have waited until their advertisements were answered, or + until parties came forward and volunteered information. That is not + Tobias Gregson's way of going to work. You remember the hat beside + the dead man?" + + "Yes," said Holmes; "by John Underwood and Sons, 129, Camberwell + Road." + + Gregson looked quite crest-fallen. + + "I had no idea that you noticed that," he said. "Have you been + there?" + + "No." + + "Ha!" cried Gregson, in a relieved voice; "you should never neglect a + chance, however small it may seem." + + "To a great mind, nothing is little," remarked Holmes, sententiously. + + "Well, I went to Underwood, and asked him if he had sold a hat of + that size and description. He looked over his books, and came on it + at once. He had sent the hat to a Mr. Drebber, residing at + Charpentier's Boarding Establishment, Torquay Terrace. Thus I got at + his address." + + "Smart--very smart!" murmured Sherlock Holmes. + + "I next called upon Madame Charpentier," continued the detective. "I + found her very pale and distressed. Her daughter was in the room, + too--an uncommonly fine girl she is, too; she was looking red about + the eyes and her lips trembled as I spoke to her. That didn't escape + my notice. I began to smell a rat. You know the feeling, Mr. Sherlock + Holmes, when you come upon the right scent--a kind of thrill in your + nerves. 'Have you heard of the mysterious death of your late boarder + Mr. Enoch J. Drebber, of Cleveland?' I asked. + + "The mother nodded. She didn't seem able to get out a word. The + daughter burst into tears. I felt more than ever that these people + knew something of the matter. + + "'At what o'clock did Mr. Drebber leave your house for the train?' I + asked. + + "'At eight o'clock,' she said, gulping in her throat to keep down her + agitation. 'His secretary, Mr. Stangerson, said that there were two + trains--one at 9.15 and one at 11. He was to catch the first.' + + "'And was that the last which you saw of him?' + + "A terrible change came over the woman's face as I asked the + question. Her features turned perfectly livid. It was some seconds + before she could get out the single word 'Yes'--and when it did come + it was in a husky unnatural tone. + + "There was silence for a moment, and then the daughter spoke in a + calm clear voice. + + "'No good can ever come of falsehood, mother,' she said. 'Let us be + frank with this gentleman. We did see Mr. Drebber again.' + + "'God forgive you!' cried Madame Charpentier, throwing up her hands + and sinking back in her chair. 'You have murdered your brother.' + + "'Arthur would rather that we spoke the truth,' the girl answered + firmly. + + "'You had best tell me all about it now,' I said. 'Half-confidences + are worse than none. Besides, you do not know how much we know of + it.' + + "'On your head be it, Alice!' cried her mother; and then, turning to + me, 'I will tell you all, sir. Do not imagine that my agitation on + behalf of my son arises from any fear lest he should have had a hand + in this terrible affair. He is utterly innocent of it. My dread is, + however, that in your eyes and in the eyes of others he may appear to + be compromised. That however is surely impossible. His high + character, his profession, his antecedents would all forbid it.' + + "'Your best way is to make a clean breast of the facts,' I answered. + 'Depend upon it, if your son is innocent he will be none the worse.' + + "'Perhaps, Alice, you had better leave us together,' she said, and + her daughter withdrew. 'Now, sir,' she continued, 'I had no intention + of telling you all this, but since my poor daughter has disclosed it + I have no alternative. Having once decided to speak, I will tell you + all without omitting any particular.' + + "'It is your wisest course,' said I. + + "'Mr. Drebber has been with us nearly three weeks. He and his + secretary, Mr. Stangerson, had been travelling on the Continent. I + noticed a "Copenhagen" label upon each of their trunks, showing that + that had been their last stopping place. Stangerson was a quiet + reserved man, but his employer, I am sorry to say, was far otherwise. + He was coarse in his habits and brutish in his ways. The very night + of his arrival he became very much the worse for drink, and, indeed, + after twelve o'clock in the day he could hardly ever be said to be + sober. His manners towards the maid-servants were disgustingly free + and familiar. Worst of all, he speedily assumed the same attitude + towards my daughter, Alice, and spoke to her more than once in a way + which, fortunately, she is too innocent to understand. On one + occasion he actually seized her in his arms and embraced her--an + outrage which caused his own secretary to reproach him for his + unmanly conduct.' + + "'But why did you stand all this,' I asked. 'I suppose that you can + get rid of your boarders when you wish.' + + "Mrs. Charpentier blushed at my pertinent question. 'Would to God + that I had given him notice on the very day that he came,' she said. + 'But it was a sore temptation. They were paying a pound a day + each--fourteen pounds a week, and this is the slack season. I am a + widow, and my boy in the Navy has cost me much. I grudged to lose the + money. I acted for the best. This last was too much, however, and I + gave him notice to leave on account of it. That was the reason of his + going.' + + "'Well?' + + "'My heart grew light when I saw him drive away. My son is on leave + just now, but I did not tell him anything of all this, for his temper + is violent, and he is passionately fond of his sister. When I closed + the door behind them a load seemed to be lifted from my mind. Alas, + in less than an hour there was a ring at the bell, and I learned that + Mr. Drebber had returned. He was much excited, and evidently the + worse for drink. He forced his way into the room, where I was sitting + with my daughter, and made some incoherent remark about having missed + his train. He then turned to Alice, and before my very face, proposed + to her that she should fly with him. "You are of age," he said, "and + there is no law to stop you. I have money enough and to spare. Never + mind the old girl here, but come along with me now straight away. You + shall live like a princess." Poor Alice was so frightened that she + shrunk away from him, but he caught her by the wrist and endeavoured + to draw her towards the door. I screamed, and at that moment my son + Arthur came into the room. What happened then I do not know. I heard + oaths and the confused sounds of a scuffle. I was too terrified to + raise my head. When I did look up I saw Arthur standing in the + doorway laughing, with a stick in his hand. "I don't think that fine + fellow will trouble us again," he said. "I will just go after him and + see what he does with himself." With those words he took his hat and + started off down the street. The next morning we heard of Mr. + Drebber's mysterious death.' + + "This statement came from Mrs. Charpentier's lips with many gasps and + pauses. At times she spoke so low that I could hardly catch the + words. I made shorthand notes of all that she said, however, so that + there should be no possibility of a mistake." + + "It's quite exciting," said Sherlock Holmes, with a yawn. "What + happened next?" + + "When Mrs. Charpentier paused," the detective continued, "I saw that + the whole case hung upon one point. Fixing her with my eye in a way + which I always found effective with women, I asked her at what hour + her son returned. + + "'I do not know,' she answered. + + "'Not know?' + + "'No; he has a latch-key, and he let himself in.' + + "'After you went to bed?' + + "'Yes.' + + "'When did you go to bed?' + + "'About eleven.' + + "'So your son was gone at least two hours?' + + "'Yes.' + + "'Possibly four or five?' + + "'Yes.' + + "'What was he doing during that time?' + + "'I do not know,' she answered, turning white to her very lips. + + "Of course after that there was nothing more to be done. I found out + where Lieutenant Charpentier was, took two officers with me, and + arrested him. When I touched him on the shoulder and warned him to + come quietly with us, he answered us as bold as brass, 'I suppose you + are arresting me for being concerned in the death of that scoundrel + Drebber,' he said. We had said nothing to him about it, so that his + alluding to it had a most suspicious aspect." + + "Very," said Holmes. + + "He still carried the heavy stick which the mother described him as + having with him when he followed Drebber. It was a stout oak cudgel." + + "What is your theory, then?" + + "Well, my theory is that he followed Drebber as far as the Brixton + Road. When there, a fresh altercation arose between them, in the + course of which Drebber received a blow from the stick, in the pit of + the stomach, perhaps, which killed him without leaving any mark. The + night was so wet that no one was about, so Charpentier dragged the + body of his victim into the empty house. As to the candle, and the + blood, and the writing on the wall, and the ring, they may all be so + many tricks to throw the police on to the wrong scent." + + "Well done!" said Holmes in an encouraging voice. "Really, Gregson, + you are getting along. We shall make something of you yet." + + "I flatter myself that I have managed it rather neatly," the + detective answered proudly. "The young man volunteered a statement, + in which he said that after following Drebber some time, the latter + perceived him, and took a cab in order to get away from him. On his + way home he met an old shipmate, and took a long walk with him. On + being asked where this old shipmate lived, he was unable to give any + satisfactory reply. I think the whole case fits together uncommonly + well. What amuses me is to think of Lestrade, who had started off + upon the wrong scent. I am afraid he won't make much of--Why, by + Jove, here's the very man himself!" + + It was indeed Lestrade, who had ascended the stairs while we were + talking, and who now entered the room. The assurance and jauntiness + which generally marked his demeanour and dress were, however, + wanting. His face was disturbed and troubled, while his clothes were + disarranged and untidy. He had evidently come with the intention of + consulting with Sherlock Holmes, for on perceiving his colleague he + appeared to be embarrassed and put out. He stood in the centre of the + room, fumbling nervously with his hat and uncertain what to do. "This + is a most extraordinary case," he said at last--"a most + incomprehensible affair." + + "Ah, you find it so, Mr. Lestrade!" cried Gregson, triumphantly. "I + thought you would come to that conclusion. Have you managed to find + the Secretary, Mr. Joseph Stangerson?" + + "The Secretary, Mr. Joseph Stangerson," said Lestrade gravely, "was + murdered at Halliday's Private Hotel about six o'clock this morning." + + + + + + + CHAPTER VII + Light In The Darkness + + + The intelligence with which Lestrade greeted us was so momentous and + so unexpected, that we were all three fairly dumbfounded. Gregson + sprang out of his chair and upset the remainder of his whiskey and + water. I stared in silence at Sherlock Holmes, whose lips were + compressed and his brows drawn down over his eyes. + + "Stangerson too!" he muttered. "The plot thickens." + + "It was quite thick enough before," grumbled Lestrade, taking a + chair. "I seem to have dropped into a sort of council of war." + + "Are you--are you sure of this piece of intelligence?" stammered + Gregson. + + "I have just come from his room," said Lestrade. "I was the first to + discover what had occurred." + + "We have been hearing Gregson's view of the matter," Holmes observed. + "Would you mind letting us know what you have seen and done?" + + "I have no objection," Lestrade answered, seating himself. "I freely + confess that I was of the opinion that Stangerson was concerned in + the death of Drebber. This fresh development has shown me that I was + completely mistaken. Full of the one idea, I set myself to find out + what had become of the Secretary. They had been seen together at + Euston Station about half-past eight on the evening of the third. At + two in the morning Drebber had been found in the Brixton Road. The + question which confronted me was to find out how Stangerson had been + employed between 8.30 and the time of the crime, and what had become + of him afterwards. I telegraphed to Liverpool, giving a description + of the man, and warning them to keep a watch upon the American boats. + I then set to work calling upon all the hotels and lodging-houses in + the vicinity of Euston. You see, I argued that if Drebber and his + companion had become separated, the natural course for the latter + would be to put up somewhere in the vicinity for the night, and then + to hang about the station again next morning." + + "They would be likely to agree on some meeting-place beforehand," + remarked Holmes. + + "So it proved. I spent the whole of yesterday evening in making + enquiries entirely without avail. This morning I began very early, + and at eight o'clock I reached Halliday's Private Hotel, in Little + George Street. On my enquiry as to whether a Mr. Stangerson was + living there, they at once answered me in the affirmative. + + "'No doubt you are the gentleman whom he was expecting,' they said. + 'He has been waiting for a gentleman for two days.' + + "'Where is he now?' I asked. + + "'He is upstairs in bed. He wished to be called at nine.' + + "'I will go up and see him at once,' I said. + + "It seemed to me that my sudden appearance might shake his nerves and + lead him to say something unguarded. The Boots volunteered to show me + the room: it was on the second floor, and there was a small corridor + leading up to it. The Boots pointed out the door to me, and was about + to go downstairs again when I saw something that made me feel + sickish, in spite of my twenty years' experience. From under the door + there curled a little red ribbon of blood, which had meandered across + the passage and formed a little pool along the skirting at the other + side. I gave a cry, which brought the Boots back. He nearly fainted + when he saw it. The door was locked on the inside, but we put our + shoulders to it, and knocked it in. The window of the room was open, + and beside the window, all huddled up, lay the body of a man in his + nightdress. He was quite dead, and had been for some time, for his + limbs were rigid and cold. When we turned him over, the Boots + recognized him at once as being the same gentleman who had engaged + the room under the name of Joseph Stangerson. The cause of death was + a deep stab in the left side, which must have penetrated the heart. + And now comes the strangest part of the affair. What do you suppose + was above the murdered man?" + + I felt a creeping of the flesh, and a presentiment of coming horror, + even before Sherlock Holmes answered. + + "The word RACHE, written in letters of blood," he said. + + "That was it," said Lestrade, in an awe-struck voice; and we were all + silent for a while. + + There was something so methodical and so incomprehensible about the + deeds of this unknown assassin, that it imparted a fresh ghastliness + to his crimes. My nerves, which were steady enough on the field of + battle tingled as I thought of it. + + "The man was seen," continued Lestrade. "A milk boy, passing on his + way to the dairy, happened to walk down the lane which leads from the + mews at the back of the hotel. He noticed that a ladder, which + usually lay there, was raised against one of the windows of the + second floor, which was wide open. After passing, he looked back and + saw a man descend the ladder. He came down so quietly and openly that + the boy imagined him to be some carpenter or joiner at work in the + hotel. He took no particular notice of him, beyond thinking in his + own mind that it was early for him to be at work. He has an + impression that the man was tall, had a reddish face, and was dressed + in a long, brownish coat. He must have stayed in the room some little + time after the murder, for we found blood-stained water in the basin, + where he had washed his hands, and marks on the sheets where he had + deliberately wiped his knife." + + I glanced at Holmes on hearing the description of the murderer, which + tallied so exactly with his own. There was, however, no trace of + exultation or satisfaction upon his face. + + "Did you find nothing in the room which could furnish a clue to the + murderer?" he asked. + + "Nothing. Stangerson had Drebber's purse in his pocket, but it seems + that this was usual, as he did all the paying. There was eighty odd + pounds in it, but nothing had been taken. Whatever the motives of + these extraordinary crimes, robbery is certainly not one of them. + There were no papers or memoranda in the murdered man's pocket, + except a single telegram, dated from Cleveland about a month ago, and + containing the words, 'J. H. is in Europe.' There was no name + appended to this message." + + "And there was nothing else?" Holmes asked. + + "Nothing of any importance. The man's novel, with which he had read + himself to sleep was lying upon the bed, and his pipe was on a chair + beside him. There was a glass of water on the table, and on the + window-sill a small chip ointment box containing a couple of pills." + + Sherlock Holmes sprang from his chair with an exclamation of delight. + + "The last link," he cried, exultantly. "My case is complete." + + The two detectives stared at him in amazement. + + "I have now in my hands," my companion said, confidently, "all the + threads which have formed such a tangle. There are, of course, + details to be filled in, but I am as certain of all the main facts, + from the time that Drebber parted from Stangerson at the station, up + to the discovery of the body of the latter, as if I had seen them + with my own eyes. I will give you a proof of my knowledge. Could you + lay your hand upon those pills?" + + "I have them," said Lestrade, producing a small white box; "I took + them and the purse and the telegram, intending to have them put in a + place of safety at the Police Station. It was the merest chance my + taking these pills, for I am bound to say that I do not attach any + importance to them." + + "Give them here," said Holmes. "Now, Doctor," turning to me, "are + those ordinary pills?" + + They certainly were not. They were of a pearly grey colour, small, + round, and almost transparent against the light. "From their + lightness and transparency, I should imagine that they are soluble in + water," I remarked. + + "Precisely so," answered Holmes. "Now would you mind going down and + fetching that poor little devil of a terrier which has been bad so + long, and which the landlady wanted you to put out of its pain + yesterday." + + I went downstairs and carried the dog upstair in my arms. It's + laboured breathing and glazing eye showed that it was not far from + its end. Indeed, its snow-white muzzle proclaimed that it had already + exceeded the usual term of canine existence. I placed it upon a + cushion on the rug. + + "I will now cut one of these pills in two," said Holmes, and drawing + his penknife he suited the action to the word. "One half we return + into the box for future purposes. The other half I will place in this + wine glass, in which is a teaspoonful of water. You perceive that our + friend, the Doctor, is right, and that it readily dissolves." + + "This may be very interesting," said Lestrade, in the injured tone of + one who suspects that he is being laughed at, "I cannot see, however, + what it has to do with the death of Mr. Joseph Stangerson." + + "Patience, my friend, patience! You will find in time that it has + everything to do with it. I shall now add a little milk to make the + mixture palatable, and on presenting it to the dog we find that he + laps it up readily enough." + + As he spoke he turned the contents of the wine glass into a saucer + and placed it in front of the terrier, who speedily licked it dry. + Sherlock Holmes' earnest demeanour had so far convinced us that we + all sat in silence, watching the animal intently, and expecting some + startling effect. None such appeared, however. The dog continued to + lie stretched upon the cushion, breathing in a laboured way, but + apparently neither the better nor the worse for its draught. + + Holmes had taken out his watch, and as minute followed minute without + result, an expression of the utmost chagrin and disappointment + appeared upon his features. He gnawed his lip, drummed his fingers + upon the table, and showed every other symptom of acute impatience. + So great was his emotion, that I felt sincerely sorry for him, while + the two detectives smiled derisively, by no means displeased at this + check which he had met. + + "It can't be a coincidence," he cried, at last springing from his + chair and pacing wildly up and down the room; "it is impossible that + it should be a mere coincidence. The very pills which I suspected in + the case of Drebber are actually found after the death of Stangerson. + And yet they are inert. What can it mean? Surely my whole chain of + reasoning cannot have been false. It is impossible! And yet this + wretched dog is none the worse. Ah, I have it! I have it!" With a + perfect shriek of delight he rushed to the box, cut the other pill in + two, dissolved it, added milk, and presented it to the terrier. The + unfortunate creature's tongue seemed hardly to have been moistened in + it before it gave a convulsive shiver in every limb, and lay as rigid + and lifeless as if it had been struck by lightning. + + Sherlock Holmes drew a long breath, and wiped the perspiration from + his forehead. "I should have more faith," he said; "I ought to know + by this time that when a fact appears to be opposed to a long train + of deductions, it invariably proves to be capable of bearing some + other interpretation. Of the two pills in that box one was of the + most deadly poison, and the other was entirely harmless. I ought to + have known that before ever I saw the box at all." + + This last statement appeared to me to be so startling, that I could + hardly believe that he was in his sober senses. There was the dead + dog, however, to prove that his conjecture had been correct. It + seemed to me that the mists in my own mind were gradually clearing + away, and I began to have a dim, vague perception of the truth. + + "All this seems strange to you," continued Holmes, "because you + failed at the beginning of the inquiry to grasp the importance of the + single real clue which was presented to you. I had the good fortune + to seize upon that, and everything which has occurred since then has + served to confirm my original supposition, and, indeed, was the + logical sequence of it. Hence things which have perplexed you and + made the case more obscure, have served to enlighten me and to + strengthen my conclusions. It is a mistake to confound strangeness + with mystery. The most commonplace crime is often the most mysterious + because it presents no new or special features from which deductions + may be drawn. This murder would have been infinitely more difficult + to unravel had the body of the victim been simply found lying in the + roadway without any of those outré and sensational accompaniments + which have rendered it remarkable. These strange details, far from + making the case more difficult, have really had the effect of making + it less so." + + Mr. Gregson, who had listened to this address with considerable + impatience, could contain himself no longer. "Look here, Mr. Sherlock + Holmes," he said, "we are all ready to acknowledge that you are a + smart man, and that you have your own methods of working. We want + something more than mere theory and preaching now, though. It is a + case of taking the man. I have made my case out, and it seems I was + wrong. Young Charpentier could not have been engaged in this second + affair. Lestrade went after his man, Stangerson, and it appears that + he was wrong too. You have thrown out hints here, and hints there, + and seem to know more than we do, but the time has come when we feel + that we have a right to ask you straight how much you do know of the + business. Can you name the man who did it?" + + "I cannot help feeling that Gregson is right, sir," remarked + Lestrade. "We have both tried, and we have both failed. You have + remarked more than once since I have been in the room that you had + all the evidence which you require. Surely you will not withhold it + any longer." + + "Any delay in arresting the assassin," I observed, "might give him + time to perpetrate some fresh atrocity." + + Thus pressed by us all, Holmes showed signs of irresolution. He + continued to walk up and down the room with his head sunk on his + chest and his brows drawn down, as was his habit when lost in + thought. + + "There will be no more murders," he said at last, stopping abruptly + and facing us. "You can put that consideration out of the question. + You have asked me if I know the name of the assassin. I do. The mere + knowing of his name is a small thing, however, compared with the + power of laying our hands upon him. This I expect very shortly to do. + I have good hopes of managing it through my own arrangements; but it + is a thing which needs delicate handling, for we have a shrewd and + desperate man to deal with, who is supported, as I have had occasion + to prove, by another who is as clever as himself. As long as this man + has no idea that anyone can have a clue there is some chance of + securing him; but if he had the slightest suspicion, he would change + his name, and vanish in an instant among the four million inhabitants + of this great city. Without meaning to hurt either of your feelings, + I am bound to say that I consider these men to be more than a match + for the official force, and that is why I have not asked your + assistance. If I fail I shall, of course, incur all the blame due to + this omission; but that I am prepared for. At present I am ready to + promise that the instant that I can communicate with you without + endangering my own combinations, I shall do so." + + Gregson and Lestrade seemed to be far from satisfied by this + assurance, or by the depreciating allusion to the detective police. + The former had flushed up to the roots of his flaxen hair, while the + other's beady eyes glistened with curiosity and resentment. Neither + of them had time to speak, however, before there was a tap at the + door, and the spokesman of the street Arabs, young Wiggins, + introduced his insignificant and unsavoury person. + + "Please, sir," he said, touching his forelock, "I have the cab + downstairs." + + "Good boy," said Holmes, blandly. "Why don't you introduce this + pattern at Scotland Yard?" he continued, taking a pair of steel + handcuffs from a drawer. "See how beautifully the spring works. They + fasten in an instant." + + "The old pattern is good enough," remarked Lestrade, "if we can only + find the man to put them on." + + "Very good, very good," said Holmes, smiling. "The cabman may as well + help me with my boxes. Just ask him to step up, Wiggins." + + I was surprised to find my companion speaking as though he were about + to set out on a journey, since he had not said anything to me about + it. There was a small portmanteau in the room, and this he pulled out + and began to strap. He was busily engaged at it when the cabman + entered the room. + + "Just give me a help with this buckle, cabman," he said, kneeling + over his task, and never turning his head. + + The fellow came forward with a somewhat sullen, defiant air, and put + down his hands to assist. At that instant there was a sharp click, + the jangling of metal, and Sherlock Holmes sprang to his feet again. + + "Gentlemen," he cried, with flashing eyes, "let me introduce you to + Mr. Jefferson Hope, the murderer of Enoch Drebber and of Joseph + Stangerson." + + The whole thing occurred in a moment--so quickly that I had no time + to realize it. I have a vivid recollection of that instant, of + Holmes' triumphant expression and the ring of his voice, of the + cabman's dazed, savage face, as he glared at the glittering + handcuffs, which had appeared as if by magic upon his wrists. For a + second or two we might have been a group of statues. Then, with an + inarticulate roar of fury, the prisoner wrenched himself free from + Holmes's grasp, and hurled himself through the window. Woodwork and + glass gave way before him; but before he got quite through, Gregson, + Lestrade, and Holmes sprang upon him like so many staghounds. He was + dragged back into the room, and then commenced a terrific conflict. + So powerful and so fierce was he, that the four of us were shaken off + again and again. He appeared to have the convulsive strength of a man + in an epileptic fit. His face and hands were terribly mangled by his + passage through the glass, but loss of blood had no effect in + diminishing his resistance. It was not until Lestrade succeeded in + getting his hand inside his neckcloth and half-strangling him that we + made him realize that his struggles were of no avail; and even then + we felt no security until we had pinioned his feet as well as his + hands. That done, we rose to our feet breathless and panting. + + "We have his cab," said Sherlock Holmes. "It will serve to take him + to Scotland Yard. And now, gentlemen," he continued, with a pleasant + smile, "we have reached the end of our little mystery. You are very + welcome to put any questions that you like to me now, and there is no + danger that I will refuse to answer them." + + + + + + + + + + PART II + + The Country of the Saints. + + + + + + CHAPTER I + On The Great Alkali Plain + + + In the central portion of the great North American Continent there + lies an arid and repulsive desert, which for many a long year served + as a barrier against the advance of civilisation. From the Sierra + Nevada to Nebraska, and from the Yellowstone River in the north to + the Colorado upon the south, is a region of desolation and silence. + Nor is Nature always in one mood throughout this grim district. It + comprises snow-capped and lofty mountains, and dark and gloomy + valleys. There are swift-flowing rivers which dash through jagged + cañons; and there are enormous plains, which in winter are white with + snow, and in summer are grey with the saline alkali dust. They all + preserve, however, the common characteristics of barrenness, + inhospitality, and misery. + + There are no inhabitants of this land of despair. A band of Pawnees + or of Blackfeet may occasionally traverse it in order to reach other + hunting-grounds, but the hardiest of the braves are glad to lose + sight of those awesome plains, and to find themselves once more upon + their prairies. The coyote skulks among the scrub, the buzzard flaps + heavily through the air, and the clumsy grizzly bear lumbers through + the dark ravines, and picks up such sustenance as it can amongst the + rocks. These are the sole dwellers in the wilderness. + + In the whole world there can be no more dreary view than that from + the northern slope of the Sierra Blanco. As far as the eye can reach + stretches the great flat plain-land, all dusted over with patches of + alkali, and intersected by clumps of the dwarfish chaparral bushes. + On the extreme verge of the horizon lie a long chain of mountain + peaks, with their rugged summits flecked with snow. In this great + stretch of country there is no sign of life, nor of anything + appertaining to life. There is no bird in the steel-blue heaven, no + movement upon the dull, grey earth--above all, there is absolute + silence. Listen as one may, there is no shadow of a sound in all that + mighty wilderness; nothing but silence--complete and heart-subduing + silence. + + It has been said there is nothing appertaining to life upon the broad + plain. That is hardly true. Looking down from the Sierra Blanco, one + sees a pathway traced out across the desert, which winds away and is + lost in the extreme distance. It is rutted with wheels and trodden + down by the feet of many adventurers. Here and there there are + scattered white objects which glisten in the sun, and stand out + against the dull deposit of alkali. Approach, and examine them! They + are bones: some large and coarse, others smaller and more delicate. + The former have belonged to oxen, and the latter to men. For fifteen + hundred miles one may trace this ghastly caravan route by these + scattered remains of those who had fallen by the wayside. + + Looking down on this very scene, there stood upon the fourth of May, + eighteen hundred and forty-seven, a solitary traveller. His + appearance was such that he might have been the very genius or demon + of the region. An observer would have found it difficult to say + whether he was nearer to forty or to sixty. His face was lean and + haggard, and the brown parchment-like skin was drawn tightly over the + projecting bones; his long, brown hair and beard were all flecked and + dashed with white; his eyes were sunken in his head, and burned with + an unnatural lustre; while the hand which grasped his rifle was + hardly more fleshy than that of a skeleton. As he stood, he leaned + upon his weapon for support, and yet his tall figure and the massive + framework of his bones suggested a wiry and vigorous constitution. + His gaunt face, however, and his clothes, which hung so baggily over + his shrivelled limbs, proclaimed what it was that gave him that + senile and decrepit appearance. The man was dying--dying from hunger + and from thirst. + + He had toiled painfully down the ravine, and on to this little + elevation, in the vain hope of seeing some signs of water. Now the + great salt plain stretched before his eyes, and the distant belt of + savage mountains, without a sign anywhere of plant or tree, which + might indicate the presence of moisture. In all that broad landscape + there was no gleam of hope. North, and east, and west he looked with + wild questioning eyes, and then he realised that his wanderings had + come to an end, and that there, on that barren crag, he was about to + die. "Why not here, as well as in a feather bed, twenty years hence," + he muttered, as he seated himself in the shelter of a boulder. + + Before sitting down, he had deposited upon the ground his useless + rifle, and also a large bundle tied up in a grey shawl, which he had + carried slung over his right shoulder. It appeared to be somewhat too + heavy for his strength, for in lowering it, it came down on the + ground with some little violence. Instantly there broke from the grey + parcel a little moaning cry, and from it there protruded a small, + scared face, with very bright brown eyes, and two little speckled, + dimpled fists. + + "You've hurt me!" said a childish voice reproachfully. + + "Have I though," the man answered penitently, "I didn't go for to do + it." As he spoke he unwrapped the grey shawl and extricated a pretty + little girl of about five years of age, whose dainty shoes and smart + pink frock with its little linen apron all bespoke a mother's care. + The child was pale and wan, but her healthy arms and legs showed that + she had suffered less than her companion. + + "How is it now?" he answered anxiously, for she was still rubbing the + towsy golden curls which covered the back of her head. + + "Kiss it and make it well," she said, with perfect gravity, shoving + the injured part up to him. "That's what mother used to do. Where's + mother?" + + "Mother's gone. I guess you'll see her before long." + + "Gone, eh!" said the little girl. "Funny, she didn't say good-bye; + she 'most always did if she was just goin' over to Auntie's for tea, + and now she's been away three days. Say, it's awful dry, ain't it? + Ain't there no water, nor nothing to eat?" + + "No, there ain't nothing, dearie. You'll just need to be patient + awhile, and then you'll be all right. Put your head up agin me like + that, and then you'll feel bullier. It ain't easy to talk when your + lips is like leather, but I guess I'd best let you know how the cards + lie. What's that you've got?" + + "Pretty things! fine things!" cried the little girl enthusiastically, + holding up two glittering fragments of mica. "When we goes back to + home I'll give them to brother Bob." + + "You'll see prettier things than them soon," said the man + confidently. "You just wait a bit. I was going to tell you + though--you remember when we left the river?" + + "Oh, yes." + + "Well, we reckoned we'd strike another river soon, d'ye see. But + there was somethin' wrong; compasses, or map, or somethin', and it + didn't turn up. Water ran out. Just except a little drop for the + likes of you and--and--" + + "And you couldn't wash yourself," interrupted his companion gravely, + staring up at his grimy visage. + + "No, nor drink. And Mr. Bender, he was the fust to go, and then + Indian Pete, and then Mrs. McGregor, and then Johnny Hones, and then, + dearie, your mother." + + "Then mother's a deader too," cried the little girl dropping her face + in her pinafore and sobbing bitterly. + + "Yes, they all went except you and me. Then I thought there was some + chance of water in this direction, so I heaved you over my shoulder + and we tramped it together. It don't seem as though we've improved + matters. There's an almighty small chance for us now!" + + "Do you mean that we are going to die too?" asked the child, checking + her sobs, and raising her tear-stained face. + + "I guess that's about the size of it." + + "Why didn't you say so before?" she said, laughing gleefully. "You + gave me such a fright. Why, of course, now as long as we die we'll be + with mother again." + + "Yes, you will, dearie." + + "And you too. I'll tell her how awful good you've been. I'll bet she + meets us at the door of Heaven with a big pitcher of water, and a lot + of buckwheat cakes, hot, and toasted on both sides, like Bob and me + was fond of. How long will it be first?" + + "I don't know--not very long." The man's eyes were fixed upon the + northern horizon. In the blue vault of the heaven there had appeared + three little specks which increased in size every moment, so rapidly + did they approach. They speedily resolved themselves into three large + brown birds, which circled over the heads of the two wanderers, and + then settled upon some rocks which overlooked them. They were + buzzards, the vultures of the west, whose coming is the forerunner of + death. + + "Cocks and hens," cried the little girl gleefully, pointing at their + ill-omened forms, and clapping her hands to make them rise. "Say, did + God make this country?" + + "Of course He did," said her companion, rather startled by this + unexpected question. + + "He made the country down in Illinois, and He made the Missouri," the + little girl continued. "I guess somebody else made the country in + these parts. It's not nearly so well done. They forgot the water and + the trees." + + "What would ye think of offering up prayer?" the man asked + diffidently. + + "It ain't night yet," she answered. + + "It don't matter. It ain't quite regular, but He won't mind that, you + bet. You say over them ones that you used to say every night in the + waggon when we was on the Plains." + + "Why don't you say some yourself?" the child asked, with wondering + eyes. + + "I disremember them," he answered. "I hain't said none since I was + half the height o' that gun. I guess it's never too late. You say + them out, and I'll stand by and come in on the choruses." + + "Then you'll need to kneel down, and me too," she said, laying the + shawl out for that purpose. "You've got to put your hands up like + this. It makes you feel kind o' good." + + It was a strange sight had there been anything but the buzzards to + see it. Side by side on the narrow shawl knelt the two wanderers, the + little prattling child and the reckless, hardened adventurer. Her + chubby face, and his haggard, angular visage were both turned up to + the cloudless heaven in heartfelt entreaty to that dread being with + whom they were face to face, while the two voices--the one thin and + clear, the other deep and harsh--united in the entreaty for mercy and + forgiveness. The prayer finished, they resumed their seat in the + shadow of the boulder until the child fell asleep, nestling upon the + broad breast of her protector. He watched over her slumber for some + time, but Nature proved to be too strong for him. For three days and + three nights he had allowed himself neither rest nor repose. Slowly + the eyelids drooped over the tired eyes, and the head sunk lower and + lower upon the breast, until the man's grizzled beard was mixed with + the gold tresses of his companion, and both slept the same deep and + dreamless slumber. + + Had the wanderer remained awake for another half hour a strange sight + would have met his eyes. Far away on the extreme verge of the alkali + plain there rose up a little spray of dust, very slight at first, and + hardly to be distinguished from the mists of the distance, but + gradually growing higher and broader until it formed a solid, + well-defined cloud. This cloud continued to increase in size until it + became evident that it could only be raised by a great multitude of + moving creatures. In more fertile spots the observer would have come + to the conclusion that one of those great herds of bisons which graze + upon the prairie land was approaching him. This was obviously + impossible in these arid wilds. As the whirl of dust drew nearer to + the solitary bluff upon which the two castaways were reposing, the + canvas-covered tilts of waggons and the figures of armed horsemen + began to show up through the haze, and the apparition revealed itself + as being a great caravan upon its journey for the West. But what a + caravan! When the head of it had reached the base of the mountains, + the rear was not yet visible on the horizon. Right across the + enormous plain stretched the straggling array, waggons and carts, men + on horseback, and men on foot. Innumerable women who staggered along + under burdens, and children who toddled beside the waggons or peeped + out from under the white coverings. This was evidently no ordinary + party of immigrants, but rather some nomad people who had been + compelled from stress of circumstances to seek themselves a new + country. There rose through the clear air a confused clattering and + rumbling from this great mass of humanity, with the creaking of + wheels and the neighing of horses. Loud as it was, it was not + sufficient to rouse the two tired wayfarers above them. + + At the head of the column there rode a score or more of grave + ironfaced men, clad in sombre homespun garments and armed with + rifles. On reaching the base of the bluff they halted, and held a + short council among themselves. + + "The wells are to the right, my brothers," said one, a hard-lipped, + clean-shaven man with grizzly hair. + + "To the right of the Sierra Blanco--so we shall reach the Rio + Grande," said another. + + "Fear not for water," cried a third. "He who could draw it from the + rocks will not now abandon His own chosen people." + + "Amen! Amen!" responded the whole party. + + They were about to resume their journey when one of the youngest and + keenest-eyed uttered an exclamation and pointed up at the rugged crag + above them. From its summit there fluttered a little wisp of pink, + showing up hard and bright against the grey rocks behind. At the + sight there was a general reining up of horses and unslinging of + guns, while fresh horsemen came galloping up to reinforce the + vanguard. The word "Redskins" was on every lip. + + "There can't be any number of Injuns here," said the elderly man who + appeared to be in command. "We have passed the Pawnees, and there are + no other tribes until we cross the great mountains." + + "Shall I go forward and see, Brother Stangerson," asked one of the + band. + + "And I," "and I," cried a dozen voices. + + "Leave your horses below and we will await you here," the Elder + answered. In a moment the young fellows had dismounted, fastened + their horses, and were ascending the precipitous slope which led up + to the object which had excited their curiosity. They advanced + rapidly and noiselessly, with the confidence and dexterity of + practised scouts. The watchers from the plain below could see them + flit from rock to rock until their figures stood out against the + skyline. The young man who had first given the alarm was leading + them. Suddenly his followers saw him throw up his hands, as though + overcome with astonishment, and on joining him they were affected in + the same way by the sight which met their eyes. + + On the little plateau which crowned the barren hill there stood a + single giant boulder, and against this boulder there lay a tall man, + long-bearded and hard-featured, but of an excessive thinness. His + placid face and regular breathing showed that he was fast asleep. + Beside him lay a little child, with her round white arms encircling + his brown sinewy neck, and her golden haired head resting upon the + breast of his velveteen tunic. Her rosy lips were parted, showing the + regular line of snow-white teeth within, and a playful smile played + over her infantile features. Her plump little white legs terminating + in white socks and neat shoes with shining buckles, offered a strange + contrast to the long shrivelled members of her companion. On the + ledge of rock above this strange couple there stood three solemn + buzzards, who, at the sight of the new comers uttered raucous screams + of disappointment and flapped sullenly away. + + The cries of the foul birds awoke the two sleepers who stared about + them in bewilderment. The man staggered to his feet and looked down + upon the plain which had been so desolate when sleep had overtaken + him, and which was now traversed by this enormous body of men and of + beasts. His face assumed an expression of incredulity as he gazed, + and he passed his boney hand over his eyes. "This is what they call + delirium, I guess," he muttered. The child stood beside him, holding + on to the skirt of his coat, and said nothing but looked all round + her with the wondering questioning gaze of childhood. + + The rescuing party were speedily able to convince the two castaways + that their appearance was no delusion. One of them seized the little + girl, and hoisted her upon his shoulder, while two others supported + her gaunt companion, and assisted him towards the waggons. + + "My name is John Ferrier," the wanderer explained; "me and that + little un are all that's left o' twenty-one people. The rest is all + dead o' thirst and hunger away down in the south." + + "Is she your child?" asked someone. + + "I guess she is now," the other cried, defiantly; "she's mine 'cause + I saved her. No man will take her from me. She's Lucy Ferrier from + this day on. Who are you, though?" he continued, glancing with + curiosity at his stalwart, sunburned rescuers; "there seems to be a + powerful lot of ye." + + "Nigh upon ten thousand," said one of the young men; "we are the + persecuted children of God--the chosen of the Angel Merona." + + "I never heard tell on him," said the wanderer. "He appears to have + chosen a fair crowd of ye." + + "Do not jest at that which is sacred," said the other sternly. "We + are of those who believe in those sacred writings, drawn in Egyptian + letters on plates of beaten gold, which were handed unto the holy + Joseph Smith at Palmyra. We have come from Nauvoo, in the State of + Illinois, where we had founded our temple. We have come to seek a + refuge from the violent man and from the godless, even though it be + the heart of the desert." + + The name of Nauvoo evidently recalled recollections to John Ferrier. + "I see," he said, "you are the Mormons." + + "We are the Mormons," answered his companions with one voice. + + "And where are you going?" + + "We do not know. The hand of God is leading us under the person of + our Prophet. You must come before him. He shall say what is to be + done with you." + + They had reached the base of the hill by this time, and were + surrounded by crowds of the pilgrims--pale-faced meek-looking women, + strong laughing children, and anxious earnest-eyed men. Many were the + cries of astonishment and of commiseration which arose from them when + they perceived the youth of one of the strangers and the destitution + of the other. Their escort did not halt, however, but pushed on, + followed by a great crowd of Mormons, until they reached a waggon, + which was conspicuous for its great size and for the gaudiness and + smartness of its appearance. Six horses were yoked to it, whereas the + others were furnished with two, or, at most, four a-piece. Beside the + driver there sat a man who could not have been more than thirty years + of age, but whose massive head and resolute expression marked him as + a leader. He was reading a brown-backed volume, but as the crowd + approached he laid it aside, and listened attentively to an account + of the episode. Then he turned to the two castaways. + + "If we take you with us," he said, in solemn words, "it can only be + as believers in our own creed. We shall have no wolves in our fold. + Better far that your bones should bleach in this wilderness than that + you should prove to be that little speck of decay which in time + corrupts the whole fruit. Will you come with us on these terms?" + + "Guess I'll come with you on any terms," said Ferrier, with such + emphasis that the grave Elders could not restrain a smile. The leader + alone retained his stern, impressive expression. + + "Take him, Brother Stangerson," he said, "give him food and drink, + and the child likewise. Let it be your task also to teach him our + holy creed. We have delayed long enough. Forward! On, on to Zion!" + + "On, on to Zion!" cried the crowd of Mormons, and the words rippled + down the long caravan, passing from mouth to mouth until they died + away in a dull murmur in the far distance. With a cracking of whips + and a creaking of wheels the great waggons got into motion, and soon + the whole caravan was winding along once more. The Elder to whose + care the two waifs had been committed, led them to his waggon, where + a meal was already awaiting them. + + "You shall remain here," he said. "In a few days you will have + recovered from your fatigues. In the meantime, remember that now and + forever you are of our religion. Brigham Young has said it, and he + has spoken with the voice of Joseph Smith, which is the voice of + God." + + + + + + CHAPTER II + The Flower Of Utah + + + This is not the place to commemorate the trials and privations + endured by the immigrant Mormons before they came to their final + haven. From the shores of the Mississippi to the western slopes of + the Rocky Mountains they had struggled on with a constancy almost + unparalleled in history. The savage man, and the savage beast, + hunger, thirst, fatigue, and disease--every impediment which Nature + could place in the way--had all been overcome with Anglo-Saxon + tenacity. Yet the long journey and the accumulated terrors had shaken + the hearts of the stoutest among them. There was not one who did not + sink upon his knees in heartfelt prayer when they saw the broad + valley of Utah bathed in the sunlight beneath them, and learned from + the lips of their leader that this was the promised land, and that + these virgin acres were to be theirs for evermore. + + Young speedily proved himself to be a skilful administrator as well + as a resolute chief. Maps were drawn and charts prepared, in which + the future city was sketched out. All around farms were apportioned + and allotted in proportion to the standing of each individual. The + tradesman was put to his trade and the artisan to his calling. In the + town streets and squares sprang up, as if by magic. In the country + there was draining and hedging, planting and clearing, until the next + summer saw the whole country golden with the wheat crop. Everything + prospered in the strange settlement. Above all, the great temple + which they had erected in the centre of the city grew ever taller and + larger. From the first blush of dawn until the closing of the + twilight, the clatter of the hammer and the rasp of the saw was never + absent from the monument which the immigrants erected to Him who had + led them safe through many dangers. + + The two castaways, John Ferrier and the little girl who had shared + his fortunes and had been adopted as his daughter, accompanied the + Mormons to the end of their great pilgrimage. Little Lucy Ferrier was + borne along pleasantly enough in Elder Stangerson's waggon, a retreat + which she shared with the Mormon's three wives and with his son, a + headstrong forward boy of twelve. Having rallied, with the elasticity + of childhood, from the shock caused by her mother's death, she soon + became a pet with the women, and reconciled herself to this new life + in her moving canvas-covered home. In the meantime Ferrier having + recovered from his privations, distinguished himself as a useful + guide and an indefatigable hunter. So rapidly did he gain the esteem + of his new companions, that when they reached the end of their + wanderings, it was unanimously agreed that he should be provided with + as large and as fertile a tract of land as any of the settlers, with + the exception of Young himself, and of Stangerson, Kemball, Johnston, + and Drebber, who were the four principal Elders. + + On the farm thus acquired John Ferrier built himself a substantial + log-house, which received so many additions in succeeding years that + it grew into a roomy villa. He was a man of a practical turn of mind, + keen in his dealings and skilful with his hands. His iron + constitution enabled him to work morning and evening at improving and + tilling his lands. Hence it came about that his farm and all that + belonged to him prospered exceedingly. In three years he was better + off than his neighbours, in six he was well-to-do, in nine he was + rich, and in twelve there were not half a dozen men in the whole of + Salt Lake City who could compare with him. From the great inland sea + to the distant Wahsatch Mountains there was no name better known than + that of John Ferrier. + + There was one way and only one in which he offended the + susceptibilities of his co-religionists. No argument or persuasion + could ever induce him to set up a female establishment after the + manner of his companions. He never gave reasons for this persistent + refusal, but contented himself by resolutely and inflexibly adhering + to his determination. There were some who accused him of lukewarmness + in his adopted religion, and others who put it down to greed of + wealth and reluctance to incur expense. Others, again, spoke of some + early love affair, and of a fair-haired girl who had pined away on + the shores of the Atlantic. Whatever the reason, Ferrier remained + strictly celibate. In every other respect he conformed to the + religion of the young settlement, and gained the name of being an + orthodox and straight-walking man. + + Lucy Ferrier grew up within the log-house, and assisted her adopted + father in all his undertakings. The keen air of the mountains and the + balsamic odour of the pine trees took the place of nurse and mother + to the young girl. As year succeeded to year she grew taller and + stronger, her cheek more rudy, and her step more elastic. Many a + wayfarer upon the high road which ran by Ferrier's farm felt + long-forgotten thoughts revive in their mind as they watched her + lithe girlish figure tripping through the wheatfields, or met her + mounted upon her father's mustang, and managing it with all the ease + and grace of a true child of the West. So the bud blossomed into a + flower, and the year which saw her father the richest of the farmers + left her as fair a specimen of American girlhood as could be found in + the whole Pacific slope. + + It was not the father, however, who first discovered that the child + had developed into the woman. It seldom is in such cases. That + mysterious change is too subtle and too gradual to be measured by + dates. Least of all does the maiden herself know it until the tone of + a voice or the touch of a hand sets her heart thrilling within her, + and she learns, with a mixture of pride and of fear, that a new and a + larger nature has awoken within her. There are few who cannot recall + that day and remember the one little incident which heralded the dawn + of a new life. In the case of Lucy Ferrier the occasion was serious + enough in itself, apart from its future influence on her destiny and + that of many besides. + + It was a warm June morning, and the Latter Day Saints were as busy as + the bees whose hive they have chosen for their emblem. In the fields + and in the streets rose the same hum of human industry. Down the + dusty high roads defiled long streams of heavily-laden mules, all + heading to the west, for the gold fever had broken out in California, + and the Overland Route lay through the City of the Elect. There, too, + were droves of sheep and bullocks coming in from the outlying pasture + lands, and trains of tired immigrants, men and horses equally weary + of their interminable journey. Through all this motley assemblage, + threading her way with the skill of an accomplished rider, there + galloped Lucy Ferrier, her fair face flushed with the exercise and + her long chestnut hair floating out behind her. She had a commission + from her father in the City, and was dashing in as she had done many + a time before, with all the fearlessness of youth, thinking only of + her task and how it was to be performed. The travel-stained + adventurers gazed after her in astonishment, and even the unemotional + Indians, journeying in with their pelties, relaxed their accustomed + stoicism as they marvelled at the beauty of the pale-faced maiden. + + She had reached the outskirts of the city when she found the road + blocked by a great drove of cattle, driven by a half-dozen + wild-looking herdsmen from the plains. In her impatience she + endeavoured to pass this obstacle by pushing her horse into what + appeared to be a gap. Scarcely had she got fairly into it, however, + before the beasts closed in behind her, and she found herself + completely imbedded in the moving stream of fierce-eyed, long-horned + bullocks. Accustomed as she was to deal with cattle, she was not + alarmed at her situation, but took advantage of every opportunity to + urge her horse on in the hopes of pushing her way through the + cavalcade. Unfortunately the horns of one of the creatures, either by + accident or design, came in violent contact with the flank of the + mustang, and excited it to madness. In an instant it reared up upon + its hind legs with a snort of rage, and pranced and tossed in a way + that would have unseated any but a most skilful rider. The situation + was full of peril. Every plunge of the excited horse brought it + against the horns again, and goaded it to fresh madness. It was all + that the girl could do to keep herself in the saddle, yet a slip + would mean a terrible death under the hoofs of the unwieldy and + terrified animals. Unaccustomed to sudden emergencies, her head began + to swim, and her grip upon the bridle to relax. Choked by the rising + cloud of dust and by the steam from the struggling creatures, she + might have abandoned her efforts in despair, but for a kindly voice + at her elbow which assured her of assistance. At the same moment a + sinewy brown hand caught the frightened horse by the curb, and + forcing a way through the drove, soon brought her to the outskirts. + + "You're not hurt, I hope, miss," said her preserver, respectfully. + + She looked up at his dark, fierce face, and laughed saucily. "I'm + awful frightened," she said, naively; "whoever would have thought + that Poncho would have been so scared by a lot of cows?" + + "Thank God you kept your seat," the other said earnestly. He was a + tall, savage-looking young fellow, mounted on a powerful roan horse, + and clad in the rough dress of a hunter, with a long rifle slung over + his shoulders. "I guess you are the daughter of John Ferrier," he + remarked, "I saw you ride down from his house. When you see him, ask + him if he remembers the Jefferson Hopes of St. Louis. If he's the + same Ferrier, my father and he were pretty thick." + + "Hadn't you better come and ask yourself?" she asked, demurely. + + The young fellow seemed pleased at the suggestion, and his dark eyes + sparkled with pleasure. "I'll do so," he said, "we've been in the + mountains for two months, and are not over and above in visiting + condition. He must take us as he finds us." + + "He has a good deal to thank you for, and so have I," she answered, + "he's awful fond of me. If those cows had jumped on me he'd have + never got over it." + + "Neither would I," said her companion. + + "You! Well, I don't see that it would make much matter to you, + anyhow. You ain't even a friend of ours." + + The young hunter's dark face grew so gloomy over this remark that + Lucy Ferrier laughed aloud. + + "There, I didn't mean that," she said; "of course, you are a friend + now. You must come and see us. Now I must push along, or father won't + trust me with his business any more. Good-bye!" + + "Good-bye," he answered, raising his broad sombrero, and bending over + her little hand. She wheeled her mustang round, gave it a cut with + her riding-whip, and darted away down the broad road in a rolling + cloud of dust. + + Young Jefferson Hope rode on with his companions, gloomy and + taciturn. He and they had been among the Nevada Mountains prospecting + for silver, and were returning to Salt Lake City in the hope of + raising capital enough to work some lodes which they had discovered. + He had been as keen as any of them upon the business until this + sudden incident had drawn his thoughts into another channel. The + sight of the fair young girl, as frank and wholesome as the Sierra + breezes, had stirred his volcanic, untamed heart to its very depths. + When she had vanished from his sight, he realized that a crisis had + come in his life, and that neither silver speculations nor any other + questions could ever be of such importance to him as this new and + all-absorbing one. The love which had sprung up in his heart was not + the sudden, changeable fancy of a boy, but rather the wild, fierce + passion of a man of strong will and imperious temper. He had been + accustomed to succeed in all that he undertook. He swore in his heart + that he would not fail in this if human effort and human perseverance + could render him successful. + + He called on John Ferrier that night, and many times again, until his + face was a familiar one at the farm-house. John, cooped up in the + valley, and absorbed in his work, had had little chance of learning + the news of the outside world during the last twelve years. All this + Jefferson Hope was able to tell him, and in a style which interested + Lucy as well as her father. He had been a pioneer in California, and + could narrate many a strange tale of fortunes made and fortunes lost + in those wild, halcyon days. He had been a scout too, and a trapper, + a silver explorer, and a ranchman. Wherever stirring adventures were + to be had, Jefferson Hope had been there in search of them. He soon + became a favourite with the old farmer, who spoke eloquently of his + virtues. On such occasions, Lucy was silent, but her blushing cheek + and her bright, happy eyes, showed only too clearly that her young + heart was no longer her own. Her honest father may not have observed + these symptoms, but they were assuredly not thrown away upon the man + who had won her affections. + + It was a summer evening when he came galloping down the road and + pulled up at the gate. She was at the doorway, and came down to meet + him. He threw the bridle over the fence and strode up the pathway. + + "I am off, Lucy," he said, taking her two hands in his, and gazing + tenderly down into her face; "I won't ask you to come with me now, + but will you be ready to come when I am here again?" + + "And when will that be?" she asked, blushing and laughing. + + "A couple of months at the outside. I will come and claim you then, + my darling. There's no one who can stand between us." + + "And how about father?" she asked. + + "He has given his consent, provided we get these mines working all + right. I have no fear on that head." + + "Oh, well; of course, if you and father have arranged it all, there's + no more to be said," she whispered, with her cheek against his broad + breast. + + "Thank God!" he said, hoarsely, stooping and kissing her. "It is + settled, then. The longer I stay, the harder it will be to go. They + are waiting for me at the cañon. Good-bye, my own darling--good-bye. + In two months you shall see me." + + He tore himself from her as he spoke, and, flinging himself upon his + horse, galloped furiously away, never even looking round, as though + afraid that his resolution might fail him if he took one glance at + what he was leaving. She stood at the gate, gazing after him until he + vanished from her sight. Then she walked back into the house, the + happiest girl in all Utah. + + + + + + CHAPTER III + John Ferrier Talks With The Prophet + + + Three weeks had passed since Jefferson Hope and his comrades had + departed from Salt Lake City. John Ferrier's heart was sore within + him when he thought of the young man's return, and of the impending + loss of his adopted child. Yet her bright and happy face reconciled + him to the arrangement more than any argument could have done. He had + always determined, deep down in his resolute heart, that nothing + would ever induce him to allow his daughter to wed a Mormon. Such a + marriage he regarded as no marriage at all, but as a shame and a + disgrace. Whatever he might think of the Mormon doctrines, upon that + one point he was inflexible. He had to seal his mouth on the subject, + however, for to express an unorthodox opinion was a dangerous matter + in those days in the Land of the Saints. + + Yes, a dangerous matter--so dangerous that even the most saintly + dared only whisper their religious opinions with bated breath, lest + something which fell from their lips might be misconstrued, and bring + down a swift retribution upon them. The victims of persecution had + now turned persecutors on their own account, and persecutors of the + most terrible description. Not the Inquisition of Seville, nor the + German Vehmgericht, nor the Secret Societies of Italy, were ever able + to put a more formidable machinery in motion than that which cast a + cloud over the State of Utah. + + Its invisibility, and the mystery which was attached to it, made this + organization doubly terrible. It appeared to be omniscient and + omnipotent, and yet was neither seen nor heard. The man who held out + against the Church vanished away, and none knew whither he had gone + or what had befallen him. His wife and his children awaited him at + home, but no father ever returned to tell them how he had fared at + the hands of his secret judges. A rash word or a hasty act was + followed by annihilation, and yet none knew what the nature might be + of this terrible power which was suspended over them. No wonder that + men went about in fear and trembling, and that even in the heart of + the wilderness they dared not whisper the doubts which oppressed + them. + + At first this vague and terrible power was exercised only upon the + recalcitrants who, having embraced the Mormon faith, wished + afterwards to pervert or to abandon it. Soon, however, it took a + wider range. The supply of adult women was running short, and + polygamy without a female population on which to draw was a barren + doctrine indeed. Strange rumours began to be bandied about--rumours + of murdered immigrants and rifled camps in regions where Indians had + never been seen. Fresh women appeared in the harems of the + Elders--women who pined and wept, and bore upon their faces the + traces of an unextinguishable horror. Belated wanderers upon the + mountains spoke of gangs of armed men, masked, stealthy, and + noiseless, who flitted by them in the darkness. These tales and + rumours took substance and shape, and were corroborated and + re-corroborated, until they resolved themselves into a definite name. + To this day, in the lonely ranches of the West, the name of the + Danite Band, or the Avenging Angels, is a sinister and an ill-omened + one. + + Fuller knowledge of the organization which produced such terrible + results served to increase rather than to lessen the horror which it + inspired in the minds of men. None knew who belonged to this ruthless + society. The names of the participators in the deeds of blood and + violence done under the name of religion were kept profoundly secret. + The very friend to whom you communicated your misgivings as to the + Prophet and his mission, might be one of those who would come forth + at night with fire and sword to exact a terrible reparation. Hence + every man feared his neighbour, and none spoke of the things which + were nearest his heart. + + One fine morning, John Ferrier was about to set out to his + wheatfields, when he heard the click of the latch, and, looking + through the window, saw a stout, sandy-haired, middle-aged man coming + up the pathway. His heart leapt to his mouth, for this was none other + than the great Brigham Young himself. Full of trepidation--for he + knew that such a visit boded him little good--Ferrier ran to the door + to greet the Mormon chief. The latter, however, received his + salutations coldly, and followed him with a stern face into the + sitting-room. + + "Brother Ferrier," he said, taking a seat, and eyeing the farmer + keenly from under his light-coloured eyelashes, "the true believers + have been good friends to you. We picked you up when you were + starving in the desert, we shared our food with you, led you safe to + the Chosen Valley, gave you a goodly share of land, and allowed you + to wax rich under our protection. Is not this so?" + + "It is so," answered John Ferrier. + + "In return for all this we asked but one condition: that was, that + you should embrace the true faith, and conform in every way to its + usages. This you promised to do, and this, if common report says + truly, you have neglected." + + "And how have I neglected it?" asked Ferrier, throwing out his hands + in expostulation. "Have I not given to the common fund? Have I not + attended at the Temple? Have I not--?" + + "Where are your wives?" asked Young, looking round him. "Call them + in, that I may greet them." + + "It is true that I have not married," Ferrier answered. "But women + were few, and there were many who had better claims than I. I was not + a lonely man: I had my daughter to attend to my wants." + + "It is of that daughter that I would speak to you," said the leader + of the Mormons. "She has grown to be the flower of Utah, and has + found favour in the eyes of many who are high in the land." + + John Ferrier groaned internally. + + "There are stories of her which I would fain disbelieve--stories that + she is sealed to some Gentile. This must be the gossip of idle + tongues. What is the thirteenth rule in the code of the sainted + Joseph Smith? 'Let every maiden of the true faith marry one of the + elect; for if she wed a Gentile, she commits a grievous sin.' This + being so, it is impossible that you, who profess the holy creed, + should suffer your daughter to violate it." + + John Ferrier made no answer, but he played nervously with his + riding-whip. + + "Upon this one point your whole faith shall be tested--so it has been + decided in the Sacred Council of Four. The girl is young, and we + would not have her wed grey hairs, neither would we deprive her of + all choice. We Elders have many heifers*1, but our children must also + be provided. Stangerson has a son, and Drebber has a son, and either + of them would gladly welcome your daughter to their house. Let her + choose between them. They are young and rich, and of the true faith. + What say you to that?" + + Ferrier remained silent for some little time with his brows knitted. + + "You will give us time," he said at last. "My daughter is very + young--she is scarce of an age to marry." + + "She shall have a month to choose," said Young, rising from his seat. + "At the end of that time she shall give her answer." + + He was passing through the door, when he turned, with flushed face + and flashing eyes. "It were better for you, John Ferrier," he + thundered, "that you and she were now lying blanched skeletons upon + the Sierra Blanco, than that you should put your weak wills against + the orders of the Holy Four!" + + With a threatening gesture of his hand, he turned from the door, and + Ferrier heard his heavy step scrunching along the shingly path. + + He was still sitting with his elbows upon his knees, considering how + he should broach the matter to his daughter when a soft hand was laid + upon his, and looking up, he saw her standing beside him. One glance + at her pale, frightened face showed him that she had heard what had + passed. + + "I could not help it," she said, in answer to his look. "His voice + rang through the house. Oh, father, father, what shall we do?" + + "Don't you scare yourself," he answered, drawing her to him, and + passing his broad, rough hand caressingly over her chestnut hair. + "We'll fix it up somehow or another. You don't find your fancy kind + o' lessening for this chap, do you?" + + A sob and a squeeze of his hand was her only answer. + + "No; of course not. I shouldn't care to hear you say you did. He's a + likely lad, and he's a Christian, which is more than these folk here, + in spite o' all their praying and preaching. There's a party starting + for Nevada to-morrow, and I'll manage to send him a message letting + him know the hole we are in. If I know anything o' that young man, + he'll be back here with a speed that would whip electro-telegraphs." + + Lucy laughed through her tears at her father's description. + + "When he comes, he will advise us for the best. But it is for you + that I am frightened, dear. One hears--one hears such dreadful + stories about those who oppose the Prophet: something terrible always + happens to them." + + "But we haven't opposed him yet," her father answered. "It will be + time to look out for squalls when we do. We have a clear month before + us; at the end of that, I guess we had best shin out of Utah." + + "Leave Utah!" + + "That's about the size of it." + + "But the farm?" + + "We will raise as much as we can in money, and let the rest go. To + tell the truth, Lucy, it isn't the first time I have thought of doing + it. I don't care about knuckling under to any man, as these folk do + to their darned prophet. I'm a free-born American, and it's all new + to me. Guess I'm too old to learn. If he comes browsing about this + farm, he might chance to run up against a charge of buckshot + travelling in the opposite direction." + + "But they won't let us leave," his daughter objected. + + "Wait till Jefferson comes, and we'll soon manage that. In the + meantime, don't you fret yourself, my dearie, and don't get your eyes + swelled up, else he'll be walking into me when he sees you. There's + nothing to be afeared about, and there's no danger at all." + + John Ferrier uttered these consoling remarks in a very confident + tone, but she could not help observing that he paid unusual care to + the fastening of the doors that night, and that he carefully cleaned + and loaded the rusty old shotgun which hung upon the wall of his + bedroom. + + ----- + *1: Heber C Kemball, in one of his sermons, alludes to his hundred + wives under this endearing epithet. + + + + + + CHAPTER IV + A Flight For Life + + + On the morning which followed his interview with the Mormon Prophet, + John Ferrier went in to Salt Lake City, and having found his + acquaintance, who was bound for the Nevada Mountains, he entrusted + him with his message to Jefferson Hope. In it he told the young man + of the imminent danger which threatened them, and how necessary it + was that he should return. Having done thus he felt easier in his + mind, and returned home with a lighter heart. + + As he approached his farm, he was surprised to see a horse hitched to + each of the posts of the gate. Still more surprised was he on + entering to find two young men in possession of his sitting-room. + One, with a long pale face, was leaning back in the rocking-chair, + with his feet cocked up upon the stove. The other, a bull-necked + youth with coarse bloated features, was standing in front of the + window with his hands in his pocket, whistling a popular hymn. Both + of them nodded to Ferrier as he entered, and the one in the + rocking-chair commenced the conversation. + + "Maybe you don't know us," he said. "This here is the son of Elder + Drebber, and I'm Joseph Stangerson, who travelled with you in the + desert when the Lord stretched out His hand and gathered you into the + true fold." + + "As He will all the nations in His own good time," said the other in + a nasal voice; "He grindeth slowly but exceeding small." + + John Ferrier bowed coldly. He had guessed who his visitors were. + + "We have come," continued Stangerson, "at the advice of our fathers + to solicit the hand of your daughter for whichever of us may seem + good to you and to her. As I have but four wives and Brother Drebber + here has seven, it appears to me that my claim is the stronger one." + + "Nay, nay, Brother Stangerson," cried the other; "the question is not + how many wives we have, but how many we can keep. My father has now + given over his mills to me, and I am the richer man." + + "But my prospects are better," said the other, warmly. "When the Lord + removes my father, I shall have his tanning yard and his leather + factory. Then I am your elder, and am higher in the Church." + + "It will be for the maiden to decide," rejoined young Drebber, + smirking at his own reflection in the glass. "We will leave it all to + her decision." + + During this dialogue, John Ferrier had stood fuming in the doorway, + hardly able to keep his riding-whip from the backs of his two + visitors. + + "Look here," he said at last, striding up to them, "when my daughter + summons you, you can come, but until then I don't want to see your + faces again." + + The two young Mormons stared at him in amazement. In their eyes this + competition between them for the maiden's hand was the highest of + honours both to her and her father. + + "There are two ways out of the room," cried Ferrier; "there is the + door, and there is the window. Which do you care to use?" + + His brown face looked so savage, and his gaunt hands so threatening, + that his visitors sprang to their feet and beat a hurried retreat. + The old farmer followed them to the door. + + "Let me know when you have settled which it is to be," he said, + sardonically. + + "You shall smart for this!" Stangerson cried, white with rage. "You + have defied the Prophet and the Council of Four. You shall rue it to + the end of your days." + + "The hand of the Lord shall be heavy upon you," cried young Drebber; + "He will arise and smite you!" + + "Then I'll start the smiting," exclaimed Ferrier furiously, and would + have rushed upstairs for his gun had not Lucy seized him by the arm + and restrained him. Before he could escape from her, the clatter of + horses' hoofs told him that they were beyond his reach. + + "The young canting rascals!" he exclaimed, wiping the perspiration + from his forehead; "I would sooner see you in your grave, my girl, + than the wife of either of them." + + "And so should I, father," she answered, with spirit; "but Jefferson + will soon be here." + + "Yes. It will not be long before he comes. The sooner the better, for + we do not know what their next move may be." + + It was, indeed, high time that someone capable of giving advice and + help should come to the aid of the sturdy old farmer and his adopted + daughter. In the whole history of the settlement there had never been + such a case of rank disobedience to the authority of the Elders. If + minor errors were punished so sternly, what would be the fate of this + arch rebel. Ferrier knew that his wealth and position would be of no + avail to him. Others as well known and as rich as himself had been + spirited away before now, and their goods given over to the Church. + He was a brave man, but he trembled at the vague, shadowy terrors + which hung over him. Any known danger he could face with a firm lip, + but this suspense was unnerving. He concealed his fears from his + daughter, however, and affected to make light of the whole matter, + though she, with the keen eye of love, saw plainly that he was ill at + ease. + + He expected that he would receive some message or remonstrance from + Young as to his conduct, and he was not mistaken, though it came in + an unlooked-for manner. Upon rising next morning he found, to his + surprise, a small square of paper pinned on to the coverlet of his + bed just over his chest. On it was printed, in bold straggling + letters:-- + + "Twenty-nine days are given you for amendment, and then--" + + The dash was more fear-inspiring than any threat could have been. How + this warning came into his room puzzled John Ferrier sorely, for his + servants slept in an outhouse, and the doors and windows had all been + secured. He crumpled the paper up and said nothing to his daughter, + but the incident struck a chill into his heart. The twenty-nine days + were evidently the balance of the month which Young had promised. + What strength or courage could avail against an enemy armed with such + mysterious powers? The hand which fastened that pin might have struck + him to the heart, and he could never have known who had slain him. + + Still more shaken was he next morning. They had sat down to their + breakfast when Lucy with a cry of surprise pointed upwards. In the + centre of the ceiling was scrawled, with a burned stick apparently, + the number 28. To his daughter it was unintelligible, and he did not + enlighten her. That night he sat up with his gun and kept watch and + ward. He saw and he heard nothing, and yet in the morning a great 27 + had been painted upon the outside of his door. + + Thus day followed day; and as sure as morning came he found that his + unseen enemies had kept their register, and had marked up in some + conspicuous position how many days were still left to him out of the + month of grace. Sometimes the fatal numbers appeared upon the walls, + sometimes upon the floors, occasionally they were on small placards + stuck upon the garden gate or the railings. With all his vigilance + John Ferrier could not discover whence these daily warnings + proceeded. A horror which was almost superstitious came upon him at + the sight of them. He became haggard and restless, and his eyes had + the troubled look of some hunted creature. He had but one hope in + life now, and that was for the arrival of the young hunter from + Nevada. + + Twenty had changed to fifteen and fifteen to ten, but there was no + news of the absentee. One by one the numbers dwindled down, and still + there came no sign of him. Whenever a horseman clattered down the + road, or a driver shouted at his team, the old farmer hurried to the + gate thinking that help had arrived at last. At last, when he saw + five give way to four and that again to three, he lost heart, and + abandoned all hope of escape. Single-handed, and with his limited + knowledge of the mountains which surrounded the settlement, he knew + that he was powerless. The more-frequented roads were strictly + watched and guarded, and none could pass along them without an order + from the Council. Turn which way he would, there appeared to be no + avoiding the blow which hung over him. Yet the old man never wavered + in his resolution to part with life itself before he consented to + what he regarded as his daughter's dishonour. + + He was sitting alone one evening pondering deeply over his troubles, + and searching vainly for some way out of them. That morning had shown + the figure 2 upon the wall of his house, and the next day would be + the last of the allotted time. What was to happen then? All manner of + vague and terrible fancies filled his imagination. And his + daughter--what was to become of her after he was gone? Was there no + escape from the invisible network which was drawn all round them. He + sank his head upon the table and sobbed at the thought of his own + impotence. + + What was that? In the silence he heard a gentle scratching + sound--low, but very distinct in the quiet of the night. It came from + the door of the house. Ferrier crept into the hall and listened + intently. There was a pause for a few moments, and then the low + insidious sound was repeated. Someone was evidently tapping very + gently upon one of the panels of the door. Was it some midnight + assassin who had come to carry out the murderous orders of the secret + tribunal? Or was it some agent who was marking up that the last day + of grace had arrived. John Ferrier felt that instant death would be + better than the suspense which shook his nerves and chilled his + heart. Springing forward he drew the bolt and threw the door open. + + Outside all was calm and quiet. The night was fine, and the stars + were twinkling brightly overhead. The little front garden lay before + the farmer's eyes bounded by the fence and gate, but neither there + nor on the road was any human being to be seen. With a sigh of + relief, Ferrier looked to right and to left, until happening to + glance straight down at his own feet he saw to his astonishment a man + lying flat upon his face upon the ground, with arms and legs all + asprawl. + + So unnerved was he at the sight that he leaned up against the wall + with his hand to his throat to stifle his inclination to call out. + His first thought was that the prostrate figure was that of some + wounded or dying man, but as he watched it he saw it writhe along the + ground and into the hall with the rapidity and noiselessness of a + serpent. Once within the house the man sprang to his feet, closed the + door, and revealed to the astonished farmer the fierce face and + resolute expression of Jefferson Hope. + + "Good God!" gasped John Ferrier. "How you scared me! Whatever made + you come in like that." + + "Give me food," the other said, hoarsely. "I have had no time for + bite or sup for eight-and-forty hours." He flung himself upon the + cold meat and bread which were still lying upon the table from his + host's supper, and devoured it voraciously. "Does Lucy bear up well?" + he asked, when he had satisfied his hunger. + + "Yes. She does not know the danger," her father answered. + + "That is well. The house is watched on every side. That is why I + crawled my way up to it. They may be darned sharp, but they're not + quite sharp enough to catch a Washoe hunter." + + John Ferrier felt a different man now that he realized that he had a + devoted ally. He seized the young man's leathery hand and wrung it + cordially. "You're a man to be proud of," he said. "There are not + many who would come to share our danger and our troubles." + + "You've hit it there, pard," the young hunter answered. "I have a + respect for you, but if you were alone in this business I'd think + twice before I put my head into such a hornet's nest. It's Lucy that + brings me here, and before harm comes on her I guess there will be + one less o' the Hope family in Utah." + + "What are we to do?" + + "To-morrow is your last day, and unless you act to-night you are + lost. I have a mule and two horses waiting in the Eagle Ravine. How + much money have you?" + + "Two thousand dollars in gold, and five in notes." + + "That will do. I have as much more to add to it. We must push for + Carson City through the mountains. You had best wake Lucy. It is as + well that the servants do not sleep in the house." + + While Ferrier was absent, preparing his daughter for the approaching + journey, Jefferson Hope packed all the eatables that he could find + into a small parcel, and filled a stoneware jar with water, for he + knew by experience that the mountain wells were few and far between. + He had hardly completed his arrangements before the farmer returned + with his daughter all dressed and ready for a start. The greeting + between the lovers was warm, but brief, for minutes were precious, + and there was much to be done. + + "We must make our start at once," said Jefferson Hope, speaking in a + low but resolute voice, like one who realizes the greatness of the + peril, but has steeled his heart to meet it. "The front and back + entrances are watched, but with caution we may get away through the + side window and across the fields. Once on the road we are only two + miles from the Ravine where the horses are waiting. By daybreak we + should be half-way through the mountains." + + "What if we are stopped," asked Ferrier. + + Hope slapped the revolver butt which protruded from the front of his + tunic. "If they are too many for us we shall take two or three of + them with us," he said with a sinister smile. + + The lights inside the house had all been extinguished, and from the + darkened window Ferrier peered over the fields which had been his + own, and which he was now about to abandon for ever. He had long + nerved himself to the sacrifice, however, and the thought of the + honour and happiness of his daughter outweighed any regret at his + ruined fortunes. All looked so peaceful and happy, the rustling trees + and the broad silent stretch of grain-land, that it was difficult to + realize that the spirit of murder lurked through it all. Yet the + white face and set expression of the young hunter showed that in his + approach to the house he had seen enough to satisfy him upon that + head. + + Ferrier carried the bag of gold and notes, Jefferson Hope had the + scanty provisions and water, while Lucy had a small bundle containing + a few of her more valued possessions. Opening the window very slowly + and carefully, they waited until a dark cloud had somewhat obscured + the night, and then one by one passed through into the little garden. + With bated breath and crouching figures they stumbled across it, and + gained the shelter of the hedge, which they skirted until they came + to the gap which opened into the cornfields. They had just reached + this point when the young man seized his two companions and dragged + them down into the shadow, where they lay silent and trembling. + + It was as well that his prairie training had given Jefferson Hope the + ears of a lynx. He and his friends had hardly crouched down before + the melancholy hooting of a mountain owl was heard within a few yards + of them, which was immediately answered by another hoot at a small + distance. At the same moment a vague shadowy figure emerged from the + gap for which they had been making, and uttered the plaintive signal + cry again, on which a second man appeared out of the obscurity. + + "To-morrow at midnight," said the first who appeared to be in + authority. "When the Whip-poor-Will calls three times." + + "It is well," returned the other. "Shall I tell Brother Drebber?" + + "Pass it on to him, and from him to the others. Nine to seven!" + + "Seven to five!" repeated the other, and the two figures flitted away + in different directions. Their concluding words had evidently been + some form of sign and countersign. The instant that their footsteps + had died away in the distance, Jefferson Hope sprang to his feet, and + helping his companions through the gap, led the way across the fields + at the top of his speed, supporting and half-carrying the girl when + her strength appeared to fail her. + + "Hurry on! hurry on!" he gasped from time to time. "We are through + the line of sentinels. Everything depends on speed. Hurry on!" + + Once on the high road they made rapid progress. Only once did they + meet anyone, and then they managed to slip into a field, and so avoid + recognition. Before reaching the town the hunter branched away into a + rugged and narrow footpath which led to the mountains. Two dark + jagged peaks loomed above them through the darkness, and the defile + which led between them was the Eagle Cañon in which the horses were + awaiting them. With unerring instinct Jefferson Hope picked his way + among the great boulders and along the bed of a dried-up watercourse, + until he came to the retired corner, screened with rocks, where the + faithful animals had been picketed. The girl was placed upon the + mule, and old Ferrier upon one of the horses, with his money-bag, + while Jefferson Hope led the other along the precipitous and + dangerous path. + + It was a bewildering route for anyone who was not accustomed to face + Nature in her wildest moods. On the one side a great crag towered up + a thousand feet or more, black, stern, and menacing, with long + basaltic columns upon its rugged surface like the ribs of some + petrified monster. On the other hand a wild chaos of boulders and + debris made all advance impossible. Between the two ran the irregular + track, so narrow in places that they had to travel in Indian file, + and so rough that only practised riders could have traversed it at + all. Yet in spite of all dangers and difficulties, the hearts of the + fugitives were light within them, for every step increased the + distance between them and the terrible despotism from which they were + flying. + + They soon had a proof, however, that they were still within the + jurisdiction of the Saints. They had reached the very wildest and + most desolate portion of the pass when the girl gave a startled cry, + and pointed upwards. On a rock which overlooked the track, showing + out dark and plain against the sky, there stood a solitary sentinel. + He saw them as soon as they perceived him, and his military challenge + of "Who goes there?" rang through the silent ravine. + + "Travellers for Nevada," said Jefferson Hope, with his hand upon the + rifle which hung by his saddle. + + They could see the lonely watcher fingering his gun, and peering down + at them as if dissatisfied at their reply. + + "By whose permission?" he asked. + + "The Holy Four," answered Ferrier. His Mormon experiences had taught + him that that was the highest authority to which he could refer. + + "Nine from seven," cried the sentinel. + + "Seven from five," returned Jefferson Hope promptly, remembering the + countersign which he had heard in the garden. + + "Pass, and the Lord go with you," said the voice from above. Beyond + his post the path broadened out, and the horses were able to break + into a trot. Looking back, they could see the solitary watcher + leaning upon his gun, and knew that they had passed the outlying post + of the chosen people, and that freedom lay before them. + + + + + + CHAPTER V + The Avenging Angels + + + All night their course lay through intricate defiles and over + irregular and rock-strewn paths. More than once they lost their way, + but Hope's intimate knowledge of the mountains enabled them to regain + the track once more. When morning broke, a scene of marvellous though + savage beauty lay before them. In every direction the great + snow-capped peaks hemmed them in, peeping over each other's shoulders + to the far horizon. So steep were the rocky banks on either side of + them, that the larch and the pine seemed to be suspended over their + heads, and to need only a gust of wind to come hurtling down upon + them. Nor was the fear entirely an illusion, for the barren valley + was thickly strewn with trees and boulders which had fallen in a + similar manner. Even as they passed, a great rock came thundering + down with a hoarse rattle which woke the echoes in the silent gorges, + and startled the weary horses into a gallop. + + As the sun rose slowly above the eastern horizon, the caps of the + great mountains lit up one after the other, like lamps at a festival, + until they were all ruddy and glowing. The magnificent spectacle + cheered the hearts of the three fugitives and gave them fresh energy. + At a wild torrent which swept out of a ravine they called a halt and + watered their horses, while they partook of a hasty breakfast. Lucy + and her father would fain have rested longer, but Jefferson Hope was + inexorable. "They will be upon our track by this time," he said. + "Everything depends upon our speed. Once safe in Carson we may rest + for the remainder of our lives." + + During the whole of that day they struggled on through the defiles, + and by evening they calculated that they were more than thirty miles + from their enemies. At night-time they chose the base of a beetling + crag, where the rocks offered some protection from the chill wind, + and there huddled together for warmth, they enjoyed a few hours' + sleep. Before daybreak, however, they were up and on their way once + more. They had seen no signs of any pursuers, and Jefferson Hope + began to think that they were fairly out of the reach of the terrible + organization whose enmity they had incurred. He little knew how far + that iron grasp could reach, or how soon it was to close upon them + and crush them. + + About the middle of the second day of their flight their scanty store + of provisions began to run out. This gave the hunter little + uneasiness, however, for there was game to be had among the + mountains, and he had frequently before had to depend upon his rifle + for the needs of life. Choosing a sheltered nook, he piled together a + few dried branches and made a blazing fire, at which his companions + might warm themselves, for they were now nearly five thousand feet + above the sea level, and the air was bitter and keen. Having tethered + the horses, and bade Lucy adieu, he threw his gun over his shoulder, + and set out in search of whatever chance might throw in his way. + Looking back he saw the old man and the young girl crouching over the + blazing fire, while the three animals stood motionless in the + back-ground. Then the intervening rocks hid them from his view. + + He walked for a couple of miles through one ravine after another + without success, though from the marks upon the bark of the trees, + and other indications, he judged that there were numerous bears in + the vicinity. At last, after two or three hours' fruitless search, he + was thinking of turning back in despair, when casting his eyes + upwards he saw a sight which sent a thrill of pleasure through his + heart. On the edge of a jutting pinnacle, three or four hundred feet + above him, there stood a creature somewhat resembling a sheep in + appearance, but armed with a pair of gigantic horns. The + big-horn--for so it is called--was acting, probably, as a guardian + over a flock which were invisible to the hunter; but fortunately it + was heading in the opposite direction, and had not perceived him. + Lying on his face, he rested his rifle upon a rock, and took a long + and steady aim before drawing the trigger. The animal sprang into the + air, tottered for a moment upon the edge of the precipice, and then + came crashing down into the valley beneath. + + The creature was too unwieldy to lift, so the hunter contented + himself with cutting away one haunch and part of the flank. With this + trophy over his shoulder, he hastened to retrace his steps, for the + evening was already drawing in. He had hardly started, however, + before he realized the difficulty which faced him. In his eagerness + he had wandered far past the ravines which were known to him, and it + was no easy matter to pick out the path which he had taken. The + valley in which he found himself divided and sub-divided into many + gorges, which were so like each other that it was impossible to + distinguish one from the other. He followed one for a mile or more + until he came to a mountain torrent which he was sure that he had + never seen before. Convinced that he had taken the wrong turn, he + tried another, but with the same result. Night was coming on rapidly, + and it was almost dark before he at last found himself in a defile + which was familiar to him. Even then it was no easy matter to keep to + the right track, for the moon had not yet risen, and the high cliffs + on either side made the obscurity more profound. Weighed down with + his burden, and weary from his exertions, he stumbled along, keeping + up his heart by the reflection that every step brought him nearer to + Lucy, and that he carried with him enough to ensure them food for the + remainder of their journey. + + He had now come to the mouth of the very defile in which he had left + them. Even in the darkness he could recognize the outline of the + cliffs which bounded it. They must, he reflected, be awaiting him + anxiously, for he had been absent nearly five hours. In the gladness + of his heart he put his hands to his mouth and made the glen re-echo + to a loud halloo as a signal that he was coming. He paused and + listened for an answer. None came save his own cry, which clattered + up the dreary silent ravines, and was borne back to his ears in + countless repetitions. Again he shouted, even louder than before, and + again no whisper came back from the friends whom he had left such a + short time ago. A vague, nameless dread came over him, and he hurried + onwards frantically, dropping the precious food in his agitation. + + When he turned the corner, he came full in sight of the spot where + the fire had been lit. There was still a glowing pile of wood ashes + there, but it had evidently not been tended since his departure. The + same dead silence still reigned all round. With his fears all changed + to convictions, he hurried on. There was no living creature near the + remains of the fire: animals, man, maiden, all were gone. It was only + too clear that some sudden and terrible disaster had occurred during + his absence--a disaster which had embraced them all, and yet had left + no traces behind it. + + Bewildered and stunned by this blow, Jefferson Hope felt his head + spin round, and had to lean upon his rifle to save himself from + falling. He was essentially a man of action, however, and speedily + recovered from his temporary impotence. Seizing a half-consumed piece + of wood from the smouldering fire, he blew it into a flame, and + proceeded with its help to examine the little camp. The ground was + all stamped down by the feet of horses, showing that a large party of + mounted men had overtaken the fugitives, and the direction of their + tracks proved that they had afterwards turned back to Salt Lake City. + Had they carried back both of his companions with them? Jefferson + Hope had almost persuaded himself that they must have done so, when + his eye fell upon an object which made every nerve of his body tingle + within him. A little way on one side of the camp was a low-lying heap + of reddish soil, which had assuredly not been there before. There was + no mistaking it for anything but a newly-dug grave. As the young + hunter approached it, he perceived that a stick had been planted on + it, with a sheet of paper stuck in the cleft fork of it. The + inscription upon the paper was brief, but to the point: + + JOHN FERRIER, + Formerly of Salt Lake City, + Died August 4th, 1860. + + + The sturdy old man, whom he had left so short a time before, was + gone, then, and this was all his epitaph. Jefferson Hope looked + wildly round to see if there was a second grave, but there was no + sign of one. Lucy had been carried back by their terrible pursuers to + fulfil her original destiny, by becoming one of the harem of the + Elder's son. As the young fellow realized the certainty of her fate, + and his own powerlessness to prevent it, he wished that he, too, was + lying with the old farmer in his last silent resting-place. + + Again, however, his active spirit shook off the lethargy which + springs from despair. If there was nothing else left to him, he could + at least devote his life to revenge. With indomitable patience and + perseverance, Jefferson Hope possessed also a power of sustained + vindictiveness, which he may have learned from the Indians amongst + whom he had lived. As he stood by the desolate fire, he felt that the + only one thing which could assuage his grief would be thorough and + complete retribution, brought by his own hand upon his enemies. His + strong will and untiring energy should, he determined, be devoted to + that one end. With a grim, white face, he retraced his steps to where + he had dropped the food, and having stirred up the smouldering fire, + he cooked enough to last him for a few days. This he made up into a + bundle, and, tired as he was, he set himself to walk back through the + mountains upon the track of the avenging angels. + + For five days he toiled footsore and weary through the defiles which + he had already traversed on horseback. At night he flung himself down + among the rocks, and snatched a few hours of sleep; but before + daybreak he was always well on his way. On the sixth day, he reached + the Eagle Cañon, from which they had commenced their ill-fated + flight. Thence he could look down upon the home of the saints. Worn + and exhausted, he leaned upon his rifle and shook his gaunt hand + fiercely at the silent widespread city beneath him. As he looked at + it, he observed that there were flags in some of the principal + streets, and other signs of festivity. He was still speculating as to + what this might mean when he heard the clatter of horse's hoofs, and + saw a mounted man riding towards him. As he approached, he recognized + him as a Mormon named Cowper, to whom he had rendered services at + different times. He therefore accosted him when he got up to him, + with the object of finding out what Lucy Ferrier's fate had been. + + "I am Jefferson Hope," he said. "You remember me." + + The Mormon looked at him with undisguised astonishment--indeed, it + was difficult to recognize in this tattered, unkempt wanderer, with + ghastly white face and fierce, wild eyes, the spruce young hunter of + former days. Having, however, at last, satisfied himself as to his + identity, the man's surprise changed to consternation. + + "You are mad to come here," he cried. "It is as much as my own life + is worth to be seen talking with you. There is a warrant against you + from the Holy Four for assisting the Ferriers away." + + "I don't fear them, or their warrant," Hope said, earnestly. "You + must know something of this matter, Cowper. I conjure you by + everything you hold dear to answer a few questions. We have always + been friends. For God's sake, don't refuse to answer me." + + "What is it?" the Mormon asked uneasily. "Be quick. The very rocks + have ears and the trees eyes." + + "What has become of Lucy Ferrier?" + + "She was married yesterday to young Drebber. Hold up, man, hold up, + you have no life left in you." + + "Don't mind me," said Hope faintly. He was white to the very lips, + and had sunk down on the stone against which he had been leaning. + "Married, you say?" + + "Married yesterday--that's what those flags are for on the Endowment + House. There was some words between young Drebber and young + Stangerson as to which was to have her. They'd both been in the party + that followed them, and Stangerson had shot her father, which seemed + to give him the best claim; but when they argued it out in council, + Drebber's party was the stronger, so the Prophet gave her over to + him. No one won't have her very long though, for I saw death in her + face yesterday. She is more like a ghost than a woman. Are you off, + then?" + + "Yes, I am off," said Jefferson Hope, who had risen from his seat. + His face might have been chiselled out of marble, so hard and set was + its expression, while its eyes glowed with a baleful light. + + "Where are you going?" + + "Never mind," he answered; and, slinging his weapon over his + shoulder, strode off down the gorge and so away into the heart of the + mountains to the haunts of the wild beasts. Amongst them all there + was none so fierce and so dangerous as himself. + + The prediction of the Mormon was only too well fulfilled. Whether it + was the terrible death of her father or the effects of the hateful + marriage into which she had been forced, poor Lucy never held up her + head again, but pined away and died within a month. Her sottish + husband, who had married her principally for the sake of John + Ferrier's property, did not affect any great grief at his + bereavement; but his other wives mourned over her, and sat up with + her the night before the burial, as is the Mormon custom. They were + grouped round the bier in the early hours of the morning, when, to + their inexpressible fear and astonishment, the door was flung open, + and a savage-looking, weather-beaten man in tattered garments strode + into the room. Without a glance or a word to the cowering women, he + walked up to the white silent figure which had once contained the + pure soul of Lucy Ferrier. Stooping over her, he pressed his lips + reverently to her cold forehead, and then, snatching up her hand, he + took the wedding-ring from her finger. "She shall not be buried in + that," he cried with a fierce snarl, and before an alarm could be + raised sprang down the stairs and was gone. So strange and so brief + was the episode, that the watchers might have found it hard to + believe it themselves or persuade other people of it, had it not been + for the undeniable fact that the circlet of gold which marked her as + having been a bride had disappeared. + + For some months Jefferson Hope lingered among the mountains, leading + a strange wild life, and nursing in his heart the fierce desire for + vengeance which possessed him. Tales were told in the City of the + weird figure which was seen prowling about the suburbs, and which + haunted the lonely mountain gorges. Once a bullet whistled through + Stangerson's window and flattened itself upon the wall within a foot + of him. On another occasion, as Drebber passed under a cliff a great + boulder crashed down on him, and he only escaped a terrible death by + throwing himself upon his face. The two young Mormons were not long + in discovering the reason of these attempts upon their lives, and led + repeated expeditions into the mountains in the hope of capturing or + killing their enemy, but always without success. Then they adopted + the precaution of never going out alone or after nightfall, and of + having their houses guarded. After a time they were able to relax + these measures, for nothing was either heard or seen of their + opponent, and they hoped that time had cooled his vindictiveness. + + Far from doing so, it had, if anything, augmented it. The hunter's + mind was of a hard, unyielding nature, and the predominant idea of + revenge had taken such complete possession of it that there was no + room for any other emotion. He was, however, above all things + practical. He soon realized that even his iron constitution could not + stand the incessant strain which he was putting upon it. Exposure and + want of wholesome food were wearing him out. If he died like a dog + among the mountains, what was to become of his revenge then? And yet + such a death was sure to overtake him if he persisted. He felt that + that was to play his enemy's game, so he reluctantly returned to the + old Nevada mines, there to recruit his health and to amass money + enough to allow him to pursue his object without privation. + + His intention had been to be absent a year at the most, but a + combination of unforeseen circumstances prevented his leaving the + mines for nearly five. At the end of that time, however, his memory + of his wrongs and his craving for revenge were quite as keen as on + that memorable night when he had stood by John Ferrier's grave. + Disguised, and under an assumed name, he returned to Salt Lake City, + careless what became of his own life, as long as he obtained what he + knew to be justice. There he found evil tidings awaiting him. There + had been a schism among the Chosen People a few months before, some + of the younger members of the Church having rebelled against the + authority of the Elders, and the result had been the secession of a + certain number of the malcontents, who had left Utah and become + Gentiles. Among these had been Drebber and Stangerson; and no one + knew whither they had gone. Rumour reported that Drebber had managed + to convert a large part of his property into money, and that he had + departed a wealthy man, while his companion, Stangerson, was + comparatively poor. There was no clue at all, however, as to their + whereabouts. + + Many a man, however vindictive, would have abandoned all thought of + revenge in the face of such a difficulty, but Jefferson Hope never + faltered for a moment. With the small competence he possessed, eked + out by such employment as he could pick up, he travelled from town to + town through the United States in quest of his enemies. Year passed + into year, his black hair turned grizzled, but still he wandered on, + a human bloodhound, with his mind wholly set upon the one object upon + which he had devoted his life. At last his perseverance was rewarded. + It was but a glance of a face in a window, but that one glance told + him that Cleveland in Ohio possessed the men whom he was in pursuit + of. He returned to his miserable lodgings with his plan of vengeance + all arranged. It chanced, however, that Drebber, looking from his + window, had recognized the vagrant in the street, and had read murder + in his eyes. He hurried before a justice of the peace, accompanied by + Stangerson, who had become his private secretary, and represented to + him that they were in danger of their lives from the jealousy and + hatred of an old rival. That evening Jefferson Hope was taken into + custody, and not being able to find sureties, was detained for some + weeks. When at last he was liberated, it was only to find that + Drebber's house was deserted, and that he and his secretary had + departed for Europe. + + Again the avenger had been foiled, and again his concentrated hatred + urged him to continue the pursuit. Funds were wanting, however, and + for some time he had to return to work, saving every dollar for his + approaching journey. At last, having collected enough to keep life in + him, he departed for Europe, and tracked his enemies from city to + city, working his way in any menial capacity, but never overtaking + the fugitives. When he reached St. Petersburg they had departed for + Paris; and when he followed them there he learned that they had just + set off for Copenhagen. At the Danish capital he was again a few days + late, for they had journeyed on to London, where he at last succeeded + in running them to earth. As to what occurred there, we cannot do + better than quote the old hunter's own account, as duly recorded in + Dr. Watson's Journal, to which we are already under such obligations. + + + + + + CHAPTER VI + A Continuation Of The Reminiscences Of John Watson, M.D. + + + Our prisoner's furious resistance did not apparently indicate any + ferocity in his disposition towards ourselves, for on finding himself + powerless, he smiled in an affable manner, and expressed his hopes + that he had not hurt any of us in the scuffle. "I guess you're going + to take me to the police-station," he remarked to Sherlock Holmes. + "My cab's at the door. If you'll loose my legs I'll walk down to it. + I'm not so light to lift as I used to be." + + Gregson and Lestrade exchanged glances as if they thought this + proposition rather a bold one; but Holmes at once took the prisoner + at his word, and loosened the towel which we had bound round his + ankles. He rose and stretched his legs, as though to assure himself + that they were free once more. I remember that I thought to myself, + as I eyed him, that I had seldom seen a more powerfully built man; + and his dark sunburned face bore an expression of determination and + energy which was as formidable as his personal strength. + + "If there's a vacant place for a chief of the police, I reckon you + are the man for it," he said, gazing with undisguised admiration at + my fellow-lodger. "The way you kept on my trail was a caution." + + "You had better come with me," said Holmes to the two detectives. + + "I can drive you," said Lestrade. + + "Good! and Gregson can come inside with me. You too, Doctor, you have + taken an interest in the case and may as well stick to us." + + I assented gladly, and we all descended together. Our prisoner made + no attempt at escape, but stepped calmly into the cab which had been + his, and we followed him. Lestrade mounted the box, whipped up the + horse, and brought us in a very short time to our destination. We + were ushered into a small chamber where a police Inspector noted down + our prisoner's name and the names of the men with whose murder he had + been charged. The official was a white-faced unemotional man, who + went through his duties in a dull mechanical way. "The prisoner will + be put before the magistrates in the course of the week," he said; + "in the mean time, Mr. Jefferson Hope, have you anything that you + wish to say? I must warn you that your words will be taken down, and + may be used against you." + + "I've got a good deal to say," our prisoner said slowly. "I want to + tell you gentlemen all about it." + + "Hadn't you better reserve that for your trial?" asked the Inspector. + + "I may never be tried," he answered. "You needn't look startled. It + isn't suicide I am thinking of. Are you a Doctor?" He turned his + fierce dark eyes upon me as he asked this last question. + + "Yes; I am," I answered. + + "Then put your hand here," he said, with a smile, motioning with his + manacled wrists towards his chest. + + I did so; and became at once conscious of an extraordinary throbbing + and commotion which was going on inside. The walls of his chest + seemed to thrill and quiver as a frail building would do inside when + some powerful engine was at work. In the silence of the room I could + hear a dull humming and buzzing noise which proceeded from the same + source. + + "Why," I cried, "you have an aortic aneurism!" + + "That's what they call it," he said, placidly. "I went to a Doctor + last week about it, and he told me that it is bound to burst before + many days passed. It has been getting worse for years. I got it from + over-exposure and under-feeding among the Salt Lake Mountains. I've + done my work now, and I don't care how soon I go, but I should like + to leave some account of the business behind me. I don't want to be + remembered as a common cut-throat." + + The Inspector and the two detectives had a hurried discussion as to + the advisability of allowing him to tell his story. + + "Do you consider, Doctor, that there is immediate danger?" the former + asked. + + "Most certainly there is," I answered. + + "In that case it is clearly our duty, in the interests of justice, to + take his statement," said the Inspector. "You are at liberty, sir, to + give your account, which I again warn you will be taken down." + + "I'll sit down, with your leave," the prisoner said, suiting the + action to the word. "This aneurism of mine makes me easily tired, and + the tussle we had half an hour ago has not mended matters. I'm on the + brink of the grave, and I am not likely to lie to you. Every word I + say is the absolute truth, and how you use it is a matter of no + consequence to me." + + With these words, Jefferson Hope leaned back in his chair and began + the following remarkable statement. He spoke in a calm and methodical + manner, as though the events which he narrated were commonplace + enough. I can vouch for the accuracy of the subjoined account, for I + have had access to Lestrade's note-book, in which the prisoner's + words were taken down exactly as they were uttered. + + "It don't much matter to you why I hated these men," he said; "it's + enough that they were guilty of the death of two human beings--a + father and a daughter--and that they had, therefore, forfeited their + own lives. After the lapse of time that has passed since their crime, + it was impossible for me to secure a conviction against them in any + court. I knew of their guilt though, and I determined that I should + be judge, jury, and executioner all rolled into one. You'd have done + the same, if you have any manhood in you, if you had been in my + place. + + "That girl that I spoke of was to have married me twenty years ago. + She was forced into marrying that same Drebber, and broke her heart + over it. I took the marriage ring from her dead finger, and I vowed + that his dying eyes should rest upon that very ring, and that his + last thoughts should be of the crime for which he was punished. I + have carried it about with me, and have followed him and his + accomplice over two continents until I caught them. They thought to + tire me out, but they could not do it. If I die to-morrow, as is + likely enough, I die knowing that my work in this world is done, and + well done. They have perished, and by my hand. There is nothing left + for me to hope for, or to desire. + + "They were rich and I was poor, so that it was no easy matter for me + to follow them. When I got to London my pocket was about empty, and I + found that I must turn my hand to something for my living. Driving + and riding are as natural to me as walking, so I applied at a + cabowner's office, and soon got employment. I was to bring a certain + sum a week to the owner, and whatever was over that I might keep for + myself. There was seldom much over, but I managed to scrape along + somehow. The hardest job was to learn my way about, for I reckon that + of all the mazes that ever were contrived, this city is the most + confusing. I had a map beside me though, and when once I had spotted + the principal hotels and stations, I got on pretty well. + + "It was some time before I found out where my two gentlemen were + living; but I inquired and inquired until at last I dropped across + them. They were at a boarding-house at Camberwell, over on the other + side of the river. When once I found them out I knew that I had them + at my mercy. I had grown my beard, and there was no chance of their + recognizing me. I would dog them and follow them until I saw my + opportunity. I was determined that they should not escape me again. + + "They were very near doing it for all that. Go where they would about + London, I was always at their heels. Sometimes I followed them on my + cab, and sometimes on foot, but the former was the best, for then + they could not get away from me. It was only early in the morning or + late at night that I could earn anything, so that I began to get + behind hand with my employer. I did not mind that, however, as long + as I could lay my hand upon the men I wanted. + + "They were very cunning, though. They must have thought that there + was some chance of their being followed, for they would never go out + alone, and never after nightfall. During two weeks I drove behind + them every day, and never once saw them separate. Drebber himself was + drunk half the time, but Stangerson was not to be caught napping. I + watched them late and early, but never saw the ghost of a chance; but + I was not discouraged, for something told me that the hour had almost + come. My only fear was that this thing in my chest might burst a + little too soon and leave my work undone. + + "At last, one evening I was driving up and down Torquay Terrace, as + the street was called in which they boarded, when I saw a cab drive + up to their door. Presently some luggage was brought out, and after a + time Drebber and Stangerson followed it, and drove off. I whipped up + my horse and kept within sight of them, feeling very ill at ease, for + I feared that they were going to shift their quarters. At Euston + Station they got out, and I left a boy to hold my horse, and followed + them on to the platform. I heard them ask for the Liverpool train, + and the guard answer that one had just gone and there would not be + another for some hours. Stangerson seemed to be put out at that, but + Drebber was rather pleased than otherwise. I got so close to them in + the bustle that I could hear every word that passed between them. + Drebber said that he had a little business of his own to do, and that + if the other would wait for him he would soon rejoin him. His + companion remonstrated with him, and reminded him that they had + resolved to stick together. Drebber answered that the matter was a + delicate one, and that he must go alone. I could not catch what + Stangerson said to that, but the other burst out swearing, and + reminded him that he was nothing more than his paid servant, and that + he must not presume to dictate to him. On that the Secretary gave it + up as a bad job, and simply bargained with him that if he missed the + last train he should rejoin him at Halliday's Private Hotel; to which + Drebber answered that he would be back on the platform before eleven, + and made his way out of the station. + + "The moment for which I had waited so long had at last come. I had my + enemies within my power. Together they could protect each other, but + singly they were at my mercy. I did not act, however, with undue + precipitation. My plans were already formed. There is no satisfaction + in vengeance unless the offender has time to realize who it is that + strikes him, and why retribution has come upon him. I had my plans + arranged by which I should have the opportunity of making the man who + had wronged me understand that his old sin had found him out. It + chanced that some days before a gentleman who had been engaged in + looking over some houses in the Brixton Road had dropped the key of + one of them in my carriage. It was claimed that same evening, and + returned; but in the interval I had taken a moulding of it, and had a + duplicate constructed. By means of this I had access to at least one + spot in this great city where I could rely upon being free from + interruption. How to get Drebber to that house was the difficult + problem which I had now to solve. + + "He walked down the road and went into one or two liquor shops, + staying for nearly half-an-hour in the last of them. When he came out + he staggered in his walk, and was evidently pretty well on. There was + a hansom just in front of me, and he hailed it. I followed it so + close that the nose of my horse was within a yard of his driver the + whole way. We rattled across Waterloo Bridge and through miles of + streets, until, to my astonishment, we found ourselves back in the + Terrace in which he had boarded. I could not imagine what his + intention was in returning there; but I went on and pulled up my cab + a hundred yards or so from the house. He entered it, and his hansom + drove away. Give me a glass of water, if you please. My mouth gets + dry with the talking." + + I handed him the glass, and he drank it down. + + "That's better," he said. "Well, I waited for a quarter of an hour, + or more, when suddenly there came a noise like people struggling + inside the house. Next moment the door was flung open and two men + appeared, one of whom was Drebber, and the other was a young chap + whom I had never seen before. This fellow had Drebber by the collar, + and when they came to the head of the steps he gave him a shove and a + kick which sent him half across the road. 'You hound,' he cried, + shaking his stick at him; 'I'll teach you to insult an honest girl!' + He was so hot that I think he would have thrashed Drebber with his + cudgel, only that the cur staggered away down the road as fast as his + legs would carry him. He ran as far as the corner, and then, seeing + my cab, he hailed me and jumped in. 'Drive me to Halliday's Private + Hotel,' said he. + + "When I had him fairly inside my cab, my heart jumped so with joy + that I feared lest at this last moment my aneurism might go wrong. I + drove along slowly, weighing in my own mind what it was best to do. I + might take him right out into the country, and there in some deserted + lane have my last interview with him. I had almost decided upon this, + when he solved the problem for me. The craze for drink had seized him + again, and he ordered me to pull up outside a gin palace. He went in, + leaving word that I should wait for him. There he remained until + closing time, and when he came out he was so far gone that I knew the + game was in my own hands. + + "Don't imagine that I intended to kill him in cold blood. It would + only have been rigid justice if I had done so, but I could not bring + myself to do it. I had long determined that he should have a show for + his life if he chose to take advantage of it. Among the many billets + which I have filled in America during my wandering life, I was once + janitor and sweeper out of the laboratory at York College. One day + the professor was lecturing on poisons, and he showed his students + some alkaloid, as he called it, which he had extracted from some + South American arrow poison, and which was so powerful that the least + grain meant instant death. I spotted the bottle in which this + preparation was kept, and when they were all gone, I helped myself to + a little of it. I was a fairly good dispenser, so I worked this + alkaloid into small, soluble pills, and each pill I put in a box with + a similar pill made without the poison. I determined at the time that + when I had my chance, my gentlemen should each have a draw out of one + of these boxes, while I ate the pill that remained. It would be quite + as deadly, and a good deal less noisy than firing across a + handkerchief. From that day I had always my pill boxes about with me, + and the time had now come when I was to use them. + + "It was nearer one than twelve, and a wild, bleak night, blowing hard + and raining in torrents. Dismal as it was outside, I was glad + within--so glad that I could have shouted out from pure exultation. + If any of you gentlemen have ever pined for a thing, and longed for + it during twenty long years, and then suddenly found it within your + reach, you would understand my feelings. I lit a cigar, and puffed at + it to steady my nerves, but my hands were trembling, and my temples + throbbing with excitement. As I drove, I could see old John Ferrier + and sweet Lucy looking at me out of the darkness and smiling at me, + just as plain as I see you all in this room. All the way they were + ahead of me, one on each side of the horse until I pulled up at the + house in the Brixton Road. + + "There was not a soul to be seen, nor a sound to be heard, except the + dripping of the rain. When I looked in at the window, I found Drebber + all huddled together in a drunken sleep. I shook him by the arm, + 'It's time to get out,' I said. + + "'All right, cabby,' said he. + + "I suppose he thought we had come to the hotel that he had mentioned, + for he got out without another word, and followed me down the garden. + I had to walk beside him to keep him steady, for he was still a + little top-heavy. When we came to the door, I opened it, and led him + into the front room. I give you my word that all the way, the father + and the daughter were walking in front of us. + + "'It's infernally dark,' said he, stamping about. + + "'We'll soon have a light,' I said, striking a match and putting it + to a wax candle which I had brought with me. 'Now, Enoch Drebber,' I + continued, turning to him, and holding the light to my own face, 'who + am I?' + + "He gazed at me with bleared, drunken eyes for a moment, and then I + saw a horror spring up in them, and convulse his whole features, + which showed me that he knew me. He staggered back with a livid face, + and I saw the perspiration break out upon his brow, while his teeth + chattered in his head. At the sight, I leaned my back against the + door and laughed loud and long. I had always known that vengeance + would be sweet, but I had never hoped for the contentment of soul + which now possessed me. + + "'You dog!' I said; 'I have hunted you from Salt Lake City to St. + Petersburg, and you have always escaped me. Now, at last your + wanderings have come to an end, for either you or I shall never see + to-morrow's sun rise.' He shrunk still further away as I spoke, and I + could see on his face that he thought I was mad. So I was for the + time. The pulses in my temples beat like sledge-hammers, and I + believe I would have had a fit of some sort if the blood had not + gushed from my nose and relieved me. + + "'What do you think of Lucy Ferrier now?' I cried, locking the door, + and shaking the key in his face. 'Punishment has been slow in coming, + but it has overtaken you at last.' I saw his coward lips tremble as I + spoke. He would have begged for his life, but he knew well that it + was useless. + + "'Would you murder me?' he stammered. + + "'There is no murder,' I answered. 'Who talks of murdering a mad dog? + What mercy had you upon my poor darling, when you dragged her from + her slaughtered father, and bore her away to your accursed and + shameless harem.' + + "'It was not I who killed her father,' he cried. + + "'But it was you who broke her innocent heart,' I shrieked, thrusting + the box before him. 'Let the high God judge between us. Choose and + eat. There is death in one and life in the other. I shall take what + you leave. Let us see if there is justice upon the earth, or if we + are ruled by chance.' + + "He cowered away with wild cries and prayers for mercy, but I drew my + knife and held it to his throat until he had obeyed me. Then I + swallowed the other, and we stood facing one another in silence for a + minute or more, waiting to see which was to live and which was to + die. Shall I ever forget the look which came over his face when the + first warning pangs told him that the poison was in his system? I + laughed as I saw it, and held Lucy's marriage ring in front of his + eyes. It was but for a moment, for the action of the alkaloid is + rapid. A spasm of pain contorted his features; he threw his hands out + in front of him, staggered, and then, with a hoarse cry, fell heavily + upon the floor. I turned him over with my foot, and placed my hand + upon his heart. There was no movement. He was dead! + + "The blood had been streaming from my nose, but I had taken no notice + of it. I don't know what it was that put it into my head to write + upon the wall with it. Perhaps it was some mischievous idea of + setting the police upon a wrong track, for I felt light-hearted and + cheerful. I remembered a German being found in New York with RACHE + written up above him, and it was argued at the time in the newspapers + that the secret societies must have done it. I guessed that what + puzzled the New Yorkers would puzzle the Londoners, so I dipped my + finger in my own blood and printed it on a convenient place on the + wall. Then I walked down to my cab and found that there was nobody + about, and that the night was still very wild. I had driven some + distance when I put my hand into the pocket in which I usually kept + Lucy's ring, and found that it was not there. I was thunderstruck at + this, for it was the only memento that I had of her. Thinking that I + might have dropped it when I stooped over Drebber's body, I drove + back, and leaving my cab in a side street, I went boldly up to the + house--for I was ready to dare anything rather than lose the ring. + When I arrived there, I walked right into the arms of a + police-officer who was coming out, and only managed to disarm his + suspicions by pretending to be hopelessly drunk. + + "That was how Enoch Drebber came to his end. All I had to do then was + to do as much for Stangerson, and so pay off John Ferrier's debt. I + knew that he was staying at Halliday's Private Hotel, and I hung + about all day, but he never came out. I fancy that he suspected + something when Drebber failed to put in an appearance. He was + cunning, was Stangerson, and always on his guard. If he thought he + could keep me off by staying indoors he was very much mistaken. I + soon found out which was the window of his bedroom, and early next + morning I took advantage of some ladders which were lying in the lane + behind the hotel, and so made my way into his room in the grey of the + dawn. I woke him up and told him that the hour had come when he was + to answer for the life he had taken so long before. I described + Drebber's death to him, and I gave him the same choice of the + poisoned pills. Instead of grasping at the chance of safety which + that offered him, he sprang from his bed and flew at my throat. In + self-defence I stabbed him to the heart. It would have been the same + in any case, for Providence would never have allowed his guilty hand + to pick out anything but the poison. + + "I have little more to say, and it's as well, for I am about done up. + I went on cabbing it for a day or so, intending to keep at it until I + could save enough to take me back to America. I was standing in the + yard when a ragged youngster asked if there was a cabby there called + Jefferson Hope, and said that his cab was wanted by a gentleman at + 221b, Baker Street. I went round, suspecting no harm, and the next + thing I knew, this young man here had the bracelets on my wrists, and + as neatly snackled as ever I saw in my life. That's the whole of my + story, gentlemen. You may consider me to be a murderer; but I hold + that I am just as much an officer of justice as you are." + + So thrilling had the man's narrative been, and his manner was so + impressive that we had sat silent and absorbed. Even the professional + detectives, blase as they were in every detail of crime, appeared to + be keenly interested in the man's story. When he finished we sat for + some minutes in a stillness which was only broken by the scratching + of Lestrade's pencil as he gave the finishing touches to his + shorthand account. + + "There is only one point on which I should like a little more + information," Sherlock Holmes said at last. "Who was your accomplice + who came for the ring which I advertised?" + + The prisoner winked at my friend jocosely. "I can tell my own + secrets," he said, "but I don't get other people into trouble. I saw + your advertisement, and I thought it might be a plant, or it might be + the ring which I wanted. My friend volunteered to go and see. I think + you'll own he did it smartly." + + "Not a doubt of that," said Holmes heartily. + + "Now, gentlemen," the Inspector remarked gravely, "the forms of the + law must be complied with. On Thursday the prisoner will be brought + before the magistrates, and your attendance will be required. Until + then I will be responsible for him." He rang the bell as he spoke, + and Jefferson Hope was led off by a couple of warders, while my + friend and I made our way out of the Station and took a cab back to + Baker Street. + + + + + + CHAPTER VII + The Conclusion + + + We had all been warned to appear before the magistrates upon the + Thursday; but when the Thursday came there was no occasion for our + testimony. A higher Judge had taken the matter in hand, and Jefferson + Hope had been summoned before a tribunal where strict justice would + be meted out to him. On the very night after his capture the aneurism + burst, and he was found in the morning stretched upon the floor of + the cell, with a placid smile upon his face, as though he had been + able in his dying moments to look back upon a useful life, and on + work well done. + + "Gregson and Lestrade will be wild about his death," Holmes remarked, + as we chatted it over next evening. "Where will their grand + advertisement be now?" + + "I don't see that they had very much to do with his capture," I + answered. + + "What you do in this world is a matter of no consequence," returned + my companion, bitterly. "The question is, what can you make people + believe that you have done. Never mind," he continued, more brightly, + after a pause. "I would not have missed the investigation for + anything. There has been no better case within my recollection. + Simple as it was, there were several most instructive points about + it." + + "Simple!" I ejaculated. + + "Well, really, it can hardly be described as otherwise," said + Sherlock Holmes, smiling at my surprise. "The proof of its intrinsic + simplicity is, that without any help save a few very ordinary + deductions I was able to lay my hand upon the criminal within three + days." + + "That is true," said I. + + "I have already explained to you that what is out of the common is + usually a guide rather than a hindrance. In solving a problem of this + sort, the grand thing is to be able to reason backwards. That is a + very useful accomplishment, and a very easy one, but people do not + practise it much. In the every-day affairs of life it is more useful + to reason forwards, and so the other comes to be neglected. There are + fifty who can reason synthetically for one who can reason + analytically." + + "I confess," said I, "that I do not quite follow you." + + "I hardly expected that you would. Let me see if I can make it + clearer. Most people, if you describe a train of events to them, will + tell you what the result would be. They can put those events together + in their minds, and argue from them that something will come to pass. + There are few people, however, who, if you told them a result, would + be able to evolve from their own inner consciousness what the steps + were which led up to that result. This power is what I mean when I + talk of reasoning backwards, or analytically." + + "I understand," said I. + + "Now this was a case in which you were given the result and had to + find everything else for yourself. Now let me endeavour to show you + the different steps in my reasoning. To begin at the beginning. I + approached the house, as you know, on foot, and with my mind entirely + free from all impressions. I naturally began by examining the + roadway, and there, as I have already explained to you, I saw clearly + the marks of a cab, which, I ascertained by inquiry, must have been + there during the night. I satisfied myself that it was a cab and not + a private carriage by the narrow gauge of the wheels. The ordinary + London growler is considerably less wide than a gentleman's brougham. + + "This was the first point gained. I then walked slowly down the + garden path, which happened to be composed of a clay soil, peculiarly + suitable for taking impressions. No doubt it appeared to you to be a + mere trampled line of slush, but to my trained eyes every mark upon + its surface had a meaning. There is no branch of detective science + which is so important and so much neglected as the art of tracing + footsteps. Happily, I have always laid great stress upon it, and much + practice has made it second nature to me. I saw the heavy footmarks + of the constables, but I saw also the track of the two men who had + first passed through the garden. It was easy to tell that they had + been before the others, because in places their marks had been + entirely obliterated by the others coming upon the top of them. In + this way my second link was formed, which told me that the nocturnal + visitors were two in number, one remarkable for his height (as I + calculated from the length of his stride), and the other fashionably + dressed, to judge from the small and elegant impression left by his + boots. + + "On entering the house this last inference was confirmed. My + well-booted man lay before me. The tall one, then, had done the + murder, if murder there was. There was no wound upon the dead man's + person, but the agitated expression upon his face assured me that he + had foreseen his fate before it came upon him. Men who die from heart + disease, or any sudden natural cause, never by any chance exhibit + agitation upon their features. Having sniffed the dead man's lips I + detected a slightly sour smell, and I came to the conclusion that he + had had poison forced upon him. Again, I argued that it had been + forced upon him from the hatred and fear expressed upon his face. By + the method of exclusion, I had arrived at this result, for no other + hypothesis would meet the facts. Do not imagine that it was a very + unheard of idea. The forcible administration of poison is by no means + a new thing in criminal annals. The cases of Dolsky in Odessa, and of + Leturier in Montpellier, will occur at once to any toxicologist. + + "And now came the great question as to the reason why. Robbery had + not been the object of the murder, for nothing was taken. Was it + politics, then, or was it a woman? That was the question which + confronted me. I was inclined from the first to the latter + supposition. Political assassins are only too glad to do their work + and to fly. This murder had, on the contrary, been done most + deliberately, and the perpetrator had left his tracks all over the + room, showing that he had been there all the time. It must have been + a private wrong, and not a political one, which called for such a + methodical revenge. When the inscription was discovered upon the wall + I was more inclined than ever to my opinion. The thing was too + evidently a blind. When the ring was found, however, it settled the + question. Clearly the murderer had used it to remind his victim of + some dead or absent woman. It was at this point that I asked Gregson + whether he had enquired in his telegram to Cleveland as to any + particular point in Mr. Drebber's former career. He answered, you + remember, in the negative. + + "I then proceeded to make a careful examination of the room, which + confirmed me in my opinion as to the murderer's height, and furnished + me with the additional details as to the Trichinopoly cigar and the + length of his nails. I had already come to the conclusion, since + there were no signs of a struggle, that the blood which covered the + floor had burst from the murderer's nose in his excitement. I could + perceive that the track of blood coincided with the track of his + feet. It is seldom that any man, unless he is very full-blooded, + breaks out in this way through emotion, so I hazarded the opinion + that the criminal was probably a robust and ruddy-faced man. Events + proved that I had judged correctly. + + "Having left the house, I proceeded to do what Gregson had neglected. + I telegraphed to the head of the police at Cleveland, limiting my + enquiry to the circumstances connected with the marriage of Enoch + Drebber. The answer was conclusive. It told me that Drebber had + already applied for the protection of the law against an old rival in + love, named Jefferson Hope, and that this same Hope was at present in + Europe. I knew now that I held the clue to the mystery in my hand, + and all that remained was to secure the murderer. + + "I had already determined in my own mind that the man who had walked + into the house with Drebber, was none other than the man who had + driven the cab. The marks in the road showed me that the horse had + wandered on in a way which would have been impossible had there been + anyone in charge of it. Where, then, could the driver be, unless he + were inside the house? Again, it is absurd to suppose that any sane + man would carry out a deliberate crime under the very eyes, as it + were, of a third person, who was sure to betray him. Lastly, + supposing one man wished to dog another through London, what better + means could he adopt than to turn cabdriver. All these considerations + led me to the irresistible conclusion that Jefferson Hope was to be + found among the jarveys of the Metropolis. + + "If he had been one there was no reason to believe that he had ceased + to be. On the contrary, from his point of view, any sudden chance + would be likely to draw attention to himself. He would, probably, for + a time at least, continue to perform his duties. There was no reason + to suppose that he was going under an assumed name. Why should he + change his name in a country where no one knew his original one? I + therefore organized my Street Arab detective corps, and sent them + systematically to every cab proprietor in London until they ferreted + out the man that I wanted. How well they succeeded, and how quickly I + took advantage of it, are still fresh in your recollection. The + murder of Stangerson was an incident which was entirely unexpected, + but which could hardly in any case have been prevented. Through it, + as you know, I came into possession of the pills, the existence of + which I had already surmised. You see the whole thing is a chain of + logical sequences without a break or flaw." + + "It is wonderful!" I cried. "Your merits should be publicly + recognized. You should publish an account of the case. If you won't, + I will for you." + + "You may do what you like, Doctor," he answered. "See here!" he + continued, handing a paper over to me, "look at this!" + + It was the Echo for the day, and the paragraph to which he pointed + was devoted to the case in question. + + "The public," it said, "have lost a sensational treat through the + sudden death of the man Hope, who was suspected of the murder of Mr. + Enoch Drebber and of Mr. Joseph Stangerson. The details of the case + will probably be never known now, though we are informed upon good + authority that the crime was the result of an old standing and + romantic feud, in which love and Mormonism bore a part. It seems that + both the victims belonged, in their younger days, to the Latter Day + Saints, and Hope, the deceased prisoner, hails also from Salt Lake + City. If the case has had no other effect, it, at least, brings out + in the most striking manner the efficiency of our detective police + force, and will serve as a lesson to all foreigners that they will do + wisely to settle their feuds at home, and not to carry them on to + British soil. It is an open secret that the credit of this smart + capture belongs entirely to the well-known Scotland Yard officials, + Messrs. Lestrade and Gregson. The man was apprehended, it appears, in + the rooms of a certain Mr. Sherlock Holmes, who has himself, as an + amateur, shown some talent in the detective line, and who, with such + instructors, may hope in time to attain to some degree of their + skill. It is expected that a testimonial of some sort will be + presented to the two officers as a fitting recognition of their + services." + + "Didn't I tell you so when we started?" cried Sherlock Holmes with a + laugh. "That's the result of all our Study in Scarlet: to get them a + testimonial!" + + "Never mind," I answered, "I have all the facts in my journal, and + the public shall know them. In the meantime you must make yourself + contented by the consciousness of success, like the Roman miser-- + + "'Populus me sibilat, at mihi plaudo + Ipse domi simul ac nummos contemplar in arca.'" + + + + + + + THE SIGN OF THE FOUR + + + + + + Table of contents + The Science of Deduction + The Statement of the Case + In Quest of a Solution + The Story of the Bald-Headed Man + The Tragedy of Pondicherry Lodge + Sherlock Holmes Gives a Demonstration + The Episode of the Barrel + The Baker Street Irregulars + A Break in the Chain + The End of the Islander + The Great Agra Treasure + The Strange Story of Jonathan Small + + + + + + + + + + + + + + + + CHAPTER I + The Science of Deduction + + + Sherlock Holmes took his bottle from the corner of the mantelpiece + and his hypodermic syringe from its neat morocco case. With his long, + white, nervous fingers he adjusted the delicate needle, and rolled + back his left shirt-cuff. For some little time his eyes rested + thoughtfully upon the sinewy forearm and wrist all dotted and scarred + with innumerable puncture-marks. Finally he thrust the sharp point + home, pressed down the tiny piston, and sank back into the + velvet-lined arm-chair with a long sigh of satisfaction. + + Three times a day for many months I had witnessed this performance, + but custom had not reconciled my mind to it. On the contrary, from + day to day I had become more irritable at the sight, and my + conscience swelled nightly within me at the thought that I had lacked + the courage to protest. Again and again I had registered a vow that I + should deliver my soul upon the subject, but there was that in the + cool, nonchalant air of my companion which made him the last man with + whom one would care to take anything approaching to a liberty. His + great powers, his masterly manner, and the experience which I had had + of his many extraordinary qualities, all made me diffident and + backward in crossing him. + + Yet upon that afternoon, whether it was the Beaune which I had taken + with my lunch, or the additional exasperation produced by the extreme + deliberation of his manner, I suddenly felt that I could hold out no + longer. + + "Which is it to-day?" I asked,--"morphine or cocaine?" + + He raised his eyes languidly from the old black-letter volume which + he had opened. "It is cocaine," he said,--"a seven-per-cent solution. + Would you care to try it?" + + "No, indeed," I answered, brusquely. "My constitution has not got + over the Afghan campaign yet. I cannot afford to throw any extra + strain upon it." + + He smiled at my vehemence. "Perhaps you are right, Watson," he said. + "I suppose that its influence is physically a bad one. I find it, + however, so transcendently stimulating and clarifying to the mind + that its secondary action is a matter of small moment." + + "But consider!" I said, earnestly. "Count the cost! Your brain may, + as you say, be roused and excited, but it is a pathological and + morbid process, which involves increased tissue-change and may at + last leave a permanent weakness. You know, too, what a black reaction + comes upon you. Surely the game is hardly worth the candle. Why + should you, for a mere passing pleasure, risk the loss of those great + powers with which you have been endowed? Remember that I speak not + only as one comrade to another, but as a medical man to one for whose + constitution he is to some extent answerable." + + He did not seem offended. On the contrary, he put his fingertips + together and leaned his elbows on the arms of his chair, like one who + has a relish for conversation. + + "My mind," he said, "rebels at stagnation. Give me problems, give me + work, give me the most abstruse cryptogram or the most intricate + analysis, and I am in my own proper atmosphere. I can dispense then + with artificial stimulants. But I abhor the dull routine of + existence. I crave for mental exaltation. That is why I have chosen + my own particular profession,--or rather created it, for I am the + only one in the world." + + "The only unofficial detective?" I said, raising my eyebrows. + + "The only unofficial consulting detective," he answered. "I am the + last and highest court of appeal in detection. When Gregson or + Lestrade or Athelney Jones are out of their depths--which, by the + way, is their normal state--the matter is laid before me. I examine + the data, as an expert, and pronounce a specialist's opinion. I claim + no credit in such cases. My name figures in no newspaper. The work + itself, the pleasure of finding a field for my peculiar powers, is my + highest reward. But you have yourself had some experience of my + methods of work in the Jefferson Hope case." + + "Yes, indeed," said I, cordially. "I was never so struck by anything + in my life. I even embodied it in a small brochure with the somewhat + fantastic title of 'A Study in Scarlet.'" + + He shook his head sadly. "I glanced over it," said he. "Honestly, I + cannot congratulate you upon it. Detection is, or ought to be, an + exact science, and should be treated in the same cold and unemotional + manner. You have attempted to tinge it with romanticism, which + produces much the same effect as if you worked a love-story or an + elopement into the fifth proposition of Euclid." + + "But the romance was there," I remonstrated. "I could not tamper with + the facts." + + "Some facts should be suppressed, or at least a just sense of + proportion should be observed in treating them. The only point in the + case which deserved mention was the curious analytical reasoning from + effects to causes by which I succeeded in unraveling it." + + I was annoyed at this criticism of a work which had been specially + designed to please him. I confess, too, that I was irritated by the + egotism which seemed to demand that every line of my pamphlet should + be devoted to his own special doings. More than once during the years + that I had lived with him in Baker Street I had observed that a small + vanity underlay my companion's quiet and didactic manner. I made no + remark, however, but sat nursing my wounded leg. I had a Jezail + bullet through it some time before, and, though it did not prevent me + from walking, it ached wearily at every change of the weather. + + "My practice has extended recently to the Continent," said Holmes, + after a while, filling up his old brier-root pipe. "I was consulted + last week by Francois Le Villard, who, as you probably know, has come + rather to the front lately in the French detective service. He has + all the Celtic power of quick intuition, but he is deficient in the + wide range of exact knowledge which is essential to the higher + developments of his art. The case was concerned with a will, and + possessed some features of interest. I was able to refer him to two + parallel cases, the one at Riga in 1857, and the other at St. Louis + in 1871, which have suggested to him the true solution. Here is the + letter which I had this morning acknowledging my assistance." He + tossed over, as he spoke, a crumpled sheet of foreign notepaper. I + glanced my eyes down it, catching a profusion of notes of admiration, + with stray magnifiques, coup-de-maîtres and tours-de-force, all + testifying to the ardent admiration of the Frenchman. + + "He speaks as a pupil to his master," said I. + + "Oh, he rates my assistance too highly," said Sherlock Holmes, + lightly. "He has considerable gifts himself. He possesses two out of + the three qualities necessary for the ideal detective. He has the + power of observation and that of deduction. He is only wanting in + knowledge; and that may come in time. He is now translating my small + works into French." + + "Your works?" + + "Oh, didn't you know?" he cried, laughing. "Yes, I have been guilty + of several monographs. They are all upon technical subjects. Here, + for example, is one 'Upon the Distinction between the Ashes of the + Various Tobaccoes.' In it I enumerate a hundred and forty forms of + cigar-, cigarette-, and pipe-tobacco, with colored plates + illustrating the difference in the ash. It is a point which is + continually turning up in criminal trials, and which is sometimes of + supreme importance as a clue. If you can say definitely, for example, + that some murder has been done by a man who was smoking an Indian + lunkah, it obviously narrows your field of search. To the trained eye + there is as much difference between the black ash of a Trichinopoly + and the white fluff of bird's-eye as there is between a cabbage and a + potato." + + "You have an extraordinary genius for minutiae," I remarked. + + "I appreciate their importance. Here is my monograph upon the tracing + of footsteps, with some remarks upon the uses of plaster of Paris as + a preserver of impresses. Here, too, is a curious little work upon + the influence of a trade upon the form of the hand, with lithotypes + of the hands of slaters, sailors, corkcutters, compositors, weavers, + and diamond-polishers. That is a matter of great practical interest + to the scientific detective,--especially in cases of unclaimed + bodies, or in discovering the antecedents of criminals. But I weary + you with my hobby." + + "Not at all," I answered, earnestly. "It is of the greatest interest + to me, especially since I have had the opportunity of observing your + practical application of it. But you spoke just now of observation + and deduction. Surely the one to some extent implies the other." + + "Why, hardly," he answered, leaning back luxuriously in his armchair, + and sending up thick blue wreaths from his pipe. "For example, + observation shows me that you have been to the Wigmore Street + Post-Office this morning, but deduction lets me know that when there + you dispatched a telegram." + + "Right!" said I. "Right on both points! But I confess that I don't + see how you arrived at it. It was a sudden impulse upon my part, and + I have mentioned it to no one." + + "It is simplicity itself," he remarked, chuckling at my + surprise,--"so absurdly simple that an explanation is superfluous; + and yet it may serve to define the limits of observation and of + deduction. Observation tells me that you have a little reddish mould + adhering to your instep. Just opposite the Seymour Street Office they + have taken up the pavement and thrown up some earth which lies in + such a way that it is difficult to avoid treading in it in entering. + The earth is of this peculiar reddish tint which is found, as far as + I know, nowhere else in the neighborhood. So much is observation. The + rest is deduction." + + "How, then, did you deduce the telegram?" + + "Why, of course I knew that you had not written a letter, since I sat + opposite to you all morning. I see also in your open desk there that + you have a sheet of stamps and a thick bundle of postcards. What + could you go into the post-office for, then, but to send a wire? + Eliminate all other factors, and the one which remains must be the + truth." + + "In this case it certainly is so," I replied, after a little thought. + "The thing, however, is, as you say, of the simplest. Would you + think me impertinent if I were to put your theories to a more severe + test?" + + "On the contrary," he answered, "it would prevent me from taking a + second dose of cocaine. I should be delighted to look into any + problem which you might submit to me." + + "I have heard you say that it is difficult for a man to have any + object in daily use without leaving the impress of his individuality + upon it in such a way that a trained observer might read it. Now, I + have here a watch which has recently come into my possession. Would + you have the kindness to let me have an opinion upon the character or + habits of the late owner?" + + I handed him over the watch with some slight feeling of amusement in + my heart, for the test was, as I thought, an impossible one, and I + intended it as a lesson against the somewhat dogmatic tone which he + occasionally assumed. He balanced the watch in his hand, gazed hard + at the dial, opened the back, and examined the works, first with his + naked eyes and then with a powerful convex lens. I could hardly keep + from smiling at his crestfallen face when he finally snapped the case + to and handed it back. + + "There are hardly any data," he remarked. "The watch has been + recently cleaned, which robs me of my most suggestive facts." + + "You are right," I answered. "It was cleaned before being sent to + me." In my heart I accused my companion of putting forward a most + lame and impotent excuse to cover his failure. What data could he + expect from an uncleaned watch? + + "Though unsatisfactory, my research has not been entirely barren," he + observed, staring up at the ceiling with dreamy, lack-lustre eyes. + "Subject to your correction, I should judge that the watch belonged + to your elder brother, who inherited it from your father." + + "That you gather, no doubt, from the H. W. upon the back?" + + "Quite so. The W. suggests your own name. The date of the watch is + nearly fifty years back, and the initials are as old as the watch: so + it was made for the last generation. Jewelry usually descents to the + eldest son, and he is most likely to have the same name as the + father. Your father has, if I remember right, been dead many years. + It has, therefore, been in the hands of your eldest brother." + + "Right, so far," said I. "Anything else?" + + "He was a man of untidy habits,--very untidy and careless. He was + left with good prospects, but he threw away his chances, lived for + some time in poverty with occasional short intervals of prosperity, + and finally, taking to drink, he died. That is all I can gather." + + I sprang from my chair and limped impatiently about the room with + considerable bitterness in my heart. + + "This is unworthy of you, Holmes," I said. "I could not have believed + that you would have descended to this. You have made inquires into + the history of my unhappy brother, and you now pretend to deduce this + knowledge in some fanciful way. You cannot expect me to believe that + you have read all this from his old watch! It is unkind, and, to + speak plainly, has a touch of charlatanism in it." + + "My dear doctor," said he, kindly, "pray accept my apologies. + Viewing the matter as an abstract problem, I had forgotten how + personal and painful a thing it might be to you. I assure you, + however, that I never even knew that you had a brother until you + handed me the watch." + + "Then how in the name of all that is wonderful did you get these + facts? They are absolutely correct in every particular." + + "Ah, that is good luck. I could only say what was the balance of + probability. I did not at all expect to be so accurate." + + "But it was not mere guess-work?" + + "No, no: I never guess. It is a shocking habit,--destructive to the + logical faculty. What seems strange to you is only so because you do + not follow my train of thought or observe the small facts upon which + large inferences may depend. For example, I began by stating that + your brother was careless. When you observe the lower part of that + watch-case you notice that it is not only dinted in two places, but + it is cut and marked all over from the habit of keeping other hard + objects, such as coins or keys, in the same pocket. Surely it is no + great feat to assume that a man who treats a fifty-guinea watch so + cavalierly must be a careless man. Neither is it a very far-fetched + inference that a man who inherits one article of such value is pretty + well provided for in other respects." + + I nodded, to show that I followed his reasoning. + + "It is very customary for pawnbrokers in England, when they take a + watch, to scratch the number of the ticket with a pin-point upon the + inside of the case. It is more handy than a label, as there is no + risk of the number being lost or transposed. There are no less than + four such numbers visible to my lens on the inside of this case. + Inference,--that your brother was often at low water. Secondary + inference,--that he had occasional bursts of prosperity, or he could + not have redeemed the pledge. Finally, I ask you to look at the inner + plate, which contains the key-hole. Look at the thousands of + scratches all round the hole,--marks where the key has slipped. What + sober man's key could have scored those grooves? But you will never + see a drunkard's watch without them. He winds it at night, and he + leaves these traces of his unsteady hand. Where is the mystery in all + this?" + + "It is as clear as daylight," I answered. "I regret the injustice + which I did you. I should have had more faith in your marvellous + faculty. May I ask whether you have any professional inquiry on foot + at present?" + + "None. Hence the cocaine. I cannot live without brain-work. What else + is there to live for? Stand at the window here. Was ever such a + dreary, dismal, unprofitable world? See how the yellow fog swirls + down the street and drifts across the duncolored houses. What could + be more hopelessly prosaic and material? What is the use of having + powers, doctor, when one has no field upon which to exert them? Crime + is commonplace, existence is commonplace, and no qualities save those + which are commonplace have any function upon earth." + + I had opened my mouth to reply to this tirade, when with a crisp + knock our landlady entered, bearing a card upon the brass salver. + + "A young lady for you, sir," she said, addressing my companion. + + "Miss Mary Morstan," he read. "Hum! I have no recollection of the + name. Ask the young lady to step up, Mrs. Hudson. Don't go, doctor. I + should prefer that you remain." + + + + + + CHAPTER II + The Statement of the Case + + + Miss Morstan entered the room with a firm step and an outward + composure of manner. She was a blonde young lady, small, dainty, well + gloved, and dressed in the most perfect taste. There was, however, a + plainness and simplicity about her costume which bore with it a + suggestion of limited means. The dress was a sombre grayish beige, + untrimmed and unbraided, and she wore a small turban of the same dull + hue, relieved only by a suspicion of white feather in the side. Her + face had neither regularity of feature nor beauty of complexion, but + her expression was sweet and amiable, and her large blue eyes were + singularly spiritual and sympathetic. In an experience of women which + extends over many nations and three separate continents, I have never + looked upon a face which gave a clearer promise of a refined and + sensitive nature. I could not but observe that as she took the seat + which Sherlock Holmes placed for her, her lip trembled, her hand + quivered, and she showed every sign of intense inward agitation. + + "I have come to you, Mr. Holmes," she said, "because you once enabled + my employer, Mrs. Cecil Forrester, to unravel a little domestic + complication. She was much impressed by your kindness and skill." + + "Mrs. Cecil Forrester," he repeated thoughtfully. "I believe that I + was of some slight service to her. The case, however, as I remember + it, was a very simple one." + + "She did not think so. But at least you cannot say the same of mine. + I can hardly imagine anything more strange, more utterly + inexplicable, than the situation in which I find myself." + + Holmes rubbed his hands, and his eyes glistened. He leaned forward in + his chair with an expression of extraordinary concentration upon his + clear-cut, hawklike features. "State your case," said he, in brisk, + business tones. + + I felt that my position was an embarrassing one. "You will, I am + sure, excuse me," I said, rising from my chair. + + To my surprise, the young lady held up her gloved hand to detain me. + "If your friend," she said, "would be good enough to stop, he might + be of inestimable service to me." + + I relapsed into my chair. + + "Briefly," she continued, "the facts are these. My father was an + officer in an Indian regiment who sent me home when I was quite a + child. My mother was dead, and I had no relative in England. I was + placed, however, in a comfortable boarding establishment at + Edinburgh, and there I remained until I was seventeen years of age. + In the year 1878 my father, who was senior captain of his regiment, + obtained twelve months' leave and came home. He telegraphed to me + from London that he had arrived all safe, and directed me to come + down at once, giving the Langham Hotel as his address. His message, + as I remember, was full of kindness and love. On reaching London I + drove to the Langham, and was informed that Captain Morstan was + staying there, but that he had gone out the night before and had not + yet returned. I waited all day without news of him. That night, on + the advice of the manager of the hotel, I communicated with the + police, and next morning we advertised in all the papers. Our + inquiries let to no result; and from that day to this no word has + ever been heard of my unfortunate father. He came home with his heart + full of hope, to find some peace, some comfort, and instead--" She + put her hand to her throat, and a choking sob cut short the sentence. + + "The date?" asked Holmes, opening his note-book. + + "He disappeared upon the 3d of December, 1878,--nearly ten years + ago." + + "His luggage?" + + "Remained at the hotel. There was nothing in it to suggest a + clue,--some clothes, some books, and a considerable number of + curiosities from the Andaman Islands. He had been one of the officers + in charge of the convict-guard there." + + "Had he any friends in town?" + + "Only one that we know of,--Major Sholto, of his own regiment, the + 34th Bombay Infantry. The major had retired some little time before, + and lived at Upper Norwood. We communicated with him, of course, but + he did not even know that his brother officer was in England." + + "A singular case," remarked Holmes. + + "I have not yet described to you the most singular part. About six + years ago--to be exact, upon the 4th of May, 1882--an advertisement + appeared in the Times asking for the address of Miss Mary Morstan and + stating that it would be to her advantage to come forward. There was + no name or address appended. I had at that time just entered the + family of Mrs. Cecil Forrester in the capacity of governess. By her + advice I published my address in the advertisement column. The same + day there arrived through the post a small card-board box addressed + to me, which I found to contain a very large and lustrous pearl. No + word of writing was enclosed. Since then every year upon the same + date there has always appeared a similar box, containing a similar + pearl, without any clue as to the sender. They have been pronounced + by an expert to be of a rare variety and of considerable value. You + can see for yourselves that they are very handsome." She opened a + flat box as she spoke, and showed me six of the finest pearls that I + had ever seen. + + "Your statement is most interesting," said Sherlock Holmes. "Has + anything else occurred to you?" + + "Yes, and no later than to-day. That is why I have come to you. This + morning I received this letter, which you will perhaps read for + yourself." + + "Thank you," said Holmes. "The envelope too, please. Postmark, + London, S.W. Date, July 7. Hum! Man's thumb-mark on corner,--probably + postman. Best quality paper. Envelopes at sixpence a packet. + Particular man in his stationery. No address. 'Be at the third pillar + from the left outside the Lyceum Theatre to-night at seven o'clock. + If you are distrustful, bring two friends. You are a wronged woman, + and shall have justice. Do not bring police. If you do, all will be + in vain. Your unknown friend.' Well, really, this is a very pretty + little mystery. What do you intend to do, Miss Morstan?" + + "That is exactly what I want to ask you." + + "Then we shall most certainly go. You and I and--yes, why, Dr. + Watson is the very man. Your correspondent says two friends. He and I + have worked together before." + + "But would he come?" she asked, with something appealing in her voice + and expression. + + "I should be proud and happy," said I, fervently, "if I can be of any + service." + + "You are both very kind," she answered. "I have led a retired life, + and have no friends whom I could appeal to. If I am here at six it + will do, I suppose?" + + "You must not be later," said Holmes. "There is one other point, + however. Is this handwriting the same as that upon the pearl-box + addresses?" + + "I have them here," she answered, producing half a dozen pieces of + paper. + + "You are certainly a model client. You have the correct intuition. + Let us see, now." He spread out the papers upon the table, and gave + little darting glances from one to the other. "They are disguised + hands, except the letter," he said, presently, "but there can be no + question as to the authorship. See how the irrepressible Greek e will + break out, and see the twirl of the final s. They are undoubtedly by + the same person. I should not like to suggest false hopes, Miss + Morstan, but is there any resemblance between this hand and that of + your father?" + + "Nothing could be more unlike." + + "I expected to hear you say so. We shall look out for you, then, at + six. Pray allow me to keep the papers. I may look into the matter + before then. It is only half-past three. Au revoir, then." + + "Au revoir," said our visitor, and, with a bright, kindly glance from + one to the other of us, she replaced her pearl-box in her bosom and + hurried away. Standing at the window, I watched her walking briskly + down the street, until the gray turban and white feather were but a + speck in the sombre crowd. + + "What a very attractive woman!" I exclaimed, turning to my companion. + + He had lit his pipe again, and was leaning back with drooping + eyelids. "Is she?" he said, languidly. "I did not observe." + + "You really are an automaton,--a calculating-machine!" I cried. + "There is something positively inhuman in you at times." + + He smiled gently. "It is of the first importance," he said, "not to + allow your judgment to be biased by personal qualities. A client is + to me a mere unit,--a factor in a problem. The emotional qualities + are antagonistic to clear reasoning. I assure you that the most + winning woman I ever knew was hanged for poisoning three little + children for their insurance-money, and the most repellant man of my + acquaintance is a philanthropist who has spent nearly a quarter of a + million upon the London poor." + + "In this case, however--" + + "I never make exceptions. An exception disproves the rule. Have you + ever had occasion to study character in handwriting? What do you make + of this fellow's scribble?" + + "It is legible and regular," I answered. "A man of business habits + and some force of character." + + Holmes shook his head. "Look at his long letters," he said. "They + hardly rise above the common herd. That d might be an a, and that l + an e. Men of character always differentiate their long letters, + however illegibly they may write. There is vacillation in his k's and + self-esteem in his capitals. I am going out now. I have some few + references to make. Let me recommend this book,--one of the most + remarkable ever penned. It is Winwood Reade's Martyrdom of Man. I + shall be back in an hour." + + I sat in the window with the volume in my hand, but my thoughts were + far from the daring speculations of the writer. My mind ran upon our + late visitor,--her smiles, the deep rich tones of her voice, the + strange mystery which overhung her life. If she were seventeen at the + time of her father's disappearance she must be seven-and-twenty + now,--a sweet age, when youth has lost its self-consciousness and + become a little sobered by experience. So I sat and mused, until such + dangerous thoughts came into my head that I hurried away to my desk + and plunged furiously into the latest treatise upon pathology. What + was I, an army surgeon with a weak leg and a weaker banking-account, + that I should dare to think of such things? She was a unit, a + factor,--nothing more. If my future were black, it was better surely + to face it like a man than to attempt to brighten it by mere + will-o'-the-wisps of the imagination. + + + + + + CHAPTER III + In Quest of a Solution + + + It was half-past five before Holmes returned. He was bright, eager, + and in excellent spirits,--a mood which in his case alternated with + fits of the blackest depression. + + "There is no great mystery in this matter," he said, taking the cup + of tea which I had poured out for him. "The facts appear to admit of + only one explanation." + + "What! you have solved it already?" + + "Well, that would be too much to say. I have discovered a suggestive + fact, that is all. It is, however, very suggestive. The details are + still to be added. I have just found, on consulting the back files of + the Times, that Major Sholto, of Upper Norword, late of the 34th + Bombay Infantry, died upon the 28th of April, 1882." + + "I may be very obtuse, Holmes, but I fail to see what this suggests." + + "No? You surprise me. Look at it in this way, then. Captain Morstan + disappears. The only person in London whom he could have visited is + Major Sholto. Major Sholto denies having heard that he was in London. + Four years later Sholto dies. Within a week of his death Captain + Morstan's daughter receives a valuable present, which is repeated + from year to year, and now culminates in a letter which describes her + as a wronged woman. What wrong can it refer to except this + deprivation of her father? And why should the presents begin + immediately after Sholto's death, unless it is that Sholto's heir + knows something of the mystery and desires to make compensation? Have + you any alternative theory which will meet the facts?" + + "But what a strange compensation! And how strangely made! Why, too, + should he write a letter now, rather than six years ago? Again, the + letter speaks of giving her justice. What justice can she have? It is + too much to suppose that her father is still alive. There is no other + injustice in her case that you know of." + + "There are difficulties; there are certainly difficulties," said + Sherlock Holmes, pensively. "But our expedition of to-night will + solve them all. Ah, here is a four-wheeler, and Miss Morstan is + inside. Are you all ready? Then we had better go down, for it is a + little past the hour." + + I picked up my hat and my heaviest stick, but I observed that Holmes + took his revolver from his drawer and slipped it into his pocket. It + was clear that he thought that our night's work might be a serious + one. + + Miss Morstan was muffled in a dark cloak, and her sensitive face was + composed, but pale. She must have been more than woman if she did not + feel some uneasiness at the strange enterprise upon which we were + embarking, yet her self-control was perfect, and she readily answered + the few additional questions which Sherlock Holmes put to her. + + "Major Sholto was a very particular friend of papa's," she said. "His + letters were full of allusions to the major. He and papa were in + command of the troops at the Andaman Islands, so they were thrown a + great deal together. By the way, a curious paper was found in papa's + desk which no one could understand. I don't suppose that it is of the + slightest importance, but I thought you might care to see it, so I + brought it with me. It is here." + + Holmes unfolded the paper carefully and smoothed it out upon his + knee. He then very methodically examined it all over with his double + lens. + + "It is paper of native Indian manufacture," he remarked. "It has at + some time been pinned to a board. The diagram upon it appears to be a + plan of part of a large building with numerous halls, corridors, and + passages. At one point is a small cross done in red ink, and above it + is '3.37 from left,' in faded pencil-writing. In the left-hand + corner is a curious hieroglyphic like four crosses in a line with + their arms touching. Beside it is written, in very rough and coarse + characters, 'The sign of the four,--Jonathan Small, Mahomet Singh, + Abdullah Khan, Dost Akbar.' No, I confess that I do not see how this + bears upon the matter. Yet it is evidently a document of importance. + It has been kept carefully in a pocket-book; for the one side is as + clean as the other." + + "It was in his pocket-book that we found it." + + "Preserve it carefully, then, Miss Morstan, for it may prove to be of + use to us. I begin to suspect that this matter may turn out to be + much deeper and more subtle than I at first supposed. I must + reconsider my ideas." He leaned back in the cab, and I could see by + his drawn brow and his vacant eye that he was thinking intently. Miss + Morstan and I chatted in an undertone about our present expedition + and its possible outcome, but our companion maintained his + impenetrable reserve until the end of our journey. + + It was a September evening, and not yet seven o'clock, but the day + had been a dreary one, and a dense drizzly fog lay low upon the great + city. Mud-colored clouds drooped sadly over the muddy streets. Down + the Strand the lamps were but misty splotches of diffused light which + threw a feeble circular glimmer upon the slimy pavement. The yellow + glare from the shop-windows streamed out into the steamy, vaporous + air, and threw a murky, shifting radiance across the crowded + thoroughfare. There was, to my mind, something eerie and ghost-like + in the endless procession of faces which flitted across these narrow + bars of light,--sad faces and glad, haggard and merry. Like all human + kind, they flitted from the gloom into the light, and so back into + the gloom once more. I am not subject to impressions, but the dull, + heavy evening, with the strange business upon which we were engaged, + combined to make me nervous and depressed. I could see from Miss + Morstan's manner that she was suffering from the same feeling. Holmes + alone could rise superior to petty influences. He held his open + note-book upon his knee, and from time to time he jotted down figures + and memoranda in the light of his pocket-lantern. + + At the Lyceum Theatre the crowds were already thick at the + side-entrances. In front a continuous stream of hansoms and + four-wheelers were rattling up, discharging their cargoes of + shirt-fronted men and beshawled, bediamonded women. We had hardly + reached the third pillar, which was our rendezvous, before a small, + dark, brisk man in the dress of a coachman accosted us. + + "Are you the parties who come with Miss Morstan?" he asked. + + "I am Miss Morstan, and these two gentlemen are my friends," said + she. + + He bent a pair of wonderfully penetrating and questioning eyes upon + us. "You will excuse me, miss," he said with a certain dogged manner, + "but I was to ask you to give me your word that neither of your + companions is a police-officer." + + "I give you my word on that," she answered. + + He gave a shrill whistle, on which a street Arab led across a + four-wheeler and opened the door. The man who had addressed us + mounted to the box, while we took our places inside. We had hardly + done so before the driver whipped up his horse, and we plunged away + at a furious pace through the foggy streets. + + The situation was a curious one. We were driving to an unknown place, + on an unknown errand. Yet our invitation was either a complete + hoax,--which was an inconceivable hypothesis,--or else we had good + reason to think that important issues might hang upon our journey. + Miss Morstan's demeanor was as resolute and collected as ever. I + endeavored to cheer and amuse her by reminiscences of my adventures + in Afghanistan; but, to tell the truth, I was myself so excited at + our situation and so curious as to our destination that my stories + were slightly involved. To this day she declares that I told her one + moving anecdote as to how a musket looked into my tent at the dead of + night, and how I fired a double-barrelled tiger cub at it. At first I + had some idea as to the direction in which we were driving; but soon, + what with our pace, the fog, and my own limited knowledge of London, + I lost my bearings, and knew nothing, save that we seemed to be going + a very long way. Sherlock Holmes was never at fault, however, and he + muttered the names as the cab rattled through squares and in and out + by tortuous by-streets. + + "Rochester Row," said he. "Now Vincent Square. Now we come out on the + Vauxhall Bridge Road. We are making for the Surrey side, apparently. + Yes, I thought so. Now we are on the bridge. You can catch glimpses + of the river." + + We did indeed bet a fleeting view of a stretch of the Thames with the + lamps shining upon the broad, silent water; but our cab dashed on, + and was soon involved in a labyrinth of streets upon the other side. + + "Wordsworth Road," said my companion. "Priory Road. Lark Hall Lane. + Stockwell Place. Robert Street. Cold Harbor Lane. Our quest does not + appear to take us to very fashionable regions." + + We had, indeed, reached a questionable and forbidding neighborhood. + Long lines of dull brick houses were only relieved by the coarse + glare and tawdry brilliancy of public houses at the corner. Then came + rows of two-storied villas each with a fronting of miniature garden, + and then again interminable lines of new staring brick + buildings,--the monster tentacles which the giant city was throwing + out into the country. At last the cab drew up at the third house in a + new terrace. None of the other houses were inhabited, and that at + which we stopped was as dark as its neighbors, save for a single + glimmer in the kitchen window. On our knocking, however, the door was + instantly thrown open by a Hindoo servant clad in a yellow turban, + white loose-fitting clothes, and a yellow sash. There was something + strangely incongruous in this Oriental figure framed in the + commonplace door-way of a third-rate suburban dwelling-house. + + "The Sahib awaits you," said he, and even as he spoke there came a + high piping voice from some inner room. "Show them in to me, + khitmutgar," it cried. "Show them straight in to me." + + + + + + CHAPTER IV + The Story of the Bald-Headed Man + + + We followed the Indian down a sordid and common passage, ill lit and + worse furnished, until he came to a door upon the right, which he + threw open. A blaze of yellow light streamed out upon us, and in the + centre of the glare there stood a small man with a very high head, a + bristle of red hair all round the fringe of it, and a bald, shining + scalp which shot out from among it like a mountain-peak from + fir-trees. He writhed his hands together as he stood, and his + features were in a perpetual jerk, now smiling, now scowling, but + never for an instant in repose. Nature had given him a pendulous lip, + and a too visible line of yellow and irregular teeth, which he strove + feebly to conceal by constantly passing his hand over the lower part + of his face. In spite of his obtrusive baldness, he gave the + impression of youth. In point of fact he had just turned his + thirtieth year. + + "Your servant, Miss Morstan," he kept repeating, in a thin, high + voice. "Your servant, gentlemen. Pray step into my little sanctum. A + small place, miss, but furnished to my own liking. An oasis of art + in the howling desert of South London." + + We were all astonished by the appearance of the apartment into which + he invited us. In that sorry house it looked as out of place as a + diamond of the first water in a setting of brass. The richest and + glossiest of curtains and tapestries draped the walls, looped back + here and there to expose some richly-mounted painting or Oriental + vase. The carpet was of amber-and-black, so soft and so thick that + the foot sank pleasantly into it, as into a bed of moss. Two great + tiger-skins thrown athwart it increased the suggestion of Eastern + luxury, as did a huge hookah which stood upon a mat in the corner. A + lamp in the fashion of a silver dove was hung from an almost + invisible golden wire in the centre of the room. As it burned it + filled the air with a subtle and aromatic odor. + + "Mr. Thaddeus Sholto," said the little man, still jerking and + smiling. "That is my name. You are Miss Morstan, of course. And these + gentlemen--" + + "This is Mr. Sherlock Holmes, and this is Dr. Watson." + + "A doctor, eh?" cried he, much excited. "Have you your stethoscope? + Might I ask you--would you have the kindness? I have grave doubts as + to my mitral valve, if you would be so very good. The aortic I may + rely upon, but I should value your opinion upon the mitral." + + I listened to his heart, as requested, but was unable to find + anything amiss, save indeed that he was in an ecstasy of fear, for he + shivered from head to foot. "It appears to be normal," I said. "You + have no cause for uneasiness." + + "You will excuse my anxiety, Miss Morstan," he remarked, airily. "I + am a great sufferer, and I have long had suspicions as to that valve. + I am delighted to hear that they are unwarranted. Had your father, + Miss Morstan, refrained from throwing a strain upon his heart, he + might have been alive now." + + I could have struck the man across the face, so hot was I at this + callous and off-hand reference to so delicate a matter. Miss Morstan + sat down, and her face grew white to the lips. "I knew in my heart + that he was dead," said she. + + "I can give you every information," said he, "and, what is more, I + can do you justice; and I will, too, whatever Brother Bartholomew may + say. I am so glad to have your friends here, not only as an escort to + you, but also as witnesses to what I am about to do and say. The + three of us can show a bold front to Brother Bartholomew. But let us + have no outsiders,--no police or officials. We can settle everything + satisfactorily among ourselves, without any interference. Nothing + would annoy Brother Bartholomew more than any publicity." He sat down + upon a low settee and blinked at us inquiringly with his weak, watery + blue eyes. + + "For my part," said Holmes, "whatever you may choose to say will go + no further." + + I nodded to show my agreement. + + "That is well! That is well!" said he. "May I offer you a glass of + Chianti, Miss Morstan? Or of Tokay? I keep no other wines. Shall I + open a flask? No? Well, then, I trust that you have no objection to + tobacco-smoke, to the mild balsamic odor of the Eastern tobacco. I am + a little nervous, and I find my hookah an invaluable sedative." He + applied a taper to the great bowl, and the smoke bubbled merrily + through the rose-water. We sat all three in a semicircle, with our + heads advanced, and our chins upon our hands, while the strange, + jerky little fellow, with his high, shining head, puffed uneasily in + the centre. + + "When I first determined to make this communication to you," said he, + "I might have given you my address, but I feared that you might + disregard my request and bring unpleasant people with you. I took the + liberty, therefore, of making an appointment in such a way that my + man Williams might be able to see you first. I have complete + confidence in his discretion, and he had orders, if he were + dissatisfied, to proceed no further in the matter. You will excuse + these precautions, but I am a man of somewhat retiring, and I might + even say refined, tastes, and there is nothing more unaesthetic than + a policeman. I have a natural shrinking from all forms of rough + materialism. I seldom come in contact with the rough crowd. I live, + as you see, with some little atmosphere of elegance around me. I may + call myself a patron of the arts. It is my weakness. The landscape is + a genuine Corot, and, though a connoisseur might perhaps throw a + doubt upon that Salvator Rosa, there cannot be the least question + about the Bouguereau. I am partial to the modern French school." + + "You will excuse me, Mr. Sholto," said Miss Morstan, "but I am here + at your request to learn something which you desire to tell me. It is + very late, and I should desire the interview to be as short as + possible." + + "At the best it must take some time," he answered; "for we shall + certainly have to go to Norwood and see Brother Bartholomew. We shall + all go and try if we can get the better of Brother Bartholomew. He is + very angry with me for taking the course which has seemed right to + me. I had quite high words with him last night. You cannot imagine + what a terrible fellow he is when he is angry." + + "If we are to go to Norwood it would perhaps be as well to start at + once," I ventured to remark. + + He laughed until his ears were quite red. "That would hardly do," he + cried. "I don't know what he would say if I brought you in that + sudden way. No, I must prepare you by showing you how we all stand to + each other. In the first place, I must tell you that there are + several points in the story of which I am myself ignorant. I can only + lay the facts before you as far as I know them myself. + + "My father was, as you may have guessed, Major John Sholto, once of + the Indian army. He retired some eleven years ago, and came to live + at Pondicherry Lodge in Upper Norwood. He had prospered in India, and + brought back with him a considerable sum of money, a large collection + of valuable curiosities, and a staff of native servants. With these + advantages he bought himself a house, and lived in great luxury. My + twin-brother Bartholomew and I were the only children. + + "I very well remember the sensation which was caused by the + disappearance of Captain Morstan. We read the details in the papers, + and, knowing that he had been a friend of our father's, we discussed + the case freely in his presence. He used to join in our speculations + as to what could have happened. Never for an instant did we suspect + that he had the whole secret hidden in his own breast,--that of all + men he alone knew the fate of Arthur Morstan. + + "We did know, however, that some mystery--some positive + danger--overhung our father. He was very fearful of going out alone, + and he always employed two prize-fighters to act as porters at + Pondicherry Lodge. Williams, who drove you to-night, was one of them. + He was once light-weight champion of England. Our father would never + tell us what it was he feared, but he had a most marked aversion to + men with wooden legs. On one occasion he actually fired his revolver + at a wooden-legged man, who proved to be a harmless tradesman + canvassing for orders. We had to pay a large sum to hush the matter + up. My brother and I used to think this a mere whim of my father's, + but events have since led us to change our opinion. + + "Early in 1882 my father received a letter from India which was a + great shock to him. He nearly fainted at the breakfast-table when he + opened it, and from that day he sickened to his death. What was in + the letter we could never discover, but I could see as he held it + that it was short and written in a scrawling hand. He had suffered + for years from an enlarged spleen, but he now became rapidly worse, + and towards the end of April we were informed that he was beyond all + hope, and that he wished to make a last communication to us. + + "When we entered his room he was propped up with pillows and + breathing heavily. He besought us to lock the door and to come upon + either side of the bed. Then, grasping our hands, he made a + remarkable statement to us, in a voice which was broken as much by + emotion as by pain. I shall try and give it to you in his own very + words. + + "'I have only one thing,' he said, 'which weighs upon my mind at this + supreme moment. It is my treatment of poor Morstan's orphan. The + cursed greed which has been my besetting sin through life has + withheld from her the treasure, half at least of which should have + been hers. And yet I have made no use of it myself,--so blind and + foolish a thing is avarice. The mere feeling of possession has been + so dear to me that I could not bear to share it with another. See + that chaplet dipped with pearls beside the quinine-bottle. Even that + I could not bear to part with, although I had got it out with the + design of sending it to her. You, my sons, will give her a fair share + of the Agra treasure. But send her nothing--not even the + chaplet--until I am gone. After all, men have been as bad as this and + have recovered. + + "'I will tell you how Morstan died,' he continued. 'He had suffered + for years from a weak heart, but he concealed it from every one. I + alone knew it. When in India, he and I, through a remarkable chain of + circumstances, came into possession of a considerable treasure. I + brought it over to England, and on the night of Morstan's arrival he + came straight over here to claim his share. He walked over from the + station, and was admitted by my faithful Lal Chowdar, who is now + dead. Morstan and I had a difference of opinion as to the division of + the treasure, and we came to heated words. Morstan had sprung out of + his chair in a paroxysm of anger, when he suddenly pressed his hand + to his side, his face turned a dusky hue, and he fell backwards, + cutting his head against the corner of the treasure-chest. When I + stooped over him I found, to my horror, that he was dead. + + "'For a long time I sat half distracted, wondering what I should do. + My first impulse was, of course, to call for assistance; but I could + not but recognize that there was every chance that I would be accused + of his murder. His death at the moment of a quarrel, and the gash in + his head, would be black against me. Again, an official inquiry could + not be made without bringing out some facts about the treasure, which + I was particularly anxious to keep secret. He had told me that no + soul upon earth knew where he had gone. There seemed to be no + necessity why any soul ever should know. + + "'I was still pondering over the matter, when, looking up, I saw my + servant, Lal Chowdar, in the doorway. He stole in and bolted the door + behind him. "Do not fear, Sahib," he said. "No one need know that you + have killed him. Let us hide him away, and who is the wiser?" "I did + not kill him," said I. Lal Chowdar shook his head and smiled. "I + heard it all, Sahib," said he. "I heard you quarrel, and I heard the + blow. But my lips are sealed. All are asleep in the house. Let us put + him away together." That was enough to decide met. If my own servant + could not believe my innocence, how could I hope to make it good + before twelve foolish tradesmen in a jury-box? Lal Chowdar and I + disposed of the body that night, and within a few days the London + papers were full of the mysterious disappearance of Captain Morstan. + You will see from what I say that I can hardly be blamed in the + matter. My fault lies in the fact that we concealed not only the + body, but also the treasure, and that I have clung to Morstan's share + as well as to my own. I wish you, therefore, to make restitution. Put + your ears down to my mouth. The treasure is hidden in--At this + instant a horrible change came over his expression; his eyes stared + wildly, his jaw dropped, and he yelled, in a voice which I can never + forget, 'Keep him out! For Christ's sake keep him out'! We both + stared round at the window behind us upon which his gaze was fixed. A + face was looking in at us out of the darkness. We could see the + whitening of the nose where it was pressed against the glass. It was + a bearded, hairy face, with wild cruel eyes and an expression of + concentrated malevolence. My brother and I rushed towards the window, + but the man was gone. When we returned to my father his head had + dropped and his pulse had ceased to beat. + + "We searched the garden that night, but found no sign of the + intruder, save that just under the window a single footmark was + visible in the flower-bed. But for that one trace, we might have + thought that our imaginations had conjured up that wild, fierce face. + We soon, however, had another and a more striking proof that there + were secret agencies at work all round us. The window of my father's + room was found open in the morning, his cupboards and boxes had been + rifled, and upon his chest was fixed a torn piece of paper, with the + words 'The sign of the four' scrawled across it. What the phrase + meant, or who our secret visitor may have been, we never knew. As far + as we can judge, none of my father's property had been actually + stolen, though everything had been turned out. My brother and I + naturally associated this peculiar incident with the fear which + haunted my father during his life; but it is still a complete mystery + to us." + + The little man stopped to relight his hookah and puffed thoughtfully + for a few moments. We had all sat absorbed, listening to his + extraordinary narrative. At the short account of her father's death + Miss Morstan had turned deadly white, and for a moment I feared that + she was about to faint. She rallied however, on drinking a glass of + water which I quietly poured out for her from a Venetian carafe upon + the side-table. Sherlock Holmes leaned back in his chair with an + abstracted expression and the lids drawn low over his glittering + eyes. As I glanced at him I could not but think how on that very day + he had complained bitterly of the commonplaceness of life. Here at + least was a problem which would tax his sagacity to the utmost. Mr. + Thaddeus Sholto looked from one to the other of us with an obvious + pride at the effect which his story had produced, and then continued + between the puffs of his overgrown pipe. + + "My brother and I," said he, "were, as you may imagine, much excited + as to the treasure which my father had spoken of. For weeks and for + months we dug and delved in every part of the garden, without + discovering its whereabouts. It was maddening to think that the + hiding-place was on his very lips at the moment that he died. We + could judge the splendor of the missing riches by the chaplet which + he had taken out. Over this chaplet my brother Bartholomew and I had + some little discussion. The pearls were evidently of great value, and + he was averse to part with them, for, between friends, my brother was + himself a little inclined to my father's fault. He thought, too, that + if we parted with the chaplet it might give rise to gossip and + finally bring us into trouble. It was all that I could do to persuade + him to let me find out Miss Morstan's address and send her a detached + pearl at fixed intervals, so that at least she might never feel + destitute." + + "It was a kindly thought," said our companion, earnestly. "It was + extremely good of you." + + The little man waved his hand deprecatingly. "We were your trustees," + he said. "That was the view which I took of it, though Brother + Bartholomew could not altogether see it in that light. We had plenty + of money ourselves. I desired no more. Besides, it would have been + such bad taste to have treated a young lady in so scurvy a fashion. + 'Le mauvais goût mène au crime.' The French have a very neat way of + putting these things. Our difference of opinion on this subject went + so far that I thought it best to set up rooms for myself: so I left + Pondicherry Lodge, taking the old khitmutgar and Williams with me. + Yesterday, however, I learn that an event of extreme importance has + occurred. The treasure has been discovered. I instantly communicated + with Miss Morstan, and it only remains for us to drive out to Norwood + and demand our share. I explained my views last night to Brother + Bartholomew: so we shall be expected, if not welcome, visitors." + + Mr. Thaddeus Sholto ceased, and sat twitching on his luxurious + settee. We all remained silent, with our thoughts upon the new + development which the mysterious business had taken. Holmes was the + first to spring to his feet. + + "You have done well, sir, from first to last," said he. "It is + possible that we may be able to make you some small return by + throwing some light upon that which is still dark to you. But, as + Miss Morstan remarked just now, it is late, and we had best put the + matter through without delay." + + Our new acquaintance very deliberately coiled up the tube of his + hookah, and produced from behind a curtain a very long befrogged + topcoat with Astrakhan collar and cuffs. This he buttoned tightly up, + in spite of the extreme closeness of the night, and finished his + attire by putting on a rabbit-skin cap with hanging lappets which + covered the ears, so that no part of him was visible save his mobile + and peaky face. "My health is somewhat fragile," he remarked, as he + led the way down the passage. "I am compelled to be a + valetudinarian." + + Our cab was awaiting us outside, and our programme was evidently + prearranged, for the driver started off at once at a rapid pace. + Thaddeus Sholto talked incessantly, in a voice which rose high above + the rattle of the wheels. + + "Bartholomew is a clever fellow," said he. "How do you think he found + out where the treasure was? He had come to the conclusion that it was + somewhere indoors: so he worked out all the cubic space of the house, + and made measurements everywhere, so that not one inch should be + unaccounted for. Among other things, he found that the height of the + building was seventy-four feet, but on adding together the heights of + all the separate rooms, and making every allowance for the space + between, which he ascertained by borings, he could not bring the + total to more than seventy feet. There were four feet unaccounted + for. These could only be at the top of the building. He knocked a + hole, therefore, in the lath-and-plaster ceiling of the highest room, + and there, sure enough, he came upon another little garret above it, + which had been sealed up and was known to no one. In the centre stood + the treasure-chest, resting upon two rafters. He lowered it through + the hole, and there it lies. He computes the value of the jewels at + not less than half a million sterling." + + At the mention of this gigantic sum we all stared at one another + open-eyed. Miss Morstan, could we secure her rights, would change + from a needy governess to the richest heiress in England. Surely it + was the place of a loyal friend to rejoice at such news; yet I am + ashamed to say that selfishness took me by the soul, and that my + heart turned as heavy as lead within me. I stammered out some few + halting words of congratulation, and then sat downcast, with my head + drooped, deaf to the babble of our new acquaintance. He was clearly a + confirmed hypochondriac, and I was dreamily conscious that he was + pouring forth interminable trains of symptoms, and imploring + information as to the composition and action of innumerable quack + nostrums, some of which he bore about in a leather case in his + pocket. I trust that he may not remember any of the answers which I + gave him that night. Holmes declares that he overheard me caution him + against the great danger of taking more than two drops of castor oil, + while I recommended strychnine in large doses as a sedative. However + that may be, I was certainly relieved when our cab pulled up with a + jerk and the coachman sprang down to open the door. + + "This, Miss Morstan, is Pondicherry Lodge," said Mr. Thaddeus Sholto, + as he handed her out. + + + + + + CHAPTER V + The Tragedy of Pondicherry Lodge + + + It was nearly eleven o'clock when we reached this final stage of our + night's adventures. We had left the damp fog of the great city behind + us, and the night was fairly fine. A warm wind blew from the + westward, and heavy clouds moved slowly across the sky, with half a + moon peeping occasionally through the rifts. It was clear enough to + see for some distance, but Thaddeus Sholto took down one of the + side-lamps from the carriage to give us a better light upon our way. + + Pondicherry Lodge stood in its own grounds, and was girt round with a + very high stone wall topped with broken glass. A single narrow + iron-clamped door formed the only means of entrance. On this our + guide knocked with a peculiar postman-like rat-tat. + + "Who is there?" cried a gruff voice from within. + + "It is I, McMurdo. You surely know my knock by this time." + + There was a grumbling sound and a clanking and jarring of keys. The + door swung heavily back, and a short, deep-chested man stood in the + opening, with the yellow light of the lantern shining upon his + protruded face and twinkling distrustful eyes. + + "That you, Mr. Thaddeus? But who are the others? I had no orders + about them from the master." + + "No, McMurdo? You surprise me! I told my brother last night that I + should bring some friends. + + "He ain't been out o' his room to-day, Mr. Thaddeus, and I have no + orders. You know very well that I must stick to regulations. I can + let you in, but your friends must just stop where they are." + + This was an unexpected obstacle. Thaddeus Sholto looked about him in + a perplexed and helpless manner. "This is too bad of you, McMurdo!" + he said. "If I guarantee them, that is enough for you. There is the + young lady, too. She cannot wait on the public road at this hour." + + "Very sorry, Mr. Thaddeus," said the porter, inexorably. "Folk may be + friends o' yours, and yet no friends o' the master's. He pays me well + to do my duty, and my duty I'll do. I don't know none o' your + friends." + + "Oh, yes you do, McMurdo," cried Sherlock Holmes, genially. "I don't + think you can have forgotten me. Don't you remember the amateur who + fought three rounds with you at Alison's rooms on the night of your + benefit four years back?" + + "Not Mr. Sherlock Holmes!" roared the prize-fighter. "God's truth! + how could I have mistook you? If instead o' standin' there so quiet + you had just stepped up and given me that cross-hit of yours under + the jaw, I'd ha' known you without a question. Ah, you're one that + has wasted your gifts, you have! You might have aimed high, if you + had joined the fancy." + + "You see, Watson, if all else fails me I have still one of the + scientific professions open to me," said Holmes, laughing. "Our + friend won't keep us out in the cold now, I am sure." + + "In you come, sir, in you come,--you and your friends," he answered. + "Very sorry, Mr. Thaddeus, but orders are very strict. Had to be + certain of your friends before I let them in." + + Inside, a gravel path wound through desolate grounds to a huge clump + of a house, square and prosaic, all plunged in shadow save where a + moonbeam struck one corner and glimmered in a garret window. The vast + size of the building, with its gloom and its deathly silence, struck + a chill to the heart. Even Thaddeus Sholto seemed ill at ease, and + the lantern quivered and rattled in his hand. + + "I cannot understand it," he said. "There must be some mistake. I + distinctly told Bartholomew that we should be here, and yet there is + no light in his window. I do not know what to make of it." + + "Does he always guard the premises in this way?" asked Holmes. + + "Yes; he has followed my father's custom. He was the favorite son, + you know, and I sometimes think that my father may have told him more + than he ever told me. That is Bartholomew's window up there where the + moonshine strikes. It is quite bright, but there is no light from + within, I think." + + "None," said Holmes. "But I see the glint of a light in that little + window beside the door." + + "Ah, that is the housekeeper's room. That is where old Mrs. Bernstone + sits. She can tell us all about it. But perhaps you would not mind + waiting here for a minute or two, for if we all go in together and + she has no word of our coming she may be alarmed. But hush! what is + that?" + + He held up the lantern, and his hand shook until the circles of light + flickered and wavered all round us. Miss Morstan seized my wrist, and + we all stood with thumping hearts, straining our ears. From the great + black house there sounded through the silent night the saddest and + most pitiful of sounds,--the shrill, broken whimpering of a + frightened woman. + + "It is Mrs. Bernstone," said Sholto. "She is the only woman in the + house. Wait here. I shall be back in a moment." He hurried for the + door, and knocked in his peculiar way. We could see a tall old woman + admit him, and sway with pleasure at the very sight of him. + + "Oh, Mr. Thaddeus, sir, I am so glad you have come! I am so glad you + have come, Mr. Thaddeus, sir!" We heard her reiterated rejoicings + until the door was closed and her voice died away into a muffled + monotone. + + Our guide had left us the lantern. Holmes swung it slowly round, and + peered keenly at the house, and at the great rubbish-heaps which + cumbered the grounds. Miss Morstan and I stood together, and her hand + was in mine. A wondrous subtle thing is love, for here were we two + who had never seen each other before that day, between whom no word + or even look of affection had ever passed, and yet now in an hour of + trouble our hands instinctively sought for each other. I have + marvelled at it since, but at the time it seemed the most natural + thing that I should go out to her so, and, as she has often told me, + there was in her also the instinct to turn to me for comfort and + protection. So we stood hand in hand, like two children, and there + was peace in our hearts for all the dark things that surrounded us. + + "What a strange place!" she said, looking round. + + "It looks as though all the moles in England had been let loose in + it. I have seen something of the sort on the side of a hill near + Ballarat, where the prospectors had been at work." + + "And from the same cause," said Holmes. "These are the traces of the + treasure-seekers. You must remember that they were six years looking + for it. No wonder that the grounds look like a gravel-pit." + + At that moment the door of the house burst open, and Thaddeus Sholto + came running out, with his hands thrown forward and terror in his + eyes. + + "There is something amiss with Bartholomew!" he cried. "I am + frightened! My nerves cannot stand it." He was, indeed, half + blubbering with fear, and his twitching feeble face peeping out from + the great Astrakhan collar had the helpless appealing expression of a + terrified child. + + "Come into the house," said Holmes, in his crisp, firm way. + + "Yes, do!" pleaded Thaddeus Sholto. "I really do not feel equal to + giving directions." + + We all followed him into the housekeeper's room, which stood upon the + left-hand side of the passage. The old woman was pacing up and down + with a scared look and restless picking fingers, but the sight of + Miss Morstan appeared to have a soothing effect upon her. + + "God bless your sweet calm face!" she cried, with an hysterical sob. + "It does me good to see you. Oh, but I have been sorely tried this + day!" + + Our companion patted her thin, work-worn hand, and murmured some few + words of kindly womanly comfort which brought the color back into the + others bloodless cheeks. + + "Master has locked himself in and will now answer me," she explained. + "All day I have waited to hear from him, for he often likes to be + alone; but an hour ago I feared that something was amiss, so I went + up and peeped through the key-hole. You must go up, Mr. + Thaddeus,--you must go up and look for yourself. I have seen Mr. + Bartholomew Sholto in joy and in sorrow for ten long years, but I + never saw him with such a face on him as that." + + Sherlock Holmes took the lamp and led the way, for Thaddeus Sholto's + teeth were chattering in his head. So shaken was he that I had to + pass my hand under his arm as we went up the stairs, for his knees + were trembling under him. Twice as we ascended Holmes whipped his + lens out of his pocket and carefully examined marks which appeared to + me to be mere shapeless smudges of dust upon the cocoa-nut matting + which served as a stair-carpet. He walked slowly from step to step, + holding the lamp, and shooting keen glances to right and left. Miss + Morstan had remained behind with the frightened housekeeper. + + The third flight of stairs ended in a straight passage of some + length, with a great picture in Indian tapestry upon the right of it + and three doors upon the left. Holmes advanced along it in the same + slow and methodical way, while we kept close at his heels, with our + long black shadows streaming backwards down the corridor. The third + door was that which we were seeking. Holmes knocked without receiving + any answer, and then tried to turn the handle and force it open. It + was locked on the inside, however, and by a broad and powerful bolt, + as we could see when we set our lamp up against it. The key being + turned, however, the hole was not entirely closed. Sherlock Holmes + bent down to it, and instantly rose again with a sharp intaking of + the breath. + + "There is something devilish in this, Watson," said he, more moved + than I had ever before seen him. "What do you make of it?" + + I stooped to the hole, and recoiled in horror. Moonlight was + streaming into the room, and it was bright with a vague and shifty + radiance. Looking straight at me, and suspended, as it were, in the + air, for all beneath was in shadow, there hung a face,--the very face + of our companion Thaddeus. There was the same high, shining head, the + same circular bristle of red hair, the same bloodless countenance. + The features were set, however, in a horrible smile, a fixed and + unnatural grin, which in that still and moonlit room was more jarring + to the nerves than any scowl or contortion. So like was the face to + that of our little friend that I looked round at him to make sure + that he was indeed with us. Then I recalled to mind that he had + mentioned to us that his brother and he were twins. + + "This is terrible!" I said to Holmes. "What is to be done?" + + "The door must come down," he answered, and, springing against it, he + put all his weight upon the lock. It creaked and groaned, but did not + yield. Together we flung ourselves upon it once more, and this time + it gave way with a sudden snap, and we found ourselves within + Bartholomew Sholto's chamber. + + It appeared to have been fitted up as a chemical laboratory. A double + line of glass-stoppered bottles was drawn up upon the wall opposite + the door, and the table was littered over with Bunsen burners, + test-tubes, and retorts. In the corners stood carboys of acid in + wicker baskets. One of these appeared to leak or to have been broken, + for a stream of dark-colored liquid had trickled out from it, and the + air was heavy with a peculiarly pungent, tar-like odor. A set of + steps stood at one side of the room, in the midst of a litter of lath + and plaster, and above them there was an opening in the ceiling large + enough for a man to pass through. At the foot of the steps a long + coil of rope was thrown carelessly together. + + By the table, in a wooden arm-chair, the master of the house was + seated all in a heap, with his head sunk upon his left shoulder, and + that ghastly, inscrutable smile upon his face. He was stiff and cold, + and had clearly been dead many hours. It seemed to me that not only + his features but all his limbs were twisted and turned in the most + fantastic fashion. By his hand upon the table there lay a peculiar + instrument,--a brown, close-grained stick, with a stone head like a + hammer, rudely lashed on with coarse twine. Beside it was a torn + sheet of note-paper with some words scrawled upon it. Holmes glanced + at it, and then handed it to me. + + "You see," he said, with a significant raising of the eyebrows. + + In the light of the lantern I read, with a thrill of horror, "The + sign of the four." + + "In God's name, what does it all mean?" I asked. + + "It means murder," said he, stooping over the dead man. "Ah, I + expected it. Look here!" He pointed to what looked like a long, dark + thorn stuck in the skin just above the ear. + + "It looks like a thorn," said I. + + "It is a thorn. You may pick it out. But be careful, for it is + poisoned." + + I took it up between my finger and thumb. It came away from the skin + so readily that hardly any mark was left behind. One tiny speck of + blood showed where the puncture had been. + + "This is all an insoluble mystery to me," said I. "It grows darker + instead of clearer." + + "On the contrary," he answered, "it clears every instant. I only + require a few missing links to have an entirely connected case." + + We had almost forgotten our companion's presence since we entered the + chamber. He was still standing in the door-way, the very picture of + terror, wringing his hands and moaning to himself. Suddenly, however, + he broke out into a sharp, querulous cry. + + "The treasure is gone!" he said. "They have robbed him of the + treasure! There is the hole through which we lowered it. I helped him + to do it! I was the last person who saw him! I left him here last + night, and I heard him lock the door as I came down-stairs." + + "What time was that?" + + "It was ten o'clock. And now he is dead, and the police will be + called in, and I shall be suspected of having had a hand in it. Oh, + yes, I am sure I shall. But you don't think so, gentlemen? Surely you + don't think that it was I? Is it likely that I would have brought you + here if it were I? Oh, dear! oh, dear! I know that I shall go mad!" + He jerked his arms and stamped his feet in a kind of convulsive + frenzy. + + "You have no reason for fear, Mr. Sholto," said Holmes, kindly, + putting his hand upon his shoulder. "Take my advice, and drive down + to the station to report this matter to the police. Offer to assist + them in every way. We shall wait here until your return." + + The little man obeyed in a half-stupefied fashion, and we heard him + stumbling down the stairs in the dark. + + + + + + CHAPTER VI + Sherlock Holmes Gives a Demonstration + + + "Now, Watson," said Holmes, rubbing his hands, "we have half an hour + to ourselves. Let us make good use of it. My case is, as I have told + you, almost complete; but we must not err on the side of + over-confidence. Simple as the case seems now, there may be something + deeper underlying it." + + "Simple!" I ejaculated. + + "Surely," said he, with something of the air of a clinical professor + expounding to his class. "Just sit in the corner there, that your + footprints may not complicate matters. Now to work! In the first + place, how did these folk come, and how did they go? The door has not + been opened since last night. How of the window?" He carried the lamp + across to it, muttering his observations aloud the while, but + addressing them to himself rather than to me. "Window is snibbed on + the inner side. Framework is solid. No hinges at the side. Let us + open it. No water-pipe near. Roof quite out of reach. Yet a man has + mounted by the window. It rained a little last night. Here is the + print of a foot in mould upon the sill. And here is a circular muddy + mark, and here again upon the floor, and here again by the table. See + here, Watson! This is really a very pretty demonstration." + + I looked at the round, well-defined muddy discs. "This is not a + footmark," said I. + + "It is something much more valuable to us. It is the impression of a + wooden stump. You see here on the sill is the boot-mark, a heavy boot + with the broad metal heel, and beside it is the mark of the + timber-toe." + + "It is the wooden-legged man." + + "Quite so. But there has been some one else,--a very able and + efficient ally. Could you scale that wall, doctor?" + + I looked out of the open window. The moon still shone brightly on + that angle of the house. We were a good sixty feet from the ground, + and, look where I would, I could see no foothold, nor as much as a + crevice in the brick-work. + + "It is absolutely impossible," I answered. + + "Without aid it is so. But suppose you had a friend up here who + lowered you this good stout rope which I see in the corner, securing + one end of it to this great hook in the wall. Then, I think, if you + were an active man, you might swarm up, wooden leg and all. You would + depart, of course, in the same fashion, and your ally would draw up + the rope, untie it from the hook, shut the window, snib it on the + inside, and get away in the way that he originally came. As a minor + point it may be noted," he continued, fingering the rope, "that our + wooden-legged friend, though a fair climber, was not a professional + sailor. His hands were far from horny. My lens discloses more than + one blood-mark, especially towards the end of the rope, from which I + gather that he slipped down with such velocity that he took the skin + off his hand." + + "This is all very well," said I, "but the thing becomes more + unintelligible than ever. How about this mysterious ally? How came he + into the room?" + + "Yes, the ally!" repeated Holmes, pensively. "There are features of + interest about this ally. He lifts the case from the regions of the + commonplace. I fancy that this ally breaks fresh ground in the annals + of crime in this country,--though parallel cases suggest themselves + from India, and, if my memory serves me, from Senegambia." + + "How came he, then?" I reiterated. "The door is locked, the window is + inaccessible. Was it through the chimney?" + + "The grate is much too small," he answered. "I had already considered + that possibility." + + "How then?" I persisted. + + "You will not apply my precept," he said, shaking his head. "How + often have I said to you that when you have eliminated the impossible + whatever remains, however improbable, must be the truth? We know that + he did not come through the door, the window, or the chimney. We also + know that he could not have been concealed in the room, as there is + no concealment possible. Whence, then, did he come?" + + "He came through the hole in the roof," I cried. + + "Of course he did. He must have done so. If you will have the + kindness to hold the lamp for me, we shall now extend our researches + to the room above,--the secret room in which the treasure was found." + + He mounted the steps, and, seizing a rafter with either hand, he + swung himself up into the garret. Then, lying on his face, he reached + down for the lamp and held it while I followed him. + + The chamber in which we found ourselves was about ten feet one way + and six the other. The floor was formed by the rafters, with thin + lath-and-plaster between, so that in walking one had to step from + beam to beam. The roof ran up to an apex, and was evidently the inner + shell of the true roof of the house. There was no furniture of any + sort, and the accumulated dust of years lay thick upon the floor. + + "Here you are, you see," said Sherlock Holmes, putting his hand + against the sloping wall. "This is a trap-door which leads out on to + the roof. I can press it back, and here is the roof itself, sloping + at a gentle angle. This, then, is the way by which Number One + entered. Let us see if we can find one other traces of his + individuality." + + He held down the lamp to the floor, and as he did so I saw for the + second time that night a startled, surprised look come over his face. + For myself, as I followed his gaze my skin was cold under my clothes. + The floor was covered thickly with the prints of a naked + foot,--clear, well defined, perfectly formed, but scarce half the + size of those of an ordinary man. + + "Holmes," I said, in a whisper, "a child has done the horrid thing." + + He had recovered his self-possession in an instant. "I was staggered + for the moment," he said, "but the thing is quite natural. My memory + failed me, or I should have been able to foretell it. There is + nothing more to be learned here. Let us go down." + + "What is your theory, then, as to those footmarks?" I asked, eagerly, + when we had regained the lower room once more. + + "My dear Watson, try a little analysis yourself," said he, with a + touch of impatience. "You know my methods. Apply them, and it will be + instructive to compare results." + + "I cannot conceive anything which will cover the facts," I answered. + + "It will be clear enough to you soon," he said, in an off-hand way. + "I think that there is nothing else of importance here, but I will + look." He whipped out his lens and a tape measure, and hurried about + the room on his knees, measuring, comparing, examining, with his long + thin nose only a few inches from the planks, and his beady eyes + gleaming and deep-set like those of a bird. So swift, silent, and + furtive were his movements, like those of a trained blood-hound + picking out a scent, that I could not but think what a terrible + criminal he would have made had he turned his energy and sagacity + against the law, instead of exerting them in its defense. As he + hunted about, he kept muttering to himself, and finally he broke out + into a loud crow of delight. + + "We are certainly in luck," said he. "We ought to have very little + trouble now. Number One has had the misfortune to tread in the + creosote. You can see the outline of the edge of his small foot here + at the side of this evil-smelling mess. The carboy has been cracked, + You see, and the stuff has leaked out." + + "What then?" I asked. + + "Why, we have got him, that's all," said he. "I know a dog that would + follow that scent to the world's end. If a pack can track a trailed + herring across a shire, how far can a specially-trained hound follow + so pungent a smell as this? It sounds like a sum in the rule of + three. The answer should give us the--But halloo! here are the + accredited representatives of the law." + + Heavy steps and the clamor of loud voices were audible from below, + and the hall door shut with a loud crash. + + "Before they come," said Holmes, "just put your hand here on this + poor fellow's arm, and here on his leg. What do you feel?" + + "The muscles are as hard as a board," I answered. + + "Quite so. They are in a state of extreme contraction, far exceeding + the usual rigor mortis. Coupled with this distortion of the face, + this Hippocratic smile, or 'risus sardonicus,' as the old writers + called it, what conclusion would it suggest to your mind?" + + "Death from some powerful vegetable alkaloid," I answered,--"some + strychnine-like substance which would produce tetanus." + + "That was the idea which occurred to me the instant I saw the drawn + muscles of the face. On getting into the room I at once looked for + the means by which the poison had entered the system. As you saw, I + discovered a thorn which had been driven or shot with no great force + into the scalp. You observe that the part struck was that which would + be turned towards the hole in the ceiling if the man were erect in + his chair. Now examine the thorn." + + I took it up gingerly and held it in the light of the lantern. It was + long, sharp, and black, with a glazed look near the point as though + some gummy substance had dried upon it. The blunt end had been + trimmed and rounded off with a knife. + + "Is that an English thorn?" he asked. + + "No, it certainly is not." + + "With all these data you should be able to draw some just inference. + But here are the regulars: so the auxiliary forces may beat a + retreat." + + As he spoke, the steps which had been coming nearer sounded loudly on + the passage, and a very stout, portly man in a gray suit strode + heavily into the room. He was red-faced, burly and plethoric, with a + pair of very small twinkling eyes which looked keenly out from + between swollen and puffy pouches. He was closely followed by an + inspector in uniform, and by the still palpitating Thaddeus Sholto. + + "Here's a business!" he cried, in a muffled, husky voice. "Here's a + pretty business! But who are all these? Why, the house seems to be as + full as a rabbit-warren!" + + "I think you must recollect me, Mr. Athelney Jones," said Holmes, + quietly. + + "Why, of course I do!" he wheezed. "It's Mr. Sherlock Holmes, the + theorist. Remember you! I'll never forget how you lectured us all on + causes and inferences and effects in the Bishopgate jewel case. It's + true you set us on the right track; but you'll own now that it was + more by good luck than good guidance." + + "It was a piece of very simple reasoning." + + "Oh, come, now, come! Never be ashamed to own up. But what is all + this? Bad business! Bad business! Stern facts here,--no room for + theories. How lucky that I happened to be out at Norwood over another + case! I was at the station when the message arrived. What d'you think + the man died of?" + + "Oh, this is hardly a case for me to theorize over," said Holmes, + dryly. + + "No, no. Still, we can't deny that you hit the nail on the head + sometimes. Dear me! Door locked, I understand. Jewels worth half a + million missing. How was the window?" + + "Fastened; but there are steps on the sill." + + "Well, well, if it was fastened the steps could have nothing to do + with the matter. That's common sense. Man might have died in a fit; + but then the jewels are missing. Ha! I have a theory. These flashes + come upon me at times.--Just step outside, sergeant, and you, Mr. + Sholto. Your friend can remain.--What do you think of this, Holmes? + Sholto was, on his own confession, with his brother last night. The + brother died in a fit, on which Sholto walked off with the treasure. + How's that?" + + "On which the dead man very considerately got up and locked the door + on the inside." + + "Hum! There's a flaw there. Let us apply common sense to the matter. + This Thaddeus Sholto was with his brother; there was a quarrel; so + much we know. The brother is dead and the jewels are gone. So much + also we know. No one saw the brother from the time Thaddeus left him. + His bed had not been slept in. Thaddeus is evidently in a most + disturbed state of mind. His appearance is--well, not attractive. You + see that I am weaving my web round Thaddeus. The net begins to close + upon him." + + "You are not quite in possession of the facts yet," said Holmes. + "This splinter of wood, which I have every reason to believe to be + poisoned, was in the man's scalp where you still see the mark; this + card, inscribed as you see it, was on the table; and beside it lay + this rather curious stone-headed instrument. How does all that fit + into your theory?" + + "Confirms it in every respect," said the fat detective, pompously. + "House is full of Indian curiosities. Thaddeus brought this up, and + if this splinter be poisonous Thaddeus may as well have made + murderous use of it as any other man. The card is some + hocus-pocus,--a blind, as like as not. The only question is, how did + he depart? Ah, of course, here is a hole in the roof." With great + activity, considering his bulk, he sprang up the steps and squeezed + through into the garret, and immediately afterwards we heard his + exulting voice proclaiming that he had found the trap-door. + + "He can find something," remarked Holmes, shrugging his shoulders. + "He has occasional glimmerings of reason. Il n'y a pas des sots si + incommodes que ceux qui ont de l'esprit!" + + "You see!" said Athelney Jones, reappearing down the steps again. + "Facts are better than mere theories, after all. My view of the case + is confirmed. There is a trap-door communicating with the roof, and + it is partly open." + + "It was I who opened it." + + "Oh, indeed! You did notice it, then?" He seemed a little crestfallen + at the discovery. "Well, whoever noticed it, it shows how our + gentleman got away. Inspector!" + + "Yes, sir," from the passage. + + "Ask Mr. Sholto to step this way.--Mr. Sholto, it is my duty to + inform you that anything which you may say will be used against you. + I arrest you in the Queen's name as being concerned in the death of + your brother." + + "There, now! Didn't I tell you!" cried the poor little man, throwing + out his hands, and looking from one to the other of us. + + "Don't trouble yourself about it, Mr. Sholto," said Holmes. "I think + that I can engage to clear you of the charge." + + "Don't promise too much, Mr. Theorist,--don't promise too much!" + snapped the detective. "You may find it a harder matter than you + think." + + "Not only will I clear him, Mr. Jones, but I will make you a free + present of the name and description of one of the two people who were + in this room last night. His name, I have every reason to believe, is + Jonathan Small. He is a poorly-educated man, small, active, with his + right leg off, and wearing a wooden stump which is worn away upon the + inner side. His left boot has a coarse, square-toed sole, with an + iron band round the heel. He is a middle-aged man, much sunburned, + and has been a convict. These few indications may be of some + assistance to you, coupled with the fact that there is a good deal of + skin missing from the palm of his hand. The other man--" + + "Ah! the other man--?" asked Athelney Jones, in a sneering voice, but + impressed none the less, as I could easily see, by the precision of + the other's manner. + + "Is a rather curious person," said Sherlock Holmes, turning upon his + heel. "I hope before very long to be able to introduce you to the + pair of them. A word with you, Watson." + + He led me out to the head of the stair. "This unexpected occurrence," + he said, "has caused us rather to lose sight of the original purpose + of our journey." + + "I have just been thinking so," I answered. "It is not right that + Miss Morstan should remain in this stricken house." + + "No. You must escort her home. She lives with Mrs. Cecil Forrester, + in Lower Camberwell: so it is not very far. I will wait for you here + if you will drive out again. Or perhaps you are too tired?" + + "By no means. I don't think I could rest until I know more of this + fantastic business. I have seen something of the rough side of life, + but I give you my word that this quick succession of strange + surprises to-night has shaken my nerve completely. I should like, + however, to see the matter through with you, now that I have got so + far." + + "Your presence will be of great service to me," he answered. "We + shall work the case out independently, and leave this fellow Jones to + exult over any mare's-nest which he may choose to construct. When you + have dropped Miss Morstan I wish you to go on to No. 3 Pinchin Lane, + down near the water's edge at Lambeth. The third house on the + right-hand side is a bird-stuffer's: Sherman is the name. You will + see a weasel holding a young rabbit in the window. Knock old Sherman + up, and tell him, with my compliments, that I want Toby at once. You + will bring Toby back in the cab with you." + + "A dog, I suppose." + + "Yes,--a queer mongrel, with a most amazing power of scent. I would + rather have Toby's help than that of the whole detective force of + London." + + "I shall bring him, then," said I. "It is one now. I ought to be back + before three, if I can get a fresh horse." + + "And I," said Holmes, "shall see what I can learn from Mrs. + Bernstone, and from the Indian servant, who, Mr. Thaddeus tell me, + sleeps in the next garret. Then I shall study the great Jones's + methods and listen to his not too delicate sarcasms. 'Wir sind + gewohnt, daß die Menschen verhöhnen was sie nicht verstehen.' Goethe + is always pithy." + + + + + + CHAPTER VII + The Episode of the Barrel + + + The police had brought a cab with them, and in this I escorted Miss + Morstan back to her home. After the angelic fashion of women, she had + borne trouble with a calm face as long as there was some one weaker + than herself to support, and I had found her bright and placid by the + side of the frightened housekeeper. In the cab, however, she first + turned faint, and then burst into a passion of weeping,--so sorely + had she been tried by the adventures of the night. She has told me + since that she thought me cold and distant upon that journey. She + little guessed the struggle within my breast, or the effort of + self-restraint which held me back. My sympathies and my love went out + to her, even as my hand had in the garden. I felt that years of the + conventionalities of life could not teach me to know her sweet, brave + nature as had this one day of strange experiences. Yet there were two + thoughts which sealed the words of affection upon my lips. She was + weak and helpless, shaken in mind and nerve. It was to take her at a + disadvantage to obtrude love upon her at such a time. Worse still, + she was rich. If Holmes's researches were successful, she would be an + heiress. Was it fair, was it honorable, that a half-pay surgeon + should take such advantage of an intimacy which chance had brought + about? Might she not look upon me as a mere vulgar fortune-seeker? I + could not bear to risk that such a thought should cross her mind. + This Agra treasure intervened like an impassable barrier between us. + + It was nearly two o'clock when we reached Mrs. Cecil Forrester's. The + servants had retired hours ago, but Mrs. Forrester had been so + interested by the strange message which Miss Morstan had received + that she had sat up in the hope of her return. She opened the door + herself, a middle-aged, graceful woman, and it gave me joy to see how + tenderly her arm stole round the other's waist and how motherly was + the voice in which she greeted her. She was clearly no mere paid + dependant, but an honored friend. I was introduced, and Mrs. + Forrester earnestly begged me to step in and tell her our adventures. + I explained, however, the importance of my errand, and promised + faithfully to call and report any progress which we might make with + the case. As we drove away I stole a glance back, and I still seem to + see that little group on the step, the two graceful, clinging + figures, the half-opened door, the hall light shining through stained + glass, the barometer, and the bright stair-rods. It was soothing to + catch even that passing glimpse of a tranquil English home in the + midst of the wild, dark business which had absorbed us. + + And the more I thought of what had happened, the wilder and darker it + grew. I reviewed the whole extraordinary sequence of events as I + rattled on through the silent gas-lit streets. There was the original + problem: that at least was pretty clear now. The death of Captain + Morstan, the sending of the pearls, the advertisement, the + letter,--we had had light upon all those events. They had only led + us, however, to a deeper and far more tragic mystery. The Indian + treasure, the curious plan found among Morstan's baggage, the strange + scene at Major Sholto's death, the rediscovery of the treasure + immediately followed by the murder of the discoverer, the very + singular accompaniments to the crime, the footsteps, the remarkable + weapons, the words upon the card, corresponding with those upon + Captain Morstan's chart,--here was indeed a labyrinth in which a man + less singularly endowed than my fellow-lodger might well despair of + ever finding the clue. + + Pinchin Lane was a row of shabby two-storied brick houses in the + lower quarter of Lambeth. I had to knock for some time at No. 3 + before I could make my impression. At last, however, there was the + glint of a candle behind the blind, and a face looked out at the + upper window. + + "Go on, you drunken vagabone," said the face. "If you kick up any + more row I'll open the kennels and let out forty-three dogs upon + you." + + "If you'll let one out it's just what I have come for," said I. + + "Go on!" yelled the voice. "So help me gracious, I have a wiper in + the bag, an' I'll drop it on your 'ead if you don't hook it." + + "But I want a dog," I cried. + + "I won't be argued with!" shouted Mr. Sherman. "Now stand clear, for + when I say 'three,' down goes the wiper." + + "Mr. Sherlock Holmes--" I began, but the words had a most magical + effect, for the window instantly slammed down, and within a minute + the door was unbarred and open. Mr. Sherman was a lanky, lean old + man, with stooping shoulders, a stringy neck, and blue-tinted + glasses. + + "A friend of Mr. Sherlock is always welcome," said he. "Step in, + sir. Keep clear of the badger; for he bites. Ah, naughty, naughty, + would you take a nip at the gentleman?" This to a stoat which thrust + its wicked head and red eyes between the bars of its cage. "Don't + mind that, sir: it's only a slow-worm. It hain't got no fangs, so I + gives it the run o' the room, for it keeps the bettles down. You must + not mind my bein' just a little short wi' you at first, for I'm guyed + at by the children, and there's many a one just comes down this lane + to knock me up. What was it that Mr. Sherlock Holmes wanted, sir?" + + "He wanted a dog of yours." + + "Ah! that would be Toby." + + "Yes, Toby was the name." + + "Toby lives at No. 7 on the left here." He moved slowly forward with + his candle among the queer animal family which he had gathered round + him. In the uncertain, shadowy light I could see dimly that there + were glancing, glimmering eyes peeping down at us from every cranny + and corner. Even the rafters above our heads were lined by solemn + fowls, who lazily shifted their weight from one leg to the other as + our voices disturbed their slumbers. + + Toby proved to an ugly, long-haired, lop-eared creature, half spaniel + and half lurcher, brown-and-white in color, with a very clumsy + waddling gait. It accepted after some hesitation a lump of sugar + which the old naturalist handed to me, and, having thus sealed an + alliance, it followed me to the cab, and made no difficulties about + accompanying me. It had just struck three on the Palace clock when I + found myself back once more at Pondicherry Lodge. The + ex-prize-fighter McMurdo had, I found, been arrested as an accessory, + and both he and Mr. Sholto had been marched off to the station. Two + constables guarded the narrow gate, but they allowed me to pass with + the dog on my mentioning the detective's name. + + Holmes was standing on the door-step, with his hands in his pockets, + smoking his pipe. + + "Ah, you have him there!" said he. "Good dog, then! Athelney Jones + has gone. We have had an immense display of energy since you left. He + has arrested not only friend Thaddeus, but the gatekeeper, the + housekeeper, and the Indian servant. We have the place to ourselves, + but for a sergeant up-stairs. Leave the dog here, and come up." + + We tied Toby to the hall table, and reascended the stairs. The room + was as we had left it, save that a sheet had been draped over the + central figure. A weary-looking police-sergeant reclined in the + corner. + + "Lend me your bull's-eye, sergeant," said my companion. "Now tie this + bit of card round my neck, so as to hang it in front of me. Thank + you. Now I must kick off my boots and stockings.--Just you carry them + down with you, Watson. I am going to do a little climbing. And dip my + handkerchief into the creasote. That will do. Now come up into the + garret with me for a moment." + + We clambered up through the hole. Holmes turned his light once more + upon the footsteps in the dust. + + "I wish you particularly to notice these footmarks," he said. "Do you + observe anything noteworthy about them?" + + "They belong," I said, "to a child or a small woman." + + "Apart from their size, though. Is there nothing else?" + + "They appear to be much as other footmarks." + + "Not at all. Look here! This is the print of a right foot in the + dust. Now I make one with my naked foot beside it. What is the chief + difference?" + + "Your toes are all cramped together. The other print has each toe + distinctly divided." + + "Quite so. That is the point. Bear that in mind. Now, would you + kindly step over to that flap-window and smell the edge of the + wood-work? I shall stay here, as I have this handkerchief in my + hand." + + I did as he directed, and was instantly conscious of a strong tarry + smell. + + "That is where he put his foot in getting out. If you can trace him, + I should think that Toby will have no difficulty. Now run + down-stairs, loose the dog, and look out for Blondin." + + By the time that I got out into the grounds Sherlock Holmes was on + the roof, and I could see him like an enormous glow-worm crawling + very slowly along the ridge. I lost sight of him behind a stack of + chimneys, but he presently reappeared, and then vanished once more + upon the opposite side. When I made my way round there I found him + seated at one of the corner eaves. + + "That You, Watson?" he cried. + + "Yes." + + "This is the place. What is that black thing down there?" + + "A water-barrel." + + "Top on it?" + + "Yes." + + "No sign of a ladder?" + + "No." + + "Confound the fellow! It's a most break-neck place. I ought to be + able to come down where he could climb up. The water-pipe feels + pretty firm. Here goes, anyhow." + + There was a scuffling of feet, and the lantern began to come steadily + down the side of the wall. Then with a light spring he came on to the + barrel, and from there to the earth. + + "It was easy to follow him," he said, drawing on his stockings and + boots. "Tiles were loosened the whole way along, and in his hurry he + had dropped this. It confirms my diagnosis, as you doctors express + it." + + The object which he held up to me was a small pocket or pouch woven + out of colored grasses and with a few tawdry beads strung round it. + In shape and size it was not unlike a cigarette-case. Inside were + half a dozen spines of dark wood, sharp at one end and rounded at the + other, like that which had struck Bartholomew Sholto. + + "They are hellish things," said he. "Look out that you don't prick + yourself. I'm delighted to have them, for the chances are that they + are all he has. There is the less fear of you or me finding one in + our skin before long. I would sooner face a Martini bullet, myself. + Are you game for a six-mile trudge, Watson?" + + "Certainly," I answered. + + "Your leg will stand it?" + + "Oh, yes." + + "Here you are, doggy! Good old Toby! Smell it, Toby, smell it!" He + pushed the creasote handkerchief under the dog's nose, while the + creature stood with its fluffy legs separated, and with a most + comical cock to its head, like a connoisseur sniffing the bouquet of + a famous vintage. Holmes then threw the handkerchief to a distance, + fastened a stout cord to the mongrel's collar, and let him to the + foot of the water-barrel. The creature instantly broke into a + succession of high, tremulous yelps, and, with his nose on the + ground, and his tail in the air, pattered off upon the trail at a + pace which strained his leash and kept us at the top of our speed. + + The east had been gradually whitening, and we could now see some + distance in the cold gray light. The square, massive house, with its + black, empty windows and high, bare walls, towered up, sad and + forlorn, behind us. Our course let right across the grounds, in and + out among the trenches and pits with which they were scarred and + intersected. The whole place, with its scattered dirt-heaps and + ill-grown shrubs, had a blighted, ill-omened look which harmonized + with the black tragedy which hung over it. + + On reaching the boundary wall Toby ran along, whining eagerly, + underneath its shadow, and stopped finally in a corner screened by a + young beech. Where the two walls joined, several bricks had been + loosened, and the crevices left were worn down and rounded upon the + lower side, as though they had frequently been used as a ladder. + Holmes clambered up, and, taking the dog from me, he dropped it over + upon the other side. + + "There's the print of wooden-leg's hand," he remarked, as I mounted + up beside him. "You see the slight smudge of blood upon the white + plaster. What a lucky thing it is that we have had no very heavy rain + since yesterday! The scent will lie upon the road in spite of their + eight-and-twenty hours' start." + + I confess that I had my doubts myself when I reflected upon the great + traffic which had passed along the London road in the interval. My + fears were soon appeased, however. Toby never hesitated or swerved, + but waddled on in his peculiar rolling fashion. Clearly, the pungent + smell of the creasote rose high above all other contending scents. + + "Do not imagine," said Holmes, "that I depend for my success in this + case upon the mere chance of one of these fellows having put his foot + in the chemical. I have knowledge now which would enable me to trace + them in many different ways. This, however, is the readiest and, + since fortune has put it into our hands, I should be culpable if I + neglected it. It has, however, prevented the case from becoming the + pretty little intellectual problem which it at one time promised to + be. There might have been some credit to be gained out of it, but for + this too palpable clue." + + "There is credit, and to spare," said I. "I assure you, Holmes, that + I marvel at the means by which you obtain your results in this case, + even more than I did in the Jefferson Hope Murder. The thing seems to + me to be deeper and more inexplicable. How, for example, could you + describe with such confidence the wooden-legged man?" + + "Pshaw, my dear boy! it was simplicity itself. I don't wish to be + theatrical. It is all patent and above-board. Two officers who are in + command of a convict-guard learn an important secret as to buried + treasure. A map is drawn for them by an Englishman named Jonathan + Small. You remember that we saw the name upon the chart in Captain + Morstan's possession. He had signed it in behalf of himself and his + associates,--the sign of the four, as he somewhat dramatically called + it. Aided by this chart, the officers--or one of them--gets the + treasure and brings it to England, leaving, we will suppose, some + condition under which he received it unfulfilled. Now, then, why did + not Jonathan Small get the treasure himself? The answer is obvious. + The chart is dated at a time when Morstan was brought into close + association with convicts. Jonathan Small did not get the treasure + because he and his associates were themselves convicts and could not + get away." + + "But that is mere speculation," said I. + + "It is more than that. It is the only hypothesis which covers the + facts. Let us see how it fits in with the sequel. Major Sholto + remains at peace for some years, happy in the possession of his + treasure. Then he receives a letter from India which gives him a + great fright. What was that?" + + "A letter to say that the men whom he had wronged had been set free." + + "Or had escaped. That is much more likely, for he would have known + what their term of imprisonment was. It would not have been a + surprise to him. What does he do then? He guards himself against a + wooden-legged man,--a white man, mark you, for he mistakes a white + tradesman for him, and actually fires a pistol at him. Now, only one + white man's name is on the chart. The others are Hindoos or + Mohammedans. There is no other white man. Therefore we may say with + confidence that the wooden-legged man is identical with Jonathan + Small. Does the reasoning strike yo as being faulty?" + + "No: it is clear and concise." + + "Well, now, let us put ourselves in the place of Jonathan Small. Let + us look at it from his point of view. He comes to England with the + double idea of regaining what he would consider to be his rights and + of having his revenge upon the man who had wronged him. He found out + where Sholto lived, and very possibly he established communications + with some one inside the house. There is this butler, Lal Rao, whom + we have not seen. Mrs. Bernstone gives him far from a good character. + Small could not find out, however, where the treasure was hid, for no + one ever knew, save the major and one faithful servant who had died. + Suddenly Small learns that the major is on his death-bed. In a frenzy + lest the secret of the treasure die with him, he runs the gauntlet of + the guards, makes his way to the dying man's window, and is only + deterred from entering by the presence of his two sons. Mad with + hate, however, against the dead man, he enters the room that night, + searches his private papers in the hope of discovering some + memorandum relating to the treasure, and finally leaves a memento of + his visit in the short inscription upon the card. He had doubtless + planned beforehand that should he slay the major he would leave some + such record upon the body as a sign that it was not a common murder, + but, from the point of view of the four associates, something in the + nature of an act of justice. Whimsical and bizarre conceits of this + kind are common enough in the annals of crime, and usually afford + valuable indications as to the criminal. Do you follow all this?" + + "Very clearly." + + "Now, what could Jonathan Small do? He could only continue to keep a + secret watch upon the efforts made to find the treasure. Possibly he + leaves England and only comes back at intervals. Then comes the + discovery of the garret, and he is instantly informed of it. We again + trace the presence of some confederate in the household. Jonathan, + with his wooden leg, is utterly unable to reach the lofty room of + Bartholomew Sholto. He takes with him, however, a rather curious + associate, who gets over this difficulty, but dips his naked foot + into creasote, whence come Toby, and a six-mile limp for a half-pay + officer with a damaged tendo Achillis." + + "But it was the associate, and not Jonathan, who committed the + crime." + + "Quite so. And rather to Jonathan's disgust, to judge by the way the + stamped about when he got into the room. He bore no grudge against + Bartholomew Sholto, and would have preferred if he could have been + simply bound and gagged. He did not wish to put his head in a halter. + There was no help for it, however: the savage instincts of his + companion had broken out, and the poison had done its work: so + Jonathan Small left his record, lowered the treasure-box to the + ground, and followed it himself. That was the train of events as far + as I can decipher them. Of course as to his personal appearance he + must be middle-aged, and must be sunburned after serving his time in + such an oven as the Andamans. His height is readily calculated from + the length of his stride, and we know that he was bearded. His + hairiness was the one point which impressed itself upon Thaddeus + Sholto when he saw him at the window. I don't know that there is + anything else." + + "The associate?" + + "Ah, well, there is no great mystery in that. But you will know all + about it soon enough. How sweet the morning air is! See how that one + little cloud floats like a pink feather from some gigantic flamingo. + Now the red rim of the sun pushes itself over the London cloud-bank. + It shines on a good many folk, but on none, I dare bet, who are on a + stranger errand than you and I. How small we feel with our petty + ambitions and strivings in the presence of the great elemental forces + of nature! Are you well up in your Jean Paul?" + + "Fairly so. I worked back to him through Carlyle." + + "That was like following the brook to the parent lake. He makes one + curious but profound remark. It is that the chief proof of man's real + greatness lies in his perception of his own smallness. It argues, you + see, a power of comparison and of appreciation which is in itself a + proof of nobility. There is much food for thought in Richter. You + have not a pistol, have you?" + + "I have my stick." + + "It is just possible that we may need something of the sort if we get + to their lair. Jonathan I shall leave to you, but if the other turns + nasty I shall shoot him dead." He took out his revolver as he spoke, + and, having loaded two of the chambers, he put it back into the + right-hand pocket of his jacket. + + We had during this time been following the guidance of Toby down the + half-rural villa-lined roads which lead to the metropolis. Now, + however, we were beginning to come among continuous streets, where + laborers and dockmen were already astir, and slatternly women were + taking down shutters and brushing door-steps. At the square-topped + corner public houses business was just beginning, and rough-looking + men were emerging, rubbing their sleeves across their beards after + their morning wet. Strange dogs sauntered up and stared wonderingly + at us as we passed, but our inimitable Toby looked neither to the + right nor to the left, but trotted onwards with his nose to the + ground and an occasional eager whine which spoke of a hot scent. + + We had traversed Streatham, Brixton, Camberwell, and now found + ourselves in Kennington Lane, having borne away through the + side-streets to the east of the Oval. The men whom we pursued seemed + to have taken a curiously zigzag road, with the idea probably of + escaping observation. They had never kept to the main road if a + parallel side-street would serve their turn. At the foot of + Kennington Lane they had edged away to the left through Bond Street + and Miles Street. Where the latter street turns into Knight's Place, + Toby ceased to advance, but began to run backwards and forwards with + one ear cocked and the other drooping, the very picture of canine + indecision. Then he waddled round in circles, looking up to us from + time to time, as if to ask for sympathy in his embarrassment. + + "What the deuce is the matter with the dog?" growled Holmes. "They + surely would not take a cab, or go off in a balloon." + + "Perhaps they stood here for some time," I suggested. + + "Ah! it's all right. He's off again," said my companion, in a tone of + relief. + + He was indeed off, for after sniffing round again he suddenly made up + his mind, and darted away with an energy and determination such as he + had not yet shown. The scent appeared to be much hotter than before, + for he had not even to put his nose on the ground, but tugged at his + leash and tried to break into a run. I cold see by the gleam in + Holmes's eyes that he thought we were nearing the end of our journey. + + Our course now ran down Nine Elms until we came to Broderick and + Nelson's large timber-yard, just past the White Eagle tavern. Here + the dog, frantic with excitement, turned down through the side-gate + into the enclosure, where the sawyers were already at work. On the + dog raced through sawdust and shavings, down an alley, round a + passage, between two wood-piles, and finally, with a triumphant yelp, + sprang upon a large barrel which still stood upon the hand-trolley on + which it had been brought. With lolling tongue and blinking eyes, + Toby stood upon the cask, looking from one to the other of us for + some sign of appreciation. The staves of the barrel and the wheels of + the trolley were smeared with a dark liquid, and the whole air was + heavy with the smell of creasote. + + Sherlock Holmes and I looked blankly at each other, and then burst + simultaneously into an uncontrollable fit of laughter. + + + + + + CHAPTER VIII + The Baker Street Irregulars + + + "What now?" I asked. "Toby has lost his character for infallibility." + + "He acted according to his lights," said Holmes, lifting him down + from the barrel and walking him out of the timber-yard. "If you + consider how much creasote is carted about London in one day, it is + no great wonder that our trail should have been crossed. It is much + used now, especially for the seasoning of wood. Poor Toby is not to + blame." + + "We must get on the main scent again, I suppose." + + "Yes. And, fortunately, we have no distance to go. Evidently what + puzzled the dog at the corner of Knight's Place was that there were + two different trails running in opposite directions. We took the + wrong one. It only remains to follow the other." + + There was no difficulty about this. On leading Toby to the place + where he had committed his fault, he cast about in a wide circle and + finally dashed off in a fresh direction. + + "We must take care that he does not now bring us to the place where + the creasote-barrel came from," I observed. + + "I had thought of that. But you notice that he keeps on the pavement, + whereas the barrel passed down the roadway. No, we are on the true + scent now." + + It tended down towards the river-side, running through Belmont Place + and Prince's Street. At the end of Broad Street it ran right down to + the water's edge, where there was a small wooden wharf. Toby led us + to the very edge of this, and there stood whining, looking out on the + dark current beyond. + + "We are out of luck," said Holmes. "They have taken to a boat here." + Several small punts and skiffs were lying about in the water and on + the edge of the wharf. We took Toby round to each in turn, but, + though he sniffed earnestly, he made no sign. + + Close to the rude landing-stage was a small brick house, with a + wooden placard slung out through the second window. "Mordecai Smith" + was printed across it in large letters, and, underneath, "Boats to + hire by the hour or day." A second inscription above the door + informed us that a steam launch was kept,--a statement which was + confirmed by a great pile of coke upon the jetty. Sherlock Holmes + looked slowly round, and his face assumed an ominous expression. + + "This looks bad," said he. "These fellows are sharper than I + expected. They seem to have covered their tracks. There has, I fear, + been preconcerted management here." + + He was approaching the door of the house, when it opened, and a + little, curly-headed lad of six came running out, followed by a + stoutish, red-faced woman with a large sponge in her hand. + + "You come back and be washed, Jack," she shouted. "Come back, you + young imp; for if your father comes home and finds you like that, + he'll let us hear of it." + + "Dear little chap!" said Holmes, strategically. "What a rosy-cheeked + young rascal! Now, Jack, is there anything you would like?" + + The youth pondered for a moment. "I'd like a shillin'," said he. + + "Nothing you would like better?" + + "I'd like two shillin' better," the prodigy answered, after some + thought. + + "Here you are, then! Catch!--A fine child, Mrs. Smith!" + + "Lor' bless you, sir, he is that, and forward. He gets a'most too + much for me to manage, 'specially when my man is away days at a + time." + + "Away, is he?" said Holmes, in a disappointed voice. "I am sorry for + that, for I wanted to speak to Mr. Smith." + + "He's been away since yesterday mornin', sir, and, truth to tell, I + am beginnin' to feel frightened about him. But if it was about a + boat, sir, maybe I could serve as well." + + "I wanted to hire his steam launch." + + "Why, bless you, sir, it is in the steam launch that he has gone. + That's what puzzles me; for I know there ain't more coals in her than + would take her to about Woolwich and back. If he'd been away in the + barge I'd ha' thought nothin'; for many a time a job has taken him as + far as Gravesend, and then if there was much doin' there he might ha' + stayed over. But what good is a steam launch without coals?" + + "He might have bought some at a wharf down the river." + + "He might, sir, but it weren't his way. Many a time I've heard him + call out at the prices they charge for a few odd bags. Besides, I + don't like that wooden-legged man, wi' his ugly face and outlandish + talk. What did he want always knockin' about here for?" + + "A wooden-legged man?" said Holmes, with bland surprise. + + "Yes, sir, a brown, monkey-faced chap that's called more'n once for + my old man. It was him that roused him up yesternight, and, what's + more, my man knew he was comin', for he had steam up in the launch. I + tell you straight, sir, I don't feel easy in my mind about it." + + "But, my dear Mrs. Smith," said Holmes, shrugging his shoulders, "You + are frightening yourself about nothing. How could you possibly tell + that it was the wooden-legged man who came in the night? I don't + quite understand how you can be so sure." + + "His voice, sir. I knew his voice, which is kind o' thick and foggy. + He tapped at the winder,--about three it would be. 'Show a leg, + matey,' says he: 'time to turn out guard.' My old man woke up + Jim,--that's my eldest,--and away they went, without so much as a + word to me. I could hear the wooden leg clackin' on the stones." + + "And was this wooden-legged man alone?" + + "Couldn't say, I am sure, sir. I didn't hear no one else." + + "I am sorry, Mrs. Smith, for I wanted a steam launch, and I have + heard good reports of the--Let me see, what is her name?" + + "The Aurora, sir." + + "Ah! She's not that old green launch with a yellow line, very broad + in the beam?" + + "No, indeed. She's as trim a little thing as any on the river. She's + been fresh painted, black with two red streaks." + + "Thanks. I hope that you will hear soon from Mr. Smith. I am going + down the river; and if I should see anything of the Aurora I shall + let him know that you are uneasy. A black funnel, you say?" + + "No, sir. Black with a white band." + + "Ah, of course. It was the sides which were black. Good-morning, Mrs. + Smith.--There is a boatman here with a wherry, Watson. We shall take + it and cross the river. + + "The main thing with people of that sort," said Holmes, as we sat in + the sheets of the wherry, "is never to let them think that their + information can be of the slightest importance to you. If you do, + they will instantly shut up like an oyster. If you listen to them + under protest, as it were, you are very likely to get what you want." + + "Our course now seems pretty clear," said I. + + "What would you do, then?" + + "I would engage a launch and go down the river on the track of the + Aurora." + + "My dear fellow, it would be a colossal task. She may have touched at + any wharf on either side of the stream between here and Greenwich. + Below the bridge there is a perfect labyrinth of landing-places for + miles. It would take you days and days to exhaust them, if you set + about it alone." + + "Employ the police, then." + + "No. I shall probably call Athelney Jones in at the last moment. He + is not a bad fellow, and I should not like to do anything which would + injure him professionally. But I have a fancy for working it out + myself, now that we have gone so far." + + "Could we advertise, then, asking for information from wharfingers?" + + "Worse and worse! Our men would know that the chase was hot at their + heels, and they would be off out of the country. As it is, they are + likely enough to leave, but as long as they think they are perfectly + safe they will be in no hurry. Jones's energy will be of use to us + there, for his view of the case is sure to push itself into the daily + press, and the runaways will think that every one is off on the wrong + scent." + + "What are we to do, then?" I asked, as we landed near Millbank + Penitentiary. + + "Take this hansom, drive home, have some breakfast, and get an hour's + sleep. It is quite on the cards that we may be afoot to-night again. + Stop at a telegraph-office, cabby! We will keep Toby, for he may be + of use to us yet." + + We pulled up at the Great Peter Street post-office, and Holmes + despatched his wire. "Whom do you think that is to?" he asked, as we + resumed our journey. + + "I am sure I don't know." + + "You remember the Baker Street division of the detective police force + whom I employed in the Jefferson Hope case?" + + "Well," said I, laughing. + + "This is just the case where they might be invaluable. If they fail, + I have other resources; but I shall try them first. That wire was to + my dirty little lieutenant, Wiggins, and I expect that he and his + gang will be with us before we have finished our breakfast." + + It was between eight and nine o'clock now, and I was conscious of a + strong reaction after the successive excitements of the night. I was + limp and weary, befogged in mind and fatigued in body. I had not the + professional enthusiasm which carried my companion on, nor could I + look at the matter as a mere abstract intellectual problem. As far as + the death of Bartholomew Sholto went, I had heard little good of him, + and could feel no intense antipathy to his murderers. The treasure, + however, was a different matter. That, or part of it, belonged + rightfully to Miss Morstan. While there was a chance of recovering it + I was ready to devote my life to the one object. True, if I found it + it would probably put her forever beyond my reach. Yet it would be a + petty and selfish love which would be influenced by such a thought as + that. If Holmes could work to find the criminals, I had a tenfold + stronger reason to urge me on to find the treasure. + + A bath at Baker Street and a complete change freshened me up + wonderfully. When I came down to our room I found the breakfast laid + and Holmes pouring out the coffee. + + "Here it is," said he, laughing, and pointing to an open newspaper. + "The energetic Jones and the ubiquitous reporter have fixed it up + between them. But you have had enough of the case. Better have your + ham and eggs first." + + I took the paper from him and read the short notice, which was headed + "Mysterious Business at Upper Norwood." + + "About twelve o'clock last night," said the Standard, "Mr. + Bartholomew Sholto, of Pondicherry Lodge, Upper Norwood, was found + dead in his room under circumstances which point to foul play. As far + as we can learn, no actual traces of violence were found upon Mr. + Sholto's person, but a valuable collection of Indian gems which the + deceased gentleman had inherited from his father has been carried + off. The discovery was first made by Mr. Sherlock Holmes and Dr. + Watson, who had called at the house with Mr. Thaddeus Sholto, brother + of the deceased. By a singular piece of good fortune, Mr. Athelney + Jones, the well-known member of the detective police force, happened + to be at the Norwood Police Station, and was on the ground within + half an hour of the first alarm. His trained and experienced + faculties were at once directed towards the detection of the + criminals, with the gratifying result that the brother, Thaddeus + Sholto, has already been arrested, together with the housekeeper, + Mrs. Bernstone, an Indian butler named Lal Rao, and a porter, or + gatekeeper, named McMurdo. It is quite certain that the thief or + thieves were well acquainted with the house, for Mr. Jones's + well-known technical knowledge and his powers of minute observation + have enabled him to prove conclusively that the miscreants could not + have entered by the door or by the window, but must have made their + way across the roof of the building, and so through a trap-door into + a room which communicated with that in which the body was found. This + fact, which has been very clearly made out, proves conclusively that + it was no mere haphazard burglary. The prompt and energetic action of + the officers of the law shows the great advantage of the presence on + such occasions of a single vigorous and masterful mind. We cannot but + think that it supplies an argument to those who would wish to see our + detectives more decentralized, and so brought into closer and more + effective touch with the cases which it is their duty to + investigate." + + "Isn't it gorgeous!" said Holmes, grinning over his coffee-cup. "What + do you think of it?" + + "I think that we have had a close shave ourselves of being arrested + for the crime." + + "So do I. I wouldn't answer for our safety now, if he should happen + to have another of his attacks of energy." + + At this moment there was a loud ring at the bell, and I could hear + Mrs. Hudson, our landlady, raising her voice in a wail of + expostulation and dismay. + + "By heaven, Holmes," I said, half rising, "I believe that they are + really after us." + + "No, it's not quite so bad as that. It is the unofficial force,--the + Baker Street irregulars." + + As he spoke, there came a swift pattering of naked feet upon the + stairs, a clatter of high voices, and in rushed a dozen dirty and + ragged little street-Arabs. There was some show of discipline among + them, despite their tumultuous entry, for they instantly drew up in + line and stood facing us with expectant faces. One of their number, + taller and older than the others, stood forward with an air of + lounging superiority which was very funny in such a disreputable + little carecrow. + + "Got your message, sir," said he, "and brought 'em on sharp. Three + bob and a tanner for tickets." + + "Here you are," said Holmes, producing some silver. "In future they + can report to you, Wiggins, and you to me. I cannot have the house + invaded in this way. However, it is just as well that you should all + hear the instructions. I want to find the whereabouts of a steam + launch called the Aurora, owner Mordecai Smith, black with two red + streaks, funnel black with a white band. She is down the river + somewhere. I want one boy to be at Mordecai Smith's landing-stage + opposite Millbank to say if the boat comes back. You must divide it + out among yourselves, and do both banks thoroughly. Let me know the + moment you have news. Is that all clear?" + + "Yes, guv'nor," said Wiggins. + + "The old scale of pay, and a guinea to the boy who finds the boat. + Here's a day in advance. Now off you go!" He handed them a shilling + each, and away they buzzed down the stairs, and I saw them a moment + later streaming down the street. + + "If the launch is above water they will find her," said Holmes, as he + rose from the table and lit his pipe. "They can go everywhere, see + everything, overhear every one. I expect to hear before evening that + they have spotted her. In the mean while, we can do nothing but await + results. We cannot pick up the broken trail until we find either the + Aurora or Mr. Mordecai Smith." + + "Toby could eat these scraps, I dare say. Are you going to bed, + Holmes?" + + "No: I am not tired. I have a curious constitution. I never remember + feeling tired by work, though idleness exhausts me completely. I am + going to smoke and to think over this queer business to which my fair + client has introduced us. If ever man had an easy task, this of ours + ought to be. Wooden-legged men are not so common, but the other man + must, I should think, be absolutely unique." + + "That other man again!" + + "I have no wish to make a mystery of him,--to you, anyway. But you + must have formed your own opinion. Now, do consider the data. + Diminutive footmarks, toes never fettered by boots, naked feet, + stone-headed wooden mace, great agility, small poisoned darts. What + do you make of all this?" + + "A savage!" I exclaimed. "Perhaps one of those Indians who were the + associates of Jonathan Small." + + "Hardly that," said he. "When first I saw signs of strange weapons I + was inclined to think so; but the remarkable character of the + footmarks caused me to reconsider my views. Some of the inhabitants + of the Indian Peninsula are small men, but none could have left such + marks as that. The Hindoo proper has long and thin feet. The + sandal-wearing Mohammedan has the great toe well separated from the + others, because the thong is commonly passed between. These little + darts, too, could only be shot in one way. They are from a blow-pipe. + Now, then, where are we to find our savage?" + + "South American," I hazarded. + + He stretched his hand up, and took down a bulky volume from the + shelf. "This is the first volume of a gazetteer which is now being + published. It may be looked upon as the very latest authority. What + have we here? 'Andaman Islands, situated 340 miles to the north of + Sumatra, in the Bay of Bengal.' Hum! hum! What's all this? Moist + climate, coral reefs, sharks, Port Blair, convict-barracks, Rutland + Island, cottonwoods--Ah, here we are. 'The aborigines of the Andaman + Islands may perhaps claim the distinction of being the smallest race + upon this earth, though some anthropologists prefer the Bushmen of + Africa, the Digger Indians of America, and the Terra del Fuegians. + The average height is rather below four feet, although many + full-grown adults may be found who are very much smaller than this. + They are a fierce, morose, and intractable people, though capable of + forming most devoted friendships when their confidence has once been + gained.' Mark that, Watson. Now, then, listen to this. 'They are + naturally hideous, having large, misshapen heads, small, fierce eyes, + and distorted features. Their feet and hands, however, are remarkably + small. So intractable and fierce are they that all the efforts of the + British official have failed to win them over in any degree. They + have always been a terror to shipwrecked crews, braining the + survivors with their stone-headed clubs, or shooting them with their + poisoned arrows. These massacres are invariably concluded by a + cannibal feast.' Nice, amiable people, Watson! If this fellow had + been left to his own unaided devices this affair might have taken an + even more ghastly turn. I fancy that, even as it is, Jonathan Small + would give a good deal not to have employed him." + + "But how came he to have so singular a companion?" + + "Ah, that is more than I can tell. Since, however, we had already + determined that Small had come from the Andamans, it is not so very + wonderful that this islander should be with him. No doubt we shall + know all about it in time. Look here, Watson; you look regularly + done. Lie down there on the sofa, and see if I can put you to sleep." + + He took up his violin from the corner, and as I stretched myself out + he began to play some low, dreamy, melodious air,--his own, no doubt, + for he had a remarkable gift for improvisation. I have a vague + remembrance of his gaunt limbs, his earnest face, and the rise and + fall of his bow. Then I seemed to be floated peacefully away upon a + soft sea of sound, until I found myself in dream-land, with the sweet + face of Mary Morstan looking down upon me. + + + + + + CHAPTER IX + A Break in the Chain + + + It was late in the afternoon before I woke, strengthened and + refreshed. Sherlock Holmes still sat exactly as I had left him, save + that he had laid aside his violin and was deep in a book. He looked + across at me, as I stirred, and I noticed that his face was dark and + troubled. + + "You have slept soundly," he said. "I feared that our talk would wake + you." + + "I heard nothing," I answered. "Have you had fresh news, then?" + + "Unfortunately, no. I confess that I am surprised and disappointed. I + expected something definite by this time. Wiggins has just been up + to report. He says that no trace can be found of the launch. It is a + provoking check, for every hour is of importance." + + "Can I do anything? I am perfectly fresh now, and quite ready for + another night's outing." + + "No, we can do nothing. We can only wait. If we go ourselves, the + message might come in our absence, and delay be caused. You can do + what you will, but I must remain on guard." + + "Then I shall run over to Camberwell and call upon Mrs. Cecil + Forrester. She asked me to, yesterday." + + "On Mrs. Cecil Forrester?" asked Holmes, with the twinkle of a smile + in his eyes. + + "Well, of course Miss Morstan too. They were anxious to hear what + happened." + + "I would not tell them too much," said Holmes. "Women are never to be + entirely trusted,--not the best of them." + + I did not pause to argue over this atrocious sentiment. "I shall be + back in an hour or two," I remarked. + + "All right! Good luck! But, I say, if you are crossing the river you + may as well return Toby, for I don't think it is at all likely that + we shall have any use for him now." + + I took our mongrel accordingly, and left him, together with a + half-sovereign, at the old naturalist's in Pinchin Lane. At + Camberwell I found Miss Morstan a little weary after her night's + adventures, but very eager to hear the news. Mrs. Forrester, too, was + full of curiosity. I told them all that we had done, suppressing, + however, the more dreadful parts of the tragedy. Thus, although I + spoke of Mr. Sholto's death, I said nothing of the exact manner and + method of it. With all my omissions, however, there was enough to + startle and amaze them. + + "It is a romance!" cried Mrs. Forrester. "An injured lady, half a + million in treasure, a black cannibal, and a wooden-legged ruffian. + They take the place of the conventional dragon or wicked earl." + + "And two knight-errants to the rescue," added Miss Morstan, with a + bright glance at me. + + "Why, Mary, your fortune depends upon the issue of this search. I + don't think that you are nearly excited enough. Just imagine what it + must be to be so rich, and to have the world at your feet!" + + It sent a little thrill of joy to my heart to notice that she showed + no sign of elation at the prospect. On the contrary, she gave a toss + of her proud head, as though the matter were one in which she took + small interest. + + "It is for Mr. Thaddeus Sholto that I am anxious," she said. "Nothing + else is of any consequence; but I think that he has behaved most + kindly and honorably throughout. It is our duty to clear him of this + dreadful and unfounded charge." + + It was evening before I left Camberwell, and quite dark by the time I + reached home. My companion's book and pipe lay by his chair, but he + had disappeared. I looked about in the hope of seeing a note, but + there was none. + + "I suppose that Mr. Sherlock Holmes has gone out," I said to Mrs. + Hudson as she came up to lower the blinds. + + "No, sir. He has gone to his room, sir. Do you know, sir," sinking + her voice into an impressive whisper, "I am afraid for his health?" + + "Why so, Mrs. Hudson?" + + "Well, he's that strange, sir. After you was gone he walked and he + walked, up and down, and up and down, until I was weary of the sound + of his footstep. Then I heard him talking to himself and muttering, + and every time the bell rang out he came on the stairhead, with 'What + is that, Mrs. Hudson?' And now he has slammed off to his room, but I + can hear him walking away the same as ever. I hope he's not going to + be ill, sir. I ventured to say something to him about cooling + medicine, but he turned on me, sir, with such a look that I don't + know how ever I got out of the room." + + "I don't think that you have any cause to be uneasy, Mrs. Hudson," I + answered. "I have seen him like this before. He has some small matter + upon his mind which makes him restless." I tried to speak lightly to + our worthy landlady, but I was myself somewhat uneasy when through + the long night I still from time to time heard the dull sound of his + tread, and knew how his keen spirit was chafing against this + involuntary inaction. + + At breakfast-time he looked worn and haggard, with a little fleck of + feverish color upon either cheek. + + "You are knocking yourself up, old man," I remarked. "I heard you + marching about in the night." + + "No, I could not sleep," he answered. "This infernal problem is + consuming me. It is too much to be balked by so petty an obstacle, + when all else had been overcome. I know the men, the launch, + everything; and yet I can get no news. I have set other agencies at + work, and used every means at my disposal. The whole river has been + searched on either side, but there is no news, nor has Mrs. Smith + heard of her husband. I shall come to the conclusion soon that they + have scuttled the craft. But there are objections to that." + + "Or that Mrs. Smith has put us on a wrong scent." + + "No, I think that may be dismissed. I had inquiries made, and there + is a launch of that description." + + "Could it have gone up the river?" + + "I have considered that possibility too, and there is a search-party + who will work up as far as Richmond. If no news comes to-day, I shall + start off myself to-morrow, and go for the men rather than the boat. + But surely, surely, we shall hear something." + + We did not, however. Not a word came to us either from Wiggins or + from the other agencies. There were articles in most of the papers + upon the Norwood tragedy. They all appeared to be rather hostile to + the unfortunate Thaddeus Sholto. No fresh details were to be found, + however, in any of them, save that an inquest was to be held upon the + following day. I walked over to Camberwell in the evening to report + our ill success to the ladies, and on my return I found Holmes + dejected and somewhat morose. He would hardly reply to my questions, + and busied himself all evening in an abstruse chemical analysis which + involved much heating of retorts and distilling of vapors, ending at + last in a smell which fairly drove me out of the apartment. Up to the + small hours of the morning I could hear the clinking of his + test-tubes which told me that he was still engaged in his malodorous + experiment. + + In the early dawn I woke with a start, and was surprised to find him + standing by my bedside, clad in a rude sailor dress with a + pea-jacket, and a coarse red scarf round his neck. + + "I am off down the river, Watson," said he. "I have been turning it + over in my mind, and I can see only one way out of it. It is worth + trying, at all events." + + "Surely I can come with you, then?" said I. + + "No; you can be much more useful if you will remain here as my + representative. I am loath to go, for it is quite on the cards that + some message may come during the day, though Wiggins was despondent + about it last night. I want you to open all notes and telegrams, and + to act on your own judgment if any news should come. Can I rely upon + you?" + + "Most certainly." + + "I am afraid that you will not be able to wire to me, for I can + hardly tell yet where I may find myself. If I am in luck, however, I + may not be gone so very long. I shall have news of some sort or other + before I get back." + + I had heard nothing of him by breakfast-time. On opening the + Standard, however, I found that there was a fresh allusion to the + business. + + "With reference to the Upper Norwood tragedy," it remarked, "we have + reason to believe that the matter promises to be even more complex + and mysterious than was originally supposed. Fresh evidence has shown + that it is quite impossible that Mr. Thaddeus Sholto could have been + in any way concerned in the matter. He and the housekeeper, Mrs. + Bernstone, were both released yesterday evening. It is believed, + however, that the police have a clue as to the real culprits, and + that it is being prosecuted by Mr. Athelney Jones, of Scotland Yard, + with all his well-known energy and sagacity. Further arrests may be + expected at any moment." + + "That is satisfactory so far as it goes," thought I. "Friend Sholto + is safe, at any rate. I wonder what the fresh clue may be; though it + seems to be a stereotyped form whenever the police have made a + blunder." + + I tossed the paper down upon the table, but at that moment my eye + caught an advertisement in the agony column. It ran in this way: + + "Lost.--Whereas Mordecai Smith, boatman, and his son, Jim, left + Smith's Wharf at or about three o'clock last Tuesday morning in the + steam launch Aurora, black with two red stripes, funnel black with a + white band, the sum of five pounds will be paid to any one who can + give information to Mrs. Smith, at Smith's Wharf, or at 221b Baker + Street, as to the whereabouts of the said Mordecai Smith and the + launch Aurora." + + This was clearly Holmes's doing. The Baker Street address was enough + to prove that. It struck me as rather ingenious, because it might be + read by the fugitives without their seeing in it more than the + natural anxiety of a wife for her missing husband. + + It was a long day. Every time that a knock came to the door, or a + sharp step passed in the street, I imagined that it was either Holmes + returning or an answer to his advertisement. I tried to read, but my + thoughts would wander off to our strange quest and to the + ill-assorted and villainous pair whom we were pursuing. Could there + be, I wondered, some radical flaw in my companion's reasoning. Might + he be suffering from some huge self-deception? Was it not possible + that his nimble and speculative mind had built up this wild theory + upon faulty premises? I had never known him to be wrong; and yet the + keenest reasoner may occasionally be deceived. He was likely, I + thought, to fall into error through the over-refinement of his + logic,--his preference for a subtle and bizarre explanation when a + plainer and more commonplace one lay ready to his hand. Yet, on the + other hand, I had myself seen the evidence, and I had heard the + reasons for his deductions. When I looked back on the long chain of + curious circumstances, many of them trivial in themselves, but all + tending in the same direction, I could not disguise from myself that + even if Holmes's explanation were incorrect the true theory must be + equally outré and startling. + + At three o'clock in the afternoon there was a loud peal at the bell, + an authoritative voice in the hall, and, to my surprise, no less a + person than Mr. Athelney Jones was shown up to me. Very different was + he, however, from the brusque and masterful professor of common sense + who had taken over the case so confidently at Upper Norwood. His + expression was downcast, and his bearing meek and even apologetic. + + "Good-day, sir; good-day," said he. "Mr. Sherlock Holmes is out, I + understand." + + "Yes, and I cannot be sure when he will be back. But perhaps you + would care to wait. Take that chair and try one of these cigars." + + "Thank you; I don't mind if I do," said he, mopping his face with a + red bandanna handkerchief. + + "And a whiskey-and-soda?" + + "Well, half a glass. It is very hot for the time of year; and I have + had a good deal to worry and try me. You know my theory about this + Norwood case?" + + "I remember that you expressed one." + + "Well, I have been obliged to reconsider it. I had my net drawn + tightly round Mr. Sholto, sir, when pop he went through a hole in the + middle of it. He was able to prove an alibi which could not be + shaken. From the time that he left his brother's room he was never + out of sight of some one or other. So it could not be he who climbed + over roofs and through trap-doors. It's a very dark case, and my + professional credit is at stake. I should be very glad of a little + assistance." + + "We all need help sometimes," said I. + + "Your friend Mr. Sherlock Holmes is a wonderful man, sir," said he, + in a husky and confidential voice. "He's a man who is not to be beat. + I have known that young man go into a good many cases, but I never + saw the case yet that he could not throw a light upon. He is + irregular in his methods, and a little quick perhaps in jumping at + theories, but, on the whole, I think he would have made a most + promising officer, and I don't care who knows it. I have had a wire + from him this morning, by which I understand that he has got some + clue to this Sholto business. Here is the message." + + He took the telegram out of his pocket, and handed it to me. It was + dated from Poplar at twelve o'clock. "Go to Baker Street at once," it + said. "If I have not returned, wait for me. I am close on the track + of the Sholto gang. You can come with us to-night if you want to be + in at the finish." + + "This sounds well. He has evidently picked up the scent again," said + I. + + "Ah, then he has been at fault too," exclaimed Jones, with evident + satisfaction. "Even the best of us are thrown off sometimes. Of + course this may prove to be a false alarm; but it is my duty as an + officer of the law to allow no chance to slip. But there is some one + at the door. Perhaps this is he." + + A heavy step was heard ascending the stair, with a great wheezing and + rattling as from a man who was sorely put to it for breath. Once or + twice he stopped, as though the climb were too much for him, but at + last he made his way to our door and entered. His appearance + corresponded to the sounds which we had heard. He was an aged man, + clad in seafaring garb, with an old pea-jacket buttoned up to his + throat. His back was bowed, his knees were shaky, and his breathing + was painfully asthmatic. As he leaned upon a thick oaken cudgel his + shoulders heaved in the effort to draw the air into his lungs. He had + a colored scarf round his chin, and I could see little of his face + save a pair of keen dark eyes, overhung by bushy white brows, and + long gray side-whiskers. Altogether he gave me the impression of a + respectable master mariner who had fallen into years and poverty. + + "What is it, my man?" I asked. + + He looked about him in the slow methodical fashion of old age. + + "Is Mr. Sherlock Holmes here?" said he. + + "No; but I am acting for him. You can tell me any message you have + for him." + + "It was to him himself I was to tell it," said he. + + "But I tell you that I am acting for him. Was it about Mordecai + Smith's boat?" + + "Yes. I knows well where it is. An' I knows where the men he is after + are. An' I knows where the treasure is. I knows all about it." + + "Then tell me, and I shall let him know." + + "It was to him I was to tell it," he repeated, with the petulant + obstinacy of a very old man. + + "Well, you must wait for him." + + "No, no; I ain't goin' to lose a whole day to please no one. If Mr. + Holmes ain't here, then Mr. Holmes must find it all out for himself. + I don't care about the look of either of you, and I won't tell a + word." + + He shuffled towards the door, but Athelney Jones got in front of him. + + "Wait a bit, my friend," said he. "You have important information, + and you must not walk off. We shall keep you, whether you like or + not, until our friend returns." + + The old man made a little run towards the door, but, as Athelney + Jones put his broad back up against it, he recognized the uselessness + of resistance. + + "Pretty sort o' treatment this!" he cried, stamping his stick. "I + come here to see a gentleman, and you two, who I never saw in my + life, seize me and treat me in this fashion!" + + "You will be none the worse," I said. "We shall recompense you for + the loss of your time. Sit over here on the sofa, and you will not + have long to wait." + + He came across sullenly enough, and seated himself with his face + resting on his hands. Jones and I resumed our cigars and our talk. + Suddenly, however, Holmes's voice broke in upon us. + + "I think that you might offer me a cigar too," he said. + + We both started in our chairs. There was Holmes sitting close to us + with an air of quiet amusement. + + "Holmes!" I exclaimed. "You here! But where is the old man?" + + "Here is the old man," said he, holding out a heap of white hair. + "Here he is,--wig, whiskers, eyebrows, and all. I thought my disguise + was pretty good, but I hardly expected that it would stand that + test." + + "Ah, you rogue!" cried Jones, highly delighted. "You would have made + an actor, and a rare one. You had the proper workhouse cough, and + those weak legs of yours are worth ten pound a week. I thought I knew + the glint of your eye, though. You didn't get away from us so easily, + you see." + + "I have been working in that get-up all day," said he, lighting his + cigar. "You see, a good many of the criminal classes begin to know + me,--especially since our friend here took to publishing some of my + cases: so I can only go on the war-path under some simple disguise + like this. You got my wire?" + + "Yes; that was what brought me here." + + "How has your case prospered?" + + "It has all come to nothing. I have had to release two of my + prisoners, and there is no evidence against the other two." + + "Never mind. We shall give you two others in the place of them. But + you must put yourself under my orders. You are welcome to all the + official credit, but you must act on the line that I point out. Is + that agreed?" + + "Entirely, if you will help me to the men." + + "Well, then, in the first place I shall want a fast police-boat--a + steam launch--to be at the Westminster Stairs at seven o'clock." + + "That is easily managed. There is always one about there; but I can + step across the road and telephone to make sure." + + "Then I shall want two stanch men, in case of resistance." + + "There will be two or three in the boat. What else?" + + "When we secure the men we shall get the treasure. I think that it + would be a pleasure to my friend here to take the box round to the + young lady to whom half of it rightfully belongs. Let her be the + first to open it.--Eh, Watson?" + + "It would be a great pleasure to me." + + "Rather an irregular proceeding," said Jones, shaking his head. + "However, the whole thing is irregular, and I suppose we must wink at + it. The treasure must afterwards be handed over to the authorities + until after the official investigation." + + "Certainly. That is easily managed. One other point. I should much + like to have a few details about this matter from the lips of + Jonathan Small himself. You know I like to work the detail of my + cases out. There is no objection to my having an unofficial interview + with him, either here in my rooms or elsewhere, as long as he is + efficiently guarded?" + + "Well, you are master of the situation. I have had no proof yet of + the existence of this Jonathan Small. However, if you can catch him I + don't see how I can refuse you an interview with him." + + "That is understood, then?" + + "Perfectly. Is there anything else?" + + "Only that I insist upon your dining with us. It will be ready in + half an hour. I have oysters and a brace of grouse, with something a + little choice in white wines.--Watson, you have never yet recognized + my merits as a housekeeper." + + + + + + CHAPTER X + The End of the Islander + + + Our meal was a merry one. Holmes coud talk exceedingly well when he + chose, and that night he did choose. He appeared to be in a state of + nervous exaltation. I have never known him so brilliant. He spoke on + a quick succession of subjects,--on miracle-plays, on medieval + pottery, on Stradivarius violins, on the Buddhism of Ceylon, and on + the war-ships of the future,--handling each as though he had made a + special study of it. His bright humor marked the reaction from his + black depression of the preceding days. Athelney Jones proved to be a + sociable soul in his hours of relaxation, and face his dinner with + the air of a bon vivant. For myself, I felt elated at the thought + that we were nearing the end of our task, and I caught something of + Holmes's gaiety. None of us alluded during dinner to the cause which + had brought us together. + + When the cloth was cleared, Holmes glanced at this watch, and filled + up three glasses with port. "One bumper," said he, "to the success of + our little expedition. And now it is high time we were off. Have you + a pistol, Watson?" + + "I have my old service-revolver in my desk." + + "You had best take it, then. It is well to be prepared. I see that + the cab is at the door. I ordered it for half-past six." + + It was a little past seven before we reached the Westminster wharf, + and found our launch awaiting us. Holmes eyed it critically. + + "Is there anything to mark it as a police-boat?" + + "Yes,--that green lamp at the side." + + "Then take it off." + + The small change was made, we stepped on board, and the ropes were + cast off. Jones, Holmes, and I sat in the stern. There was one man at + the rudder, one to tend the engines, and two burly police-inspectors + forward. + + "Where to?" asked Jones. + + "To the Tower. Tell them to stop opposite Jacobson's Yard." + + Our craft was evidently a very fast one. We shot past the long lines + of loaded barges as though they were stationary. Holmes smiled with + satisfaction as we overhauled a river steamer and left her behind us. + + "We ought to be able to catch anything on the river," he said. + + "Well, hardly that. But there are not many launches to beat us." + + "We shall have to catch the Aurora, and she has a name for being a + clipper. I will tell you how the land lies, Watson. You recollect how + annoyed I was at being balked by so small a thing?" + + "Yes." + + "Well, I gave my mind a thorough rest by plunging into a chemical + analysis. One of our greatest statesmen has said that a change of + work is the best rest. So it is. When I had succeeded in dissolving + the hydrocarbon which I was at work at, I came back to our problem of + the Sholtos, and thought the whole matter out again. My boys had been + up the river and down the river without result. The launch was not at + any landing-stage or wharf, nor had it returned. Yet it could hardly + have been scuttled to hide their traces,--though that always remained + as a possible hypothesis if all else failed. I knew this man Small + had a certain degree of low cunning, but I did not think him capable + of anything in the nature of delicate finesse. That is usually a + product of higher education. I then reflected that since he had + certainly been in London some time--as we had evidence that he + maintained a continual watch over Pondicherry Lodge--he could hardly + leave at a moment's notice, but would need some little time, if it + were only a day, to arrange his affairs. That was the balance of + probability, at any rate." + + "It seems to me to be a little weak," said I. "It is more probable + that he had arranged his affairs before ever he set out upon his + expedition." + + "No, I hardly think so. This lair of his would be too valuable a + retreat in case of need for him to give it up until he was sure that + he could do without it. But a second consideration struck me. + Jonathan Small must have felt that the peculiar appearance of his + companion, however much he may have top-coated him, would give rise + to gossip, and possibly be associated with this Norwood tragedy. He + was quite sharp enough to see that. They had started from their + head-quarters under cover of darkness, and he would wish to get back + before it was broad light. Now, it was past three o'clock, according + to Mrs. Smith, when they got the boat. It would be quite bright, and + people would be about in an hour or so. Therefore, I argued, they did + not go very far. They paid Smith well to hold his tongue, reserved + his launch for the final escape, and hurried to their lodgings with + the treasure-box. In a couple of nights, when they had time to see + what view the papers took, and whether there was any suspicion, they + would make their way under cover of darkness to some ship at + Gravesend or in the Downs, where no doubt they had already arranged + for passages to America or the Colonies." + + "But the launch? They could not have taken that to their lodgings." + + "Quite so. I argued that the launch must be no great way off, in + spite of its invisibility. I then put myself in the place of Small, + and looked at it as a man of his capacity would. He would probably + consider that to send back the launch or to keep it at a wharf would + make pursuit easy if the police did happen to get on his track. How, + then, could he conceal the launch and yet have her at hand when + wanted? I wondered what I should do myself if I were in his shoes. I + could only think of one way of doing it. I might land the launch over + to some boat-builder or repairer, with directions to make a trifling + change in her. She would then be removed to his shed or hard, and so + be effectually concealed, while at the same time I could have her at + a few hours' notice." + + "That seems simple enough." + + "It is just these very simple things which are extremely liable to be + overlooked. However, I determined to act on the idea. I started at + once in this harmless seaman's rig and inquired at all the yards down + the river. I drew blank at fifteen, but at the + sixteenth--Jacobson's--I learned that the Aurora had been handed over + to them two days ago by a wooden-legged man, with some trivial + directions as to her rudder. 'There ain't naught amiss with her + rudder,' said the foreman. 'There she lies, with the red streaks.' At + that moment who should come down but Mordecai Smith, the missing + owner? He was rather the worse for liquor. I should not, of course, + have known him, but he bellowed out his name and the name of his + launch. 'I want her to-night at eight o'clock,' said he,--'eight + o'clock sharp, mind, for I have two gentlemen who won't be kept + waiting.' They had evidently paid him well, for he was very flush of + money, chucking shillings about to the men. I followed him some + distance, but he subsided into an ale-house: so I went back to the + yard, and, happening to pick up one of my boys on the way, I + stationed him as a sentry over the launch. He is to stand at water's + edge and wave his handkerchief to us when they start. We shall be + lying off in the stream, and it will be a strange thing if we do not + take men, treasure, and all." + + "You have planned it all very neatly, whether they are the right men + or not," said Jones; "but if the affair were in my hands I should + have had a body of police in Jacobson's Yard, and arrested them when + they came down." + + "Which would have been never. This man Small is a pretty shrewd + fellow. He would send a scout on ahead, and if anything made him + suspicious lie snug for another week." + + "But you might have stuck to Mordecai Smith, and so been led to their + hiding-place," said I. + + "In that case I should have wasted my day. I think that it is a + hundred to one against Smith knowing where they live. As long as he + has liquor and good pay, why should he ask questions? They send him + messages what to do. No, I thought over every possible course, and + this is the best." + + While this conversation had been proceeding, we had been shooting the + long series of bridges which span the Thames. As we passed the City + the last rays of the sun were gilding the cross upon the summit of + St. Paul's. It was twilight before we reached the Tower. + + "That is Jacobson's Yard," said Holmes, pointing to a bristle of + masts and rigging on the Surrey side. "Cruise gently up and down here + under cover of this string of lighters." He took a pair of + night-glasses from his pocket and gazed some time at the shore. "I + see my sentry at his post," he remarked, "but no sign of a + handkerchief." + + "Suppose we go down-stream a short way and lie in wait for them," + said Jones, eagerly. We were all eager by this time, even the + policemen and stokers, who had a very vague idea of what was going + forward. + + "We have no right to take anything for granted," Holmes answered. "It + is certainly ten to one that they go down-stream, but we cannot be + certain. From this point we can see the entrance of the yard, and + they can hardly see us. It will be a clear night and plenty of light. + We must stay where we are. See how the folk swarm over yonder in the + gaslight." + + "They are coming from work in the yard." + + "Dirty-looking rascals, but I suppose every one has some little + immortal spark concealed about him. You would not think it, to look + at them. There is no a priori probability about it. A strange enigma + is man!" + + "Some one calls him a soul concealed in an animal," I suggested. + + "Winwood Reade is good upon the subject," said Holmes. "He remarks + that, while the individual man is an insoluble puzzle, in the + aggregate he becomes a mathematical certainty. You can, for example, + never foretell what any one man will do, but you can say with + precision what an average number will be up to. Individuals vary, but + percentages remain constant. So says the statistician. But do I see a + handkerchief? Surely there is a white flutter over yonder." + + "Yes, it is your boy," I cried. "I can see him plainly." + + "And there is the Aurora," exclaimed Holmes, "and going like the + devil! Full speed ahead, engineer. Make after that launch with the + yellow light. By heaven, I shall never forgive myself if she proves + to have the heels of us!" + + She had slipped unseen through the yard-entrance and passed behind + two or three small craft, so that she had fairly got her speed up + before we saw her. Now she was flying down the stream, near in to the + shore, going at a tremendous rate. Jones looked gravely at her and + shook his head. + + "She is very fast," he said. "I doubt if we shall catch her." + + "We must catch her!" cried Holmes, between his teeth. "Heap it on, + stokers! Make her do all she can! If we burn the boat we must have + them!" + + We were fairly after her now. The furnaces roared, and the powerful + engines whizzed and clanked, like a great metallic heart. Her sharp, + steep prow cut through the river-water and sent two rolling waves to + right and to left of us. With every throb of the engines we sprang + and quivered like a living thing. One great yellow lantern in our + bows threw a long, flickering funnel of light in front of us. Right + ahead a dark blur upon the water showed where the Aurora lay, and the + swirl of white foam behind her spoke of the pace at which she was + going. We flashed past barges, steamers, merchant-vessels, in and + out, behind this one and round the other. Voices hailed us out of the + darkness, but still the Aurora thundered on, and still we followed + close upon her track. + + "Pile it on, men, pile it on!" cried Holmes, looking down into the + engine-room, while the fierce glow from below beat upon his eager, + aquiline face. "Get every pound of steam you can." + + "I think we gain a little," said Jones, with his eyes on the Aurora. + + "I am sure of it," said I. "We shall be up with her in a very few + minutes." + + At that moment, however, as our evil fate would have it, a tug with + three barges in tow blundered in between us. It was only by putting + our helm hard down that we avoided a collision, and before we could + round them and recover our way the Aurora had gained a good two + hundred yards. She was still, however, well in view, and the murky + uncertain twilight was setting into a clear starlit night. Our + boilers were strained to their utmost, and the frail shell vibrated + and creaked with the fierce energy which was driving us along. We had + shot through the Pool, past the West India Docks, down the long + Deptford Reach, and up again after rounding the Isle of Dogs. The + dull blur in front of us resolved itself now clearly enough into the + dainty Aurora. Jones turned our search-light upon her, so that we + could plainly see the figures upon her deck. One man sat by the + stern, with something black between his knees over which he stooped. + Beside him lay a dark mass which looked like a Newfoundland dog. The + boy held the tiller, while against the red glare of the furnace I + could see old Smith, stripped to the waist, and shovelling coals for + dear life. They may have had some doubt at first as to whether we + were really pursuing them, but now as we followed every winding and + turning which they took there could no longer be any question about + it. At Greenwich we were about three hundred paces behind them. At + Blackwall we could not have been more than two hundred and fifty. I + have coursed many creatures in many countries during my checkered + career, but never did sport give me such a wild thrill as this mad, + flying man-hunt down the Thames. Steadily we drew in upon them, yard + by yard. In the silence of the night we could hear the panting and + clanking of their machinery. The man in the stern still crouched upon + the deck, and his arms were moving as though he were busy, while + every now and then he would look up and measure with a glance the + distance which still separated us. Nearer we came and nearer. Jones + yelled to them to stop. We were not more than four boat's lengths + behind them, both boats flying at a tremendous pace. It was a clear + reach of the river, with Barking Level upon one side and the + melancholy Plumstead Marshes upon the other. At our hail the man in + the stern sprang up from the deck and shook his two clinched fists at + us, cursing the while in a high, cracked voice. He was a good-sized, + powerful man, and as he stood poising himself with legs astride I + could see that from the thigh downwards there was but a wooden stump + upon the right side. At the sound of his strident, angry cries there + was movement in the huddled bundle upon the deck. It straightened + itself into a little black man--the smallest I have ever seen--with a + great, misshapen head and a shock of tangled, dishevelled hair. + Holmes had already drawn his revolver, and I whipped out mine at the + sight of this savage, distorted creature. He was wrapped in some sort + of dark ulster or blanket, which left only his face exposed; but that + face was enough to give a man a sleepless night. Never have I seen + features so deeply marked with all bestiality and cruelty. His small + eyes glowed and burned with a sombre light, and his thick lips were + writhed back from his teeth, which grinned and chattered at us with a + half animal fury. + + "Fire if he raises his hand," said Holmes, quietly. We were within a + boat's-length by this time, and almost within touch of our quarry. I + can see the two of them now as they stood, the white man with his + legs far apart, shrieking out curses, and the unhallowed dwarf with + his hideous face, and his strong yellow teeth gnashing at us in the + light of our lantern. + + It was well that we had so clear a view of him. Even as we looked he + plucked out from under his covering a short, round piece of wood, + like a school-ruler, and clapped it to his lips. Our pistols rang out + together. He whirled round, threw up his arms, and with a kind of + choking cough fell sideways into the stream. I caught one glimpse of + his venomous, menacing eyes amid the white swirl of the waters. At + the same moment the wooden-legged man threw himself upon the rudder + and put it hard down, so that his boat made straight in for the + southern bank, while we shot past her stern, only clearing her by a + few feet. We were round after her in an instant, but she was already + nearly at the bank. It was a wild and desolate place, where the moon + glimmered upon a wide expanse of marsh-land, with pools of stagnant + water and beds of decaying vegetation. The launch with a dull thud + ran up upon the mud-bank, with her bow in the air and her stern flush + with the water. The fugitive sprang out, but his stump instantly sank + its whole length into the sodden soil. In vain he struggled and + writhed. Not one step could he possibly take either forwards or + backwards. He yelled in impotent rage, and kicked frantically into + the mud with his other foot, but his struggles only bored his wooden + pin the deeper into the sticky bank. When we brought our launch + alongside he was so firmly anchored that it was only by throwing the + end of a rope over his shoulders that we were able to haul him out, + and to drag him, like some evil fish, over our side. The two Smiths, + father and son, sat sullenly in their launch, but came aboard meekly + enough when commanded. The Aurora herself we hauled off and made fast + to our stern. A solid iron chest of Indian workmanship stood upon the + deck. This, there could be no question, was the same that had + contained the ill-omened treasure of the Sholtos. There was no key, + but it was of considerable weight, so we transferred it carefully to + our own little cabin. As we steamed slowly up-stream again, we + flashed our search-light in every direction, but there was no sign of + the Islander. Somewhere in the dark ooze at the bottom of the Thames + lie the bones of that strange visitor to our shores. + + "See here," said Holmes, pointing to the wooden hatchway. "We were + hardly quick enough with our pistols." There, sure enough, just + behind where we had been standing, stuck one of those murderous darts + which we knew so well. It must have whizzed between us at the instant + that we fired. Holmes smiled at it and shrugged his shoulders in his + easy fashion, but I confess that it turned me sick to think of the + horrible death which had passed so close to us that night. + + + + + + CHAPTER XI + The Great Agra Treasure + + + Our captive sat in the cabin opposite to the iron box which he had + done so much and waited so long to gain. He was a sunburned, + reckless-eyed fellow, with a net-work of lines and wrinkles all over + his mahogany features, which told of a hard, open-air life. There was + a singular prominence about his bearded chin which marked a man who + was not to be easily turned from his purpose. His age may have been + fifty or thereabouts, for his black, curly hair was thickly shot with + gray. His face in repose was not an unpleasing one, though his heavy + brows and aggressive chin gave him, as I had lately seen, a terrible + expression when moved to anger. He sat now with his handcuffed hands + upon his lap, and his head sunk upon his breast, while he looked with + his keen, twinkling eyes at the box which had been the cause of his + ill-doings. It seemed to me that there was more sorrow than anger in + his rigid and contained countenance. Once he looked up at me with a + gleam of something like humour in his eyes. + + "Well, Jonathan Small," said Holmes, lighting a cigar, "I am sorry + that it has come to this." + + "And so am I, sir," he answered, frankly. "I don't believe that I can + swing over the job. I give you my word on the book that I never + raised hand against Mr. Sholto. It was that little hell-hound Tonga + who shot one of his cursed darts into him. I had no part in it, sir. + I was as grieved as if it had been my blood-relation. I welted the + little devil with the slack end of the rope for it, but it was done, + and I could not undo it again." + + "Have a cigar," said Holmes; "and you had best take a pull out of my + flask, for you are very wet. How could you expect so small and weak a + man as this black fellow to overpower Mr. Sholto and hold him while + you were climbing the rope?" + + "You seem to know as much about it as if you were there, sir. The + truth is that I hoped to find the room clear. I knew the habits of + the house pretty well, and it was the time when Mr. Sholto usually + went down to his supper. I shall make no secret of the business. The + best defence that I can make is just the simple truth. Now, if it had + been the old major I would have swung for him with a light heart. I + would have thought no more of knifing him than of smoking this cigar. + But it's cursed hard that I should be lagged over this young Sholto, + with whom I had no quarrel whatever." + + "You are under the charge of Mr. Athelney Jones, of Scotland Yard. He + is going to bring you up to my rooms, and I shall ask you for a true + account of the matter. You must make a clean breast of it, for if you + do I hope that I may be of use to you. I think I can prove that the + poison acts so quickly that the man was dead before ever you reached + the room." + + "That he was, sir. I never got such a turn in my life as when I saw + him grinning at me with his head on his shoulder as I climbed through + the window. It fairly shook me, sir. I'd have half killed Tonga for + it if he had not scrambled off. That was how he came to leave his + club, and some of his darts too, as he tells me, which I dare say + helped to put you on our track; though how you kept on it is more + than I can tell. I don't feel no malice against you for it. But it + does seem a queer thing," he added, with a bitter smile, "that I who + have a fair claim to nigh upon half a million of money should spend + the first half of my life building a breakwater in the Andamans, and + am like to spend the other half digging drains at Dartmoor. It was an + evil day for me when first I clapped eyes upon the merchant Achmet + and had to do with the Agra treasure, which never brought anything + but a curse yet upon the man who owned it. To him it brought murder, + to Major Sholto it brought fear and guilt, to me it has meant slavery + for life." + + At this moment Athelney Jones thrust his broad face and heavy + shoulders into the tiny cabin. "Quite a family party," he remarked. + "I think I shall have a pull at that flask, Holmes. Well, I think we + may all congratulate each other. Pity we didn't take the other alive; + but there was no choice. I say, Holmes, you must confess that you cut + it rather fine. It was all we could do to overhaul her." + + "All is well that ends well," said Holmes. "But I certainly did not + know that the Aurora was such a clipper." + + "Smith says she is one of the fastest launches on the river, and that + if he had had another man to help him with the engines we should + never have caught her. He swears he knew nothing of this Norwood + business." + + "Neither he did," cried our prisoner,--"not a word. I chose his + launch because I heard that she was a flier. We told him nothing, but + we paid him well, and he was to get something handsome if we reached + our vessel, the Esmeralda, at Gravesend, outward bound for the + Brazils." + + "Well, if he has done no wrong we shall see that no wrong comes to + him. If we are pretty quick in catching our men, we are not so quick + in condemning them." It was amusing to notice how the consequential + Jones was already beginning to give himself airs on the strength of + the capture. From the slight smile which played over Sherlock + Holmes's face, I could see that the speech had not been lost upon + him. + + "We will be at Vauxhall Bridge presently," said Jones, "and shall + land you, Dr. Watson, with the treasure-box. I need hardly tell you + that I am taking a very grave responsibility upon myself in doing + this. It is most irregular; but of course an agreement is an + agreement. I must, however, as a matter of duty, send an inspector + with you, since you have so valuable a charge. You will drive, no + doubt?" + + "Yes, I shall drive." + + "It is a pity there is no key, that we may make an inventory first. + You will have to break it open. Where is the key, my man?" + + "At the bottom of the river," said Small, shortly. + + "Hum! There was no use your giving this unnecessary trouble. We have + had work enough already through you. However, doctor, I need not warn + you to be careful. Bring the box back with you to the Baker Street + rooms. You will find us there, on our way to the station." + + They landed me at Vauxhall, with my heavy iron box, and with a bluff, + genial inspector as my companion. A quarter of an hour's drive + brought us to Mrs. Cecil Forrester's. The servant seemed surprised at + so late a visitor. Mrs. Cecil Forrester was out for the evening, she + explained, and likely to be very late. Miss Morstan, however, was in + the drawing-room: so to the drawing-room I went, box in hand, leaving + the obliging inspector in the cab. + + She was seated by the open window, dressed in some sort of white + diaphanous material, with a little touch of scarlet at the neck and + waist. The soft light of a shaded lamp fell upon her as she leaned + back in the basket chair, playing over her sweet, grave face, and + tinting with a dull, metallic sparkle the rich coils of her luxuriant + hair. One white arm and hand drooped over the side of the chair, and + her whole pose and figure spoke of an absorbing melancholy. At the + sound of my foot-fall she sprang to her feet, however, and a bright + flush of surprise and of pleasure colored her pale cheeks. + + "I heard a cab drive up," she said. "I thought that Mrs. Forrester + had come back very early, but I never dreamed that it might be you. + What news have you brought me?" + + "I have brought something better than news," said I, putting down the + box upon the table and speaking jovially and boisterously, though my + heart was heavy within me. "I have brought you something which is + worth all the news in the world. I have brought you a fortune." + + She glanced at iron box. "Is that the treasure, then?" she asked, + coolly enough. + + "Yes, this is the great Agra treasure. Half of it is yours and half + is Thaddeus Sholto's. You will have a couple of hundred thousand + each. Think of that! An annuity of ten thousand pounds. There will be + few richer young ladies in England. Is it not glorious?" + + I think that I must have been rather overacting my delight, and that + she detected a hollow ring in my congratulations, for I saw her + eyebrows rise a little, and she glanced at me curiously. + + "If I have it," said she, "I owe it to you." + + "No, no," I answered, "not to me, but to my friend Sherlock Holmes. + With all the will in the world, I could never have followed up a clue + which has taxed even his analytical genius. As it was, we very + nearly lost it at the last moment." + + "Pray sit down and tell me all about it, Dr. Watson," said she. + + I narrated briefly what had occurred since I had seen her + last,--Holmes's new method of search, the discovery of the Aurora, + the appearance of Athelney Jones, our expedition in the evening, and + the wild chase down the Thames. She listened with parted lips and + shining eyes to my recital of our adventures. When I spoke of the + dart which had so narrowly missed us, she turned so white that I + feared that she was about to faint. + + "It is nothing," she said, as I hastened to pour her out some water. + "I am all right again. It was a shock to me to hear that I had placed + my friends in such horrible peril." + + "That is all over," I answered. "It was nothing. I will tell you no + more gloomy details. Let us turn to something brighter. There is the + treasure. What could be brighter than that? I got leave to bring it + with me, thinking that it would interest you to be the first to see + it." + + "It would be of the greatest interest to me," she said. There was no + eagerness in her voice, however. It had struck her, doubtless, that + it might seem ungracious upon her part to be indifferent to a prize + which had cost so much to win. + + "What a pretty box!" she said, stooping over it. "This is Indian + work, I suppose?" + + "Yes; it is Benares metal-work." + + "And so heavy!" she exclaimed, trying to raise it. "The box alone + must be of some value. Where is the key?" + + "Small threw it into the Thames," I answered. "I must borrow Mrs. + Forrester's poker." There was in the front a thick and broad hasp, + wrought in the image of a sitting Buddha. Under this I thrust the end + of the poker and twisted it outward as a lever. The hasp sprang open + with a loud snap. With trembling fingers I flung back the lid. We + both stood gazing in astonishment. The box was empty! + + No wonder that it was heavy. The iron-work was two-thirds of an inch + thick all round. It was massive, well made, and solid, like a chest + constructed to carry things of great price, but not one shred or + crumb of metal or jewelry lay within it. It was absolutely and + completely empty. + + "The treasure is lost," said Miss Morstan, calmly. + + As I listened to the words and realized what they meant, a great + shadow seemed to pass from my soul. I did not know how this Agra + treasure had weighed me down, until now that it was finally removed. + It was selfish, no doubt, disloyal, wrong, but I could realize + nothing save that the golden barrier was gone from between us. "Thank + God!" I ejaculated from my very heart. + + She looked at me with a quick, questioning smile. "Why do you say + that?" she asked. + + "Because you are within my reach again," I said, taking her hand. She + did not withdraw it. "Because I love you, Mary, as truly as ever a + man loved a woman. Because this treasure, these riches, sealed my + lips. Now that they are gone I can tell you how I love you. That is + why I said, 'Thank God.'" + + "Then I say, 'Thank God,' too," she whispered, as I drew her to my + side. Whoever had lost a treasure, I knew that night that I had + gained one. + + + + + + CHAPTER XII + The Strange Story of Jonathan Small + + + A very patient man was that inspector in the cab, for it was a weary + time before I rejoined him. His face clouded over when I showed him + the empty box. + + "There goes the reward!" said he, gloomily. "Where there is no money + there is no pay. This night's work would have been worth a tenner + each to Sam Brown and me if the treasure had been there." + + "Mr. Thaddeus Sholto is a rich man," I said. "He will see that you + are rewarded, treasure or no." + + The inspector shook his head despondently, however. "It's a bad job," + he repeated; "and so Mr. Athelney Jones will think." + + His forecast proved to be correct, for the detective looked blank + enough when I got to Baker Street and showed him the empty box. They + had only just arrived, Holmes, the prisoner, and he, for they had + changed their plans so far as to report themselves at a station upon + the way. My companion lounged in his arm-chair with his usual + listless expression, while Small sat stolidly opposite to him with + his wooden leg cocked over his sound one. As I exhibited the empty + box he leaned back in his chair and laughed aloud. + + "This is your doing, Small," said Athelney Jones, angrily. + + "Yes, I have put it away where you shall never lay hand upon it," he + cried, exultantly. "It is my treasure; and if I can't have the loot + I'll take darned good care that no one else does. I tell you that no + living man has any right to it, unless it is three men who are in the + Andaman convict-barracks and myself. I know now that I cannot have + the use of it, and I know that they cannot. I have acted all through + for them as much as for myself. It's been the sign of four with us + always. Well I know that they would have had me do just what I have + done, and throw the treasure into the Thames rather than let it go to + kith or kin of Sholto or of Morstan. It was not to make them rich + that we did for Achmet. You'll find the treasure where the key is, + and where little Tonga is. When I saw that your launch must catch us, + I put the loot away in a safe place. There are no rupees for you this + journey." + + "You are deceiving us, Small," said Athelney Jones, sternly. "If you + had wished to throw the treasure into the Thames it would have been + easier for you to have thrown box and all." + + "Easier for me to throw, and easier for you to recover," he answered, + with a shrewd, sidelong look. "The man that was clever enough to hunt + me down is clever enough to pick an iron box from the bottom of a + river. Now that they are scattered over five miles or so, it may be a + harder job. It went to my heart to do it, though. I was half mad when + you came up with us. However, there's no good grieving over it. I've + had ups in my life, and I've had downs, but I've learned not to cry + over spilled milk." + + "This is a very serious matter, Small," said the detective. "If you + had helped justice, instead of thwarting it in this way, you would + have had a better chance at your trial." + + "Justice!" snarled the ex-convict. "A pretty justice! Whose loot is + this, if it is not ours? Where is the justice that I should give it + up to those who have never earned it? Look how I have earned it! + Twenty long years in that fever-ridden swamp, all day at work under + the mangrove-tree, all night chained up in the filthy convict-huts, + bitten by mosquitoes, racked with ague, bullied by every cursed + black-faced policeman who loved to take it out of a white man. That + was how I earned the Agra treasure; and you talk to me of justice + because I cannot bear to feel that I have paid this price only that + another may enjoy it! I would rather swing a score of times, or have + one of Tonga's darts in my hide, than live in a convict's cell and + feel that another man is at his ease in a palace with the money that + should be mine." Small had dropped his mask of stoicism, and all this + came out in a wild whirl of words, while his eyes blazed, and the + handcuffs clanked together with the impassioned movement of his + hands. I could understand, as I saw the fury and the passion of the + man, that it was no groundless or unnatural terror which had + possessed Major Sholto when he first learned that the injured convict + was upon his track. + + "You forget that we know nothing of all this," said Holmes quietly. + "We have not heard your story, and we cannot tell how far justice may + originally have been on your side." + + "Well, sir, you have been very fair-spoken to me, though I can see + that I have you to thank that I have these bracelets upon my wrists. + Still, I bear no grudge for that. It is all fair and above-board. If + you want to hear my story I have no wish to hold it back. What I say + to you is God's truth, every word of it. Thank you; you can put the + glass beside me here, and I'll put my lips to it if I am dry. + + "I am a Worcestershire man myself,--born near Pershore. I dare say + you would find a heap of Smalls living there now if you were to look. + I have often thought of taking a look round there, but the truth is + that I was never much of a credit to the family, and I doubt if they + would be so very glad to see me. They were all steady, chapel-going + folk, small farmers, well known and respected over the country-side, + while I was always a bit of a rover. At last, however, when I was + about eighteen, I gave them no more trouble, for I got into a mess + over a girl, and could only get out of it again by taking the queen's + shilling and joining the 3d Buffs, which was just starting for India. + + "I wasn't destined to do much soldiering, however. I had just got + past the goose-step, and learned to handle my musket, when I was fool + enough to go swimming in the Ganges. Luckily for me, my company + sergeant, John Holder, was in the water at the same time, and he was + one of the finest swimmers in the service. A crocodile took me, just + as I was half-way across, and nipped off my right leg as clean as a + surgeon could have done it, just above the knee. What with the shock + and the loss of blood, I fainted, and should have drowned if Holder + had not caught hold of me and paddled for the bank. I was five months + in hospital over it, and when at last I was able to limp out of it + with this timber toe strapped to my stump I found myself invalided + out of the army and unfitted for any active occupation. + + "I was, as you can imagine, pretty down on my luck at this time, for + I was a useless cripple though not yet in my twentieth year. However, + my misfortune soon proved to be a blessing in disguise. A man named + Abelwhite, who had come out there as an indigo-planter, wanted an + overseer to look after his coolies and keep them up to their work. He + happened to be a friend of our colonel's, who had taken an interest + in me since the accident. To make a long story short, the colonel + recommended me strongly for the post and, as the work was mostly to + be done on horseback, my leg was no great obstacle, for I had enough + knee left to keep good grip on the saddle. What I had to do was to + ride over the plantation, to keep an eye on the men as they worked, + and to report the idlers. The pay was fair, I had comfortable + quarters, and altogether I was content to spend the remainder of my + life in indigo-planting. Mr. Abelwhite was a kind man, and he would + often drop into my little shanty and smoke a pipe with me, for white + folk out there feel their hearts warm to each other as they never do + here at home. + + "Well, I was never in luck's way long. Suddenly, without a note of + warning, the great mutiny broke upon us. One month India lay as still + and peaceful, to all appearance, as Surrey or Kent; the next there + were two hundred thousand black devils let loose, and the country was + a perfect hell. Of course you know all about it, gentlemen,--a deal + more than I do, very like, since reading is not in my line. I only + know what I saw with my own eyes. Our plantation was at a place + called Muttra, near the border of the Northwest Provinces. Night + after night the whole sky was alight with the burning bungalows, and + day after day we had small companies of Europeans passing through our + estate with their wives and children, on their way to Agra, where + were the nearest troops. Mr. Abelwhite was an obstinate man. He had + it in his head that the affair had been exaggerated, and that it + would blow over as suddenly as it had sprung up. There he sat on his + veranda, drinking whiskey-pegs and smoking cheroots, while the + country was in a blaze about him. Of course we stuck by him, I and + Dawson, who, with his wife, used to do the book-work and the + managing. Well, one fine day the crash came. I had been away on a + distant plantation, and was riding slowly home in the evening, when + my eye fell upon something all huddled together at the bottom of a + steep nullah. I rode down to see what it was, and the cold struck + through my heart when I found it was Dawson's wife, all cut into + ribbons, and half eaten by jackals and native dogs. A little further + up the road Dawson himself was lying on his face, quite dead, with an + empty revolver in his hand and four Sepoys lying across each other in + front of him. I reined up my horse, wondering which way I should + turn, but at that moment I saw thick smoke curling up from + Abelwhite's bungalow and the flames beginning to burst through the + roof. I knew then that I could do my employer no good, but would only + throw my own life away if I meddled in the matter. From where I stood + I could see hundreds of the black fiends, with their red coats still + on their backs, dancing and howling round the burning house. Some of + them pointed at me, and a couple of bullets sang past my head; so I + broke away across the paddy-fields, and found myself late at night + safe within the walls at Agra. + + "As it proved, however, there was no great safety there, either. The + whole country was up like a swarm of bees. Wherever the English could + collect in little bands they held just the ground that their guns + commanded. Everywhere else they were helpless fugitives. It was a + fight of the millions against the hundreds; and the cruellest part of + it was that these men that we fought against, foot, horse, and + gunners, were our own picked troops, whom we had taught and trained, + handling our own weapons, and blowing our own bugle-calls. At Agra + there were the 3d Bengal Fusiliers, some Sikhs, two troops of horse, + and a battery of artillery. A volunteer corps of clerks and merchants + had been formed, and this I joined, wooden leg and all. We went out + to meet the rebels at Shahgunge early in July, and we beat them back + for a time, but our powder gave out, and we had to fall back upon the + city. Nothing but the worst news came to us from every side,--which + is not to be wondered at, for if you look at the map you will see + that we were right in the heart of it. Lucknow is rather better than + a hundred miles to the east, and Cawnpore about as far to the south. + From every point on the compass there was nothing but torture and + murder and outrage. + + "The city of Agra is a great place, swarming with fanatics and fierce + devil-worshippers of all sorts. Our handful of men were lost among + the narrow, winding streets. Our leader moved across the river, + therefore, and took up his position in the old fort at Agra. I don't + know if any of you gentlemen have ever read or heard anything of that + old fort. It is a very queer place,--the queerest that ever I was in, + and I have been in some rum corners, too. First of all, it is + enormous in size. I should think that the enclosure must be acres and + acres. There is a modern part, which took all our garrison, women, + children, stores, and everything else, with plenty of room over. But + the modern part is nothing like the size of the old quarter, where + nobody goes, and which is given over to the scorpions and the + centipedes. It is all full of great deserted halls, and winding + passages, and long corridors twisting in and out, so that it is easy + enough for folk to get lost in it. For this reason it was seldom that + any one went into it, though now and again a party with torches might + go exploring. + + "The river washes along the front of the old fort, and so protects + it, but on the sides and behind there are many doors, and these had + to be guarded, of course, in the old quarter as well as in that which + was actually held by our troops. We were short-handed, with hardly + men enough to man the angles of the building and to serve the guns. + It was impossible for us, therefore, to station a strong guard at + every one of the innumerable gates. What we did was to organize a + central guard-house in the middle of the fort, and to leave each gate + under the charge of one white man and two or three natives. I was + selected to take charge during certain hours of the night of a small + isolated door upon the southwest side of the building. Two Sikh + troopers were placed under my command, and I was instructed if + anything went wrong to fire my musket, when I might rely upon help + coming at once from the central guard. As the guard was a good two + hundred paces away, however, and as the space between was cut up into + a labyrinth of passages and corridors, I had great doubts as to + whether they could arrive in time to be of any use in case of an + actual attack. + + "Well, I was pretty proud at having this small command given me, + since I was a raw recruit, and a game-legged one at that. For two + nights I kept the watch with my Punjaubees. They were tall, + fierce-looking chaps, Mahomet Singh and Abdullah Khan by name, both + old fighting-men who had borne arms against us at Chilian-wallah. + They could talk English pretty well, but I could get little out of + them. They preferred to stand together and jabber all night in their + queer Sikh lingo. For myself, I used to stand outside the gate-way, + looking down on the broad, winding river and on the twinkling lights + of the great city. The beating of drums, the rattle of tomtoms, and + the yells and howls of the rebels, drunk with opium and with bang, + were enough to remind us all night of our dangerous neighbors across + the stream. Every two hours the officer of the night used to come + round to all the posts, to make sure that all was well. + + "The third night of my watch was dark and dirty, with a small, + driving rain. It was dreary work standing in the gate-way hour after + hour in such weather. I tried again and again to make my Sikhs talk, + but without much success. At two in the morning the rounds passed, + and broke for a moment the weariness of the night. Finding that my + companions would not be led into conversation, I took out my pipe, + and laid down my musket to strike the match. In an instant the two + Sikhs were upon me. One of them snatched my firelock up and levelled + it at my head, while the other held a great knife to my throat and + swore between his teeth that he would plunge it into me if I moved a + step. + + "My first thought was that these fellows were in league with the + rebels, and that this was the beginning of an assault. If our door + were in the hands of the Sepoys the place must fall, and the women + and children be treated as they were in Cawnpore. Maybe you gentlemen + think that I am just making out a case for myself, but I give you my + word that when I thought of that, though I felt the point of the + knife at my throat, I opened my mouth with the intention of giving a + scream, if it was my last one, which might alarm the main guard. The + man who held me seemed to know my thoughts; for, even as I braced + myself to it, he whispered, 'Don't make a noise. The fort is safe + enough. There are no rebel dogs on this side of the river.' There was + the ring of truth in what he said, and I knew that if I raised my + voice I was a dead man. I could read it in the fellow's brown eyes. I + waited, therefore, in silence, to see what it was that they wanted + from me. + + "'Listen to me, Sahib,' said the taller and fiercer of the pair, the + one whom they called Abdullah Khan. 'You must either be with us now + or you must be silenced forever. The thing is too great a one for us + to hesitate. Either you are heart and soul with us on your oath on + the cross of the Christians, or your body this night shall be thrown + into the ditch and we shall pass over to our brothers in the rebel + army. There is no middle way. Which is it to be, death or life? We + can only give you three minutes to decide, for the time is passing, + and all must be done before the rounds come again.' + + "'How can I decide?' said I. 'You have not told me what you want of + me. But I tell you now that if it is anything against the safety of + the fort I will have no truck with it, so you can drive home your + knife and welcome.' + + "'It is nothing against the fort,' said he. 'We only ask you to do + that which your countrymen come to this land for. We ask you to be + rich. If you will be one of us this night, we will swear to you upon + the naked knife, and by the threefold oath which no Sikh was ever + known to break, that you shall have your fair share of the loot. A + quarter of the treasure shall be yours. We can say no fairer.' + + "'But what is the treasure, then?' I asked. 'I am as ready to be rich + as you can be, if you will but show me how it can be done.' + + "'You will swear, then,' said he, 'by the bones of your father, by + the honor of your mother, by the cross of your faith, to raise no + hand and speak no word against us, either now or afterwards?' + + "'I will swear it,' I answered, 'provided that the fort is not + endangered.' + + "'Then my comrade and I will swear that you shall have a quarter of + the treasure which shall be equally divided among the four of us.' + + "'There are but three,' said I. + + "'No; Dost Akbar must have his share. We can tell the tale to you + while we await them. Do you stand at the gate, Mahomet Singh, and + give notice of their coming. The thing stands thus, Sahib, and I tell + it to you because I know that an oath is binding upon a Feringhee, + and that we may trust you. Had you been a lying Hindoo, though you + had sworn by all the gods in their false temples, your blood would + have been upon the knife, and your body in the water. But the Sikh + knows the Englishman, and the Englishman knows the Sikh. Hearken, + then, to what I have to say. + + "'There is a rajah in the northern provinces who has much wealth, + though his lands are small. Much has come to him from his father, and + more still he has set by himself, for he is of a low nature and + hoards his gold rather than spend it. When the troubles broke out he + would be friends both with the lion and the tiger,--with the Sepoy + and with the Company's raj. Soon, however, it seemed to him that the + white men's day was come, for through all the land he could hear of + nothing but of their death and their overthrow. Yet, being a careful + man, he made such plans that, come what might, half at least of his + treasure should be left to him. That which was in gold and silver he + kept by him in the vaults of his palace, but the most precious stones + and the choicest pearls that he had he put in an iron box, and sent + it by a trusty servant who, under the guise of a merchant, should + take it to the fort at Agra, there to lie until the land is at peace. + Thus, if the rebels won he would have his money, but if the Company + conquered his jewels would be saved to him. Having thus divided his + hoard, he threw himself into the cause of the Sepoys, since they were + strong upon his borders. By doing this, mark you, Sahib, his property + becomes the due of those who have been true to their salt. + + "'This pretended merchant, who travels under the name of Achmet, is + now in the city of Agra, and desires to gain his way into the fort. + He has with him as travelling-companion my foster-brother Dost Akbar, + who knows his secret. Dost Akbar has promised this night to lead him + to a side-postern of the fort, and has chosen this one for his + purpose. Here he will come presently, and here he will find Mahomet + Singh and myself awaiting him. The place is lonely, and none shall + know of his coming. The world shall know of the merchant Achmet no + more, but the great treasure of the rajah shall be divided among us. + What say you to it, Sahib?' + + "In Worcestershire the life of a man seems a great and a sacred + thing; but it is very different when there is fire and blood all + round you and you have been used to meeting death at every turn. + Whether Achmet the merchant lived or died was a thing as light as air + to me, but at the talk about the treasure my heart turned to it, and + I thought of what I might do in the old country with it, and how my + folk would stare when they saw their ne'er-do-well coming back with + his pockets full of gold moidores. I had, therefore, already made up + my mind. Abdullah Khan, however, thinking that I hesitated, pressed + the matter more closely. + + "'Consider, Sahib,' said he, 'that if this man is taken by the + commandant he will be hung or shot, and his jewels taken by the + government, so that no man will be a rupee the better for them. Now, + since we do the taking of him, why should we not do the rest as well? + The jewels will be as well with us as in the Company's coffers. There + will be enough to make every one of us rich men and great chiefs. No + one can know about the matter, for here we are cut off from all men. + What could be better for the purpose? Say again, then, Sahib, + whether you are with us, or if we must look upon you as an enemy.' + + "'I am with you heart and soul,' said I. + + "'It is well,' he answered, handing me back my firelock. 'You see + that we trust you, for your word, like ours, is not to be broken. We + have now only to wait for my brother and the merchant.' + + "'Does your brother know, then, of what you will do?' I asked. + + "'The plan is his. He has devised it. We will go to the gate and + share the watch with Mahomet Singh.' + + "The rain was still falling steadily, for it was just the beginning + of the wet season. Brown, heavy clouds were drifting across the sky, + and it was hard to see more than a stone-cast. A deep moat lay in + front of our door, but the water was in places nearly dried up, and + it could easily be crossed. It was strange to me to be standing there + with those two wild Punjaubees waiting for the man who was coming to + his death. + + "Suddenly my eye caught the glint of a shaded lantern at the other + side of the moat. It vanished among the mound-heaps, and then + appeared again coming slowly in our direction. + + "'Here they are!' I exclaimed. + + "'You will challenge him, Sahib, as usual,' whispered Abdullah. 'Give + him no cause for fear. Send us in with him, and we shall do the rest + while you stay here on guard. Have the lantern ready to uncover, that + we may be sure that it is indeed the man.' + + "The light had flickered onwards, now stopping and now advancing, + until I could see two dark figures upon the other side of the moat. I + let them scramble down the sloping bank, splash through the mire, and + climb half-way up to the gate, before I challenged them. + + "'Who goes there?' said I, in a subdued voice. + + "'Friends,' came the answer. I uncovered my lantern and threw a flood + of light upon them. The first was an enormous Sikh, with a black + beard which swept nearly down to his cummerbund. Outside of a show I + have never seen so tall a man. The other was a little, fat, round + fellow, with a great yellow turban, and a bundle in his hand, done up + in a shawl. He seemed to be all in a quiver with fear, for his hands + twitched as if he had the ague, and his head kept turning to left and + right with two bright little twinkling eyes, like a mouse when he + ventures out from his hole. It gave me the chills to think of killing + him, but I thought of the treasure, and my heart set as hard as a + flint within me. When he saw my white face he gave a little chirrup + of joy and came running up towards me. + + "'Your protection, Sahib,' he panted,--'your protection for the + unhappy merchant Achmet. I have travelled across Rajpootana that I + might seek the shelter of the fort at Agra. I have been robbed and + beaten and abused because I have been the friend of the Company. It + is a blessed night this when I am once more in safety,--I and my poor + possessions.' + + "'What have you in the bundle?' I asked. + + "'An iron box,' he answered, 'which contains one or two little family + matters which are of no value to others, but which I should be sorry + to lose. Yet I am not a beggar; and I shall reward you, young Sahib, + and your governor also, if he will give me the shelter I ask.' + + "I could not trust myself to speak longer with the man. The more I + looked at his fat, frightened face, the harder did it seem that we + should slay him in cold blood. It was best to get it over. + + "'Take him to the main guard,' said I. The two Sikhs closed in upon + him on each side, and the giant walked behind, while they marched in + through the dark gate-way. Never was a man so compassed round with + death. I remained at the gate-way with the lantern. + + "I could hear the measured tramp of their footsteps sounding through + the lonely corridors. Suddenly it ceased, and I heard voices, and a + scuffle, with the sound of blows. A moment later there came, to my + horror, a rush of footsteps coming in my direction, with the loud + breathing of a running man. I turned my lantern down the long, + straight passage, and there was the fat man, running like the wind, + with a smear of blood across his face, and close at his heels, + bounding like a tiger, the great black-bearded Sikh, with a knife + flashing in his hand. I have never seen a man run so fast as that + little merchant. He was gaining on the Sikh, and I could see that if + he once passed me and got to the open air he would save himself yet. + My heart softened to him, but again the thought of his treasure + turned me hard and bitter. I cast my firelock between his legs as he + raced past, and he rolled twice over like a shot rabbit. Ere he could + stagger to his feet the Sikh was upon him, and buried his knife twice + in his side. The man never uttered moan nor moved muscle, but lay + were he had fallen. I think myself that he may have broken his neck + with the fall. You see, gentlemen, that I am keeping my promise. I am + telling you every work of the business just exactly as it happened, + whether it is in my favor or not." + + He stopped, and held out his manacled hands for the whiskey-and-water + which Holmes had brewed for him. For myself, I confess that I had now + conceived the utmost horror of the man, not only for this + cold-blooded business in which he had been concerned, but even more + for the somewhat flippant and careless way in which he narrated it. + Whatever punishment was in store for him, I felt that he might expect + no sympathy from me. Sherlock Holmes and Jones sat with their hands + upon their knees, deeply interested in the story, but with the same + disgust written upon their faces. He may have observed it, for there + was a touch of defiance in his voice and manner as he proceeded. + + "It was all very bad, no doubt," said he. "I should like to know how + many fellows in my shoes would have refused a share of this loot when + they knew that they would have their throats cut for their pains. + Besides, it was my life or his when once he was in the fort. If he + had got out, the whole business would come to light, and I should + have been court-martialled and shot as likely as not; for people were + not very lenient at a time like that." + + "Go on with your story," said Holmes, shortly. + + "Well, we carried him in, Abdullah, Akbar, and I. A fine weight he + was, too, for all that he was so short. Mahomet Singh was left to + guard the door. We took him to a place which the Sikhs had already + prepared. It was some distance off, where a winding passage leads to + a great empty hall, the brick walls of which were all crumbling to + pieces. The earth floor had sunk in at one place, making a natural + grave, so we left Achmet the merchant there, having first covered him + over with loose bricks. This done, we all went back to the treasure. + + "It lay where he had dropped it when he was first attacked. The box + was the same which now lies open upon your table. A key was hung by a + silken cord to that carved handle upon the top. We opened it, and the + light of the lantern gleamed upon a collection of gems such as I have + read of and thought about when I was a little lad at Pershore. It was + blinding to look upon them. When we had feasted our eyes we took them + all out and made a list of them. There were one hundred and + forty-three diamonds of the first water, including one which has been + called, I believe, 'the Great Mogul' and is said to be the second + largest stone in existence. Then there were ninety-seven very fine + emeralds, and one hundred and seventy rubies, some of which, however, + were small. There were forty carbuncles, two hundred and ten + sapphires, sixty-one agates, and a great quantity of beryls, onyxes, + cats'-eyes, turquoises, and other stones, the very names of which I + did not know at the time, though I have become more familiar with + them since. Besides this, there were nearly three hundred very fine + pearls, twelve of which were set in a gold coronet. By the way, these + last had been taken out of the chest and were not there when I + recovered it. + + "After we had counted our treasures we put them back into the chest + and carried them to the gate-way to show them to Mahomet Singh. Then + we solemnly renewed our oath to stand by each other and be true to + our secret. We agreed to conceal our loot in a safe place until the + country should be at peace again, and then to divide it equally among + ourselves. There was no use dividing it at present, for if gems of + such value were found upon us it would cause suspicion, and there was + no privacy in the fort nor any place where we could keep them. We + carried the box, therefore, into the same hall where we had buried + the body, and there, under certain bricks in the best-preserved wall, + we made a hollow and put our treasure. We made careful note of the + place, and next day I drew four plans, one for each of us, and put + the sign of the four of us at the bottom, for we had sworn that we + should each always act for all, so that none might take advantage. + That is an oath that I can put my hand to my heart and swear that I + have never broken. + + "Well, there's no use my telling you gentlemen what came of the + Indian mutiny. After Wilson took Delhi and Sir Colin relieved Lucknow + the back of the business was broken. Fresh troops came pouring in, + and Nana Sahib made himself scarce over the frontier. A flying column + under Colonel Greathed came round to Agra and cleared the Pandies + away from it. Peace seemed to be settling upon the country, and we + four were beginning to hope that the time was at hand when we might + safely go off with our shares of the plunder. In a moment, however, + our hopes were shattered by our being arrested as the murderers of + Achmet. + + "It came about in this way. When the rajah put his jewels into the + hands of Achmet he did it because he knew that he was a trusty man. + They are suspicious folk in the East, however: so what does this + rajah do but take a second even more trusty servant and set him to + play the spy upon the first? This second man was ordered never to let + Achmet out of his sight, and he followed him like his shadow. He went + after him that night and saw him pass through the doorway. Of course + he thought he had taken refuge in the fort, and applied for admission + there himself next day, but could find no trace of Achmet. This + seemed to him so strange that he spoke about it to a sergeant of + guides, who brought it to the ears of the commandant. A thorough + search was quickly made, and the body was discovered. Thus at the + very moment that we thought that all was safe we were all four seized + and brought to trial on a charge of murder,--three of us because we + had held the gate that night, and the fourth because he was known to + have been in the company of the murdered man. Not a word about the + jewels came out at the trial, for the rajah had been deposed and + driven out of India: so no one had any particular interest in them. + The murder, however, was clearly made out, and it was certain that we + must all have been concerned in it. The three Sikhs got penal + servitude for life, and I was condemned to death, though my sentence + was afterwards commuted into the same as the others. + + "It was rather a queer position that we found ourselves in then. + There we were all four tied by the leg and with precious little + chance of ever getting out again, while we each held a secret which + might have put each of us in a palace if we could only have made use + of it. It was enough to make a man eat his heart out to have to stand + the kick and the cuff of every petty jack-in-office, to have rice to + eat and water to drink, when that gorgeous fortune was ready for him + outside, just waiting to be picked up. It might have driven me mad; + but I was always a pretty stubborn one, so I just held on and bided + my time. + + "At last it seemed to me to have come. I was changed from Agra to + Madras, and from there to Blair Island in the Andamans. There are + very few white convicts at this settlement, and, as I had behaved + well from the first, I soon found myself a sort of privileged person. + I was given a hut in Hope Town, which is a small place on the slopes + of Mount Harriet, and I was left pretty much to myself. It is a + dreary, fever-stricken place, and all beyond our little clearings was + infested with wild cannibal natives, who were ready enough to blow a + poisoned dart at us if they saw a chance. There was digging, and + ditching, and yam-planting, and a dozen other things to be done, so + we were busy enough all day; though in the evening we had a little + time to ourselves. Among other things, I learned to dispense drugs + for the surgeon, and picked up a smattering of his knowledge. All the + time I was on the lookout for a chance of escape; but it is hundreds + of miles from any other land, and there is little or no wind in those + seas: so it was a terribly difficult job to get away. + + "The surgeon, Dr. Somerton, was a fast, sporting young chap, and the + other young officers would meet in his rooms of an evening and play + cards. The surgery, where I used to make up my drugs, was next to his + sitting-room, with a small window between us. Often, if I felt + lonesome, I used to turn out the lamp in the surgery, and then, + standing there, I could hear their talk and watch their play. I am + fond of a hand at cards myself, and it was almost as good as having + one to watch the others. There was Major Sholto, Captain Morstan, and + Lieutenant Bromley Brown, who were in command of the native troops, + and there was the surgeon himself, and two or three prison-officials, + crafty old hands who played a nice sly safe game. A very snug little + party they used to make. + + "Well, there was one thing which very soon struck me, and that was + that the soldiers used always to lose and the civilians to win. Mind, + I don't say that there was anything unfair, but so it was. These + prison-chaps had done little else than play cards ever since they had + been at the Andamans, and they knew each other's game to a point, + while the others just played to pass the time and threw their cards + down anyhow. Night after night the soldiers got up poorer men, and + the poorer they got the more keen they were to play. Major Sholto was + the hardest hit. He used to pay in notes and gold at first, but soon + it came to notes of hand and for big sums. He sometimes would win for + a few deals, just to give him heart, and then the luck would set in + against him worse than ever. All day he would wander about as black + as thunder, and he took to drinking a deal more than was good for + him. + + "One night he lost even more heavily than usual. I was sitting in my + hut when he and Captain Morstan came stumbling along on the way to + their quarters. They were bosom friends, those two, and never far + apart. The major was raving about his losses. + + "'It's all up, Morstan,' he was saying, as they passed my hut. 'I + shall have to send in my papers. I am a ruined man.' + + "'Nonsense, old chap!' said the other, slapping him upon the + shoulder. 'I've had a nasty facer myself, but--' That was all I could + hear, but it was enough to set me thinking. + + A couple of days later Major Sholto was strolling on the beach: so I + took the chance of speaking to him. + + "'I wish to have your advice, major,' said I. + + "'Well, Small, what is it?' he asked, taking his cheroot from his + lips. + + "'I wanted to ask you, sir,' said I, 'who is the proper person to + whom hidden treasure should be handed over. I know where half a + million worth lies, and, as I cannot use it myself, I thought perhaps + the best thing that I could do would be to hand it over to the proper + authorities, and then perhaps they would get my sentence shortened + for me.' + + "'Half a million, Small?' he gasped, looking hard at me to see if I + was in earnest. + + "'Quite that, sir,--in jewels and pearls. It lies there ready for + anyone. And the queer thing about it is that the real owner is + outlawed and cannot hold property, so that it belongs to the first + comer.' + + "'To government, Small,' he stammered,--'to government.' But he said + it in a halting fashion, and I knew in my heart that I had got him. + + "'You think, then, sir, that I should give the information to the + Governor-General?' said I, quietly. + + "'Well, well, you must not do anything rash, or that you might + repent. Let me hear all about it, Small. Give me the facts.' + + "I told him the whole story, with small changes so that he could not + identify the places. When I had finished he stood stock still and + full of thought. I could see by the twitch of his lip that there was + a struggle going on within him. + + "'This is a very important matter, Small,' he said, at last. 'You + must not say a word to any one about it, and I shall see you again + soon.' + + "Two nights later he and his friend Captain Morstan came to my hut in + the dead of the night with a lantern. + + "'I want you just to let Captain Morstan hear that story from your + own lips, Small,' said he. + + "I repeated it as I had told it before. + + "'It rings true, eh?' said he. 'It's good enough to act upon?' + + "Captain Morstan nodded. + + "'Look here, Small,' said the major. 'We have been talking it over, + my friend here and I, and we have come to the conclusion that this + secret of yours is hardly a government matter, after all, but is a + private concern of your own, which of course you have the power of + disposing of as you think best. Now, the question is, what price + would you ask for it? We might be inclined to take it up, and at + least look into it, if we could agree as to terms.' He tried to speak + in a cool, careless way, but his eyes were shining with excitement + and greed. + + "'Why, as to that, gentlemen,' I answered, trying also to be cool, + but feeling as excited as he did, 'there is only one bargain which a + man in my position can make. I shall want you to help me to my + freedom, and to help my three companions to theirs. We shall then + take yo into partnership, and give you a fifth share to divide + between you.' + + "'Hum!' said he. 'A fifth share! That is not very tempting.' + + "'It would come to fifty thousand apiece,' said I. + + "'But how can we gain your freedom? You know very well that you ask + an impossibility.' + + "'Nothing of the sort,' I answered. 'I have thought it all out to the + last detail. The only bar to our escape is that we can get no boat + fit for the voyage, and no provisions to last us for so long a time. + There are plenty of little yachts and yawls at Calcutta or Madras + which would serve our turn well. Do you bring one over. We shall + engage to get aboard her by night, and if you will drop us on any + part of the Indian coast you will have done your part of the + bargain.' + + "'If there were only one,' he said. + + "'None or all,' I answered. 'We have sworn it. The four of us must + always act together.' + + "'You see, Morstan,' said he, 'Small is a man of his word. He does + not flinch from his friend. I think we may very well trust him.' + + "'It's a dirty business,' the other answered. 'Yet, as you say, the + money would save our commissions handsomely.' + + "'Well, Small,' said the major, 'we must, I suppose, try and meet + you. We must first, of course, test the truth of your story. Tell me + where the box is hid, and I shall get leave of absence and go back to + India in the monthly relief-boat to inquire into the affair.' + + "'Not so fast,' said I, growing colder as he got hot. 'I must have + the consent of my three comrades. I tell you that it is four or none + with us.' + + "'Nonsense!' he broke in. 'What have three black fellows to do with + our agreement?' + + "'Black or blue,' said I, 'they are in with me, and we all go + together.' + + "Well, the matter ended by a second meeting, at which Mahomet Singh, + Abdullah Khan, and Dost Akbar were all present. We talked the matter + over again, and at last we came to an arrangement. We were to provide + both the officers with charts of the part of the Agra fort and mark + the place in the wall where the treasure was hid. Major Sholto was to + go to India to test our story. If he found the box he was to leave it + there, to send out a small yacht provisioned for a voyage, which was + to lie off Rutland Island, and to which we were to make our way, and + finally to return to his duties. Captain Morstan was then to apply + for leave of absence, to meet us at Agra, and there we were to have a + final division of the treasure, he taking the major's share as well + as his own. All this we sealed by the most solemn oaths that the mind + could think or the lips utter. I sat up all night with paper and ink, + and by the morning I had the two charts all ready, signed with the + sign of four,--that is, of Abdullah, Akbar, Mahomet, and myself. + + "Well, gentlemen, I weary you with my long story, and I know that my + friend Mr. Jones is impatient to get me safely stowed in chokey. I'll + make it as short as I can. The villain Sholto went off to India, but + he never came back again. Captain Morstan showed me his name among a + list of passengers in one of the mail-boats very shortly afterwards. + His uncle had died, leaving him a fortune, and he had left the army, + yet he could stoop to treat five men as he had treated us. Morstan + went over to Agra shortly afterwards, and found, as we expected, that + the treasure was indeed gone. The scoundrel had stolen it all, + without carrying out one of the conditions on which we had sold him + the secret. From that day I lived only for vengeance. I thought of it + by day and I nursed it by night. It became an overpowering, absorbing + passion with me. I cared nothing for the law,--nothing for the + gallows. To escape, to track down Sholto, to have my hand upon his + throat,--that was my one thought. Even the Agra treasure had come to + be a smaller thing in my mind than the slaying of Sholto. + + "Well, I have set my mind on many things in this life, and never one + which I did not carry out. But it was weary years before my time + came. I have told you that I had picked up something of medicine. One + day when Dr. Somerton was down with a fever a little Andaman Islander + was picked up by a convict-gang in the woods. He was sick to death, + and had gone to a lonely place to die. I took him in hand, though he + was as venomous as a young snake, and after a couple of months I got + him all right and able to walk. He took a kind of fancy to me then, + and would hardly go back to his woods, but was always hanging about + my hut. I learned a little of his lingo from him, and this made him + all the fonder of me. + + "Tonga--for that was his name--was a fine boatman, and owned a big, + roomy canoe of his own. When I found that he was devoted to me and + would do anything to serve me, I saw my chance of escape. I talked it + over with him. He was to bring his boat round on a certain night to + an old wharf which was never guarded, and there he was to pick me up. + I gave him directions to have several gourds of water and a lot of + yams, cocoa-nuts, and sweet potatoes. + + "He was stanch and true, was little Tonga. No man ever had a more + faithful mate. At the night named he had his boat at the wharf. As it + chanced, however, there was one of the convict-guard down there,--a + vile Pathan who had never missed a chance of insulting and injuring + me. I had always vowed vengeance, and now I had my chance. It was as + if fate had placed him in my way that I might pay my debt before I + left the island. He stood on the bank with his back to me, and his + carbine on his shoulder. I looked about for a stone to beat out his + brains with, but none could I see. + + "Then a queer thought came into my head and showed me where I could + lay my hand on a weapon. I sat down in the darkness and unstrapped my + wooden leg. With three long hops I was on him. He put his carbine to + his shoulder, but I struck him full, and knocked the whole front of + his skull in. You can see the split in the wood now where I hit him. + We both went down together, for I could not keep my balance, but when + I got up I found him still lying quiet enough. I made for the boat, + and in an hour we were well out at sea. Tonga had brought all his + earthly possessions with him, his arms and his gods. Among other + things, he had a long bamboo spear, and some Andaman cocoa-nut + matting, with which I made a sort of sail. For ten days we were + beating about, trusting to luck, and on the eleventh we were picked + up by a trader which was going from Singapore to Jiddah with a cargo + of Malay pilgrims. They were a rum crowd, and Tonga and I soon + managed to settle down among them. They had one very good quality: + they let you alone and asked no questions. + + "Well, if I were to tell you all the adventures that my little chum + and I went through, you would not thank me, for I would have you here + until the sun was shining. Here and there we drifted about the world, + something always turning up to keep us from London. All the time, + however, I never lost sight of my purpose. I would dream of Sholto at + night. A hundred times I have killed him in my sleep. At last, + however, some three or four years ago, we found ourselves in England. + I had no great difficulty in finding where Sholto lived, and I set to + work to discover whether he had realized the treasure, or if he still + had it. I made friends with someone who could help me,--I name no + names, for I don't want to get any one else in a hole,--and I soon + found that he still had the jewels. Then I tried to get at him in + many ways; but he was pretty sly, and had always two prize-fighters, + besides his sons and his khitmutgar, on guard over him. + + "One day, however, I got word that he was dying. I hurried at once to + the garden, mad that he should slip out of my clutches like that, + and, looking through the window, I saw him lying in his bed, with his + sons on each side of him. I'd have come through and taken my chance + with the three of them, only even as I looked at him his jaw dropped, + and I knew that he was gone. I got into his room that same night, + though, and I searched his papers to see if there was any record of + where he had hidden our jewels. There was not a line, however: so I + came away, bitter and savage as a man could be. Before I left I + bethought me that if I ever met my Sikh friends again it would be a + satisfaction to know that I had left some mark of our hatred: so I + scrawled down the sign of the four of us, as it had been on the + chart, and I pinned it on his bosom. It was too much that he should + be taken to the grave without some token from the men whom he had + robbed and befooled. + + "We earned a living at this time by my exhibiting poor Tonga at fairs + and other such places as the black cannibal. He would eat raw meat + and dance his war-dance: so we always had a hatful of pennies after a + day's work. I still heard all the news from Pondicherry Lodge, and + for some years there was no news to hear, except that they were + hunting for the treasure. At last, however, came what we had waited + for so long. The treasure had been found. It was up at the top of the + house, in Mr. Bartholomew Sholto's chemical laboratory. I came at + once and had a look at the place, but I could not see how with my + wooden leg I was to make my way up to it. I learned, however, about a + trap-door in the roof, and also about Mr. Sholto's supper-hour. It + seemed to me that I could manage the thing easily through Tonga. I + brought him out with me with a long rope wound round his waist. He + could climb like a cat, and he soon made his way through the roof, + but, as ill luck would have it, Bartholomew Sholto was still in the + room, to his cost. Tonga thought he had done something very clever in + killing him, for when I came up by the rope I found him strutting + about as proud as a peacock. Very much surprised was he when I made + at him with the rope's end and cursed him for a little blood-thirsty + imp. I took the treasure-box and let it down, and then slid down + myself, having first left the sign of the four upon the table, to + show that the jewels had come back at last to those who had most + right to them. Tonga then pulled up the rope, closed the window, and + made off the way that he had come. + + "I don't know that I have anything else to tell you. I had heard a + waterman speak of the speed of Smith's launch, the Aurora, so I + thought she would be a handy craft for our escape. I engaged with old + Smith, and was to give him a big sum if he got us safe to our ship. + He knew, no doubt, that there was some screw loose, but he was not in + our secrets. All this is the truth, and if I tell it to you, + gentlemen, it is not to amuse you,--for you have not done me a very + good turn,--but it is because I believe the best defence I can make + is just to hold back nothing, but let all the world know how badly I + have myself been served by Major Sholto, and how innocent I am of the + death of his son." + + "A very remarkable account," said Sherlock Holmes. "A fitting wind-up + to an extremely interesting case. There is nothing at all new to me + in the latter part of your narrative, except that you brought your + own rope. That I did not know. By the way, I had hoped that Tonga had + lost all his darts; yet he managed to shoot one at us in the boat." + + "He had lost them all, sir, except the one which was in his blow-pipe + at the time." + + "Ah, of course," said Holmes. "I had not thought of that." + + "Is there any other point which you would like to ask about?" asked + the convict, affably. + + "I think not, thank you," my companion answered. + + "Well, Holmes," said Athelney Jones, "You are a man to be humored, + and we all know that you are a connoisseur of crime, but duty is + duty, and I have gone rather far in doing what you and your friend + asked me. I shall feel more at ease when we have our story-teller + here safe under lock and key. The cab still waits, and there are two + inspectors down-stairs. I am much obliged to you both for your + assistance. Of course you will be wanted at the trial. Good-night to + you." + + "Good-night, gentlemen both," said Jonathan Small. + + "You first, Small," remarked the wary Jones as they left the room. + "I'll take particular care that you don't club me with your wooden + leg, whatever you may have done to the gentleman at the Andaman + Isles." + + "Well, and there is the end of our little drama," I remarked, after + we had set some time smoking in silence. "I fear that it may be the + last investigation in which I shall have the chance of studying your + methods. Miss Morstan has done me the honor to accept me as a husband + in prospective." + + He gave a most dismal groan. "I feared as much," said he. "I really + cannot congratulate you." + + I was a little hurt. "Have you any reason to be dissatisfied with my + choice?" I asked. + + "Not at all. I think she is one of the most charming young ladies I + ever met, and might have been most useful in such work as we have + been doing. She had a decided genius that way: witness the way in + which she preserved that Agra plan from all the other papers of her + father. But love is an emotional thing, and whatever is emotional is + opposed to that true cold reason which I place above all things. I + should never marry myself, lest I bias my judgment." + + "I trust," said I, laughing, "that my judgment may survive the + ordeal. But you look weary." + + "Yes, the reaction is already upon me. I shall be as limp as a rag + for a week." + + "Strange," said I, "how terms of what in another man I should call + laziness alternate with your fits of splendid energy and vigor." + + "Yes," he answered, "there are in me the makings of a very fine + loafer and also of a pretty spry sort of fellow. I often think of + those lines of old Goethe,-- + + Schade, daß die Natur nur einen Mensch aus Dir schuf, + Denn zum würdigen Mann war und zum Schelmen der Stoff. + + "By the way, a propos of this Norwood business, you see that they + had, as I surmised, a confederate in the house, who could be none + other than Lal Rao, the butler: so Jones actually has the undivided + honor of having caught one fish in his great haul." + + "The division seems rather unfair," I remarked. "You have done all + the work in this business. I get a wife out of it, Jones gets the + credit, pray what remains for you?" + + "For me," said Sherlock Holmes, "there still remains the + cocaine-bottle." And he stretched his long white hand up for it. + + + + + + + THE ADVENTURES OF SHERLOCK HOLMES + + + + + + A SCANDAL IN BOHEMIA + + + + + + Table of contents + Chapter 1 + Chapter 2 + Chapter 3 + + + + + + + + + + + + + + + + CHAPTER 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." + + + + + + CHAPTER 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." + + + + + + CHAPTER 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, née 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. + + + + + + + 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 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 employee 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 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, 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; 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 carrée, 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 + 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." + + + + + + + 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 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½ 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." + + "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 dénouement 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 employee, + 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." + + + + + + + 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 + métier, 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 jail." + + 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. + + + + + + + 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, 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. + + + + + + + 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 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 10s., while he has £220 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. 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 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 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. + + "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." + + + + + + + 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 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 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 jail now, and you make him a + jail-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." + + + + + + + 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 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 gypsies, 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, is + now, through the fall in agricultural prices, not more than £750. + Each daughter can claim an income of £250, 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." + + + + + + + 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 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." + + + + + + + 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 pâté 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." + + + + + + + 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 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 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?' + + "'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. 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 a 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." + + 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 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." + + + + + + + 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 célèbres 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 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 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 + 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 a quarter, or + £120 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 a year, when they could have + their pick for £40? 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 répertoire, 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. + + + + + + + THE MEMOIRS OF SHERLOCK HOLMES + + + + + + SILVER BLAZE + + "I am afraid, Watson, that I shall have to go," said Holmes, as we + sat down together to our breakfast one morning. + + "Go! Where to?" + + "To Dartmoor; to King's Pyland." + + I was not surprised. Indeed, my only wonder was that he had not + already been mixed up in this extraordinary case, which was the one + topic of conversation through the length and breadth of England. For + a whole day my companion had rambled about the room with his chin + upon his chest and his brows knitted, charging and recharging his + pipe with the strongest black tobacco, and absolutely deaf to any of + my questions or remarks. Fresh editions of every paper had been sent + up by our news agent, only to be glanced over and tossed down into a + corner. Yet, silent as he was, I knew perfectly well what it was over + which he was brooding. There was but one problem before the public + which could challenge his powers of analysis, and that was the + singular disappearance of the favorite for the Wessex Cup, and the + tragic murder of its trainer. When, therefore, he suddenly announced + his intention of setting out for the scene of the drama it was only + what I had both expected and hoped for. + + "I should be most happy to go down with you if I should not be in the + way," said I. + + "My dear Watson, you would confer a great favour upon me by coming. + And I think that your time will not be misspent, for there are points + about the case which promise to make it an absolutely unique one. We + have, I think, just time to catch our train at Paddington, and I will + go further into the matter upon our journey. You would oblige me by + bringing with you your very excellent field-glass." + + And so it happened that an hour or so later I found myself in the + corner of a first-class carriage flying along en route for Exeter, + while Sherlock Holmes, with his sharp, eager face framed in his + ear-flapped travelling-cap, dipped rapidly into the bundle of fresh + papers which he had procured at Paddington. We had left Reading far + behind us before he thrust the last one of them under the seat, and + offered me his cigar-case. + + "We are going well," said he, looking out the window and glancing at + his watch. "Our rate at present is fifty-three and a half miles an + hour." + + "I have not observed the quarter-mile posts," said I. + + "Nor have I. But the telegraph posts upon this line are sixty yards + apart, and the calculation is a simple one. I presume that you have + looked into this matter of the murder of John Straker and the + disappearance of Silver Blaze?" + + "I have seen what the Telegraph and the Chronicle have to say." + + "It is one of those cases where the art of the reasoner should be + used rather for the sifting of details than for the acquiring of + fresh evidence. The tragedy has been so uncommon, so complete and of + such personal importance to so many people, that we are suffering + from a plethora of surmise, conjecture, and hypothesis. The + difficulty is to detach the framework of fact--of absolute undeniable + fact--from the embellishments of theorists and reporters. Then, + having established ourselves upon this sound basis, it is our duty to + see what inferences may be drawn and what are the special points upon + which the whole mystery turns. On Tuesday evening I received + telegrams from both Colonel Ross, the owner of the horse, and from + Inspector Gregory, who is looking after the case, inviting my + cooperation. + + "Tuesday evening!" I exclaimed. "And this is Thursday morning. Why + didn't you go down yesterday?" + + "Because I made a blunder, my dear Watson--which is, I am afraid, a + more common occurrence than any one would think who only knew me + through your memoirs. The fact is that I could not believe it + possible that the most remarkable horse in England could long remain + concealed, especially in so sparsely inhabited a place as the north + of Dartmoor. From hour to hour yesterday I expected to hear that he + had been found, and that his abductor was the murderer of John + Straker. When, however, another morning had come, and I found that + beyond the arrest of young Fitzroy Simpson nothing had been done, I + felt that it was time for me to take action. Yet in some ways I feel + that yesterday has not been wasted." + + "You have formed a theory, then?" + + "At least I have got a grip of the essential facts of the case. I + shall enumerate them to you, for nothing clears up a case so much as + stating it to another person, and I can hardly expect your + co-operation if I do not show you the position from which we start." + + I lay back against the cushions, puffing at my cigar, while Holmes, + leaning forward, with his long, thin forefinger checking off the + points upon the palm of his left hand, gave me a sketch of the events + which had led to our journey. + + "Silver Blaze," said he, "is from the Somomy stock, and holds as + brilliant a record as his famous ancestor. He is now in his fifth + year, and has brought in turn each of the prizes of the turf to + Colonel Ross, his fortunate owner. Up to the time of the catastrophe + he was the first favorite for the Wessex Cup, the betting being three + to one on him. He has always, however, been a prime favorite with the + racing public, and has never yet disappointed them, so that even at + those odds enormous sums of money have been laid upon him. It is + obvious, therefore, that there were many people who had the strongest + interest in preventing Silver Blaze from being there at the fall of + the flag next Tuesday. + + "The fact was, of course, appreciated at King's Pyland, where the + Colonel's training-stable is situated. Every precaution was taken to + guard the favorite. The trainer, John Straker, is a retired jockey + who rode in Colonel Ross's colors before he became too heavy for the + weighing-chair. He has served the Colonel for five years as jockey + and for seven as trainer, and has always shown himself to be a + zealous and honest servant. Under him were three lads; for the + establishment was a small one, containing only four horses in all. + One of these lads sat up each night in the stable, while the others + slept in the loft. All three bore excellent characters. John Straker, + who is a married man, lived in a small villa about two hundred yards + from the stables. He has no children, keeps one maid-servant, and is + comfortably off. The country round is very lonely, but about half a + mile to the north there is a small cluster of villas which have been + built by a Tavistock contractor for the use of invalids and others + who may wish to enjoy the pure Dartmoor air. Tavistock itself lies + two miles to the west, while across the moor, also about two miles + distant, is the larger training establishment of Mapleton, which + belongs to Lord Backwater, and is managed by Silas Brown. In every + other direction the moor is a complete wilderness, inhabited only by + a few roaming gypsies. Such was the general situation last Monday + night when the catastrophe occurred. + + "On that evening the horses had been exercised and watered as usual, + and the stables were locked up at nine o'clock. Two of the lads + walked up to the trainer's house, where they had supper in the + kitchen, while the third, Ned Hunter, remained on guard. At a few + minutes after nine the maid, Edith Baxter, carried down to the + stables his supper, which consisted of a dish of curried mutton. She + took no liquid, as there was a water-tap in the stables, and it was + the rule that the lad on duty should drink nothing else. The maid + carried a lantern with her, as it was very dark and the path ran + across the open moor. + + "Edith Baxter was within thirty yards of the stables, when a man + appeared out of the darkness and called to her to stop. As he stepped + into the circle of yellow light thrown by the lantern she saw that he + was a person of gentlemanly bearing, dressed in a gray suit of + tweeds, with a cloth cap. He wore gaiters, and carried a heavy stick + with a knob to it. She was most impressed, however, by the extreme + pallor of his face and by the nervousness of his manner. His age, she + thought, would be rather over thirty than under it. + + "'Can you tell me where I am?' he asked. 'I had almost made up my + mind to sleep on the moor, when I saw the light of your lantern.' + + "'You are close to the King's Pyland training-stables,' said she. + + "'Oh, indeed! What a stroke of luck!' he cried. 'I understand that a + stable-boy sleeps there alone every night. Perhaps that is his supper + which you are carrying to him. Now I am sure that you would not be + too proud to earn the price of a new dress, would you?' He took a + piece of white paper folded up out of his waistcoat pocket. 'See that + the boy has this to-night, and you shall have the prettiest frock + that money can buy.' + + "She was frightened by the earnestness of his manner, and ran past + him to the window through which she was accustomed to hand the meals. + It was already opened, and Hunter was seated at the small table + inside. She had begun to tell him of what had happened, when the + stranger came up again. + + "'Good-evening,' said he, looking through the window. 'I wanted to + have a word with you.' The girl has sworn that as he spoke she + noticed the corner of the little paper packet protruding from his + closed hand. + + "'What business have you here?' asked the lad. + + "'It's business that may put something into your pocket,' said the + other. 'You've two horses in for the Wessex Cup--Silver Blaze and + Bayard. Let me have the straight tip and you won't be a loser. Is it + a fact that at the weights Bayard could give the other a hundred + yards in five furlongs, and that the stable have put their money on + him?' + + "'So, you're one of those damned touts!' cried the lad. 'I'll show + you how we serve them in King's Pyland.' He sprang up and rushed + across the stable to unloose the dog. The girl fled away to the + house, but as she ran she looked back and saw that the stranger was + leaning through the window. A minute later, however, when Hunter + rushed out with the hound he was gone, and though he ran all round + the buildings he failed to find any trace of him." + + "One moment," I asked. "Did the stable-boy, when he ran out with the + dog, leave the door unlocked behind him?" + + "Excellent, Watson, excellent!" murmured my companion. "The + importance of the point struck me so forcibly that I sent a special + wire to Dartmoor yesterday to clear the matter up. The boy locked the + door before he left it. The window, I may add, was not large enough + for a man to get through. + + "Hunter waited until his fellow-grooms had returned, when he sent a + message to the trainer and told him what had occurred. Straker was + excited at hearing the account, although he does not seem to have + quite realized its true significance. It left him, however, vaguely + uneasy, and Mrs. Straker, waking at one in the morning, found that he + was dressing. In reply to her inquiries, he said that he could not + sleep on account of his anxiety about the horses, and that he + intended to walk down to the stables to see that all was well. She + begged him to remain at home, as she could hear the rain pattering + against the window, but in spite of her entreaties he pulled on his + large mackintosh and left the house. + + "Mrs. Straker awoke at seven in the morning, to find that her husband + had not yet returned. She dressed herself hastily, called the maid, + and set off for the stables. The door was open; inside, huddled + together upon a chair, Hunter was sunk in a state of absolute stupor, + the favorite's stall was empty, and there were no signs of his + trainer. + + "The two lads who slept in the chaff-cutting loft above the + harness-room were quickly aroused. They had heard nothing during the + night, for they are both sound sleepers. Hunter was obviously under + the influence of some powerful drug, and as no sense could be got out + of him, he was left to sleep it off while the two lads and the two + women ran out in search of the absentees. They still had hopes that + the trainer had for some reason taken out the horse for early + exercise, but on ascending the knoll near the house, from which all + the neighboring moors were visible, they not only could see no signs + of the missing favorite, but they perceived something which warned + them that they were in the presence of a tragedy. + + "About a quarter of a mile from the stables John Straker's overcoat + was flapping from a furze-bush. Immediately beyond there was a + bowl-shaped depression in the moor, and at the bottom of this was + found the dead body of the unfortunate trainer. His head had been + shattered by a savage blow from some heavy weapon, and he was wounded + on the thigh, where there was a long, clean cut, inflicted evidently + by some very sharp instrument. It was clear, however, that Straker + had defended himself vigorously against his assailants, for in his + right hand he held a small knife, which was clotted with blood up to + the handle, while in his left he clasped a red and black silk cravat, + which was recognized by the maid as having been worn on the preceding + evening by the stranger who had visited the stables. Hunter, on + recovering from his stupor, was also quite positive as to the + ownership of the cravat. He was equally certain that the same + stranger had, while standing at the window, drugged his curried + mutton, and so deprived the stables of their watchman. As to the + missing horse, there were abundant proofs in the mud which lay at the + bottom of the fatal hollow that he had been there at the time of the + struggle. But from that morning he has disappeared, and although a + large reward has been offered, and all the gypsies of Dartmoor are on + the alert, no news has come of him. Finally, an analysis has shown + that the remains of his supper left by the stable-lad contain an + appreciable quantity of powdered opium, while the people at the house + partook of the same dish on the same night without any ill effect. + + "Those are the main facts of the case, stripped of all surmise, and + stated as baldly as possible. I shall now recapitulate what the + police have done in the matter. + + "Inspector Gregory, to whom the case has been committed, is an + extremely competent officer. Were he but gifted with imagination he + might rise to great heights in his profession. On his arrival he + promptly found and arrested the man upon whom suspicion naturally + rested. There was little difficulty in finding him, for he inhabited + one of those villas which I have mentioned. His name, it appears, was + Fitzroy Simpson. He was a man of excellent birth and education, who + had squandered a fortune upon the turf, and who lived now by doing a + little quiet and genteel book-making in the sporting clubs of London. + An examination of his betting-book shows that bets to the amount of + five thousand pounds had been registered by him against the favorite. + On being arrested he volunteered the statement that he had come down + to Dartmoor in the hope of getting some information about the King's + Pyland horses, and also about Desborough, the second favorite, which + was in charge of Silas Brown at the Mapleton stables. He did not + attempt to deny that he had acted as described upon the evening + before, but declared that he had no sinister designs, and had simply + wished to obtain first-hand information. When confronted with his + cravat, he turned very pale, and was utterly unable to account for + its presence in the hand of the murdered man. His wet clothing showed + that he had been out in the storm of the night before, and his stick, + which was a Penang-lawyer weighted with lead, was just such a weapon + as might, by repeated blows, have inflicted the terrible injuries to + which the trainer had succumbed. On the other hand, there was no + wound upon his person, while the state of Straker's knife would show + that one at least of his assailants must bear his mark upon him. + There you have it all in a nutshell, Watson, and if you can give me + any light I shall be infinitely obliged to you." + + I had listened with the greatest interest to the statement which + Holmes, with characteristic clearness, had laid before me. Though + most of the facts were familiar to me, I had not sufficiently + appreciated their relative importance, nor their connection to each + other. + + "Is in not possible," I suggested, "that the incised wound upon + Straker may have been caused by his own knife in the convulsive + struggles which follow any brain injury?" + + "It is more than possible; it is probable," said Holmes. "In that + case one of the main points in favor of the accused disappears." + + "And yet," said I, "even now I fail to understand what the theory of + the police can be." + + "I am afraid that whatever theory we state has very grave objections + to it," returned my companion. "The police imagine, I take it, that + this Fitzroy Simpson, having drugged the lad, and having in some way + obtained a duplicate key, opened the stable door and took out the + horse, with the intention, apparently, of kidnapping him altogether. + His bridle is missing, so that Simpson must have put this on. Then, + having left the door open behind him, he was leading the horse away + over the moor, when he was either met or overtaken by the trainer. A + row naturally ensued. Simpson beat out the trainer's brains with his + heavy stick without receiving any injury from the small knife which + Straker used in self-defence, and then the thief either led the horse + on to some secret hiding-place, or else it may have bolted during the + struggle, and be now wandering out on the moors. That is the case as + it appears to the police, and improbable as it is, all other + explanations are more improbable still. However, I shall very quickly + test the matter when I am once upon the spot, and until then I cannot + really see how we can get much further than our present position." + + It was evening before we reached the little town of Tavistock, which + lies, like the boss of a shield, in the middle of the huge circle of + Dartmoor. Two gentlemen were awaiting us in the station--the one a + tall, fair man with lion-like hair and beard and curiously + penetrating light blue eyes; the other a small, alert person, very + neat and dapper, in a frock-coat and gaiters, with trim little + side-whiskers and an eye-glass. The latter was Colonel Ross, the + well-known sportsman; the other, Inspector Gregory, a man who was + rapidly making his name in the English detective service. + + "I am delighted that you have come down, Mr. Holmes," said the + Colonel. "The Inspector here has done all that could possibly be + suggested, but I wish to leave no stone unturned in trying to avenge + poor Straker and in recovering my horse." + + "Have there been any fresh developments?" asked Holmes. + + "I am sorry to say that we have made very little progress," said the + Inspector. "We have an open carriage outside, and as you would no + doubt like to see the place before the light fails, we might talk it + over as we drive." + + A minute later we were all seated in a comfortable landau, and were + rattling through the quaint old Devonshire city. Inspector Gregory + was full of his case, and poured out a stream of remarks, while + Holmes threw in an occasional question or interjection. Colonel Ross + leaned back with his arms folded and his hat tilted over his eyes, + while I listened with interest to the dialogue of the two detectives. + Gregory was formulating his theory, which was almost exactly what + Holmes had foretold in the train. + + "The net is drawn pretty close round Fitzroy Simpson," he remarked, + "and I believe myself that he is our man. At the same time I + recognize that the evidence is purely circumstantial, and that some + new development may upset it." + + "How about Straker's knife?" + + "We have quite come to the conclusion that he wounded himself in his + fall." + + "My friend Dr. Watson made that suggestion to me as we came down. If + so, it would tell against this man Simpson." + + "Undoubtedly. He has neither a knife nor any sign of a wound. The + evidence against him is certainly very strong. He had a great + interest in the disappearance of the favorite. He lies under + suspicion of having poisoned the stable-boy, he was undoubtedly out + in the storm, he was armed with a heavy stick, and his cravat was + found in the dead man's hand. I really think we have enough to go + before a jury." + + Holmes shook his head. "A clever counsel would tear it all to rags," + said he. "Why should he take the horse out of the stable? If he + wished to injure it why could he not do it there? Has a duplicate key + been found in his possession? What chemist sold him the powdered + opium? Above all, where could he, a stranger to the district, hide a + horse, and such a horse as this? What is his own explanation as to + the paper which he wished the maid to give to the stable-boy?" + + "He says that it was a ten-pound note. One was found in his purse. + But your other difficulties are not so formidable as they seem. He is + not a stranger to the district. He has twice lodged at Tavistock in + the summer. The opium was probably brought from London. The key, + having served its purpose, would be hurled away. The horse may be at + the bottom of one of the pits or old mines upon the moor." + + "What does he say about the cravat?" + + "He acknowledges that it is his, and declares that he had lost it. + But a new element has been introduced into the case which may account + for his leading the horse from the stable." + + Holmes pricked up his ears. + + "We have found traces which show that a party of gypsies encamped on + Monday night within a mile of the spot where the murder took place. + On Tuesday they were gone. Now, presuming that there was some + understanding between Simpson and these gypsies, might he not have + been leading the horse to them when he was overtaken, and may they + not have him now?" + + "It is certainly possible." + + "The moor is being scoured for these gypsies. I have also examined + every stable and out-house in Tavistock, and for a radius of ten + miles." + + "There is another training-stable quite close, I understand?" + + "Yes, and that is a factor which we must certainly not neglect. As + Desborough, their horse, was second in the betting, they had an + interest in the disappearance of the favorite. Silas Brown, the + trainer, is known to have had large bets upon the event, and he was + no friend to poor Straker. We have, however, examined the stables, + and there is nothing to connect him with the affair." + + "And nothing to connect this man Simpson with the interests of the + Mapleton stables?" + + "Nothing at all." + + Holmes leaned back in the carriage, and the conversation ceased. A + few minutes later our driver pulled up at a neat little red-brick + villa with overhanging eaves which stood by the road. Some distance + off, across a paddock, lay a long gray-tiled out-building. In every + other direction the low curves of the moor, bronze-colored from the + fading ferns, stretched away to the sky-line, broken only by the + steeples of Tavistock, and by a cluster of houses away to the + westward which marked the Mapleton stables. We all sprang out with + the exception of Holmes, who continued to lean back with his eyes + fixed upon the sky in front of him, entirely absorbed in his own + thoughts. It was only when I touched his arm that he roused himself + with a violent start and stepped out of the carriage. + + "Excuse me," said he, turning to Colonel Ross, who had looked at him + in some surprise. "I was day-dreaming." There was a gleam in his eyes + and a suppressed excitement in his manner which convinced me, used as + I was to his ways, that his hand was upon a clue, though I could not + imagine where he had found it. + + "Perhaps you would prefer at once to go on to the scene of the crime, + Mr. Holmes?" said Gregory. + + "I think that I should prefer to stay here a little and go into one + or two questions of detail. Straker was brought back here, I + presume?" + + "Yes; he lies upstairs. The inquest is to-morrow." + + "He has been in your service some years, Colonel Ross?" + + "I have always found him an excellent servant." + + "I presume that you made an inventory of what he had in this pockets + at the time of his death, Inspector?" + + "I have the things themselves in the sitting-room, if you would care + to see them." + + "I should be very glad." We all filed into the front room and sat + round the central table while the Inspector unlocked a square tin box + and laid a small heap of things before us. There was a box of vestas, + two inches of tallow candle, an A D P brier-root pipe, a pouch of + seal-skin with half an ounce of long-cut Cavendish, a silver watch + with a gold chain, five sovereigns in gold, an aluminum pencil-case, + a few papers, and an ivory-handled knife with a very delicate, + inflexible blade marked Weiss & Co., London. + + "This is a very singular knife," said Holmes, lifting it up and + examining it minutely. "I presume, as I see blood-stains upon it, + that it is the one which was found in the dead man's grasp. Watson, + this knife is surely in your line?" + + "It is what we call a cataract knife," said I. + + "I thought so. A very delicate blade devised for very delicate work. + A strange thing for a man to carry with him upon a rough expedition, + especially as it would not shut in his pocket." + + "The tip was guarded by a disk of cork which we found beside his + body," said the Inspector. "His wife tells us that the knife had lain + upon the dressing-table, and that he had picked it up as he left the + room. It was a poor weapon, but perhaps the best that he could lay + his hands on at the moment." + + "Very possible. How about these papers?" + + "Three of them are receipted hay-dealers' accounts. One of them is a + letter of instructions from Colonel Ross. This other is a milliner's + account for thirty-seven pounds fifteen made out by Madame Lesurier, + of Bond Street, to William Derbyshire. Mrs. Straker tells us that + Derbyshire was a friend of her husband's and that occasionally his + letters were addressed here." + + "Madam Derbyshire had somewhat expensive tastes," remarked Holmes, + glancing down the account. "Twenty-two guineas is rather heavy for a + single costume. However there appears to be nothing more to learn, + and we may now go down to the scene of the crime." + + As we emerged from the sitting-room a woman, who had been waiting in + the passage, took a step forward and laid her hand upon the + Inspector's sleeve. Her face was haggard and thin and eager, stamped + with the print of a recent horror. + + "Have you got them? Have you found them?" she panted. + + "No, Mrs. Straker. But Mr. Holmes here has come from London to help + us, and we shall do all that is possible." + + "Surely I met you in Plymouth at a garden-party some little time ago, + Mrs. Straker?" said Holmes. + + "No, sir; you are mistaken." + + "Dear me! Why, I could have sworn to it. You wore a costume of + dove-colored silk with ostrich-feather trimming." + + "I never had such a dress, sir," answered the lady. + + "Ah, that quite settles it," said Holmes. And with an apology he + followed the Inspector outside. A short walk across the moor took us + to the hollow in which the body had been found. At the brink of it + was the furze-bush upon which the coat had been hung. + + "There was no wind that night, I understand," said Holmes. + + "None; but very heavy rain." + + "In that case the overcoat was not blown against the furze-bush, but + placed there." + + "Yes, it was laid across the bush." + + "You fill me with interest, I perceive that the ground has been + trampled up a good deal. No doubt many feet have been here since + Monday night." + + "A piece of matting has been laid here at the side, and we have all + stood upon that." + + "Excellent." + + "In this bag I have one of the boots which Straker wore, one of + Fitzroy Simpson's shoes, and a cast horseshoe of Silver Blaze." + + "My dear Inspector, you surpass yourself!" Holmes took the bag, and, + descending into the hollow, he pushed the matting into a more central + position. Then stretching himself upon his face and leaning his chin + upon his hands, he made a careful study of the trampled mud in front + of him. "Hullo!" said he, suddenly. "What's this?" It was a wax vesta + half burned, which was so coated with mud that it looked at first + like a little chip of wood. + + "I cannot think how I came to overlook it," said the Inspector, with + an expression of annoyance. + + "It was invisible, buried in the mud. I only saw it because I was + looking for it." + + "What! You expected to find it?" + + "I thought it not unlikely." + + He took the boots from the bag, and compared the impressions of each + of them with marks upon the ground. Then he clambered up to the rim + of the hollow, and crawled about among the ferns and bushes. + + "I am afraid that there are no more tracks," said the Inspector. "I + have examined the ground very carefully for a hundred yards in each + direction." + + "Indeed!" said Holmes, rising. "I should not have the impertinence to + do it again after what you say. But I should like to take a little + walk over the moor before it grows dark, that I may know my ground + to-morrow, and I think that I shall put this horseshoe into my pocket + for luck." + + Colonel Ross, who had shown some signs of impatience at my + companion's quiet and systematic method of work, glanced at his + watch. "I wish you would come back with me, Inspector," said he. + "There are several points on which I should like your advice, and + especially as to whether we do not owe it to the public to remove our + horse's name from the entries for the Cup." + + "Certainly not," cried Holmes, with decision. "I should let the name + stand." + + The Colonel bowed. "I am very glad to have had your opinion, sir," + said he. "You will find us at poor Straker's house when you have + finished your walk, and we can drive together into Tavistock." + + He turned back with the Inspector, while Holmes and I walked slowly + across the moor. The sun was beginning to sink behind the stables of + Mapleton, and the long, sloping plain in front of us was tinged with + gold, deepening into rich, ruddy browns where the faded ferns and + brambles caught the evening light. But the glories of the landscape + were all wasted upon my companion, who was sunk in the deepest + thought. + + "It's this way, Watson," said he at last. "We may leave the question + of who killed John Straker for the instant, and confine ourselves to + finding out what has become of the horse. Now, supposing that he + broke away during or after the tragedy, where could he have gone to? + The horse is a very gregarious creature. If left to himself his + instincts would have been either to return to King's Pyland or go + over to Mapleton. Why should he run wild upon the moor? He would + surely have been seen by now. And why should gypsies kidnap him? + These people always clear out when they hear of trouble, for they do + not wish to be pestered by the police. They could not hope to sell + such a horse. They would run a great risk and gain nothing by taking + him. Surely that is clear." + + "Where is he, then?" + + "I have already said that he must have gone to King's Pyland or to + Mapleton. He is not at King's Pyland. Therefore he is at Mapleton. + Let us take that as a working hypothesis and see what it leads us to. + This part of the moor, as the Inspector remarked, is very hard and + dry. But it falls away towards Mapleton, and you can see from here + that there is a long hollow over yonder, which must have been very + wet on Monday night. If our supposition is correct, then the horse + must have crossed that, and there is the point where we should look + for his tracks." + + We had been walking briskly during this conversation, and a few more + minutes brought us to the hollow in question. At Holmes' request I + walked down the bank to the right, and he to the left, but I had not + taken fifty paces before I heard him give a shout, and saw him waving + his hand to me. The track of a horse was plainly outlined in the soft + earth in front of him, and the shoe which he took from his pocket + exactly fitted the impression. + + "See the value of imagination," said Holmes. "It is the one quality + which Gregory lacks. We imagined what might have happened, acted upon + the supposition, and find ourselves justified. Let us proceed." + + We crossed the marshy bottom and passed over a quarter of a mile of + dry, hard turf. Again the ground sloped, and again we came on the + tracks. Then we lost them for half a mile, but only to pick them up + once more quite close to Mapleton. It was Holmes who saw them first, + and he stood pointing with a look of triumph upon his face. A man's + track was visible beside the horse's. + + "The horse was alone before," I cried. + + "Quite so. It was alone before. Hullo, what is this?" + + The double track turned sharp off and took the direction of King's + Pyland. Holmes whistled, and we both followed along after it. His + eyes were on the trail, but I happened to look a little to one side, + and saw to my surprise the same tracks coming back again in the + opposite direction. + + "One for you, Watson," said Holmes, when I pointed it out. "You have + saved us a long walk, which would have brought us back on our own + traces. Let us follow the return track." + + We had not to go far. It ended at the paving of asphalt which led up + to the gates of the Mapleton stables. As we approached, a groom ran + out from them. + + "We don't want any loiterers about here," said he. + + "I only wished to ask a question," said Holmes, with his finger and + thumb in his waistcoat pocket. "Should I be too early to see your + master, Mr. Silas Brown, if I were to call at five o'clock to-morrow + morning?" + + "Bless you, sir, if any one is about he will be, for he is always the + first stirring. But here he is, sir, to answer your questions for + himself. No, sir, no; it is as much as my place is worth to let him + see me touch your money. Afterwards, if you like." + + As Sherlock Holmes replaced the half-crown which he had drawn from + his pocket, a fierce-looking elderly man strode out from the gate + with a hunting-crop swinging in his hand. + + "What's this, Dawson!" he cried. "No gossiping! Go about your + business! And you, what the devil do you want here?" + + "Ten minutes' talk with you, my good sir," said Holmes in the + sweetest of voices. + + "I've no time to talk to every gadabout. We want no stranger here. Be + off, or you may find a dog at your heels." + + Holmes leaned forward and whispered something in the trainer's ear. + He started violently and flushed to the temples. + + "It's a lie!" he shouted, "an infernal lie!" + + "Very good. Shall we argue about it here in public or talk it over in + your parlor?" + + "Oh, come in if you wish to." + + Holmes smiled. "I shall not keep you more than a few minutes, + Watson," said he. "Now, Mr. Brown, I am quite at your disposal." + + It was twenty minutes, and the reds had all faded into grays before + Holmes and the trainer reappeared. Never have I seen such a change as + had been brought about in Silas Brown in that short time. His face + was ashy pale, beads of perspiration shone upon his brow, and his + hands shook until the hunting-crop wagged like a branch in the wind. + His bullying, overbearing manner was all gone too, and he cringed + along at my companion's side like a dog with its master. + + "Your instructions will be done. It shall all be done," said he. + + "There must be no mistake," said Holmes, looking round at him. The + other winced as he read the menace in his eyes. + + "Oh no, there shall be no mistake. It shall be there. Should I change + it first or not?" + + Holmes thought a little and then burst out laughing. "No, don't," + said he; "I shall write to you about it. No tricks, now, or--" + + "Oh, you can trust me, you can trust me!" + + "Yes, I think I can. Well, you shall hear from me to-morrow." He + turned upon his heel, disregarding the trembling hand which the other + held out to him, and we set off for King's Pyland. + + "A more perfect compound of the bully, coward, and sneak than Master + Silas Brown I have seldom met with," remarked Holmes as we trudged + along together. + + "He has the horse, then?" + + "He tried to bluster out of it, but I described to him so exactly + what his actions had been upon that morning that he is convinced that + I was watching him. Of course you observed the peculiarly square toes + in the impressions, and that his own boots exactly corresponded to + them. Again, of course no subordinate would have dared to do such a + thing. I described to him how, when according to his custom he was + the first down, he perceived a strange horse wandering over the moor. + How he went out to it, and his astonishment at recognizing, from the + white forehead which has given the favorite its name, that chance had + put in his power the only horse which could beat the one upon which + he had put his money. Then I described how his first impulse had been + to lead him back to King's Pyland, and how the devil had shown him + how he could hide the horse until the race was over, and how he had + led it back and concealed it at Mapleton. When I told him every + detail he gave it up and thought only of saving his own skin." + + "But his stables had been searched?" + + "Oh, and old horse-faker like him has many a dodge." + + "But are you not afraid to leave the horse in his power now, since he + has every interest in injuring it?" + + "My dear fellow, he will guard it as the apple of his eye. He knows + that his only hope of mercy is to produce it safe." + + "Colonel Ross did not impress me as a man who would be likely to show + much mercy in any case." + + "The matter does not rest with Colonel Ross. I follow my own methods, + and tell as much or as little as I choose. That is the advantage of + being unofficial. I don't know whether you observed it, Watson, but + the Colonel's manner has been just a trifle cavalier to me. I am + inclined now to have a little amusement at his expense. Say nothing + to him about the horse." + + "Certainly not without your permission." + + "And of course this is all quite a minor point compared to the + question of who killed John Straker." + + "And you will devote yourself to that?" + + "On the contrary, we both go back to London by the night train." + + I was thunderstruck by my friend's words. We had only been a few + hours in Devonshire, and that he should give up an investigation + which he had begun so brilliantly was quite incomprehensible to me. + Not a word more could I draw from him until we were back at the + trainer's house. The Colonel and the Inspector were awaiting us in + the parlor. + + "My friend and I return to town by the night-express," said Holmes. + "We have had a charming little breath of your beautiful Dartmoor + air." + + The Inspector opened his eyes, and the Colonel's lip curled in a + sneer. + + "So you despair of arresting the murderer of poor Straker," said he. + + Holmes shrugged his shoulders. "There are certainly grave + difficulties in the way," said he. "I have every hope, however, that + your horse will start upon Tuesday, and I beg that you will have your + jockey in readiness. Might I ask for a photograph of Mr. John + Straker?" + + The Inspector took one from an envelope and handed it to him. + + "My dear Gregory, you anticipate all my wants. If I might ask you to + wait here for an instant, I have a question which I should like to + put to the maid." + + "I must say that I am rather disappointed in our London consultant," + said Colonel Ross, bluntly, as my friend left the room. "I do not see + that we are any further than when he came." + + "At least you have his assurance that your horse will run," said I. + + "Yes, I have his assurance," said the Colonel, with a shrug of his + shoulders. "I should prefer to have the horse." + + I was about to make some reply in defence of my friend when he + entered the room again. + + "Now, gentlemen," said he, "I am quite ready for Tavistock." + + As we stepped into the carriage one of the stable-lads held the door + open for us. A sudden idea seemed to occur to Holmes, for he leaned + forward and touched the lad upon the sleeve. + + "You have a few sheep in the paddock," he said. "Who attends to + them?" + + "I do, sir." + + "Have you noticed anything amiss with them of late?" + + "Well, sir, not of much account; but three of them have gone lame, + sir." + + I could see that Holmes was extremely pleased, for he chuckled and + rubbed his hands together. + + "A long shot, Watson; a very long shot," said he, pinching my arm. + "Gregory, let me recommend to your attention this singular epidemic + among the sheep. Drive on, coachman!" + + Colonel Ross still wore an expression which showed the poor opinion + which he had formed of my companion's ability, but I saw by the + Inspector's face that his attention had been keenly aroused. + + "You consider that to be important?" he asked. + + "Exceedingly so." + + "Is there any point to which you would wish to draw my attention?" + + "To the curious incident of the dog in the night-time." + + "The dog did nothing in the night-time." + + "That was the curious incident," remarked Sherlock Holmes. + + Four days later Holmes and I were again in the train, bound for + Winchester to see the race for the Wessex Cup. Colonel Ross met us by + appointment outside the station, and we drove in his drag to the + course beyond the town. His face was grave, and his manner was cold + in the extreme. + + "I have seen nothing of my horse," said he. + + "I suppose that you would know him when you saw him?" asked Holmes. + + The Colonel was very angry. "I have been on the turf for twenty + years, and never was asked such a question as that before," said he. + "A child would know Silver Blaze, with his white forehead and his + mottled off-foreleg." + + "How is the betting?" + + "Well, that is the curious part of it. You could have got fifteen to + one yesterday, but the price has become shorter and shorter, until + you can hardly get three to one now." + + "Hum!" said Holmes. "Somebody knows something, that is clear." + + As the drag drew up in the enclosure near the grand stand I glanced + at the card to see the entries. + + Wessex Plate [it ran] 50 sovs. each h ft with 1000 sovs. added, for + four and five year olds. Second, £300. Third, £200. New course (one + mile and five furlongs). + + 1. Mr. Heath Newton's The Negro. Red cap. Cinnamon jacket. + 2. Colonel Wardlaw's Pugilist. Pink cap. Blue and black jacket. + 3. Lord Backwater's Desborough. Yellow cap and sleeves. + 4. Colonel Ross's Silver Blaze. Black cap. Red jacket. + 5. Duke of Balmoral's Iris. Yellow and black stripes. + 6. Lord Singleford's Rasper. Purple cap. Black sleeves. + + "We scratched our other one, and put all hopes on your word," said + the Colonel. "Why, what is that? Silver Blaze favorite?" + + "Five to four against Silver Blaze!" roared the ring. "Five to four + against Silver Blaze! Five to fifteen against Desborough! Five to + four on the field!" + + "There are the numbers up," I cried. "They are all six there." + + "All six there? Then my horse is running," cried the Colonel in great + agitation. "But I don't see him. My colors have not passed." + + "Only five have passed. This must be he." + + As I spoke a powerful bay horse swept out from the weighting + enclosure and cantered past us, bearing on its back the well-known + black and red of the Colonel. + + "That's not my horse," cried the owner. "That beast has not a white + hair upon its body. What is this that you have done, Mr. Holmes?" + + "Well, well, let us see how he gets on," said my friend, + imperturbably. For a few minutes he gazed through my field-glass. + "Capital! An excellent start!" he cried suddenly. "There they are, + coming round the curve!" + + From our drag we had a superb view as they came up the straight. The + six horses were so close together that a carpet could have covered + them, but half way up the yellow of the Mapleton stable showed to the + front. Before they reached us, however, Desborough's bolt was shot, + and the Colonel's horse, coming away with a rush, passed the post a + good six lengths before its rival, the Duke of Balmoral's Iris making + a bad third. + + "It's my race, anyhow," gasped the Colonel, passing his hand over his + eyes. "I confess that I can make neither head nor tail of it. Don't + you think that you have kept up your mystery long enough, Mr. + Holmes?" + + "Certainly, Colonel, you shall know everything. Let us all go round + and have a look at the horse together. Here he is," he continued, as + we made our way into the weighing enclosure, where only owners and + their friends find admittance. "You have only to wash his face and + his leg in spirits of wine, and you will find that he is the same old + Silver Blaze as ever." + + "You take my breath away!" + + "I found him in the hands of a faker, and took the liberty of running + him just as he was sent over." + + "My dear sir, you have done wonders. The horse looks very fit and + well. It never went better in its life. I owe you a thousand + apologies for having doubted your ability. You have done me a great + service by recovering my horse. You would do me a greater still if + you could lay your hands on the murderer of John Straker." + + "I have done so," said Holmes quietly. + + The Colonel and I stared at him in amazement. "You have got him! + Where is he, then?" + + "He is here." + + "Here! Where?" + + "In my company at the present moment." + + The Colonel flushed angrily. "I quite recognize that I am under + obligations to you, Mr. Holmes," said he, "but I must regard what you + have just said as either a very bad joke or an insult." + + Sherlock Holmes laughed. "I assure you that I have not associated you + with the crime, Colonel," said he. "The real murderer is standing + immediately behind you." He stepped past and laid his hand upon the + glossy neck of the thoroughbred. + + "The horse!" cried both the Colonel and myself. + + "Yes, the horse. And it may lessen his guilt if I say that it was + done in self-defence, and that John Straker was a man who was + entirely unworthy of your confidence. But there goes the bell, and as + I stand to win a little on this next race, I shall defer a lengthy + explanation until a more fitting time." + + We had the corner of a Pullman car to ourselves that evening as we + whirled back to London, and I fancy that the journey was a short one + to Colonel Ross as well as to myself, as we listened to our + companion's narrative of the events which had occurred at the + Dartmoor training-stables upon the Monday night, and the means by + which he had unravelled them. + + "I confess," said he, "that any theories which I had formed from the + newspaper reports were entirely erroneous. And yet there were + indications there, had they not been overlaid by other details which + concealed their true import. I went to Devonshire with the conviction + that Fitzroy Simpson was the true culprit, although, of course, I saw + that the evidence against him was by no means complete. It was while + I was in the carriage, just as we reached the trainer's house, that + the immense significance of the curried mutton occurred to me. You + may remember that I was distrait, and remained sitting after you had + all alighted. I was marvelling in my own mind how I could possibly + have overlooked so obvious a clue." + + "I confess," said the Colonel, "that even now I cannot see how it + helps us." + + "It was the first link in my chain of reasoning. Powdered opium is by + no means tasteless. The flavor is not disagreeable, but it is + perceptible. Were it mixed with any ordinary dish the eater would + undoubtedly detect it, and would probably eat no more. A curry was + exactly the medium which would disguise this taste. By no possible + supposition could this stranger, Fitzroy Simpson, have caused curry + to be served in the trainer's family that night, and it is surely too + monstrous a coincidence to suppose that he happened to come along + with powdered opium upon the very night when a dish happened to be + served which would disguise the flavor. That is unthinkable. + Therefore Simpson becomes eliminated from the case, and our attention + centers upon Straker and his wife, the only two people who could have + chosen curried mutton for supper that night. The opium was added + after the dish was set aside for the stable-boy, for the others had + the same for supper with no ill effects. Which of them, then, had + access to that dish without the maid seeing them? + + "Before deciding that question I had grasped the significance of the + silence of the dog, for one true inference invariably suggests + others. The Simpson incident had shown me that a dog was kept in the + stables, and yet, though some one had been in and had fetched out a + horse, he had not barked enough to arouse the two lads in the loft. + Obviously the midnight visitor was some one whom the dog knew well. + + "I was already convinced, or almost convinced, that John Straker went + down to the stables in the dead of the night and took out Silver + Blaze. For what purpose? For a dishonest one, obviously, or why + should he drug his own stable-boy? And yet I was at a loss to know + why. There have been cases before now where trainers have made sure + of great sums of money by laying against their own horses, through + agents, and then preventing them from winning by fraud. Sometimes it + is a pulling jockey. Sometimes it is some surer and subtler means. + What was it here? I hoped that the contents of his pockets might help + me to form a conclusion. + + "And they did so. You cannot have forgotten the singular knife which + was found in the dead man's hand, a knife which certainly no sane man + would choose for a weapon. It was, as Dr. Watson told us, a form of + knife which is used for the most delicate operations known in + surgery. And it was to be used for a delicate operation that night. + You must know, with your wide experience of turf matters, Colonel + Ross, that it is possible to make a slight nick upon the tendons of a + horse's ham, and to do it subcutaneously, so as to leave absolutely + no trace. A horse so treated would develop a slight lameness, which + would be put down to a strain in exercise or a touch of rheumatism, + but never to foul play." + + "Villain! Scoundrel!" cried the Colonel. + + "We have here the explanation of why John Straker wished to take the + horse out on to the moor. So spirited a creature would have certainly + roused the soundest of sleepers when it felt the prick of the knife. + It was absolutely necessary to do it in the open air." + + "I have been blind!" cried the Colonel. "Of course that was why he + needed the candle, and struck the match." + + "Undoubtedly. But in examining his belongings I was fortunate enough + to discover not only the method of the crime, but even its motives. + As a man of the world, Colonel, you know that men do not carry other + people's bills about in their pockets. We have most of us quite + enough to do to settle our own. I at once concluded that Straker was + leading a double life, and keeping a second establishment. The nature + of the bill showed that there was a lady in the case, and one who had + expensive tastes. Liberal as you are with your servants, one can + hardly expect that they can buy twenty-guinea walking dresses for + their ladies. I questioned Mrs. Straker as to the dress without her + knowing it, and having satisfied myself that it had never reached + her, I made a note of the milliner's address, and felt that by + calling there with Straker's photograph I could easily dispose of the + mythical Derbyshire. + + "From that time on all was plain. Straker had led out the horse to a + hollow where his light would be invisible. Simpson in his flight had + dropped his cravat, and Straker had picked it up--with some idea, + perhaps, that he might use it in securing the horse's leg. Once in + the hollow, he had got behind the horse and had struck a light; but + the creature frightened at the sudden glare, and with the strange + instinct of animals feeling that some mischief was intended, had + lashed out, and the steel shoe had struck Straker full on the + forehead. He had already, in spite of the rain, taken off his + overcoat in order to do his delicate task, and so, as he fell, his + knife gashed his thigh. Do I make it clear?" + + "Wonderful!" cried the Colonel. "Wonderful! You might have been + there!" + + "My final shot was, I confess a very long one. It struck me that so + astute a man as Straker would not undertake this delicate + tendon-nicking without a little practice. What could he practice on? + My eyes fell upon the sheep, and I asked a question which, rather to + my surprise, showed that my surmise was correct. + + "When I returned to London I called upon the milliner, who had + recognized Straker as an excellent customer of the name of + Derbyshire, who had a very dashing wife, with a strong partiality for + expensive dresses. I have no doubt that this woman had plunged him + over head and ears in debt, and so led him into this miserable plot." + + "You have explained all but one thing," cried the Colonel. "Where was + the horse?" + + "Ah, it bolted, and was cared for by one of your neighbors. We must + have an amnesty in that direction, I think. This is Clapham Junction, + if I am not mistaken, and we shall be in Victoria in less than ten + minutes. If you care to smoke a cigar in our rooms, Colonel, I shall + be happy to give you any other details which might interest you." + + + + + + + THE YELLOW FACE + + [In publishing these short sketches based upon the numerous cases in + which my companion's singular gifts have made us the listeners to, + and eventually the actors in, some strange drama, it is only natural + that I should dwell rather upon his successes than upon his failures. + And this not so much for the sake of his reputations--for, indeed, it + was when he was at his wits' end that his energy and his versatility + were most admirable--but because where he failed it happened too + often that no one else succeeded, and that the tale was left forever + without a conclusion. Now and again, however, it chanced that even + when he erred, the truth was still discovered. I have noted of some + half-dozen cases of the kind of which "The Adventure of the Musgrave + Ritual" and that which I am about to recount are the two which + present the strongest features of interest.] + + Sherlock Holmes was a man who seldom took exercise for exercise's + sake. Few men were capable of greater muscular effort, and he was + undoubtedly one of the finest boxers of his weight that I have ever + seen; but he looked upon aimless bodily exertion as a waste of + energy, and he seldom bestirred himself save when there was some + professional object to be served. Then he was absolutely untiring and + indefatigable. That he should have kept himself in training under + such circumstances is remarkable, but his diet was usually of the + sparest, and his habits were simple to the verge of austerity. Save + for the occasional use of cocaine, he had no vices, and he only + turned to the drug as a protest against the monotony of existence + when cases were scanty and the papers uninteresting. + + One day in early spring he had so far relaxed as to go for a walk + with me in the Park, where the first faint shoots of green were + breaking out upon the elms, and the sticky spear-heads of the + chestnuts were just beginning to burst into their five-fold leaves. + For two hours we rambled about together, in silence for the most + part, as befits two men who know each other intimately. It was nearly + five before we were back in Baker Street once more. + + "Beg pardon, sir," said our page-boy, as he opened the door. "There's + been a gentleman here asking for you, sir." + + Holmes glanced reproachfully at me. "So much for afternoon walks!" + said he. "Has this gentleman gone, then?" + + "Yes, sir." + + "Didn't you ask him in?" + + "Yes, sir; he came in." + + "How long did he wait?" + + "Half an hour, sir. He was a very restless gentleman, sir, a-walkin' + and a-stampin' all the time he was here. I was waitin' outside the + door, sir, and I could hear him. At last he outs into the passage, + and he cries, 'Is that man never goin' to come?' Those were his very + words, sir. 'You'll only need to wait a little longer,' says I. 'Then + I'll wait in the open air, for I feel half choked,' says he. 'I'll be + back before long.' And with that he ups and he outs, and all I could + say wouldn't hold him back." + + "Well, well, you did your best," said Holmes, as we walked into our + room. "It's very annoying, though, Watson. I was badly in need of a + case, and this looks, from the man's impatience, as if it were of + importance. Hullo! That's not your pipe on the table. He must have + left his behind him. A nice old brier with a good long stem of what + the tobacconists call amber. I wonder how many real amber mouthpieces + there are in London? Some people think that a fly in it is a sign. + Well, he must have been disturbed in his mind to leave a pipe behind + him which he evidently values highly." + + "How do you know that he values it highly?" I asked. + + "Well, I should put the original cost of the pipe at seven and + sixpence. Now it has, you see, been twice mended, once in the wooden + stem and once in the amber. Each of these mends, done, as you + observe, with silver bands, must have cost more than the pipe did + originally. The man must value the pipe highly when he prefers to + patch it up rather than buy a new one with the same money." + + "Anything else?" I asked, for Holmes was turning the pipe about in + his hand, and staring at it in his peculiar pensive way. + + He held it up and tapped on it with his long, thin fore-finger, as a + professor might who was lecturing on a bone. + + "Pipes are occasionally of extraordinary interest," said he. "Nothing + has more individuality, save perhaps watches and bootlaces. The + indications here, however, are neither very marked nor very + important. The owner is obviously a muscular man, left-handed, with + an excellent set of teeth, careless in his habits, and with no need + to practise economy." + + My friend threw out the information in a very offhand way, but I saw + that he cocked his eye at me to see if I had followed his reasoning. + + "You think a man must be well-to-do if he smokes a seven-shilling + pipe," said I. + + "This is Grosvenor mixture at eightpence an ounce," Holmes answered, + knocking a little out on his palm. "As he might get an excellent + smoke for half the price, he has no need to practise economy." + + "And the other points?" + + "He has been in the habit of lighting his pipe at lamps and gas-jets. + You can see that it is quite charred all down one side. Of course a + match could not have done that. Why should a man hold a match to the + side of his pipe? But you cannot light it at a lamp without getting + the bowl charred. And it is all on the right side of the pipe. From + that I gather that he is a left-handed man. You hold your own pipe to + the lamp, and see how naturally you, being right-handed, hold the + left side to the flame. You might do it once the other way, but not + as a constancy. This has always been held so. Then he has bitten + through his amber. It takes a muscular, energetic fellow, and one + with a good set of teeth, to do that. But if I am not mistaken I hear + him upon the stair, so we shall have something more interesting than + his pipe to study." + + An instant later our door opened, and a tall young man entered the + room. He was well but quietly dressed in a dark-gray suit, and + carried a brown wide-awake in his hand. I should have put him at + about thirty, though he was really some years older. + + "I beg your pardon," said he, with some embarrassment; "I suppose I + should have knocked. Yes, of course I should have knocked. The fact + is that I am a little upset, and you must put it all down to that." + He passed his hand over his forehead like a man who is half dazed, + and then fell rather than sat down upon a chair. + + "I can see that you have not slept for a night or two," said Holmes, + in his easy, genial way. "That tries a man's nerves more than work, + and more even than pleasure. May I ask how I can help you?" + + "I wanted your advice, sir. I don't know what to do and my whole life + seems to have gone to pieces." + + "You wish to employ me as a consulting detective?" + + "Not that only. I want your opinion as a judicious man--as a man of + the world. I want to know what I ought to do next. I hope to God + you'll be able to tell me." + + He spoke in little, sharp, jerky outbursts, and it seemed to me that + to speak at all was very painful to him, and that his will all + through was overriding his inclinations. + + "It's a very delicate thing," said he. "One does not like to speak of + one's domestic affairs to strangers. It seems dreadful to discuss the + conduct of one's wife with two men whom I have never seen before. + It's horrible to have to do it. But I've got to the end of my tether, + and I must have advice." + + "My dear Mr. Grant Munro--" began Holmes. + + Our visitor sprang from his chair. "What!" he cried, "you know my + name?" + + "If you wish to preserve your incognito," said Holmes, smiling, "I + would suggest that you cease to write your name upon the lining of + your hat, or else that you turn the crown towards the person whom you + are addressing. I was about to say that my friend and I have listened + to a good many strange secrets in this room, and that we have had the + good fortune to bring peace to many troubled souls. I trust that we + may do as much for you. Might I beg you, as time may prove to be of + importance, to furnish me with the facts of your case without further + delay?" + + Our visitor again passed his hand over his forehead, as if he found + it bitterly hard. From every gesture and expression I could see that + he was a reserved, self-contained man, with a dash of pride in his + nature, more likely to hide his wounds than to expose them. Then + suddenly, with a fierce gesture of his closed hand, like one who + throws reserve to the winds, he began. + + "The facts are these, Mr. Holmes," said he. "I am a married man, and + have been so for three years. During that time my wife and I have + loved each other as fondly and lived as happily as any two that ever + were joined. We have not had a difference, not one, in thought or + word or deed. And now, since last Monday, there has suddenly sprung + up a barrier between us, and I find that there is something in her + life and in her thought of which I know as little as if she were the + woman who brushes by me in the street. We are estranged, and I want + to know why. + + "Now there is one thing that I want to impress upon you before I go + any further, Mr. Holmes. Effie loves me. Don't let there be any + mistake about that. She loves me with her whole heart and soul, and + never more than now. I know it. I feel it. I don't want to argue + about that. A man can tell easily enough when a woman loves him. But + there's this secret between us, and we can never be the same until it + is cleared." + + "Kindly let me have the facts, Mr. Munro," said Holmes, with some + impatience. + + "I'll tell you what I know about Effie's history. She was a widow + when I met her first, though quite young--only twenty-five. Her name + then was Mrs. Hebron. She went out to America when she was young, and + lived in the town of Atlanta, where she married this Hebron, who was + a lawyer with a good practice. They had one child, but the yellow + fever broke out badly in the place, and both husband and child died + of it. I have seen his death certificate. This sickened her of + America, and she came back to live with a maiden aunt at Pinner, in + Middlesex. I may mention that her husband had left her comfortably + off, and that she had a capital of about four thousand five hundred + pounds, which had been so well invested by him that it returned an + average of seven per cent. She had only been six months at Pinner + when I met her; we fell in love with each other, and we married a few + weeks afterwards. + + "I am a hop merchant myself, and as I have an income of seven or + eight hundred, we found ourselves comfortably off, and took a nice + eighty-pound-a-year villa at Norbury. Our little place was very + countrified, considering that it is so close to town. We had an inn + and two houses a little above us, and a single cottage at the other + side of the field which faces us, and except those there were no + houses until you got half way to the station. My business took me + into town at certain seasons, but in summer I had less to do, and + then in our country home my wife and I were just as happy as could be + wished. I tell you that there never was a shadow between us until + this accursed affair began. + + "There's one thing I ought to tell you before I go further. When we + married, my wife made over all her property to me--rather against my + will, for I saw how awkward it would be if my business affairs went + wrong. However, she would have it so, and it was done. Well, about + six weeks ago she came to me. + + "'Jack,' said she, 'when you took my money you said that if ever I + wanted any I was to ask you for it.' + + "'Certainly,' said I. 'It's all your own.' + + "'Well,' said she, 'I want a hundred pounds.' + + "I was a bit staggered at this, for I had imagined it was simply a + new dress or something of the kind that she was after. + + "'What on earth for?' I asked. + + "'Oh,' said she, in her playful way, 'you said that you were only my + banker, and bankers never ask questions, you know.' + + "'If you really mean it, of course you shall have the money,' said I. + + "'Oh, yes, I really mean it.' + + "'And you won't tell me what you want it for?' + + "'Some day, perhaps, but not just at present, Jack.' + + "So I had to be content with that, though it was the first time that + there had ever been any secret between us. I gave her a check, and I + never thought any more of the matter. It may have nothing to do with + what came afterwards, but I thought it only right to mention it. + + "Well, I told you just now that there is a cottage not far from our + house. There is just a field between us, but to reach it you have to + go along the road and then turn down a lane. Just beyond it is a nice + little grove of Scotch firs, and I used to be very fond of strolling + down there, for trees are always a neighborly kind of things. The + cottage had been standing empty this eight months, and it was a pity, + for it was a pretty two storied place, with an old-fashioned porch + and honeysuckle about it. I have stood many a time and thought what a + neat little homestead it would make. + + "Well, last Monday evening I was taking a stroll down that way, when + I met an empty van coming up the lane, and saw a pile of carpets and + things lying about on the grass-plot beside the porch. It was clear + that the cottage had at last been let. I walked past it, and wondered + what sort of folk they were who had come to live so near us. And as I + looked I suddenly became aware that a face was watching me out of one + of the upper windows. + + "I don't know what there was about that face, Mr. Holmes, but it + seemed to send a chill right down my back. I was some little way off, + so that I could not make out the features, but there was something + unnatural and inhuman about the face. That was the impression that I + had, and I moved quickly forwards to get a nearer view of the person + who was watching me. But as I did so the face suddenly disappeared, + so suddenly that it seemed to have been plucked away into the + darkness of the room. I stood for five minutes thinking the business + over, and trying to analyze my impressions. I could not tell if the + face were that of a man or a woman. It had been too far from me for + that. But its color was what had impressed me most. It was of a livid + chalky white, and with something set and rigid about it which was + shockingly unnatural. So disturbed was I that I determined to see a + little more of the new inmates of the cottage. I approached and + knocked at the door, which was instantly opened by a tall, gaunt + woman with a harsh, forbidding face. + + "'What may you be wantin'?' she asked, in a Northern accent. + + "'I am your neighbor over yonder,' said I, nodding towards my house. + 'I see that you have only just moved in, so I thought that if I could + be of any help to you in any--' + + "'Ay, we'll just ask ye when we want ye,' said she, and shut the door + in my face. Annoyed at the churlish rebuff, I turned my back and + walked home. All evening, though I tried to think of other things, my + mind would still turn to the apparition at the window and the + rudeness of the woman. I determined to say nothing about the former + to my wife, for she is a nervous, highly strung woman, and I had no + wish that she would share the unpleasant impression which had been + produced upon myself. I remarked to her, however, before I fell + asleep, that the cottage was now occupied, to which she returned no + reply. + + "I am usually an extremely sound sleeper. It has been a standing jest + in the family that nothing could ever wake me during the night. And + yet somehow on that particular night, whether it may have been the + slight excitement produced by my little adventure or not I know not, + but I slept much more lightly than usual. Half in my dreams I was + dimly conscious that something was going on in the room, and + gradually became aware that my wife had dressed herself and was + slipping on her mantle and her bonnet. My lips were parted to murmur + out some sleepy words of surprise or remonstrance at this untimely + preparation, when suddenly my half-opened eyes fell upon her face, + illuminated by the candle-light, and astonishment held me dumb. She + wore an expression such as I had never seen before--such as I should + have thought her incapable of assuming. She was deadly pale and + breathing fast, glancing furtively towards the bed as she fastened + her mantle, to see if she had disturbed me. Then, thinking that I was + still asleep, she slipped noiselessly from the room, and an instant + later I heard a sharp creaking which could only come from the hinges + of the front door. I sat up in bed and rapped my knuckles against the + rail to make certain that I was truly awake. Then I took my watch + from under the pillow. It was three in the morning. What on this + earth could my wife be doing out on the country road at three in the + morning? + + "I had sat for about twenty minutes turning the thing over in my mind + and trying to find some possible explanation. The more I thought, the + more extraordinary and inexplicable did it appear. I was still + puzzling over it when I heard the door gently close again, and her + footsteps coming up the stairs. + + "'Where in the world have you been, Effie?' I asked as she entered. + + "She gave a violent start and a kind of gasping cry when I spoke, and + that cry and start troubled me more than all the rest, for there was + something indescribably guilty about them. My wife had always been a + woman of a frank, open nature, and it gave me a chill to see her + slinking into her own room, and crying out and wincing when her own + husband spoke to her. + + "'You awake, Jack!' she cried, with a nervous laugh. 'Why, I thought + that nothing could awake you.' + + "'Where have you been?' I asked, more sternly. + + "'I don't wonder that you are surprised,' said she, and I could see + that her fingers were trembling as she undid the fastenings of her + mantle. 'Why, I never remember having done such a thing in my life + before. The fact is that I felt as though I were choking, and had a + perfect longing for a breath of fresh air. I really think that I + should have fainted if I had not gone out. I stood at the door for a + few minutes, and now I am quite myself again.' + + "All the time that she was telling me this story she never once + looked in my direction, and her voice was quite unlike her usual + tones. It was evident to me that she was saying what was false. I + said nothing in reply, but turned my face to the wall, sick at heart, + with my mind filled with a thousand venomous doubts and suspicions. + What was it that my wife was concealing from me? Where had she been + during that strange expedition? I felt that I should have no peace + until I knew, and yet I shrank from asking her again after once she + had told me what was false. All the rest of the night I tossed and + tumbled, framing theory after theory, each more unlikely than the + last. + + "I should have gone to the City that day, but I was too disturbed in + my mind to be able to pay attention to business matters. My wife + seemed to be as upset as myself, and I could see from the little + questioning glances which she kept shooting at me that she understood + that I disbelieved her statement, and that she was at her wits' end + what to do. We hardly exchanged a word during breakfast, and + immediately afterwards I went out for a walk, that I might think the + matter out in the fresh morning air. + + "I went as far as the Crystal Palace, spent an hour in the grounds, + and was back in Norbury by one o'clock. It happened that my way took + me past the cottage, and I stopped for an instant to look at the + windows, and to see if I could catch a glimpse of the strange face + which had looked out at me on the day before. As I stood there, + imagine my surprise, Mr. Holmes, when the door suddenly opened and my + wife walked out. + + "I was struck dumb with astonishment at the sight of her; but my + emotions were nothing to those which showed themselves upon her face + when our eyes met. She seemed for an instant to wish to shrink back + inside the house again; and then, seeing how useless all concealment + must be, she came forward, with a very white face and frightened eyes + which belied the smile upon her lips. + + "'Ah, Jack,' she said, 'I have just been in to see if I can be of any + assistance to our new neighbors. Why do you look at me like that, + Jack? You are not angry with me?' + + "'So,' said I, 'this is where you went during the night.' + + "'What do you mean?' she cried. + + "'You came here. I am sure of it. Who are these people, that you + should visit them at such an hour?' + + "'I have not been here before.' + + "'How can you tell me what you know is false?' I cried. 'Your very + voice changes as you speak. When have I ever had a secret from you? I + shall enter that cottage, and I shall probe the matter to the + bottom.' + + "'No, no, Jack, for God's sake!' she gasped, in uncontrollable + emotion. Then, as I approached the door, she seized my sleeve and + pulled me back with convulsive strength. + + "'I implore you not to do this, Jack,' she cried. 'I swear that I + will tell you everything some day, but nothing but misery can come of + it if you enter that cottage.' Then, as I tried to shake her off, she + clung to me in a frenzy of entreaty. + + "'Trust me, Jack!' she cried. 'Trust me only this once. You will + never have cause to regret it. You know that I would not have a + secret from you if it were not for your own sake. Our whole lives are + at stake in this. If you come home with me, all will be well. If you + force your way into that cottage, all is over between us.' + + "There was such earnestness, such despair, in her manner that her + words arrested me, and I stood irresolute before the door. + + "'I will trust you on one condition, and on one condition only,' said + I at last. 'It is that this mystery comes to an end from now. You are + at liberty to preserve your secret, but you must promise me that + there shall be no more nightly visits, no more doings which are kept + from my knowledge. I am willing to forget those which are passed if + you will promise that there shall be no more in the future.' + + "'I was sure that you would trust me,' she cried, with a great sigh + of relief. 'It shall be just as you wish. Come away--oh, come away up + to the house.' + + "Still pulling at my sleeve, she led me away from the cottage. As we + went I glanced back, and there was that yellow livid face watching us + out of the upper window. What link could there be between that + creature and my wife? Or how could the coarse, rough woman whom I had + seen the day before be connected with her? It was a strange puzzle, + and yet I knew that my mind could never know ease again until I had + solved it. + + "For two days after this I stayed at home, and my wife appeared to + abide loyally by our engagement, for, as far as I know, she never + stirred out of the house. On the third day, however, I had ample + evidence that her solemn promise was not enough to hold her back from + this secret influence which drew her away from her husband and her + duty. + + "I had gone into town on that day, but I returned by the 2.40 instead + of the 3.36, which is my usual train. As I entered the house the maid + ran into the hall with a startled face. + + "'Where is your mistress?' I asked. + + "'I think that she has gone out for a walk,' she answered. + + "My mind was instantly filled with suspicion. I rushed upstairs to + make sure that she was not in the house. As I did so I happened to + glance out of one of the upper windows, and saw the maid with whom I + had just been speaking running across the field in the direction of + the cottage. Then of course I saw exactly what it all meant. My wife + had gone over there, and had asked the servant to call her if I + should return. Tingling with anger, I rushed down and hurried across, + determined to end the matter once and forever. I saw my wife and the + maid hurrying back along the lane, but I did not stop to speak with + them. In the cottage lay the secret which was casting a shadow over + my life. I vowed that, come what might, it should be a secret no + longer. I did not even knock when I reached it, but turned the handle + and rushed into the passage. + + "It was all still and quiet upon the ground floor. In the kitchen a + kettle was singing on the fire, and a large black cat lay coiled up + in the basket; but there was no sign of the woman whom I had seen + before. I ran into the other room, but it was equally deserted. Then + I rushed up the stairs, only to find two other rooms empty and + deserted at the top. There was no one at all in the whole house. The + furniture and pictures were of the most common and vulgar + description, save in the one chamber at the window of which I had + seen the strange face. That was comfortable and elegant, and all my + suspicions rose into a fierce bitter flame when I saw that on the + mantelpiece stood a copy of a full-length photograph of my wife, + which had been taken at my request only three months ago. + + "I stayed long enough to make certain that the house was absolutely + empty. Then I left it, feeling a weight at my heart such as I had + never had before. My wife came out into the hall as I entered my + house; but I was too hurt and angry to speak with her, and pushing + past her, I made my way into my study. She followed me, however, + before I could close the door. + + "'I am sorry that I broke my promise, Jack,' said she; 'but if you + knew all the circumstances I am sure that you would forgive me.' + + "'Tell me everything, then,' said I. + + "'I cannot, Jack, I cannot,' she cried. + + "'Until you tell me who it is that has been living in that cottage, + and who it is to whom you have given that photograph, there can never + be any confidence between us,' said I, and breaking away from her, I + left the house. That was yesterday, Mr. Holmes, and I have not seen + her since, nor do I know anything more about this strange business. + It is the first shadow that has come between us, and it has so shaken + me that I do not know what I should do for the best. Suddenly this + morning it occurred to me that you were the man to advise me, so I + have hurried to you now, and I place myself unreservedly in your + hands. If there is any point which I have not made clear, pray + question me about it. But, above all, tell me quickly what I am to + do, for this misery is more than I can bear." + + Holmes and I had listened with the utmost interest to this + extraordinary statement, which had been delivered in the jerky, + broken fashion of a man who is under the influence of extreme + emotions. My companion sat silent for some time, with his chin upon + his hand, lost in thought. + + "Tell me," said he at last, "could you swear that this was a man's + face which you saw at the window?" + + "Each time that I saw it I was some distance away from it, so that it + is impossible for me to say." + + "You appear, however, to have been disagreeably impressed by it." + + "It seemed to be of an unnatural color, and to have a strange + rigidity about the features. When I approached, it vanished with a + jerk." + + "How long is it since your wife asked you for a hundred pounds?" + + "Nearly two months." + + "Have you ever seen a photograph of her first husband?" + + "No; there was a great fire at Atlanta very shortly after his death, + and all her papers were destroyed." + + "And yet she had a certificate of death. You say that you saw it." + + "Yes; she got a duplicate after the fire." + + "Did you ever meet any one who knew her in America?" + + "No." + + "Did she ever talk of revisiting the place?" + + "No." + + "Or get letters from it?" + + "No." + + "Thank you. I should like to think over the matter a little now. If + the cottage is now permanently deserted we may have some difficulty. + If, on the other hand, as I fancy is more likely, the inmates were + warned of your coming, and left before you entered yesterday, then + they may be back now, and we should clear it all up easily. Let me + advise you, then, to return to Norbury, and to examine the windows of + the cottage again. If you have reason to believe that is inhabited, + do not force your way in, but send a wire to my friend and me. We + shall be with you within an hour of receiving it, and we shall then + very soon get to the bottom of the business." + + "And if it is still empty?" + + "In that case I shall come out to-morrow and talk it over with you. + Good-bye, and, above all, do not fret until you know that you really + have a cause for it." + + "I am afraid that this is a bad business, Watson," said my companion, + as he returned after accompanying Mr. Grant Munro to the door. "What + do you make of it?" + + "It had an ugly sound," I answered. + + "Yes. There's blackmail in it, or I am much mistaken." + + "And who is the blackmailer?" + + "Well, it must be the creature who lives in the only comfortable room + in the place, and has her photograph above his fireplace. Upon my + word, Watson, there is something very attractive about that livid + face at the window, and I would not have missed the case for worlds." + + "You have a theory?" + + "Yes, a provisional one. But I shall be surprised if it does not turn + out to be correct. This woman's first husband is in that cottage." + + "Why do you think so?" + + "How else can we explain her frenzied anxiety that her second one + should not enter it? The facts, as I read them, are something like + this: This woman was married in America. Her husband developed some + hateful qualities; or shall we say that he contracted some loathsome + disease, and became a leper or an imbecile? She flies from him at + last, returns to England, changes her name, and starts her life, as + she thinks, afresh. She has been married three years, and believes + that her position is quite secure, having shown her husband the death + certificate of some man whose name she has assumed, when suddenly her + whereabouts is discovered by her first husband; or, we may suppose, + by some unscrupulous woman who has attached herself to the invalid. + They write to the wife, and threaten to come and expose her. She asks + for a hundred pounds, and endeavors to buy them off. They come in + spite of it, and when the husband mentions casually to the wife that + there are new-comers in the cottage, she knows in some way that they + are her pursuers. She waits until her husband is asleep, and then she + rushes down to endeavor to persuade them to leave her in peace. + Having no success, she goes again next morning, and her husband meets + her, as he has told us, as she comes out. She promises him then not + to go there again, but two days afterwards the hope of getting rid of + those dreadful neighbors was too strong for her, and she made another + attempt, taking down with her the photograph which had probably been + demanded from her. In the midst of this interview the maid rushed in + to say that the master had come home, on which the wife, knowing that + he would come straight down to the cottage, hurried the inmates out + at the back door, into the grove of fir-trees, probably, which was + mentioned as standing near. In this way he found the place deserted. + I shall be very much surprised, however, if it still so when he + reconnoitres it this evening. What do you think of my theory?" + + "It is all surmise." + + "But at least it covers all the facts. When new facts come to our + knowledge which cannot be covered by it, it will be time enough to + reconsider it. We can do nothing more until we have a message from + our friend at Norbury." + + But we had not a very long time to wait for that. It came just as we + had finished our tea. + + "The cottage is still tenanted," it said. "Have seen the face again + at the window. Will meet the seven o'clock train, and will take no + steps until you arrive." + + He was waiting on the platform when we stepped out, and we could see + in the light of the station lamps that he was very pale, and + quivering with agitation. + + "They are still there, Mr. Holmes," said he, laying his hand hard + upon my friend's sleeve. "I saw lights in the cottage as I came down. + We shall settle it now once and for all." + + "What is your plan, then?" asked Holmes, as he walked down the dark + tree-lined road. + + "I am going to force my way in and see for myself who is in the + house. I wish you both to be there as witnesses." + + "You are quite determined to do this, in spite of your wife's warning + that it is better that you should not solve the mystery?" + + "Yes, I am determined." + + "Well, I think that you are in the right. Any truth is better than + indefinite doubt. We had better go up at once. Of course, legally, we + are putting ourselves hopelessly in the wrong; but I think that it is + worth it." + + It was a very dark night, and a thin rain began to fall as we turned + from the high road into a narrow lane, deeply rutted, with hedges on + either side. Mr. Grant Munro pushed impatiently forward, however, and + we stumbled after him as best we could. + + "There are the lights of my house," he murmured, pointing to a + glimmer among the trees. "And here is the cottage which I am going to + enter." + + We turned a corner in the lane as he spoke, and there was the + building close beside us. A yellow bar falling across the black + foreground showed that the door was not quite closed, and one window + in the upper story was brightly illuminated. As we looked, we saw a + dark blur moving across the blind. + + "There is that creature!" cried Grant Munro. "You can see for + yourselves that some one is there. Now follow me, and we shall soon + know all." + + We approached the door; but suddenly a woman appeared out of the + shadow and stood in the golden track of the lamp-light. I could not + see her face in the darkness, but her arms were thrown out in an + attitude of entreaty. + + "For God's sake, don't Jack!" she cried. "I had a presentiment that + you would come this evening. Think better of it, dear! Trust me + again, and you will never have cause to regret it." + + "I have trusted you too long, Effie," he cried, sternly. "Leave go of + me! I must pass you. My friends and I are going to settle this matter + once and forever!" He pushed her to one side, and we followed closely + after him. As he threw the door open an old woman ran out in front of + him and tried to bar his passage, but he thrust her back, and an + instant afterwards we were all upon the stairs. Grant Munro rushed + into the lighted room at the top, and we entered at his heels. + + It was a cosy, well-furnished apartment, with two candles burning + upon the table and two upon the mantelpiece. In the corner, stooping + over a desk, there sat what appeared to be a little girl. Her face + was turned away as we entered, but we could see that she was dressed + in a red frock, and that she had long white gloves on. As she whisked + round to us, I gave a cry of surprise and horror. The face which she + turned towards us was of the strangest livid tint, and the features + were absolutely devoid of any expression. An instant later the + mystery was explained. Holmes, with a laugh, passed his hand behind + the child's ear, a mask peeled off from her countenance, an there was + a little coal black negress, with all her white teeth flashing in + amusement at our amazed faces. I burst out laughing, out of sympathy + with her merriment; but Grant Munro stood staring, with his hand + clutching his throat. + + "My God!" he cried. "What can be the meaning of this?" + + "I will tell you the meaning of it," cried the lady, sweeping into + the room with a proud, set face. "You have forced me, against my own + judgment, to tell you, and now we must both make the best of it. My + husband died at Atlanta. My child survived." + + "Your child?" + + She drew a large silver locket from her bosom. "You have never seen + this open." + + "I understood that it did not open." + + She touched a spring, and the front hinged back. There was a portrait + within of a man strikingly handsome and intelligent-looking, but + bearing unmistakable signs upon his features of his African descent. + + "That is John Hebron, of Atlanta," said the lady, "and a nobler man + never walked the earth. I cut myself off from my race in order to wed + him, but never once while he lived did I for an instant regret it. It + was our misfortune that our only child took after his people rather + than mine. It is often so in such matches, and little Lucy is darker + far than ever her father was. But dark or fair, she is my own dear + little girlie, and her mother's pet." The little creature ran across + at the words and nestled up against the lady's dress. "When I left + her in America," she continued, "it was only because her health was + weak, and the change might have done her harm. She was given to the + care of a faithful Scotch woman who had once been our servant. Never + for an instant did I dream of disowning her as my child. But when + chance threw you in my way, Jack, and I learned to love you, I feared + to tell you about my child. God forgive me, I feared that I should + lose you, and I had not the courage to tell you. I had to choose + between you, and in my weakness I turned away from my own little + girl. For three years I have kept her existence a secret from you, + but I heard from the nurse, and I knew that all was well with her. At + last, however, there came an overwhelming desire to see the child + once more. I struggled against it, but in vain. Though I knew the + danger, I determined to have the child over, if it were but for a few + weeks. I sent a hundred pounds to the nurse, and I gave her + instructions about this cottage, so that she might come as a + neighbor, without my appearing to be in any way connected with her. I + pushed my precautions so far as to order her to keep the child in the + house during the daytime, and to cover up her little face and hands + so that even those who might see her at the window should not gossip + about there being a black child in the neighborhood. If I had been + less cautious I might have been more wise, but I was half crazy with + fear that you should learn the truth. + + "It was you who told me first that the cottage was occupied. I should + have waited for the morning, but I could not sleep for excitement, + and so at last I slipped out, knowing how difficult it is to awake + you. But you saw me go, and that was the beginning of my troubles. + Next day you had my secret at your mercy, but you nobly refrained + from pursuing your advantage. Three days later, however, the nurse + and child only just escaped from the back door as you rushed in at + the front one. And now to-night you at last know all, and I ask you + what is to become of us, my child and me?" She clasped her hands and + waited for an answer. + + It was a long ten minutes before Grant Munro broke the silence, and + when his answer came it was one of which I love to think. He lifted + the little child, kissed her, and then, still carrying her, he held + his other hand out to his wife and turned towards the door. + + "We can talk it over more comfortably at home," said he. "I am not a + very good man, Effie, but I think that I am a better one than you + have given me credit for being." + + Holmes and I followed them down the lane, and my friend plucked at my + sleeve as we came out. + + "I think," said he, "that we shall be of more use in London than in + Norbury." + + Not another word did he say of the case until late that night, when + he was turning away, with his lighted candle, for his bedroom. + + "Watson," said he, "if it should ever strike you that I am getting a + little over-confident in my powers, or giving less pains to a case + than it deserves, kindly whisper 'Norbury' in my ear, and I shall be + infinitely obliged to you." + + + + + + + THE STOCK-BROKER'S CLERK + + Shortly after my marriage I had bought a connection in the Paddington + district. Old Mr. Farquhar, from whom I purchased it, had at one time + an excellent general practice; but his age, and an affliction of the + nature of St. Vitus's dance from which he suffered, had very much + thinned it. The public not unnaturally goes on the principle that he + who would heal others must himself be whole, and looks askance at the + curative powers of the man whose own case is beyond the reach of his + drugs. Thus as my predecessor weakened his practice declined, until + when I purchased it from him it had sunk from twelve hundred to + little more than three hundred a year. I had confidence, however, in + my own youth and energy, and was convinced that in a very few years + the concern would be as flourishing as ever. + + For three months after taking over the practice I was kept very + closely at work, and saw little of my friend Sherlock Holmes, for I + was too busy to visit Baker Street, and he seldom went anywhere + himself save upon professional business. I was surprised, therefore, + when, one morning in June, as I sat reading the British Medical + Journal after breakfast, I heard a ring at the bell, followed by the + high, somewhat strident tones of my old companion's voice. + + "Ah, my dear Watson," said he, striding into the room, "I am very + delighted to see you! I trust that Mrs. Watson has entirely recovered + from all the little excitements connected with our adventure of the + Sign of Four." + + "Thank you, we are both very well," said I, shaking him warmly by the + hand. + + "And I hope, also," he continued, sitting down in the rocking-chair, + "that the cares of medical practice have not entirely obliterated the + interest which you used to take in our little deductive problems." + + "On the contrary," I answered, "it was only last night that I was + looking over my old notes, and classifying some of our past results." + + "I trust that you don't consider your collection closed." + + "Not at all. I should wish nothing better than to have some more of + such experiences." + + "To-day, for example?" + + "Yes, to-day, if you like." + + "And as far off as Birmingham?" + + "Certainly, if you wish it." + + "And the practice?" + + "I do my neighbor's when he goes. He is always ready to work off the + debt." + + "Ha! Nothing could be better," said Holmes, leaning back in his chair + and looking keenly at me from under his half closed lids. "I perceive + that you have been unwell lately. Summer colds are always a little + trying." + + "I was confined to the house by a severe chill for three days last + week. I thought, however, that I had cast off every trace of it." + + "So you have. You look remarkably robust." + + "How, then, did you know of it?" + + "My dear fellow, you know my methods." + + "You deduced it, then?" + + "Certainly." + + "And from what?" + + "From your slippers." + + I glanced down at the new patent leathers which I was wearing. "How + on earth--" I began, but Holmes answered my question before it was + asked. + + "Your slippers are new," he said. "You could not have had them more + than a few weeks. The soles which you are at this moment presenting + to me are slightly scorched. For a moment I thought they might have + got wet and been burned in the drying. But near the instep there is a + small circular wafer of paper with the shopman's hieroglyphics upon + it. Damp would of course have removed this. You had, then, been + sitting with our feet outstretched to the fire, which a man would + hardly do even in so wet a June as this if he were in his full + health." + + Like all Holmes's reasoning the thing seemed simplicity itself when + it was once explained. He read the thought upon my features, and his + smile had a tinge of bitterness. + + "I am afraid that I rather give myself away when I explain," said he. + "Results without causes are much more impressive. You are ready to + come to Birmingham, then?" + + "Certainly. What is the case?" + + "You shall hear it all in the train. My client is outside in a + four-wheeler. Can you come at once?" + + "In an instant." I scribbled a note to my neighbor, rushed upstairs + to explain the matter to my wife, and joined Holmes upon the + door-step. + + "Your neighbor is a doctor," said he, nodding at the brass plate. + + "Yes; he bought a practice as I did." + + "An old-established one?" + + "Just the same as mine. Both have been ever since the houses were + built." + + "Ah! Then you got hold of the best of the two." + + "I think I did. But how do you know?" + + "By the steps, my boy. Yours are worn three inches deeper than his. + But this gentleman in the cab is my client, Mr. Hall Pycroft. Allow + me to introduce you to him. Whip your horse up, cabby, for we have + only just time to catch our train." + + The man whom I found myself facing was a well built, + fresh-complexioned young fellow, with a frank, honest face and a + slight, crisp, yellow mustache. He wore a very shiny top hat and a + neat suit of sober black, which made him look what he was--a smart + young City man, of the class who have been labeled cockneys, but who + give us our crack volunteer regiments, and who turn out more fine + athletes and sportsmen than any body of men in these islands. His + round, ruddy face was naturally full of cheeriness, but the corners + of his mouth seemed to me to be pulled down in a half-comical + distress. It was not, however, until we were all in a first-class + carriage and well started upon our journey to Birmingham that I was + able to learn what the trouble was which had driven him to Sherlock + Holmes. + + "We have a clear run here of seventy minutes," Holmes remarked. "I + want you, Mr. Hall Pycroft, to tell my friend your very interesting + experience exactly as you have told it to me, or with more detail if + possible. It will be of use to me to hear the succession of events + again. It is a case, Watson, which may prove to have something in it, + or may prove to have nothing, but which, at least, presents those + unusual and outré features which are as dear to you as they are to + me. Now, Mr. Pycroft, I shall not interrupt you again." + + Our young companion looked at me with a twinkle in his eye. + + "The worst of the story is," said he, "that I show myself up as such + a confounded fool. Of course it may work out all right, and I don't + see that I could have done otherwise; but if I have lost my crib and + get nothing in exchange I shall feel what a soft Johnnie I have been. + I'm not very good at telling a story, Dr. Watson, but it is like this + with me: + + "I used to have a billet at Coxon & Woodhouse's, of Draper's Gardens, + but they were let in early in the spring through the Venezuelan loan, + as no doubt you remember, and came a nasty cropper. I had been with + them five years, and old Coxon gave me a ripping good testimonial + when the smash came, but of course we clerks were all turned adrift, + the twenty-seven of us. I tried here and tried there, but there were + lots of other chaps on the same lay as myself, and it was a perfect + frost for a long time. I had been taking three pounds a week at + Coxon's, and I had saved about seventy of them, but I soon worked my + way through that and out at the other end. I was fairly at the end of + my tether at last, and could hardly find the stamps to answer the + advertisements or the envelopes to stick them to. I had worn out my + boots paddling up office stairs, and I seemed just as far from + getting a billet as ever. + + "At last I saw a vacancy at Mawson & Williams's, the great + stock-broking firm in Lombard Street. I dare say E. C. is not much in + your line, but I can tell you that this is about the richest house in + London. The advertisement was to be answered by letter only. I sent + in my testimonial and application, but without the least hope of + getting it. Back came an answer by return, saying that if I would + appear next Monday I might take over my new duties at once, provided + that my appearance was satisfactory. No one knows how these things + are worked. Some people say that the manager just plunges his hand + into the heap and takes the first that comes. Anyhow it was my + innings that time, and I don't ever wish to feel better pleased. The + screw was a pound a week rise, and the duties just about the same as + at Coxon's. + + "And now I come to the queer part of the business. I was in diggings + out Hampstead way, 17 Potter's Terrace. Well, I was sitting doing a + smoke that very evening after I had been promised the appointment, + when up came my landlady with a card which had "Arthur Pinner, + Financial Agent," printed upon it. I had never heard the name before + and could not imagine what he wanted with me; but, of course, I asked + her to show him up. In he walked, a middle-sized, dark-haired, + dark-eyed, black-bearded man, with a touch of the sheeny about his + nose. He had a brisk kind of way with him and spoke sharply, like a + man who knew the value of time. + + "'Mr. Hall Pycroft, I believe?' said he. + + "'Yes, sir,' I answered, pushing a chair towards him. + + "'Lately engaged at Coxon & Woodhouse's?' + + "'Yes, sir.' + + "'And now on the staff of Mawson's.' + + "'Quite so.' + + "'Well,' said he, 'the fact is that I have heard some really + extraordinary stories about your financial ability. You remember + Parker, who used to be Coxon's manager? He can never say enough about + it.' + + "Of course I was pleased to hear this. I had always been pretty sharp + in the office, but I had never dreamed that I was talked about in the + City in this fashion. + + "'You have a good memory?' said he. + + "'Pretty fair,' I answered, modestly. + + "'Have you kept in touch with the market while you have been out of + work?' he asked. + + "'Yes. I read the stock exchange list every morning.' + + "'Now that shows real application!' he cried. 'That is the way to + prosper! You won't mind my testing you, will you? Let me see. How are + Ayrshires?' + + "'A hundred and six and a quarter to a hundred and five and + seven-eighths.' + + "'And New Zealand consolidated?' + + "'A hundred and four.' + + "'And British Broken Hills?' + + "'Seven to seven-and-six.' + + "'Wonderful!' he cried, with his hands up. 'This quite fits in with + all that I had heard. My boy, my boy, you are very much too good to + be a clerk at Mawson's!' + + "This outburst rather astonished me, as you can think. 'Well,' said + I, 'other people don't think quite so much of me as you seem to do, + Mr. Pinner. I had a hard enough fight to get this berth, and I am + very glad to have it.' + + "'Pooh, man; you should soar above it. You are not in your true + sphere. Now, I'll tell you how it stands with me. What I have to + offer is little enough when measured by your ability, but when + compared with Mawson's, it's light to dark. Let me see. When do you + go to Mawson's?' + + "'On Monday.' + + "'Ha, ha! I think I would risk a little sporting flutter that you + don't go there at all.' + + "'Not go to Mawson's?' + + "'No, sir. By that day you will be the business manager of the + Franco-Midland Hardware Company, Limited, with a hundred and + thirty-four branches in the towns and villages of France, not + counting one in Brussels and one in San Remo.' + + "This took my breath away. 'I never heard of it,' said I. + + "'Very likely not. It has been kept very quiet, for the capital was + all privately subscribed, and it's too good a thing to let the public + into. My brother, Harry Pinner, is promoter, and joins the board + after allotment as managing director. He knew I was in the swim down + here, and asked me to pick up a good man cheap. A young, pushing man + with plenty of snap about him. Parker spoke of you, and that brought + me here tonight. We can only offer you a beggarly five hundred to + start with.' + + "'Five hundred a year!' I shouted. + + "'Only that at the beginning; but you are to have an overriding + commission of one per cent on all business done by your agents, and + you may take my word for it that this will come to more than your + salary.' + + "'But I know nothing about hardware.' + + "'Tut, my boy; you know about figures.' + + "My head buzzed, and I could hardly sit still in my chair. But + suddenly a little chill of doubt came upon me. + + "'I must be frank with you,' said I. 'Mawson only gives me two + hundred, but Mawson is safe. Now, really, I know so little about your + company that--' + + "'Ah, smart, smart!' he cried, in a kind of ecstasy of delight. 'You + are the very man for us. You are not to be talked over, and quite + right, too. Now, here's a note for a hundred pounds, and if you think + that we can do business you may just slip it into your pocket as an + advance upon your salary.' + + "'That is very handsome,' said I. 'When should I take over my new + duties?' + + "'Be in Birmingham to-morrow at one,' said he. 'I have a note in my + pocket here which you will take to my brother. You will find him at + 126b Corporation Street, where the temporary offices of the company + are situated. Of course he must confirm your engagement, but between + ourselves it will be all right.' + + "'Really, I hardly know how to express my gratitude, Mr. Pinner,' + said I. + + "'Not at all, my boy. You have only got your desserts. There are one + or two small things--mere formalities--which I must arrange with you. + You have a bit of paper beside you there. Kindly write upon it "I am + perfectly willing to act as business manager to the Franco-Midland + Hardware Company, Limited, at a minimum salary of £500."' + + "I did as he asked, and he put the paper in his pocket. + + "'There is one other detail,' said he. 'What do you intend to do + about Mawson's?' + + "I had forgotten all about Mawson's in my joy. 'I'll write and + resign,' said I. + + "'Precisely what I don't want you to do. I had a row over you with + Mawson's manager. I had gone up to ask him about you, and he was very + offensive; accused me of coaxing you away from the service of the + firm, and that sort of thing. At last I fairly lost my temper. "If + you want good men you should pay them a good price," said I. + + "'"He would rather have our small price than your big one," said he. + + "'"I'll lay you a fiver," said I, "that when he has my offer you'll + never so much as hear from him again." + + "'"Done!" said he. "We picked him out of the gutter, and he won't + leave us so easily." Those were his very words.' + + "'The impudent scoundrel!' I cried. 'I've never so much as seen him + in my life. Why should I consider him in any way? I shall certainly + not write if you would rather I didn't.' + + "'Good! That's a promise,' said he, rising from his chair. 'Well, I'm + delighted to have got so good a man for my brother. Here's your + advance of a hundred pounds, and here is the letter. Make a note of + the address, 126b Corporation Street, and remember that one o'clock + to-morrow is your appointment. Good-night; and may you have all the + fortune that you deserve!' + + "That's just about all that passed between us, as near as I can + remember. You can imagine, Dr. Watson, how pleased I was at such an + extraordinary bit of good fortune. I sat up half the night hugging + myself over it, and next day I was off to Birmingham in a train that + would take me in plenty time for my appointment. I took my things to + a hotel in New Street, and then I made my way to the address which + had been given me. + + "It was a quarter of an hour before my time, but I thought that would + make no difference. 126b was a passage between two large shops, which + led to a winding stone stair, from which there were many flats, let + as offices to companies or professional men. The names of the + occupants were painted at the bottom on the wall, but there was no + such name as the Franco-Midland Hardware Company, Limited. I stood + for a few minutes with my heart in my boots, wondering whether the + whole thing was an elaborate hoax or not, when up came a man and + addressed me. He was very like the chap I had seen the night before, + the same figure and voice, but he was clean shaven and his hair was + lighter. + + "'Are you Mr. Hall Pycroft?' he asked. + + "'Yes,' said I. + + "'Oh! I was expecting you, but you are a trifle before your time. I + had a note from my brother this morning in which he sang your praises + very loudly.' + + "'I was just looking for the offices when you came.' + + "'We have not got our name up yet, for we only secured these + temporary premises last week. Come up with me, and we will talk the + matter over.' + + "I followed him to the top of a very lofty stair, and there, right + under the slates, were a couple of empty, dusty little rooms, + uncarpeted and uncurtained, into which he led me. I had thought of a + great office with shining tables and rows of clerks, such as I was + used to, and I dare say I stared rather straight at the two deal + chairs and one little table, which, with a ledger and a waste paper + basket, made up the whole furniture. + + "'Don't be disheartened, Mr. Pycroft,' said my new acquaintance, + seeing the length of my face. 'Rome was not built in a day, and we + have lots of money at our backs, though we don't cut much dash yet in + offices. Pray sit down, and let me have your letter.' + + "I gave it to him, and her read it over very carefully. + + "'You seem to have made a vast impression upon my brother Arthur,' + said he; 'and I know that he is a pretty shrewd judge. He swears by + London, you know; and I by Birmingham; but this time I shall follow + his advice. Pray consider yourself definitely engaged.' + + "'What are my duties?' I asked. + + "'You will eventually manage the great depot in Paris, which will + pour a flood of English crockery into the shops of a hundred and + thirty-four agents in France. The purchase will be completed in a + week, and meanwhile you will remain in Birmingham and make yourself + useful.' + + "'How?' + + "For answer, he took a big red book out of a drawer. + + "'This is a directory of Paris,' said he, 'with the trades after the + names of the people. I want you to take it home with you, and to mark + off all the hardware sellers, with their addresses. It would be of + the greatest use to me to have them.' + + "'Surely there are classified lists?' I suggested. + + "'Not reliable ones. Their system is different from ours. Stick at + it, and let me have the lists by Monday, at twelve. Good-day, Mr. + Pycroft. If you continue to show zeal and intelligence you will find + the company a good master.' + + "I went back to the hotel with the big book under my arm, and with + very conflicting feelings in my breast. On the one hand, I was + definitely engaged and had a hundred pounds in my pocket; on the + other, the look of the offices, the absence of name on the wall, and + other of the points which would strike a business man had left a bad + impression as to the position of my employers. However, come what + might, I had my money, so I settled down to my task. All Sunday I was + kept hard at work, and yet by Monday I had only got as far as H. I + went round to my employer, found him in the same dismantled kind of + room, and was told to keep at it until Wednesday, and then come + again. On Wednesday it was still unfinished, so I hammered away until + Friday--that is, yesterday. Then I brought it round to Mr. Harry + Pinner. + + "'Thank you very much,' said he; 'I fear that I underrated the + difficulty of the task. This list will be of very material assistance + to me.' + + "'It took some time,' said I. + + "'And now,' said he, 'I want you to make a list of the furniture + shops, for they all sell crockery.' + + "'Very good.' + + "'And you can come up to-morrow evening, at seven, and let me know + how you are getting on. Don't overwork yourself. A couple of hours at + Day's Music Hall in the evening would do you no harm after your + labors.' He laughed as he spoke, and I saw with a thrill that his + second tooth upon the left-hand side had been very badly stuffed with + gold." + + Sherlock Holmes rubbed his hands with delight, and I stared with + astonishment at our client. + + "You may well look surprised, Dr. Watson; but it is this way," said + he: "When I was speaking to the other chap in London, at the time + that he laughed at my not going to Mawson's, I happened to notice + that his tooth was stuffed in this very identical fashion. The glint + of the gold in each case caught my eye, you see. When I put that with + the voice and figure being the same, and only those things altered + which might be changed by a razor or a wig, I could not doubt that it + was the same man. Of course you expect two brothers to be alike, but + not that they should have the same tooth stuffed in the same way. He + bowed me out, and I found myself in the street, hardly knowing + whether I was on my head or my heels. Back I went to my hotel, put my + head in a basin of cold water, and tried to think it out. Why had he + sent me from London to Birmingham? Why had he got there before me? + And why had he written a letter from himself to himself? It was + altogether too much for me, and I could make no sense of it. And then + suddenly it struck me that what was dark to me might be very light to + Mr. Sherlock Holmes. I had just time to get up to town by the night + train to see him this morning, and to bring you both back with me to + Birmingham." + + There was a pause after the stock-broker's clerk had concluded his + surprising experience. Then Sherlock Holmes cocked his eye at me, + leaning back on the cushions with a pleased and yet critical face, + like a connoisseur who has just taken his first sip of a comet + vintage. + + "Rather fine, Watson, is it not?" said he. "There are points in it + which please me. I think that you will agree with me that an + interview with Mr. Arthur Harry Pinner in the temporary offices of + the Franco-Midland Hardware Company, Limited, would be a rather + interesting experience for both of us." + + "But how can we do it?" I asked. + + "Oh, easily enough," said Hall Pycroft, cheerily. "You are two + friends of mine who are in want of a billet, and what could be more + natural than that I should bring you both round to the managing + director?" + + "Quite so, of course," said Holmes. "I should like to have a look at + the gentleman, and see if I can make anything of his little game. + What qualities have you, my friend, which would make your services so + valuable? Or is it possible that--" He began biting his nails and + staring blankly out of the window, and we hardly drew another word + from him until we were in New Street. + + At seven o'clock that evening we were walking, the three of us, down + Corporation Street to the company's offices. + + "It is no use our being at all before our time," said our client. "He + only comes there to see me, apparently, for the place is deserted up + to the very hour he names." + + "That is suggestive," remarked Holmes. + + "By Jove, I told you so!" cried the clerk. "That's he walking ahead + of us there." + + He pointed to a smallish, dark, well-dressed man who was bustling + along the other side of the road. As we watched him he looked across + at a boy who was bawling out the latest edition of the evening paper, + and running over among the cabs and busses, he bought one from him. + Then, clutching it in his hand, he vanished through a door-way. + + "There he goes!" cried Hall Pycroft. "These are the company's offices + into which he has gone. Come with me, and I'll fix it up as easily as + possible." + + Following his lead, we ascended five stories, until we found + ourselves outside a half-opened door, at which our client tapped. A + voice within bade us enter, and we entered a bare, unfurnished room + such as Hall Pycroft had described. At the single table sat the man + whom we had seen in the street, with his evening paper spread out in + front of him, and as he looked up at us it seemed to me that I had + never looked upon a face which bore such marks of grief, and of + something beyond grief--of a horror such as comes to few men in a + lifetime. His brow glistened with perspiration, his cheeks were of + the dull, dead white of a fish's belly, and his eyes were wild and + staring. He looked at his clerk as though he failed to recognize him, + and I could see by the astonishment depicted upon our conductor's + face that this was by no means the usual appearance of his employer. + + "You look ill, Mr. Pinner!" he exclaimed. + + "Yes, I am not very well," answered the other, making obvious efforts + to pull himself together, and licking his dry lips before he spoke. + "Who are these gentlemen whom you have brought with you?" + + "One is Mr. Harris, of Bermondsey, and the other is Mr. Price, of + this town," said our clerk, glibly. "They are friends of mine and + gentlemen of experience, but they have been out of a place for some + little time, and they hoped that perhaps you might find an opening + for them in the company's employment." + + "Very possibly! Very possibly!" cried Mr. Pinner with a ghastly + smile. "Yes, I have no doubt that we shall be able to do something + for you. What is your particular line, Mr. Harris?" + + "I am an accountant," said Holmes. + + "Ah yes, we shall want something of the sort. And you, Mr. Price?" + + "A clerk," said I. + + "I have every hope that the company may accommodate you. I will let + you know about it as soon as we come to any conclusion. And now I beg + that you will go. For God's sake leave me to myself!" + + These last words were shot out of him, as though the constraint which + he was evidently setting upon himself had suddenly and utterly burst + asunder. Holmes and I glanced at each other, and Hall Pycroft took a + step towards the table. + + "You forget, Mr. Pinner, that I am here by appointment to receive + some directions from you," said he. + + "Certainly, Mr. Pycroft, certainly," the other resumed in a calmer + tone. "You may wait here a moment; and there is no reason why your + friends should not wait with you. I will be entirely at your service + in three minutes, if I might trespass upon your patience so far." He + rose with a very courteous air, and, bowing to us, he passed out + through a door at the farther end of the room, which he closed behind + him. + + "What now?" whispered Holmes. "Is he giving us the slip?" + + "Impossible," answered Pycroft. + + "Why so?" + + "That door leads into an inner room." + + "There is no exit?" + + "None." + + "Is it furnished?" + + "It was empty yesterday." + + "Then what on earth can he be doing? There is something which I don't + understand in his manner. If ever a man was three parts mad with + terror, that man's name is Pinner. What can have put the shivers on + him?" + + "He suspects that we are detectives," I suggested. + + "That's it," cried Pycroft. + + Holmes shook his head. "He did not turn pale. He was pale when we + entered the room," said he. "It is just possible that--" + + His words were interrupted by a sharp rat-tat from the direction of + the inner door. + + "What the deuce is he knocking at his own door for?" cried the clerk. + + Again and much louder cam the rat-tat-tat. We all gazed expectantly + at the closed door. Glancing at Holmes, I saw his face turn rigid, + and he leaned forward in intense excitement. Then suddenly came a low + guggling, gargling sound, and a brisk drumming upon woodwork. Holmes + sprang frantically across the room and pushed at the door. It was + fastened on the inner side. Following his example, we threw ourselves + upon it with all our weight. One hinge snapped, then the other, and + down came the door with a crash. Rushing over it, we found ourselves + in the inner room. It was empty. + + But it was only for a moment that we were at fault. At one corner, + the corner nearest the room which we had left, there was a second + door. Holmes sprang to it and pulled it open. A coat and waistcoat + were lying on the floor, and from a hook behind the door, with his + own braces round his neck, was hanging the managing director of the + Franco-Midland Hardware Company. His knees were drawn up, his head + hung at a dreadful angle to his body, and the clatter of his heels + against the door made the noise which had broken in upon our + conversation. In an instant I had caught him round the waist, and + held him up while Holmes and Pycroft untied the elastic bands which + had disappeared between the livid creases of skin. Then we carried + him into the other room, where he lay with a clay-colored face, + puffing his purple lips in and out with every breath--a dreadful + wreck of all that he had been but five minutes before. + + "What do you think of him, Watson?" asked Holmes. + + I stooped over him and examined him. His pulse was feeble and + intermittent, but his breathing grew longer, and there was a little + shivering of his eyelids, which showed a thin white slit of ball + beneath. + + "It has been touch and go with him," said I, "but he'll live now. + Just open that window, and hand me the water carafe." I undid his + collar, poured the cold water over his face, and raised and sank his + arms until he drew a long, natural breath. "It's only a question of + time now," said I, as I turned away from him. + + Holmes stood by the table, with his hands deep in his trouser's + pockets and his chin upon his breast. + + "I suppose we ought to call the police in now," said he. "And yet I + confess that I'd like to give them a complete case when they come." + + "It's a blessed mystery to me," cried Pycroft, scratching his head. + "Whatever they wanted to bring me all the way up here for, and + then--" + + "Pooh! All that is clear enough," said Holmes impatiently. "It is + this last sudden move." + + "You understand the rest, then?" + + "I think that it is fairly obvious. What do you say, Watson?" + + I shrugged my shoulders. "I must confess that I am out of my depths," + said I. + + "Oh surely if you consider the events at first they can only point to + one conclusion." + + "What do you make of them?" + + "Well, the whole thing hinges upon two points. The first is the + making of Pycroft write a declaration by which he entered the service + of this preposterous company. Do you not see how very suggestive that + is?" + + "I am afraid I miss the point." + + "Well, why did they want him to do it? Not as a business matter, for + these arrangements are usually verbal, and there was no earthly + business reason why this should be an exception. Don't you see, my + young friend, that they were very anxious to obtain a specimen of + your handwriting, and had no other way of doing it?" + + "And why?" + + "Quite so. Why? When we answer that we have made some progress with + our little problem. Why? There can be only one adequate reason. + Someone wanted to learn to imitate your writing, and had to procure a + specimen of it first. And now if we pass on to the second point we + find that each throws light upon the other. That point is the request + made by Pinner that you should not resign your place, but should + leave the manager of this important business in the full expectation + that a Mr. Hall Pycroft, whom he had never seen, was about to enter + the office upon the Monday morning." + + "My God!" cried our client, "what a blind beetle I have been!" + + "Now you see the point about the handwriting. Suppose that some one + turned up in your place who wrote a completely different hand from + that in which you had applied for the vacancy, of course the game + would have been up. But in the interval the rogue had learned to + imitate you, and his position was therefore secure, as I presume that + nobody in the office had ever set eyes upon you." + + "Not a soul," groaned Hall Pycroft. + + "Very good. Of course it was of the utmost importance to prevent you + from thinking better of it, and also to keep you from coming into + contact with any one who might tell you that your double was at work + in Mawson's office. Therefore they gave you a handsome advance on + your salary, and ran you off to the Midlands, where they gave you + enough work to do to prevent your going to London, where you might + have burst their little game up. That is all plain enough." + + "But why should this man pretend to be his own brother?" + + "Well, that is pretty clear also. There are evidently only two of + them in it. The other is impersonating you at the office. This one + acted as your engager, and then found that he could not find you an + employer without admitting a third person into his plot. That he was + most unwilling to do. He changed his appearance as far as he could, + and trusted that the likeness, which you could not fail to observe, + would be put down to a family resemblance. But for the happy chance + of the gold stuffing, your suspicions would probably never have been + aroused." + + Hall Pycroft shook his clinched hands in the air. "Good Lord!" he + cried, "while I have been fooled in this way, what has this other + Hall Pycroft been doing at Mawson's? What should we do, Mr. Holmes? + Tell me what to do." + + "We must wire to Mawson's." + + "They shut at twelve on Saturdays." + + "Never mind. There may be some door-keeper or attendant--" + + "Ah yes, they keep a permanent guard there on account of the value of + the securities that they hold. I remember hearing it talked of in the + City." + + "Very good; we shall wire to him, and see if all is well, and if a + clerk of your name is working there. That is clear enough; but what + is not so clear is why at sight of us one of the rogues should + instantly walk out of the room and hang himself." + + "The paper!" croaked a voice behind us. The man was sitting up, + blanched and ghastly, with returning reason in his eyes, and hands + which rubbed nervously at the broad red band which still encircled + his throat. + + "The paper! Of course!" yelled Holmes, in a paroxysm of excitement. + "Idiot that I was! I thought so must of our visit that the paper + never entered my head for an instant. To be sure, the secret must be + there." He flattened it out upon the table, and a cry of triumph + burst from his lips. "Look at this, Watson," he cried. "It is a + London paper, an early edition of the Evening Standard. Here is what + we want. Look at the headlines: 'Crime in the City. Murder at Mawson + & Williams's. Gigantic attempted Robbery. Capture of the Criminal.' + Here, Watson, we are all equally anxious to hear it, so kindly read + it aloud to us." + + It appeared from its position in the paper to have been the one event + of importance in town, and the account of it ran in this way: + + "A desperate attempt at robbery, culminating in the death of one man + and the capture of the criminal, occurred this afternoon in the City. + For some time back Mawson & Williams, the famous financial house, + have been the guardians of securities which amount in the aggregate + to a sum of considerably over a million sterling. So conscious was + the manager of the responsibility which devolved upon him in + consequence of the great interests at stake that safes of the very + latest construction have been employed, and an armed watchman has + been left day and night in the building. It appears that last week a + new clerk named Hall Pycroft was engaged by the firm. This person + appears to have been none other that Beddington, the famous forger + and cracksman, who, with his brother, had only recently emerged from + a five years' spell of penal servitude. By some means, which are not + yet clear, he succeeded in winning, under a false name, this official + position in the office, which he utilized in order to obtain moulding + of various locks, and a thorough knowledge of the position of the + strong room and the safes. + "It is customary at Mawson's for the clerks to leave at midday on + Saturday. Sergeant Tuson, of the City Police, was somewhat surprised, + therefore to see a gentleman with a carpet bag come down the steps at + twenty minutes past one. His suspicions being aroused, the sergeant + followed the man, and with the aid of Constable Pollack succeeded, + after a most desperate resistance, in arresting him. It was at once + clear that a daring and gigantic robbery had been committed. Nearly a + hundred thousand pounds' worth of American railway bonds, with a + large amount of scrip in mines and other companies, was discovered in + the bag. On examining the premises the body of the unfortunate + watchman was found doubled up and thrust into the largest of the + safes, where it would not have been discovered until Monday morning + had it not been for the prompt action of Sergeant Tuson. The man's + skull had been shattered by a blow from a poker delivered from + behind. There could be no doubt that Beddington had obtained entrance + by pretending that he had left something behind him, and having + murdered the watchman, rapidly rifled the large safe, and then made + off with his booty. His brother, who usually works with him, has not + appeared in this job as far as can at present be ascertained, + although the police are making energetic inquiries as to his + whereabouts." + + "Well, we may save the police some little trouble in that direction," + said Holmes, glancing at the haggard figure huddled up by the window. + "Human nature is a strange mixture, Watson. You see that even a + villain and murderer can inspire such affection that his brother + turns to suicide when he learns that his neck is forfeited. However, + we have no choice as to our action. The doctor and I will remain on + guard, Mr. Pycroft, if you will have the kindness to step out for the + police." + + + + + + + THE "GLORIA SCOTT" + + "I have some papers here," said my friend Sherlock Holmes, as we sat + one winter's night on either side of the fire, "which I really think, + Watson, that it would be worth your while to glance over. These are + the documents in the extraordinary case of the Gloria Scott, and this + is the message which struck Justice of the Peace Trevor dead with + horror when he read it." + + He had picked from a drawer a little tarnished cylinder, and, undoing + the tape, he handed me a short note scrawled upon a half-sheet of + slate gray-paper. + + "The supply of game for London is going steadily up," it ran. + "Head-keeper Hudson, we believe, has been now told to receive all + orders for fly-paper and for preservation of your hen-pheasant's + life." + + As I glanced up from reading this enigmatical message, I saw Holmes + chuckling at the expression upon my face. + + "You look a little bewildered," said he. + + "I cannot see how such a message as this could inspire horror. It + seems to me to be rather grotesque than otherwise." + + "Very likely. Yet the fact remains that the reader, who was a fine, + robust old man, was knocked clean down by it as if it had been the + butt end of a pistol." + + "You arouse my curiosity," said I. "But why did you say just now that + there were very particular reasons why I should study this case?" + + "Because it was the first in which I was ever engaged." + + I had often endeavored to elicit from my companion what had first + turned his mind in the direction of criminal research, but had never + caught him before in a communicative humor. Now he sat forward in his + arm-chair and spread out the documents upon his knees. Then he lit + his pipe and sat for some time smoking and turning them over. + + "You never heard me talk of Victor Trevor?" he asked. "He was the + only friend I made during the two years I was at college. I was never + a very sociable fellow, Watson, always rather fond of moping in my + rooms and working out my own little methods of thought, so that I + never mixed much with the men of my year. Bar fencing and boxing I + had few athletic tastes, and then my line of study was quite distinct + from that of the other fellows, so that we had no points of contact + at all. Trevor was the only man I knew, and that only through the + accident of his bull terrier freezing on to my ankle one morning as I + went down to chapel. + + "It was a prosaic way of forming a friendship, but it was effective. + I was laid by the heels for ten days, but Trevor used to come in to + inquire after me. At first it was only a minute's chat, but soon his + visits lengthened, and before the end of the term we were close + friends. He was a hearty, full-blooded fellow, full of spirits and + energy, the very opposite to me in most respects, but we had some + subjects in common, and it was a bond of union when I found that he + was as friendless as I. Finally, he invited me down to his father's + place at Donnithorpe, in Norfolk, and I accepted his hospitality for + a month of the long vacation. + + "Old Trevor was evidently a man of some wealth and consideration, a + J.P., and a landed proprietor. Donnithorpe is a little hamlet just to + the north of Langmere, in the country of the Broads. The house was an + old-fashioned, wide-spread, oak-beamed brick building, with a fine + lime-lined avenue leading up to it. There was excellent wild-duck + shooting in the fens, remarkably good fishing, a small but select + library, taken over, as I understood, from a former occupant, and a + tolerable cook, so that he would be a fastidious man who could not + put in a pleasant month there. + + "Trevor senior was a widower, and my friend his only son. + + "There had been a daughter, I heard, but she had died of diphtheria + while on a visit to Birmingham. The father interested me extremely. + He was a man of little culture, but with a considerable amount of + rude strength, both physically and mentally. He knew hardly any + books, but he had traveled far, had seen much of the world. And had + remembered all that he had learned. In person he was a thick-set, + burly man with a shock of grizzled hair, a brown, weather-beaten + face, and blue eyes which were keen to the verge of fierceness. Yet + he had a reputation for kindness and charity on the country-side, and + was noted for the leniency of his sentences from the bench. + + "One evening, shortly after my arrival, we were sitting over a glass + of port after dinner, when young Trevor began to talk about those + habits of observation and inference which I had already formed into a + system, although I had not yet appreciated the part which they were + to play in my life. The old man evidently thought that his son was + exaggerating in his description of one or two trivial feats which I + had performed. + + "'Come, now, Mr. Holmes,' said he, laughing good-humoredly. 'I'm an + excellent subject, if you can deduce anything from me.' + + "'I fear there is not very much,' I answered; 'I might suggest that + you have gone about in fear of some personal attack within the last + twelve months.' + + "The laugh faded from his lips, and he stared at me in great + surprise. + + "'Well, that's true enough,' said he. 'You know, Victor,' turning to + his son, 'when we broke up that poaching gang they swore to knife us, + and Sir Edward Holly has actually been attacked. I've always been on + my guard since then, though I have no idea how you know it.' + + "'You have a very handsome stick,' I answered. 'By the inscription I + observed that you had not had it more than a year. But you have taken + some pains to bore the head of it and pour melted lead into the hole + so as to make it a formidable weapon. I argued that you would not + take such precautions unless you had some danger to fear.' + + "'Anything else?' he asked, smiling. + + "'You have boxed a good deal in your youth.' + + "'Right again. How did you know it? Is my nose knocked a little out + of the straight?' + + "'No,' said I. 'It is your ears. They have the peculiar flattening + and thickening which marks the boxing man.' + + "'Anything else?' + + "'You have done a good deal of digging by your callosities.' + + "'Made all my money at the gold fields.' + + "'You have been in New Zealand.' + + "'Right again.' + + "'You have visited Japan.' + + "'Quite true.' + + "'And you have been most intimately associated with some one whose + initials were J. A., and whom you afterwards were eager to entirely + forget.' + + "Mr. Trevor stood slowly up, fixed his large blue eyes upon me with a + strange wild stare, and then pitched forward, with his face among the + nutshells which strewed the cloth, in a dead faint. + + "You can imagine, Watson, how shocked both his son and I were. His + attack did not last long, however, for when we undid his collar, and + sprinkled the water from one of the finger-glasses over his face, he + gave a gasp or two and sat up. + + "'Ah, boys,' said he, forcing a smile, 'I hope I haven't frightened + you. Strong as I look, there is a weak place in my heart, and it does + not take much to knock me over. I don't know how you manage this, Mr. + Holmes, but it seems to me that all the detectives of fact and of + fancy would be children in your hands. That's your line of life, sir, + and you may take the word of a man who has seen something of the + world.' + + "And that recommendation, with the exaggerated estimate of my ability + with which he prefaced it, was, if you will believe me, Watson, the + very first thing which ever made me feel that a profession might be + made out of what had up to that time been the merest hobby. At the + moment, however, I was too much concerned at the sudden illness of my + host to think of anything else. + + "'I hope that I have said nothing to pain you?' said I. + + "'Well, you certainly touched upon rather a tender point. Might I ask + how you know, and how much you know?' He spoke now in a half-jesting + fashion, but a look of terror still lurked at the back of his eyes. + + "'It is simplicity itself,' said I. 'When you bared your arm to draw + that fish into the boat I saw that J. A. had been tattooed in the + bend of the elbow. The letters were still legible, but it was + perfectly clear from their blurred appearance, and from the staining + of the skin round them, that efforts had been made to obliterate + them. It was obvious, then, that those initials had once been very + familiar to you, and that you had afterwards wished to forget them.' + + "'What an eye you have!' he cried, with a sigh of relief. 'It is just + as you say. But we won't talk of it. Of all ghosts the ghosts of our + old lovers are the worst. Come into the billiard-room and have a + quiet cigar.' + + "From that day, amid all his cordiality, there was always a touch of + suspicion in Mr. Trevor's manner towards me. Even his son remarked + it. 'You've given the governor such a turn,' said he, 'that he'll + never be sure again of what you know and what you don't know.' He did + not mean to show it, I am sure, but it was so strongly in his mind + that it peeped out at every action. At last I became so convinced + that I was causing him uneasiness that I drew my visit to a close. On + the very day, however, before I left, an incident occurred which + proved in the sequel to be of importance. + + "We were sitting out upon the lawn on garden chairs, the three of us, + basking in the sun and admiring the view across the Broads, when a + maid came out to say that there was a man at the door who wanted to + see Mr. Trevor. + + "'What is his name?' asked my host. + + "'He would not give any.' + + "'What does he want, then?' + + "'He says that you know him, and that he only wants a moment's + conversation.' + + "'Show him round here.' An instant afterwards there appeared a little + wizened fellow with a cringing manner and a shambling style of + walking. He wore an open jacket, with a splotch of tar on the sleeve, + a red-and-black check shirt, dungaree trousers, and heavy boots badly + worn. His face was thin and brown and crafty, with a perpetual smile + upon it, which showed an irregular line of yellow teeth, and his + crinkled hands were half closed in a way that is distinctive of + sailors. As he came slouching across the lawn I heard Mr. Trevor make + a sort of hiccoughing noise in his throat, and jumping out of his + chair, he ran into the house. He was back in a moment, and I smelt a + strong reek of brandy as he passed me. + + "'Well, my man,' said he. 'What can I do for you?' + + "The sailor stood looking at him with puckered eyes, and with the + same loose-lipped smile upon his face. + + "'You don't know me?' he asked. + + "'Why, dear me, it is surely Hudson,' said Mr. Trevor in a tone of + surprise. + + "'Hudson it is, sir,' said the seaman. 'Why, it's thirty year and + more since I saw you last. Here you are in your house, and me still + picking my salt meat out of the harness cask.' + + "'Tut, you will find that I have not forgotten old times,' cried Mr. + Trevor, and, walking towards the sailor, he said something in a low + voice. 'Go into the kitchen,' he continued out loud, 'and you will + get food and drink. I have no doubt that I shall find you a + situation.' + + "'Thank you, sir,' said the seaman, touching his fore-lock. 'I'm just + off a two-yearer in an eight-knot tramp, short-handed at that, and I + wants a rest. I thought I'd get it either with Mr. Beddoes or with + you.' + + "'Ah!' cried Trevor. 'You know where Mr. Beddoes is?' + + "'Bless you, sir, I know where all my old friends are,' said the + fellow with a sinister smile, and he slouched off after the maid to + the kitchen. Mr. Trevor mumbled something to us about having been + shipmate with the man when he was going back to the diggings, and + then, leaving us on the lawn, he went indoors. An hour later, when we + entered the house, we found him stretched dead drunk upon the + dining-room sofa. The whole incident left a most ugly impression upon + my mind, and I was not sorry next day to leave Donnithorpe behind me, + for I felt that my presence must be a source of embarrassment to my + friend. + + "All this occurred during the first month of the long vacation. I + went up to my London rooms, where I spent seven weeks working out a + few experiments in organic chemistry. One day, however, when the + autumn was far advanced and the vacation drawing to a close, I + received a telegram from my friend imploring me to return to + Donnithorpe, and saying that he was in great need of my advice and + assistance. Of course I dropped everything and set out for the North + once more. + + "He met me with the dog-cart at the station, and I saw at a glance + that the last two months had been very trying ones for him. He had + grown thin and careworn, and had lost the loud, cheery manner for + which he had been remarkable. + + "'The governor is dying,' were the first words he said. + + "'Impossible!' I cried. 'What is the matter?' + + "'Apoplexy. Nervous shock, He's been on the verge all day. I doubt if + we shall find him alive.' + + "I was, as you may think, Watson, horrified at this unexpected news. + + "'What has caused it?' I asked. + + "'Ah, that is the point. Jump in and we can talk it over while we + drive. You remember that fellow who came upon the evening before you + left us?' + + "'Perfectly.' + + "'Do you know who it was that we let into the house that day?' + + "'I have no idea.' + + "'It was the devil, Holmes,' he cried. + + "I stared at him in astonishment. + + "'Yes, it was the devil himself. We have not had a peaceful hour + since--not one. The governor has never held up his head from that + evening, and now the life has been crushed out of him and his heart + broken, all through this accursed Hudson.' + + "'What power had he, then?' + + "'Ah, that is what I would give so much to know. The kindly, + charitable, good old governor--how could he have fallen into the + clutches of such a ruffian! But I am so glad that you have come, + Holmes. I trust very much to your judgment and discretion, and I know + that you will advise me for the best.' + + "We were dashing along the smooth white country road, with the long + stretch of the Broads in front of us glimmering in the red light of + the setting sun. From a grove upon our left I could already see the + high chimneys and the flag-staff which marked the squire's dwelling. + + "'My father made the fellow gardener,' said my companion, 'and then, + as that did not satisfy him, he was promoted to be butler. The house + seemed to be at his mercy, and he wandered about and did what he + chose in it. The maids complained of his drunken habits and his vile + language. The dad raised their wages all round to recompense them for + the annoyance. The fellow would take the boat and my father's best + gun and treat himself to little shooting trips. And all this with + such a sneering, leering, insolent face that I would have knocked him + down twenty times over if he had been a man of my own age. I tell + you, Holmes, I have had to keep a tight hold upon myself all this + time; and now I am asking myself whether, if I had let myself go a + little more, I might not have been a wiser man. + + "'Well, matters went from bad to worse with us, and this animal + Hudson became more and more intrusive, until at last, on making some + insolent reply to my father in my presence one day, I took him by the + shoulders and turned him out of the room. He slunk away with a livid + face and two venomous eyes which uttered more threats than his tongue + could do. I don't know what passed between the poor dad and him after + that, but the dad came to me next day and asked me whether I would + mind apologizing to Hudson. I refused, as you can imagine, and asked + my father how he could allow such a wretch to take such liberties + with himself and his household. + + "'"Ah, my boy," said he, "it is all very well to talk, but you don't + know how I am placed. But you shall know, Victor. I'll see that you + shall know, come what may. You wouldn't believe harm of your poor old + father, would you, lad?" He was very much moved, and shut himself up + in the study all day, where I could see through the window that he + was writing busily. + + "'That evening there came what seemed to me to be a grand release, + for Hudson told us that he was going to leave us. He walked into the + dining-room as we sat after dinner, and announced his intention in + the thick voice of a half-drunken man. + + "'"I've had enough of Norfolk," said he. "I'll run down to Mr. + Beddoes in Hampshire. He'll be as glad to see me as you were, I dare + say." + + "'"You're not going away in any kind of spirit, Hudson, I hope," said + my father, with a tameness which mad my blood boil. + + "'"I've not had my 'pology," said he sulkily, glancing in my + direction. + + "'"Victor, you will acknowledge that you have used this worthy fellow + rather roughly," said the dad, turning to me. + + "'"On the contrary, I think that we have both shown extraordinary + patience towards him," I answered. + + "'"Oh, you do, do you?" he snarls. "Very good, mate. We'll see about + that!" + + "'He slouched out of the room, and half an hour afterwards left the + house, leaving my father in a state of pitiable nervousness. Night + after night I heard him pacing his room, and it was just as he was + recovering his confidence that the blow did at last fall.' + + "'And how?' I asked eagerly. + + "'In a most extraordinary fashion. A letter arrived for my father + yesterday evening, bearing the Fordingbridge post-mark. My father + read it, clapped both his hands to his head, and began running round + the room in little circles like a man who has been driven out of his + senses. When I at last drew him down on to the sofa, his mouth and + eyelids were all puckered on one side, and I saw that he had a + stroke. Dr. Fordham came over at once. We put him to bed; but the + paralysis has spread, he has shown no sign of returning + consciousness, and I think that we shall hardly find him alive.' + + "'You horrify me, Trevor!' I cried. 'What then could have been in + this letter to cause so dreadful a result?' + + "'Nothing. There lies the inexplicable part of it. The message was + absurd and trivial. Ah, my God, it is as I feared!' + + "As he spoke we came round the curve of the avenue, and saw in the + fading light that every blind in the house had been drawn down. As we + dashed up to the door, my friend's face convulsed with grief, a + gentleman in black emerged from it. + + "'When did it happen, doctor?' asked Trevor. + + "'Almost immediately after you left.' + + "'Did he recover consciousness?' + + "'For an instant before the end.' + + "'Any message for me?' + + "'Only that the papers were in the back drawer of the Japanese + cabinet.' + + "My friend ascended with the doctor to the chamber of death, while I + remained in the study, turning the whole matter over and over in my + head, and feeling as sombre as ever I had done in my life. What was + the past of this Trevor, pugilist, traveler, and gold-digger, and how + had he placed himself in the power of this acid-faced seaman? Why, + too, should he faint at an allusion to the half-effaced initials upon + his arm, and die of fright when he had a letter from Fordingham? + Then I remembered that Fordingham was in Hampshire, and that this Mr. + Beddoes, whom the seaman had gone to visit and presumably to + blackmail, had also been mentioned as living in Hampshire. The + letter, then, might either come from Hudson, the seaman, saying that + he had betrayed the guilty secret which appeared to exist, or it + might come from Beddoes, warning an old confederate that such a + betrayal was imminent. So far it seemed clear enough. But then how + could this letter be trivial and grotesque, as described by the son? + He must have misread it. If so, it must have been one of those + ingenious secret codes which mean one thing while they seem to mean + another. I must see this letter. If there were a hidden meaning in + it, I was confident that I could pluck it forth. For an hour I sat + pondering over it in the gloom, until at last a weeping maid brought + in a lamp, and close at her heels came my friend Trevor, pale but + composed, with these very papers which lie upon my knee held in his + grasp. He sat down opposite to me, drew the lamp to the edge of the + table, and handed me a short note scribbled, as you see, upon a + single sheet of gray paper. 'The supply of game for London is going + steadily up,' it ran. 'Head-keeper Hudson, we believe, has been now + told to receive all orders for fly-paper and for preservation of your + hen-pheasant's life.' + + "I dare say my face looked as bewildered as yours did just now when + first I read this message. Then I reread it very carefully. It was + evidently as I had thought, and some secret meaning must lie buried + in this strange combination of words. Or could it be that there was a + prearranged significance to such phrases as 'fly-paper' and + 'hen-pheasant'? Such a meaning would be arbitrary and could not be + deduced in any way. And yet I was loath to believe that this was the + case, and the presence of the word Hudson seemed to show that the + subject of the message was as I had guessed, and that it was from + Beddoes rather than the sailor. I tried it backwards, but the + combination 'life pheasant's hen' was not encouraging. Then I tried + alternate words, but neither 'the of for' nor 'supply game London' + promised to throw any light upon it. + + "And then in an instant the key of the riddle was in my hands, and I + saw that every third word, beginning with the first, would give a + message which might well drive old Trevor to despair. + + "It was short and terse, the warning, as I now read it to my + companion: + + "'The game is up. Hudson has told all. Fly for your life.' + + "Victor Trevor sank his face into his shaking hands, 'It must be + that, I suppose,' said he. "This is worse than death, for it means + disgrace as well. But what is the meaning of these "head-keepers" and + "hen-pheasants"? + + "'It means nothing to the message, but it might mean a good deal to + us if we had no other means of discovering the sender. You see that + he has begun by writing "The ... game ... is," and so on. Afterwards + he had, to fulfill the prearranged cipher, to fill in any two words + in each space. He would naturally use the first words which came to + his mind, and if there were so many which referred to sport among + them, you may be tolerably sure that he is either an ardent shot or + interested in breeding. Do you know anything of this Beddoes?' + + "'Why, now that you mention it,' said he, 'I remember that my poor + father used to have an invitation from him to shoot over his + preserves every autumn.' + + "'Then it is undoubtedly from him that the note comes,' said I. 'It + only remains for us to find out what this secret was which the sailor + Hudson seems to have held over the heads of these two wealthy and + respected men.' + + "'Alas, Holmes, I fear that it is one of sin and shame!' cried my + friend. 'But from you I shall have no secrets. Here is the statement + which was drawn up by my father when he knew that the danger from + Hudson had become imminent. I found it in the Japanese cabinet, as he + told the doctor. Take it and read it to me, for I have neither the + strength nor the courage to do it myself.' + + "These are the very papers, Watson, which he handed to me, and I will + read them to you, as I read them in the old study that night to him. + They are endorsed outside, as you see, 'Some particulars of the + voyage of the bark Gloria Scott, from her leaving Falmouth on the 8th + October, 1855, to her destruction in N. Lat. 15° 20', W. Long. 25° + 14' on Nov. 6th.' It is in the form of a letter, and runs in this + way: + + "'My dear, dear son, now that approaching disgrace begins to darken + the closing years of my life, I can write with all truth and honesty + that it is not the terror of the law, it is not the loss of my + position in the county, nor is it my fall in the eyes of all who have + known me, which cuts me to the heart; but it is the thought that you + should come to blush for me--you who love me and who have seldom, I + hope, had reason to do other than respect me. But if the blow falls + which is forever hanging over me, then I should wish you to read + this, that you may know straight from me how far I have been to + blame. On the other hand, if all should go well (which may kind God + Almighty grant!), then if by any chance this paper should be still + undestroyed and should fall into your hands, I conjure you, by all + you hold sacred, by the memory of your dear mother, and by the love + which had been between us, to hurl it into the fire and to never give + one thought to it again. + + "'If then your eye goes onto read this line, I know that I shall + already have been exposed and dragged from my home, or as is more + likely, for you know that my heart is weak, by lying with my tongue + sealed forever in death. In either case the time for suppression is + past, and every word which I tell you is the naked truth, and this I + swear as I hope for mercy. + + "'My name, dear lad, is not Trevor. I was James Armitage in my + younger days, and you can understand now the shock that it was to me + a few weeks ago when your college friend addressed me in words which + seemed to imply that he had surprised my secret. As Armitage it was + that I entered a London banking-house, and as Armitage I was + convicted of breaking my country's laws, and was sentenced to + transportation. Do not think very harshly of me, laddie. It was a + debt of honor, so called, which I had to pay, and I used money which + was not my own to do it, in the certainty that I could replace it + before there could be any possibility of its being missed. But the + most dreadful ill-luck pursued me. The money which I had reckoned + upon never came to hand, and a premature examination of accounts + exposed my deficit. The case might have been dealt leniently with, + but the laws were more harshly administered thirty years ago than + now, and on my twenty-third birthday I found myself chained as a + felon with thirty-seven other convicts in 'tween-decks of the bark + Gloria Scott, bound for Australia. + + "'It was the year '55 when the Crimean war was at its height, and the + old convict ships had been largely used as transports in the Black + Sea. The government was compelled, therefore, to use smaller and less + suitable vessels for sending out their prisoners. The Gloria Scott + had been in the Chinese tea-trade, but she was an old-fashioned, + heavy-bowed, broad-beamed craft, and the new clippers had cut her + out. She was a five-hundred-ton boat; and besides her thirty-eight + jail-birds, she carried twenty-six of a crew, eighteen soldiers, a + captain, three mates, a doctor, a chaplain, and four warders. Nearly + a hundred souls were in her, all told, when we set sail from + Falmouth. + + "'The partitions between the cells of the convicts, instead of being + of thick oak, as is usual in convict-ships, were quite thin and + frail. The man next to me, upon the aft side, was one whom I had + particularly noticed when we were led down the quay. He was a young + man with a clear, hairless face, a long, thin nose, and rather + nut-cracker jaws. He carried his head very jauntily in the air, had a + swaggering style of walking, and was, above all else, remarkable for + his extraordinary height. I don't think any of our heads would have + come up to his shoulder, and I am sure that he could not have + measured less than six and a half feet. It was strange among so many + sad and weary faces to see one which was full of energy and + resolution. The sight of it was to me like a fire in a snow-storm. I + was glad, then, to find that he was my neighbor, and gladder still + when, in the dead of the night, I heard a whisper close to my ear, + and found that he had managed to cut an opening in the board which + separated us. + + "'"Hullo, chummy!" said he, "what's your name, and what are you here + for?" + + "'I answered him, and asked in turn who I was talking with. + + "'"I'm Jack Prendergast," said he, "and by God! You'll learn to bless + my name before you've done with me." + + "'I remembered hearing of his case, for it was one which had made an + immense sensation throughout the country some time before my own + arrest. He was a man of good family and of great ability, but of + incurably vicious habits, who had, by an ingenious system of fraud, + obtained huge sums of money from the leading London merchants. + + "'"Ha, ha! You remember my case!" said he proudly. + + "'"Very well, indeed." + + "'"Then maybe you remember something queer about it?" + + "'"What was that, then?" + + "'"I'd had nearly a quarter of a million, hadn't I?" + + "'"So it was said." + + "'"But none was recovered, eh?" + + "'"No." + + "'"Well, where d'ye suppose the balance is?" he asked. + + "'"I have no idea," said I. + + "'"Right between my finger and thumb," he cried. "By God! I've got + more pounds to my name than you've hairs on your head. And if you've + money, my son, and know how to handle it and spread it, you can do + anything. Now, you don't think it likely that a man who could do + anything is going to wear his breeches out sitting in the stinking + hold of a rat-gutted, beetle-ridden, mouldy old coffin of a Chin + China coaster. No, sir, such a man will look after himself and will + look after his chums. You may lay to that! You hold on to him, and + you may kiss the book that he'll haul you through." + + "'That was his style of talk, and at first I thought it meant + nothing; but after a while, when he had tested me and sworn me in + with all possible solemnity, he let me understand that there really + was a plot to gain command of the vessel. A dozen of the prisoners + had hatched it before they came aboard, Prendergast was the leader, + and his money was the motive power. + + "'"I'd a partner," said he, "a rare good man, as true as a stock to a + barrel. He's got the dibbs, he has, and where do you think he is at + this moment? Why, he's the chaplain of this ship--the chaplain, no + less! He came aboard with a black coat, and his papers right, and + money enough in his box to buy the thing right up from keel to + main-truck. The crew are his, body and soul. He could buy 'em at so + much a gross with a cash discount, and he did it before ever they + signed on. He's got two of the warders and Mercer, the second mate, + and he'd get the captain himself, if he thought him worth it." + + "'"What are we to do, then?" I asked. + + "'"What do you think?" said he. "We'll make the coats of some of + these soldiers redder than ever the tailor did." + + "'"But they are armed," said I. + + "'"And so shall we be, my boy. There's a brace of pistols for every + mother's son of us, and if we can't carry this ship, with the crew at + our back, it's time we were all sent to a young misses' + boarding-school. You speak to your mate upon the left to-night, and + see if he is to be trusted." + + "'I did so, and found my other neighbor to be a young fellow in much + the same position as myself, whose crime had been forgery. His name + was Evans, but he afterwards changed it, like myself, and he is now a + rich and prosperous man in the south of England. He was ready enough + to join the conspiracy, as the only means of saving ourselves, and + before we had crossed the Bay there were only two of the prisoners + who were not in the secret. One of these was of weak mind, and we did + not dare to trust him, and the other was suffering from jaundice, and + could not be of any use to us. + + "'From the beginning there was really nothing to prevent us from + taking possession of the ship. The crew were a set of ruffians, + specially picked for the job. The sham chaplain came into our cells + to exhort us, carrying a black bag, supposed to be full of tracts, + and so often did he come that by the third day we had each stowed + away at the foot of our beds a file, a brace of pistols, a pound of + powder, and twenty slugs. Two of the warders were agents of + Prendergast, and the second mate was his right-hand man. The captain, + the two mates, two warders Lieutenant Martin, his eighteen soldiers, + and the doctor were all that we had against us. Yet, safe as it was, + we determined to neglect no precaution, and to make our attack + suddenly by night. It came, however, more quickly than we expected, + and in this way. + + "'One evening, about the third week after our start, the doctor had + come down to see one of the prisoners who was ill, and putting his + hand down on the bottom of his bunk he felt the outline of the + pistols. If he had been silent he might have blown the whole thing, + but he was a nervous little chap, so he gave a cry of surprise and + turned so pale that the man knew what was up in an instant and seized + him. He was gagged before he could give the alarm, and tied down upon + the bed. He had unlocked the door that led to the deck, and we were + through it in a rush. The two sentries were shot down, and so was a + corporal who came running to see what was the matter. There were two + more soldiers at the door of the state-room, and their muskets seemed + not to be loaded, for they never fired upon us, and they were shot + while trying to fix their bayonets. Then we rushed on into the + captain's cabin, but as we pushed open the door there was an + explosion from within, and there he lay with his brains smeared over + the chart of the Atlantic which was pinned upon the table, while the + chaplain stood with a smoking pistol in his hand at his elbow. The + two mates had both been seized by the crew, and the whole business + seemed to be settled. + + "'The state-room was next the cabin, and we flocked in there and + flopped down on the settees, all speaking together, for we were just + mad with the feeling that we were free once more. There were lockers + all round, and Wilson, the sham chaplain, knocked one of them in, and + pulled out a dozen of brown sherry. We cracked off the necks of the + bottles, poured the stuff out into tumblers, and were just tossing + them off, when in an instant without warning there came the roar of + muskets in our ears, and the saloon was so full of smoke that we + could not see across the table. When it cleared again the place was a + shambles. Wilson and eight others were wriggling on the top of each + other on the floor, and the blood and the brown sherry on that table + turn me sick now when I think of it. We were so cowed by the sight + that I think we should have given the job up if had not been for + Prendergast. He bellowed like a bull and rushed for the door with all + that were left alive at his heels. Out we ran, and there on the poop + were the lieutenent and ten of his men. The swing skylights above the + saloon table had been a bit open, and they had fired on us through + the slit. We got on them before they could load, and they stood to + it like men; but we had the upper hand of them, and in five minutes + it was all over. My God! Was there ever a slaughter-house like that + ship! Predergast was like a raging devil, and he picked the soldiers + up as if they had been children and threw them overboard alive or + dead. There was one sergeant that was horribly wounded and yet kept + on swimming for a surprising time, until some one in mercy blew out + his brains. When the fighting was over there was no one left of our + enemies except just the warders, the mates, and the doctor. + + "'It was over them that the great quarrel arose. There were many of + us who were glad enough to win back our freedom, and yet who had no + wish to have murder on our souls. It was one thing to knock the + soldiers over with their muskets in their hands, and it was another + to stand by while men were being killed in cold blood. Eight of us, + five convicts and three sailors, said that we would not see it done. + But there was no moving Predergast and those who were with him. Our + only chance of safety lay in making a clean job of it, said he, and + he would not leave a tongue with power to wag in a witness-box. It + nearly came to our sharing the fate of the prisoners, but at last he + said that if we wished we might take a boat and go. We jumped at the + offer, for we were already sick of these blookthirsty doings, and we + saw that there would be worse before it was done. We were given a + suit of sailor togs each, a barrel of water, two casks, one of junk + and one of biscuits, and a compass. Prendergast threw us over a + chart, told us that we were shipwrecked mariners whose ship had + foundered in Lat. 15° and Long. 25° west, and then cut the painter + and let us go. + + "'And now I come to the most surprising part of my story, my dear + son. The seamen had hauled the fore-yard aback during the rising, but + now as we left them they brought it square again, and as there was a + light wind from the north and east the bark began to draw slowly away + from us. Our boat lay, rising and falling, upon the long, smooth + rollers, and Evans and I, who were the most educated of the party, + were sitting in the sheets working out our position and planning what + coast we should make for. It was a nice question, for the Cape de + Verds were about five hundred miles to the north of us, and the + African coast about seven hundred to the east. On the whole, as the + wind was coming round to the north, we thought that Sierra Leone + might be best, and turned our head in that direction, the bark being + at that time nearly hull down on our starboard quarter. Suddenly as + we looked at her we saw a dense black cloud of smoke shoot up from + her, which hung like a monstrous tree upon the sky line. A few + seconds later a roar like thunder burst upon our ears, and as the + smoke thinned away there was no sign left of the Gloria Scott. In an + instant we swept the boat's head round again and pulled with all our + strength for the place where the haze still trailing over the water + marked the scene of this catastrophe. + + "'It was a long hour before we reached it, and at first we feared + that we had come too late to save any one. A splintered boat and a + number of crates and fragments of spars rising and falling on the + waves showed us where the vessel had foundered; but there was no sign + of life, and we had turned away in despair when we heard a cry for + help, and saw at some distance a piece of wreckage with a man lying + stretched across it. When we pulled him aboard the boat he proved to + be a young seaman of the name of Hudson, who was so burned and + exhausted that he could give us no account of what had happened until + the following morning. + + "'It seemed that after we had left, Prendergast and his gang had + proceeded to put to death the five remaining prisoners. The two + warders had been shot and thrown overboard, and so also had the third + mate. Prendergast then descended into the 'tween-decks and with his + own hands cut the throat of the unfortunate surgeon. There only + remained the first mate, who was a bold and active man. When he saw + the convict approaching him with the bloody knife in his hand he + kicked off his bonds, which he had somehow contrived to loosen, and + rushing down the deck he plunged into the after-hold. A dozen + convicts, who descended with their pistols in search of him, found + him with a match-box in his hand seated beside an open powder-barrel, + which was one of a hundred carried on board, and swearing that he + would blow all hands up if he were in any way molested. An instant + later the explosion occurred, though Hudson thought it was caused by + the misdirected bullet of one of the convicts rather than the mate's + match. Be the cause what I may, it was the end of the Gloria Scott + and of the rabble who held command of her. + + "'Such, in a few words, my dear boy, is the history of this terrible + business in which I was involved. Next day we were picked up by the + brig Hotspur, bound for Australia, whose captain found no difficulty + in believing that we were the survivors of a passenger ship which had + foundered. The transport ship Gloria Scott was set down by the + Admiralty as being lost at sea, and no word has ever leaked out as to + her true fate. After an excellent voyage the Hotspur landed us at + Sydney, where Evans and I changed our names and made our way to the + diggings, where, among the crowds who were gathered from all nations, + we had no difficulty in losing our former identities. The rest I need + not relate. We prospered, we traveled, we came back as rich colonials + to England, and we bought country estates. For more than twenty years + we have led peaceful and useful lives, and we hoped that our past was + forever buried. Imagine, then, my feelings when in the seaman who + came to us I recognized instantly the man who had been picked off the + wreck. He had tracked us down somehow, and had set himself to live + upon our fears. You will understand now how it was that I strove to + keep the peace with him, and you will in some measure sympathize with + me in the fears which fill me, now that he has gone from me to his + other victim with threats upon his tongue.' + + "Underneath is written in a hand so shaky as to be hardly legible, + 'Beddoes writes in cipher to say H. has told all. Sweet Lord, have + mercy on our souls!' + + "That was the narrative which I read that night to young Trevor, and + I think, Watson, that under the circumstances it was a dramatic one. + The good fellow was heart-broken at it, and went out to the Terai tea + planting, where I hear that he is doing well. As to the sailor and + Beddoes, neither of them was ever heard of again after that day on + which the letter of warning was written. They both disappeared + utterly and completely. No complaint had been lodged with the police, + so that Beddoes had mistaken a threat for a deed. Hudson had been + seen lurking about, and it was believed by the police that he had + done away with Beddoes and had fled. For myself I believe that the + truth was exactly the opposite. I think that it is most probable that + Beddoes, pushed to desperation and believing himself to have been + already betrayed, had revenged himself upon Hudson, and had fled from + the country with as much money as he could lay his hands on. Those + are the facts of the case, Doctor, and if they are of any use to your + collection, I am sure that they are very heartily at your service." + + + + + + + THE MUSGRAVE RITUAL + + An anomaly which often struck me in the character of my friend + Sherlock Holmes was that, although in his methods of thought he was + the neatest and most methodical of mankind, and although also he + affected a certain quiet primness of dress, he was none the less in + his personal habits one of the most untidy men that ever drove a + fellow-lodger to distraction. Not that I am in the least conventional + in that respect myself. The rough-and-tumble work in Afghanistan, + coming on the top of a natural Bohemianism of disposition, has made + me rather more lax than befits a medical man. But with me there is a + limit, and when I find a man who keeps his cigars in the + coal-scuttle, his tobacco in the toe end of a Persian slipper, and + his unanswered correspondence transfixed by a jack-knife into the + very centre of his wooden mantelpiece, then I begin to give myself + virtuous airs. I have always held, too, that pistol practice should + be distinctly an open-air pastime; and when Holmes, in one of his + queer humors, would sit in an arm-chair with his hair-trigger and a + hundred Boxer cartridges, and proceed to adorn the opposite wall with + a patriotic V. R. done in bullet-pocks, I felt strongly that neither + the atmosphere nor the appearance of our room was improved by it. + + Our chambers were always full of chemicals and of criminal relics + which had a way of wandering into unlikely positions, and of turning + up in the butter-dish or in even less desirable places. But his + papers were my great crux. He had a horror of destroying documents, + especially those which were connected with his past cases, and yet it + was only once in every year or two that he would muster energy to + docket and arrange them; for, as I have mentioned somewhere in these + incoherent memoirs, the outbursts of passionate energy when he + performed the remarkable feats with which his name is associated were + followed by reactions of lethargy during which he would lie about + with his violin and his books, hardly moving save from the sofa to + the table. Thus month after month his papers accumulated, until every + corner of the room was stacked with bundles of manuscript which were + on no account to be burned, and which could not be put away save by + their owner. One winter's night, as we sat together by the fire, I + ventured to suggest to him that, as he had finished pasting extracts + into his common-place book, he might employ the next two hours in + making our room a little more habitable. He could not deny the + justice of my request, so with a rather rueful face he went off to + his bedroom, from which he returned presently pulling a large tin box + behind him. This he placed in the middle of the floor and, squatting + down upon a stool in front of it, he threw back the lid. I could see + that it was already a third full of bundles of paper tied up with red + tape into separate packages. + + "There are cases enough here, Watson," said he, looking at me with + mischievous eyes. "I think that if you knew all that I had in this + box you would ask me to pull some out instead of putting others in." + + "These are the records of your early work, then?" I asked. "I have + often wished that I had notes of those cases." + + "Yes, my boy, these were all done prematurely before my biographer + had come to glorify me." He lifted bundle after bundle in a tender, + caressing sort of way. "They are not all successes, Watson," said he. + "But there are some pretty little problems among them. Here's the + record of the Tarleton murders, and the case of Vamberry, the wine + merchant, and the adventure of the old Russian woman, and the + singular affair of the aluminium crutch, as well as a full account of + Ricoletti of the club-foot, and his abominable wife. And here--ah, + now, this really is something a little recherché." + + He dived his arm down to the bottom of the chest, and brought up a + small wooden box with a sliding lid, such as children's toys are kept + in. From within he produced a crumpled piece of paper, an + old-fashioned brass key, a peg of wood with a ball of string attached + to it, and three rusty old disks of metal. + + "Well, my boy, what do you make of this lot?" he asked, smiling at my + expression. + + "It is a curious collection." + + "Very curious, and the story that hangs round it will strike you as + being more curious still." + + "These relics have a history then?" + + "So much so that they are history." + + "What do you mean by that?" + + Sherlock Holmes picked them up one by one, and laid them along the + edge of the table. Then he reseated himself in his chair and looked + them over with a gleam of satisfaction in his eyes. + + "These," said he, "are all that I have left to remind me of the + adventure of the Musgrave Ritual." + + I had heard him mention the case more than once, though I had never + been able to gather the details. "I should be so glad," said I, "if + you would give me an account of it." + + "And leave the litter as it is?" he cried, mischievously. "Your + tidiness won't bear much strain after all, Watson. But I should be + glad that you should add this case to your annals, for there are + points in it which make it quite unique in the criminal records of + this or, I believe, of any other country. A collection of my trifling + achievements would certainly be incomplete which contained no account + of this very singular business. + + "You may remember how the affair of the Gloria Scott, and my + conversation with the unhappy man whose fate I told you of, first + turned my attention in the direction of the profession which has + become my life's work. You see me now when my name has become known + far and wide, and when I am generally recognized both by the public + and by the official force as being a final court of appeal in + doubtful cases. Even when you knew me first, at the time of the + affair which you have commemorated in 'A Study in Scarlet,' I had + already established a considerable, though not a very lucrative, + connection. You can hardly realize, then, how difficult I found it at + first, and how long I had to wait before I succeeded in making any + headway. + + "When I first came up to London I had rooms in Montague Street, just + round the corner from the British Museum, and there I waited, filling + in my too abundant leisure time by studying all those branches of + science which might make me more efficient. Now and again cases came + in my way, principally through the introduction of old + fellow-students, for during my last years at the University there was + a good deal of talk there about myself and my methods. The third of + these cases was that of the Musgrave Ritual, and it is to the + interest which was aroused by that singular chain of events, and the + large issues which proved to be at stake, that I trace my first + stride towards the position which I now hold. + + "Reginald Musgrave had been in the same college as myself, and I had + some slight acquaintance with him. He was not generally popular among + the undergraduates, though it always seemed to me that what was set + down as pride was really an attempt to cover extreme natural + diffidence. In appearance he was a man of exceedingly aristocratic + type, thin, high-nosed, and large-eyed, with languid and yet courtly + manners. He was indeed a scion of one of the very oldest families in + the kingdom, though his branch was a cadet one which had separated + from the northern Musgraves some time in the sixteenth century, and + had established itself in western Sussex, where the Manor House of + Hurlstone is perhaps the oldest inhabited building in the county. + Something of his birth place seemed to cling to the man, and I never + looked at his pale, keen face or the poise of his head without + associating him with gray archways and mullioned windows and all the + venerable wreckage of a feudal keep. Once or twice we drifted into + talk, and I can remember that more than once he expressed a keen + interest in my methods of observation and inference. + + "For four years I had seen nothing of him until one morning he walked + into my room in Montague Street. He had changed little, was dressed + like a young man of fashion--he was always a bit of a dandy--and + preserved the same quiet, suave manner which had formerly + distinguished him. + + "'How has all gone with you Musgrave?' I asked, after we had + cordially shaken hands. + + "'You probably heard of my poor father's death,' said he; 'he was + carried off about two years ago. Since then I have of course had the + Hurlstone estates to manage, and as I am member for my district as + well, my life has been a busy one. But I understand, Holmes, that you + are turning to practical ends those powers with which you used to + amaze us?' + + "'Yes,' said I, 'I have taken to living by my wits.' + + "'I am delighted to hear it, for your advice at present would be + exceedingly valuable to me. We have had some very strange doings at + Hurlstone, and the police have been able to throw no light upon the + matter. It is really the most extraordinary and inexplicable + business.' + + "You can imagine with what eagerness I listened to him, Watson, for + the very chance for which I had been panting during all those months + of inaction seemed to have come within my reach. In my inmost heart I + believed that I could succeed where others failed, and now I had the + opportunity to test myself. + + "'Pray, let me have the details,' I cried. + + "Reginald Musgrave sat down opposite to me, and lit the cigarette + which I had pushed towards him. + + "'You must know,' said he, 'that though I am a bachelor, I have to + keep up a considerable staff of servants at Hurlstone, for it is a + rambling old place, and takes a good deal of looking after. I + preserve, too, and in the pheasant months I usually have a + house-party, so that it would not do to be short-handed. Altogether + there are eight maids, the cook, the butler, two footmen, and a boy. + The garden and the stables of course have a separate staff. + + "'Of these servants the one who had been longest in our service was + Brunton the butler. He was a young school-master out of place when he + was first taken up by my father, but he was a man of great energy and + character, and he soon became quite invaluable in the household. He + was a well-grown, handsome man, with a splendid forehead, and though + he has been with us for twenty years he cannot be more than forty + now. With his personal advantages and his extraordinary gifts--for he + can speak several languages and play nearly every musical + instrument--it is wonderful that he should have been satisfied so + long in such a position, but I suppose that he was comfortable, and + lacked energy to make any change. The butler of Hurlstone is always a + thing that is remembered by all who visit us. + + "'But this paragon has one fault. He is a bit of a Don Juan, and you + can imagine that for a man like him it is not a very difficult part + to play in a quiet country district. When he was married it was all + right, but since he has been a widower we have had no end of trouble + with him. A few months ago we were in hopes that he was about to + settle down again for he became engaged to Rachel Howells, our second + house-maid; but he has thrown her over since then and taken up with + Janet Tregellis, the daughter of the head game-keeper. Rachel--who is + a very good girl, but of an excitable Welsh temperament--had a sharp + touch of brain-fever, and goes about the house now--or did until + yesterday--like a black-eyed shadow of her former self. That was our + first drama at Hurlstone; but a second one came to drive it from our + minds, and it was prefaced by the disgrace and dismissal of butler + Brunton. + + "'This was how it came about. I have said that the man was + intelligent, and this very intelligence has caused his ruin, for it + seems to have led to an insatiable curiosity about things which did + not in the least concern him. I had no idea of the lengths to which + this would carry him, until the merest accident opened my eyes to it. + + "'I have said that the house is a rambling one. One day last week--on + Thursday night, to be more exact--I found that I could not sleep, + having foolishly taken a cup of strong café noir after my dinner. + After struggling against it until two in the morning, I felt that it + was quite hopeless, so I rose and lit the candle with the intention + of continuing a novel which I was reading. The book, however, had + been left in the billiard-room, so I pulled on my dressing-gown and + started off to get it. + + "'In order to reach the billiard-room I had to descend a flight of + stairs and then to cross the head of a passage which led to the + library and the gun-room. You can imagine my surprise when, as I + looked down this corridor, I saw a glimmer of light coming from the + open door of the library. I had myself extinguished the lamp and + closed the door before coming to bed. Naturally my first thought was + of burglars. The corridors at Hurlstone have their walls largely + decorated with trophies of old weapons. From one of these I picked a + battle-axe, and then, leaving my candle behind me, I crept on tiptoe + down the passage and peeped in at the open door. + + "'Brunton, the butler, was in the library. He was sitting, fully + dressed, in an easy-chair, with a slip of paper which looked like a + map upon his knee, and his forehead sunk forward upon his hand in + deep thought. I stood dumb with astonishment, watching him from the + darkness. A small taper on the edge of the table shed a feeble light + which sufficed to show me that he was fully dressed. Suddenly, as I + looked, he rose from his chair, and walking over to a bureau at the + side, he unlocked it and drew out one of the drawers. From this he + took a paper, and returning to his seat he flattened it out beside + the taper on the edge of the table, and began to study it with minute + attention. My indignation at this calm examination of our family + documents overcame me so far that I took a step forward, and Brunton, + looking up, saw me standing in the doorway. He sprang to his feet, + his face turned livid with fear, and he thrust into his breast the + chart-like paper which he had been originally studying. + + "'"So!" said I. "This is how you repay the trust which we have + reposed in you. You will leave my service to-morrow." + + "'He bowed with the look of a man who is utterly crushed, and slunk + past me without a word. The taper was still on the table, and by its + light I glanced to see what the paper was which Brunton had taken + from the bureau. To my surprise it was nothing of any importance at + all, but simply a copy of the questions and answers in the singular + old observance called the Musgrave Ritual. It is a sort of ceremony + peculiar to our family, which each Musgrave for centuries past has + gone through on his coming of age--a thing of private interest, and + perhaps of some little importance to the archaeologist, like our own + blazonings and charges, but of no practical use whatever.' + + "'We had better come back to the paper afterwards,' said I. + + "'If you think it really necessary,' he answered, with some + hesitation. 'To continue my statement, however: I relocked the + bureau, using the key which Brunton had left, and I had turned to go + when I was surprised to find that the butler had returned, and was + standing before me. + + "'"Mr. Musgrave, sir," he cried, in a voice which was hoarse with + emotion, "I can't bear disgrace, sir. I've always been proud above my + station in life, and disgrace would kill me. My blood will be on your + head, sir--it will, indeed--if you drive me to despair. If you cannot + keep me after what has passed, then for God's sake let me give you + notice and leave in a month, as if of my own free will. I could stand + that, Mr. Musgrave, but not to be cast out before all the folk that I + know so well." + + "'"You don't deserve much consideration, Brunton," I answered. "Your + conduct has been most infamous. However, as you have been a long time + in the family, I have no wish to bring public disgrace upon you. A + month, however is too long. Take yourself away in a week, and give + what reason you like for going." + + "'"Only a week, sir?" he cried, in a despairing voice. "A + fortnight--say at least a fortnight!" + + "'"A week," I repeated, "and you may consider yourself to have been + very leniently dealt with." + + "'He crept away, his face sunk upon his breast, like a broken man, + while I put out the light and returned to my room. + + "'For two days after this Brunton was most assiduous in his attention + to his duties. I made no allusion to what had passed, and waited with + some curiosity to see how he would cover his disgrace. On the third + morning, however he did not appear, as was his custom, after + breakfast to receive my instructions for the day. As I left the + dining-room I happened to meet Rachel Howells, the maid. I have told + you that she had only recently recovered from an illness, and was + looking so wretchedly pale and wan that I remonstrated with her for + being at work. + + "'"You should be in bed," I said. "Come back to your duties when you + are stronger." + + "'She looked at me with so strange an expression that I began to + suspect that her brain was affected. + + "'"I am strong enough, Mr. Musgrave," said she. + + "'"We will see what the doctor says," I answered. "You must stop work + now, and when you go downstairs just say that I wish to see Brunton." + + "'"The butler is gone," said she. + + "'"Gone! Gone where?" + + "'"He is gone. No one has seen him. He is not in his room. Oh, yes, + he is gone, he is gone!" She fell back against the wall with shriek + after shriek of laughter, while I, horrified at this sudden + hysterical attack, rushed to the bell to summon help. The girl was + taken to her room, still screaming and sobbing, while I made + inquiries about Brunton. There was no doubt about it that he had + disappeared. His bed had not been slept in, he had been seen by no + one since he had retired to his room the night before, and yet it was + difficult to see how he could have left the house, as both windows + and doors were found to be fastened in the morning. His clothes, his + watch, and even his money were in his room, but the black suit which + he usually wore was missing. His slippers, too, were gone, but his + boots were left behind. Where then could butler Brunton have gone in + the night, and what could have become of him now? + + "'Of course we searched the house from cellar to garret, but there + was no trace of him. It is, as I have said, a labyrinth of an old + house, especially the original wing, which is now practically + uninhabited; but we ransacked every room and cellar without + discovering the least sign of the missing man. It was incredible to + me that he could have gone away leaving all his property behind him, + and yet where could he be? I called in the local police, but without + success. Rain had fallen on the night before and we examined the lawn + and the paths all round the house, but in vain. Matters were in this + state, when a new development quite drew our attention away from the + original mystery. + + "'For two days Rachel Howells had been so ill, sometimes delirious, + sometimes hysterical, that a nurse had been employed to sit up with + her at night. On the third night after Brunton's disappearance, the + nurse, finding her patient sleeping nicely, had dropped into a nap in + the arm-chair, when she woke in the early morning to find the bed + empty, the window open, and no signs of the invalid. I was instantly + aroused, and, with the two footmen, started off at once in search of + the missing girl. It was not difficult to tell the direction which + she had taken, for, starting from under her window, we could follow + her footmarks easily across the lawn to the edge of the mere, where + they vanished close to the gravel path which leads out of the + grounds. The lake there is eight feet deep, and you can imagine our + feelings when we saw that the trail of the poor demented girl came to + an end at the edge of it. + + "'Of course, we had the drags at once, and set to work to recover the + remains, but no trace of the body could we find. On the other hand, + we brought to the surface an object of a most unexpected kind. It was + a linen bag which contained within it a mass of old rusted and + discolored metal and several dull-colored pieces of pebble or glass. + This strange find was all that we could get from the mere, and, + although we made every possible search and inquiry yesterday, we know + nothing of the fate either of Rachel Howells or of Richard Brunton. + The county police are at their wits' end, and I have come up to you + as a last resource.' + + "You can imagine, Watson, with what eagerness I listened to this + extraordinary sequence of events, and endeavored to piece them + together, and to devise some common thread upon which they might all + hang. The butler was gone. The maid was gone. The maid had loved the + butler, but had afterwards had cause to hate him. She was of Welsh + blood, fiery and passionate. She had been terribly excited + immediately after his disappearance. She had flung into the lake a + bag containing some curious contents. These were all factors which + had to be taken into consideration, and yet none of them got quite to + the heart of the matter. What was the starting-point of this chain of + events? There lay the end of this tangled line. + + "'I must see that paper, Musgrave,' said I, 'which this butler of + your thought it worth his while to consult, even at the risk of the + loss of his place.' + + "'It is rather an absurd business, this ritual of ours,' he answered. + 'But it has at least the saving grace of antiquity to excuse it. I + have a copy of the questions and answers here if you care to run your + eye over them.' + + "He handed me the very paper which I have here, Watson, and this is + the strange catechism to which each Musgrave had to submit when he + came to man's estate. I will read you the questions and answers as + they stand. + + "'Whose was it?' + + "'His who is gone.' + + "'Who shall have it?' + + "'He who will come.' + + "'What was the month?' + + "'The sixth from the first.' + + "'Where was the sun?' + + "'Over the oak.' + + "'Where was the shadow?' + + "'Under the elm.' + + "'How was it stepped?' + + "'North by ten and by ten, east by five and by five, south by two and + by two, west by one and by one, and so under.' + + "'What shall we give for it?' + + "'All that is ours.' + + "'Why should we give it?' + + "'For the sake of the trust.' + + "'The original has no date, but is in the spelling of the middle of + the seventeenth century,' remarked Musgrave. 'I am afraid, however, + that it can be of little help to you in solving this mystery.' + + "'At least,' said I, 'it gives us another mystery, and one which is + even more interesting than the first. It may be that the solution of + the one may prove to be the solution of the other. You will excuse + me, Musgrave, if I say that your butler appears to me to have been a + very clever man, and to have had a clearer insight that ten + generations of his masters.' + + "'I hardly follow you,' said Musgrave. 'The paper seems to me to be + of no practical importance.' + + "'But to me it seems immensely practical, and I fancy that Brunton + took the same view. He had probably seen it before that night on + which you caught him.' + + "'It is very possible. We took no pains to hide it.' + + "'He simply wished, I should imagine, to refresh his memory upon that + last occasion. He had, as I understand, some sort of map or chart + which he was comparing with the manuscript, and which he thrust into + his pocket when you appeared.' + + "'That is true. But what could he have to do with this old family + custom of ours, and what does this rigmarole mean?' + + "'I don't think that we should have much difficulty in determining + that,' said I; 'with your permission we will take the first train + down to Sussex, and go a little more deeply into the matter upon the + spot.' + + "The same afternoon saw us both at Hurlstone. Possibly you have seen + pictures and read descriptions of the famous old building, so I will + confine my account of it to saying that it is built in the shape of + an L, the long arm being the more modern portion, and the shorter the + ancient nucleus, from which the other had developed. Over the low, + heavily-lintelled door, in the centre of this old part, is chiseled + the date, 1607, but experts are agreed that the beams and stone-work + are really much older than this. The enormously thick walls and tiny + windows of this part had in the last century driven the family into + building the new wing, and the old one was used now as a store-house + and a cellar, when it was used at all. A splendid park with fine old + timber surrounds the house, and the lake, to which my client had + referred, lay close to the avenue, about two hundred yards from the + building. + + "I was already firmly convinced, Watson, that there were not three + separate mysteries here, but one only, and that if I could read the + Musgrave Ritual aright I should hold in my hand the clue which would + lead me to the truth concerning both the butler Brunton and the maid + Howells. To that then I turned all my energies. Why should this + servant be so anxious to master this old formula? Evidently because + he saw something in it which had escaped all those generations of + country squires, and from which he expected some personal advantage. + What was it then, and how had it affected his fate? + + "It was perfectly obvious to me, on reading the ritual, that the + measurements must refer to some spot to which the rest of the + document alluded, and that if we could find that spot, we should be + in a fair way towards finding what the secret was which the old + Musgraves had thought it necessary to embalm in so curious a fashion. + There were two guides given us to start with, an oak and an elm. As + to the oak there could be no question at all. Right in front of the + house, upon the left-hand side of the drive, there stood a patriarch + among oaks, one of the most magnificent trees that I have ever seen. + + "'That was there when your ritual was drawn up,' said I, as we drove + past it. + + "'It was there at the Norman Conquest in all probability,' he + answered. 'It has a girth of twenty-three feet.' + + "Here was one of my fixed points secured. + + "'Have you any old elms?' I asked. + + "'There used to be a very old one over yonder but it was struck by + lightning ten years ago, and we cut down the stump,' + + "'You can see where it used to be?' + + "'Oh, yes.' + + "'There are no other elms?' + + "'No old ones, but plenty of beeches.' + + "'I should like to see where it grew.' + + "We had driven up in a dogcart, and my client led me away at once, + without our entering the house, to the scar on the lawn where the elm + had stood. It was nearly midway between the oak and the house. My + investigation seemed to be progressing. + + "'I suppose it is impossible to find out how high the elm was?' I + asked. + + "'I can give you it at once. It was sixty-four feet.' + + "'How do you come to know it?' I asked, in surprise. + + "'When my old tutor used to give me an exercise in trigonometry, it + always took the shape of measuring heights. When I was a lad I worked + out every tree and building in the estate.' + + "This was an unexpected piece of luck. My data were coming more + quickly than I could have reasonably hoped. + + "'Tell me,' I asked, 'did your butler ever ask you such a question?' + + "Reginald Musgrave looked at me in astonishment. 'Now that you call + it to my mind,' he answered, 'Brunton did ask me about the height of + the tree some months ago, in connection with some little argument + with the groom.' + + "This was excellent news, Watson, for it showed me that I was on the + right road. I looked up at the sun. It was low in the heavens, and I + calculated that in less than an hour it would lie just above the + topmost branches of the old oak. One condition mentioned in the + Ritual would then be fulfilled. And the shadow of the elm must mean + the farther end of the shadow, otherwise the trunk would have been + chosen as the guide. I had, then, to find where the far end of the + shadow would fall when the sun was just clear of the oak." + + "That must have been difficult, Holmes, when the elm was no longer + there." + + "Well, at least I knew that if Brunton could do it, I could also. + Besides, there was no real difficulty. I went with Musgrave to his + study and whittled myself this peg, to which I tied this long string + with a knot at each yard. Then I took two lengths of a fishing-rod, + which came to just six feet, and I went back with my client to where + the elm had been. The sun was just grazing the top of the oak. I + fastened the rod on end, marked out the direction of the shadow, and + measured it. It was nine feet in length. + + "Of course the calculation now was a simple one. If a rod of six feet + threw a shadow of nine, a tree of sixty-four feet would throw one of + ninety-six, and the line of the one would of course be the line of + the other. I measured out the distance, which brought me almost to + the wall of the house, and I thrust a peg into the spot. You can + imagine my exultation, Watson, when within two inches of my peg I saw + a conical depression in the ground. I knew that it was the mark made + by Brunton in his measurements, and that I was still upon his trail. + + "From this starting-point I proceeded to step, having first taken the + cardinal points by my pocket-compass. Ten steps with each foot took + me along parallel with the wall of the house, and again I marked my + spot with a peg. Then I carefully paced off five to the east and two + to the south. It brought me to the very threshold of the old door. + Two steps to the west meant now that I was to go two paces down the + stone-flagged passage, and this was the place indicated by the + Ritual. + + "Never have I felt such a cold chill of disappointment, Watson. For a + moment it seemed to me that there must be some radical mistake in my + calculations. The setting sun shone full upon the passage floor, and + I could see that the old, foot-worn gray stones with which it was + paved were firmly cemented together, and had certainly not been moved + for many a long year. Brunton had not been at work here. I tapped + upon the floor, but it sounded the same all over, and there was no + sign of any crack or crevice. But fortunately, Musgrave, who had + begun to appreciate the meaning of my proceedings, and who was now as + excited as myself, took out his manuscript to check my calculation. + + "'And under,' he cried. 'You have omitted the "and under."' + + "I had thought that it meant that we were to dig, but now, of course, + I saw at once that I was wrong. 'There is a cellar under this then?' + I cried. + + "'Yes, and as old as the house. Down here, through this door.' + + "We went down a winding stone stair, and my companion, striking a + match, lit a large lantern which stood on a barrel in the corner. In + an instant it was obvious that we had at last come upon the true + place, and that we had not been the only people to visit the spot + recently. + + "It had been used for the storage of wood, but the billets, which had + evidently been littered over the floor, were now piled at the sides, + so as to leave a clear space in the middle. In this space lay a large + and heavy flagstone with a rusted iron ring in the centre to which a + thick shepherd's-check muffler was attached. + + "'By Jove!' cried my client. 'That's Brunton's muffler. I have seen + it on him, and could swear to it. What has the villain been doing + here?' + + "At my suggestion a couple of the county police were summoned to be + present, and I then endeavored to raise the stone by pulling on the + cravat. I could only move it slightly, and it was with the aid of one + of the constables that I succeeded at last in carrying it to one + side. A black hole yawned beneath into which we all peered, while + Musgrave, kneeling at the side, pushed down the lantern. + + "A small chamber about seven feet deep and four feet square lay open + to us. At one side of this was a squat, brass-bound wooden box, the + lid of which was hinged upwards, with this curious old-fashioned key + projecting from the lock. It was furred outside by a thick layer of + dust, and damp and worms had eaten through the wood, so that a crop + of livid fungi was growing on the inside of it. Several discs of + metal, old coins apparently, such as I hold here, were scattered over + the bottom of the box, but it contained nothing else. + + "At the moment, however, we had no thought for the old chest, for our + eyes were riveted upon that which crouched beside it. It was the + figure of a man, clad in a suit of black, who squatted down upon his + hams with his forehead sunk upon the edge of the box and his two arms + thrown out on each side of it. The attitude had drawn all the + stagnant blood to the face, and no man could have recognized that + distorted liver-colored countenance; but his height, his dress, and + his hair were all sufficient to show my client, when we had drawn the + body up, that it was indeed his missing butler. He had been dead some + days, but there was no wound or bruise upon his person to show how he + had met his dreadful end. When his body had been carried from the + cellar we found ourselves still confronted with a problem which was + almost as formidable as that with which we had started. + + "I confess that so far, Watson, I had been disappointed in my + investigation. I had reckoned upon solving the matter when once I had + found the place referred to in the Ritual; but now I was there, and + was apparently as far as ever from knowing what it was which the + family had concealed with such elaborate precautions. It is true that + I had thrown a light upon the fate of Brunton, but now I had to + ascertain how that fate had come upon him, and what part had been + played in the matter by the woman who had disappeared. I sat down + upon a keg in the corner and thought the whole matter carefully over. + + "You know my methods in such cases, Watson. I put myself in the man's + place and, having first gauged his intelligence, I try to imagine how + I should myself have proceeded under the same circumstances. In this + case the matter was simplified by Brunton's intelligence being quite + first-rate, so that it was unnecessary to make any allowance for the + personal equation, as the astronomers have dubbed it. He knew that + something valuable was concealed. He had spotted the place. He found + that the stone which covered it was just too heavy for a man to move + unaided. What would he do next? He could not get help from outside, + even if he had some one whom he could trust, without the unbarring of + doors and considerable risk of detection. It was better, if he could, + to have his helpmate inside the house. But whom could he ask? This + girl had been devoted to him. A man always finds it hard to realize + that he may have finally lost a woman's love, however badly he may + have treated her. He would try by a few attentions to make his peace + with the girl Howells, and then would engage her as his accomplice. + Together they would come at night to the cellar, and their united + force would suffice to raise the stone. So far I could follow their + actions as if I had actually seen them. + + "But for two of them, and one a woman, it must have been heavy work + the raising of that stone. A burly Sussex policeman and I had found + it no light job. What would they do to assist them? Probably what I + should have done myself. I rose and examined carefully the different + billets of wood which were scattered round the floor. Almost at once + I came upon what I expected. One piece, about three feet in length, + had a very marked indentation at one end, while several were + flattened at the sides as if they had been compressed by some + considerable weight. Evidently, as they had dragged the stone up they + had thrust the chunks of wood into the chink, until at last, when the + opening was large enough to crawl through, they would hold it open by + a billet placed lengthwise, which might very well become indented at + the lower end, since the whole weight of the stone would press it + down on to the edge of this other slab. So far I was still on safe + ground. + + "And now how was I to proceed to reconstruct this midnight drama? + Clearly, only one could fit into the hole, and that one was Brunton. + The girl must have waited above. Brunton then unlocked the box, + handed up the contents presumably--since they were not to be + found--and then--and then what happened? + + "What smouldering fire of vengeance had suddenly sprung into flame in + this passionate Celtic woman's soul when she saw the man who had + wronged her--wronged her, perhaps, far more than we suspected--in her + power? Was it a chance that the wood had slipped, and that the stone + had shut Brunton into what had become his sepulchre? Had she only + been guilty of silence as to his fate? Or had some sudden blow from + her hand dashed the support away and sent the slab crashing down into + its place? Be that as it might, I seemed to see that woman's figure + still clutching at her treasure trove and flying wildly up the + winding stair, with her ears ringing perhaps with the muffled screams + from behind her and with the drumming of frenzied hands against the + slab of stone which was choking her faithless lover's life out. + + "Here was the secret of her blanched face, her shaken nerves, her + peals of hysterical laughter on the next morning. But what had been + in the box? What had she done with that? Of course, it must have been + the old metal and pebbles which my client had dragged from the mere. + She had thrown them in there at the first opportunity to remove the + last trace of her crime. + + "For twenty minutes I had sat motionless, thinking the matter out. + Musgrave still stood with a very pale face, swinging his lantern and + peering down into the hole. + + "'These are coins of Charles the First,' said he, holding out the few + which had been in the box; 'you see we were right in fixing our date + for the Ritual.' + + "'We may find something else of Charles the First,' I cried, as the + probable meaning of the first two question of the Ritual broke + suddenly upon me. 'Let me see the contents of the bag which you + fished from the mere.' + + "We ascended to his study, and he laid the debris before me. I could + understand his regarding it as of small importance when I looked at + it, for the metal was almost black and the stones lustreless and + dull. I rubbed one of them on my sleeve, however, and it glowed + afterwards like a spark in the dark hollow of my hand. The metal work + was in the form of a double ring, but it had been bent and twisted + out of its original shape. + + "'You must bear in mind,' said I, 'that the royal party made head in + England even after the death of the King, and that when they at last + fled they probably left many of their most precious possessions + buried behind them, with the intention of returning for them in more + peaceful times.' + + "'My ancestor, Sir Ralph Musgrave, was a prominent Cavalier and the + right-hand man of Charles the Second in his wanderings,' said my + friend. + + "'Ah, indeed!' I answered. 'Well now, I think that really should give + us the last link that we wanted. I must congratulate you on coming + into the possession, though in rather a tragic manner, of a relic + which is of great intrinsic value, but of even greater importance as + an historical curiosity.' + + "'What is it, then?' he gasped in astonishment. + + "'It is nothing less than the ancient crown of the kings of England.' + + "'The crown!' + + "'Precisely. Consider what the Ritual says: How does it run? "Whose + was it?" "His who is gone." That was after the execution of Charles. + Then, "Who shall have it?" "He who will come." That was Charles the + Second, whose advent was already foreseen. There can, I think, be no + doubt that this battered and shapeless diadem once encircled the + brows of the royal Stuarts.' + + "'And how came it in the pond?' + + "'Ah, that is a question that will take some time to answer.' And + with that I sketched out to him the whole long chain of surmise and + of proof which I had constructed. The twilight had closed in and the + moon was shining brightly in the sky before my narrative was + finished. + + "'And how was it then that Charles did not get his crown when he + returned?' asked Musgrave, pushing back the relic into its linen bag. + + "'Ah, there you lay your finger upon the one point which we shall + probably never be able to clear up. It is likely that the Musgrave + who held the secret died in the interval, and by some oversight left + this guide to his descendant without explaining the meaning of it. + From that day to this it has been handed down from father to son, + until at last it came within reach of a man who tore its secret out + of it and lost his life in the venture.' + + "And that's the story of the Musgrave Ritual, Watson. They have the + crown down at Hurlstone--though they had some legal bother and a + considerable sum to pay before they were allowed to retain it. I am + sure that if you mentioned my name they would be happy to show it to + you. Of the woman nothing was ever heard, and the probability is that + she got away out of England and carried herself and the memory of her + crime to some land beyond the seas." + + + + + + + THE REIGATE SQUIRES + + It was some time before the health of my friend Mr. Sherlock Holmes + recovered from the strain caused by his immense exertions in the + spring of '87. The whole question of the Netherland-Sumatra Company + and of the colossal schemes of Baron Maupertuis are too recent in the + minds of the public, and are too intimately concerned with politics + and finance to be fitting subjects for this series of sketches. They + led, however, in an indirect fashion to a singular and complex + problem which gave my friend an opportunity of demonstrating the + value of a fresh weapon among the many with which he waged his + life-long battle against crime. + + On referring to my notes I see that it was upon the 14th of April + that I received a telegram from Lyons which informed me that Holmes + was lying ill in the Hotel Dulong. Within twenty-four hours I was in + his sick-room, and was relieved to find that there was nothing + formidable in his symptoms. Even his iron constitution, however, had + broken down under the strain of an investigation which had extended + over two months, during which period he had never worked less than + fifteen hours a day, and had more than once, as he assured me, kept + to his task for five days at a stretch. Even the triumphant issue of + his labors could not save him from reaction after so terrible an + exertion, and at a time when Europe was ringing with his name and + when his room was literally ankle-deep with congratulatory telegrams + I found him a prey to the blackest depression. Even the knowledge + that he had succeeded where the police of three countries had failed, + and that he had outmanoeuvred at every point the most accomplished + swindler in Europe, was insufficient to rouse him from his nervous + prostration. + + Three days later we were back in Baker Street together; but it was + evident that my friend would be much the better for a change, and the + thought of a week of spring time in the country was full of + attractions to me also. My old friend, Colonel Hayter, who had come + under my professional care in Afghanistan, had now taken a house near + Reigate in Surrey, and had frequently asked me to come down to him + upon a visit. On the last occasion he had remarked that if my friend + would only come with me he would be glad to extend his hospitality to + him also. A little diplomacy was needed, but when Holmes understood + that the establishment was a bachelor one, and that he would be + allowed the fullest freedom, he fell in with my plans and a week + after our return from Lyons we were under the Colonel's roof. Hayter + was a fine old soldier who had seen much of the world, and he soon + found, as I had expected, that Holmes and he had much in common. + + On the evening of our arrival we were sitting in the Colonel's + gun-room after dinner, Holmes stretched upon the sofa, while Hayter + and I looked over his little armory of Eastern weapons. + + "By the way," said he suddenly, "I think I'll take one of these + pistols upstairs with me in case we have an alarm." + + "An alarm!" said I. + + "Yes, we've had a scare in this part lately. Old Acton, who is one of + our county magnates, had his house broken into last Monday. No great + damage done, but the fellows are still at large." + + "No clue?" asked Holmes, cocking his eye at the Colonel. + + "None as yet. But the affair is a pretty one, one of our little + country crimes, which must seem too small for your attention, Mr. + Holmes, after this great international affair." + + Holmes waved away the compliment, though his smile showed that it had + pleased him. + + "Was there any feature of interest?" + + "I fancy not. The thieves ransacked the library and got very little + for their pains. The whole place was turned upside down, drawers + burst open, and presses ransacked, with the result that an odd volume + of Pope's Homer, two plated candlesticks, an ivory letter-weight, a + small oak barometer, and a ball of twine are all that have vanished." + + "What an extraordinary assortment!" I exclaimed. + + "Oh, the fellows evidently grabbed hold of everything they could + get." + + Holmes grunted from the sofa. + + "The county police ought to make something of that," said he; "why, + it is surely obvious that--" + + But I held up a warning finger. + + "You are here for a rest, my dear fellow. For Heaven's sake don't get + started on a new problem when your nerves are all in shreds." + + Holmes shrugged his shoulders with a glance of comic resignation + towards the Colonel, and the talk drifted away into less dangerous + channels. + + It was destined, however, that all my professional caution should be + wasted, for next morning the problem obtruded itself upon us in such + a way that it was impossible to ignore it, and our country visit took + a turn which neither of us could have anticipated. We were at + breakfast when the Colonel's butler rushed in with all his propriety + shaken out of him. + + "Have you heard the news, sir?" he gasped. "At the Cunningham's sir!" + + "Burglary!" cried the Colonel, with his coffee-cup in mid-air. + + "Murder!" + + The Colonel whistled. "By Jove!" said he. "Who's killed, then? The + J.P. or his son?" + + "Neither, sir. It was William the coachman. Shot through the heart, + sir, and never spoke again." + + "Who shot him, then?" + + "The burglar, sir. He was off like a shot and got clean away. He'd + just broke in at the pantry window when William came on him and met + his end in saving his master's property." + + "What time?" + + "It was last night, sir, somewhere about twelve." + + "Ah, then, we'll step over afterwards," said the Colonel, coolly + settling down to his breakfast again. "It's a baddish business," he + added when the butler had gone; "he's our leading man about here, is + old Cunningham, and a very decent fellow too. He'll be cut up over + this, for the man has been in his service for years and was a good + servant. It's evidently the same villains who broke into Acton's." + + "And stole that very singular collection," said Holmes, thoughtfully. + + "Precisely." + + "Hum! It may prove the simplest matter in the world, but all the same + at first glance this is just a little curious, is it not? A gang of + burglars acting in the country might be expected to vary the scene of + their operations, and not to crack two cribs in the same district + within a few days. When you spoke last night of taking precautions I + remember that it passed through my mind that this was probably the + last parish in England to which the thief or thieves would be likely + to turn their attention--which shows that I have still much to + learn." + + "I fancy it's some local practitioner," said the Colonel. "In that + case, of course, Acton's and Cunningham's are just the places he + would go for, since they are far the largest about here." + + "And richest?" + + "Well, they ought to be, but they've had a lawsuit for some years + which has sucked the blood out of both of them, I fancy. Old Acton + has some claim on half Cunningham's estate, and the lawyers have been + at it with both hands." + + "If it's a local villain there should not be much difficulty in + running him down," said Holmes with a yawn. "All right, Watson, I + don't intend to meddle." + + "Inspector Forrester, sir," said the butler, throwing open the door. + + The official, a smart, keen-faced young fellow, stepped into the + room. "Good-morning, Colonel," said he; "I hope I don't intrude, but + we hear that Mr. Holmes of Baker Street is here." + + The Colonel waved his hand towards my friend, and the Inspector + bowed. + + "We thought that perhaps you would care to step across, Mr. Holmes." + + "The fates are against you, Watson," said he, laughing. "We were + chatting about the matter when you came in, Inspector. Perhaps you + can let us have a few details." As he leaned back in his chair in the + familiar attitude I knew that the case was hopeless. + + "We had no clue in the Acton affair. But here we have plenty to go + on, and there's no doubt it is the same party in each case. The man + was seen." + + "Ah!" + + "Yes, sir. But he was off like a deer after the shot that killed poor + William Kirwan was fired. Mr. Cunningham saw him from the bedroom + window, and Mr. Alec Cunningham saw him from the back passage. It was + quarter to twelve when the alarm broke out. Mr. Cunningham had just + got into bed, and Mr. Alec was smoking a pipe in his dressing-gown. + They both heard William the coachman calling for help, and Mr. Alec + ran down to see what was the matter. The back door was open, and as + he came to the foot of the stairs he saw two men wrestling together + outside. One of them fired a shot, the other dropped, and the + murderer rushed across the garden and over the hedge. Mr. Cunningham, + looking out of his bedroom, saw the fellow as he gained the road, but + lost sight of him at once. Mr. Alec stopped to see if he could help + the dying man, and so the villain got clean away. Beyond the fact + that he was a middle-sized man and dressed in some dark stuff, we + have no personal clue; but we are making energetic inquiries, and if + he is a stranger we shall soon find him out." + + "What was this William doing there? Did he say anything before he + died?" + + "Not a word. He lives at the lodge with his mother, and as he was a + very faithful fellow we imagine that he walked up to the house with + the intention of seeing that all was right there. Of course this + Acton business has put every one on their guard. The robber must have + just burst open the door--the lock has been forced--when William came + upon him." + + "Did William say anything to his mother before going out?" + + "She is very old and deaf, and we can get no information from her. + The shock has made her half-witted, but I understand that she was + never very bright. There is one very important circumstance, however. + Look at this!" + + He took a small piece of torn paper from a note-book and spread it + out upon his knee. + + "This was found between the finger and thumb of the dead man. It + appears to be a fragment torn from a larger sheet. You will observe + that the hour mentioned upon it is the very time at which the poor + fellow met his fate. You see that his murderer might have torn the + rest of the sheet from him or he might have taken this fragment from + the murderer. It reads almost as though it were an appointment." + + Holmes took up the scrap of paper, a facsimile of which is here + reproduced. + + [ Picture: Scrap showing the words: At quarter to twelve, learn what, + may be ] + + "Presuming that it is an appointment," continued the Inspector, "it + is of course a conceivable theory that this William Kirwan--though he + had the reputation of being an honest man, may have been in league + with the thief. He may have met him there, may even have helped him + to break in the door, and then they may have fallen out between + themselves." + + "This writing is of extraordinary interest," said Holmes, who had + been examining it with intense concentration. "These are much deeper + waters than I had thought." He sank his head upon his hands, while + the Inspector smiled at the effect which his case had had upon the + famous London specialist. + + "Your last remark," said Holmes, presently, "as to the possibility of + there being an understanding between the burglar and the servant, and + this being a note of appointment from one to the other, is an + ingenious and not entirely impossible supposition. But this writing + opens up--" He sank his head into his hands again and remained for + some minutes in the deepest thought. When he raised his face again, I + was surprised to see that his cheek was tinged with color, and his + eyes as bright as before his illness. He sprang to his feet with all + his old energy. + + "I'll tell you what," said he, "I should like to have a quiet little + glance into the details of this case. There is something in it which + fascinates me extremely. If you will permit me, Colonel, I will leave + my friend Watson and you, and I will step round with the Inspector to + test the truth of one or two little fancies of mine. I will be with + you again in half an hour." + + An hour and half had elapsed before the Inspector returned alone. + + "Mr. Holmes is walking up and down in the field outside," said he. + "He wants us all four to go up to the house together." + + "To Mr. Cunningham's?" + + "Yes, sir." + + "What for?" + + The Inspector shrugged his shoulders. "I don't quite know, sir. + Between ourselves, I think Mr. Holmes had not quite got over his + illness yet. He's been behaving very queerly, and he is very much + excited." + + "I don't think you need alarm yourself," said I. "I have usually + found that there was method in his madness." + + "Some folks might say there was madness in his method," muttered the + Inspector. "But he's all on fire to start, Colonel, so we had best go + out if you are ready." + + We found Holmes pacing up and down in the field, his chin sunk upon + his breast, and his hands thrust into his trousers pockets. + + "The matter grows in interest," said he. "Watson, your country-trip + has been a distinct success. I have had a charming morning." + + "You have been up to the scene of the crime, I understand," said the + Colonel. + + "Yes; the Inspector and I have made quite a little reconnaissance + together." + + "Any success?" + + "Well, we have seen some very interesting things. I'll tell you what + we did as we walk. First of all, we saw the body of this unfortunate + man. He certainly died from a revolver wound as reported." + + "Had you doubted it, then?" + + "Oh, it is as well to test everything. Our inspection was not wasted. + We then had an interview with Mr. Cunningham and his son, who were + able to point out the exact spot where the murderer had broken + through the garden-hedge in his flight. That was of great interest." + + "Naturally." + + "Then we had a look at this poor fellow's mother. We could get no + information from her, however, as she is very old and feeble." + + "And what is the result of your investigations?" + + "The conviction that the crime is a very peculiar one. Perhaps our + visit now may do something to make it less obscure. I think that we + are both agreed, Inspector, that the fragment of paper in the dead + man's hand, bearing, as it does, the very hour of his death written + upon it, is of extreme importance." + + "It should give a clue, Mr. Holmes." + + "It does give a clue. Whoever wrote that note was the man who brought + William Kirwan out of his bed at that hour. But where is the rest of + that sheet of paper?" + + "I examined the ground carefully in the hope of finding it," said the + Inspector. + + "It was torn out of the dead man's hand. Why was some one so anxious + to get possession of it? Because it incriminated him. And what would + he do with it? Thrust it into his pocket, most likely, never noticing + that a corner of it had been left in the grip of the corpse. If we + could get the rest of that sheet it is obvious that we should have + gone a long way towards solving the mystery." + + "Yes, but how can we get at the criminal's pocket before we catch the + criminal?" + + "Well, well, it was worth thinking over. Then there is another + obvious point. The note was sent to William. The man who wrote it + could not have taken it; otherwise, of course, he might have + delivered his own message by word of mouth. Who brought the note, + then? Or did it come through the post?" + + "I have made inquiries," said the Inspector. "William received a + letter by the afternoon post yesterday. The envelope was destroyed by + him." + + "Excellent!" cried Holmes, clapping the Inspector on the back. + "You've seen the postman. It is a pleasure to work with you. Well, + here is the lodge, and if you will come up, Colonel, I will show you + the scene of the crime." + + We passed the pretty cottage where the murdered man had lived, and + walked up an oak-lined avenue to the fine old Queen Anne house, which + bears the date of Malplaquet upon the lintel of the door. Holmes and + the Inspector led us round it until we came to the side gate, which + is separated by a stretch of garden from the hedge which lines the + road. A constable was standing at the kitchen door. + + "Throw the door open, officer," said Holmes. "Now, it was on those + stairs that young Mr. Cunningham stood and saw the two men struggling + just where we are. Old Mr. Cunningham was at that window--the second + on the left--and he saw the fellow get away just to the left of that + bush. So did the son. They are both sure of it on account of the + bush. Then Mr. Alec ran out and knelt beside the wounded man. The + ground is very hard, you see, and there are no marks to guide us." As + he spoke two men came down the garden path, from round the angle of + the house. The one was an elderly man, with a strong, deep-lined, + heavy-eyed face; the other a dashing young fellow, whose bright, + smiling expression and showy dress were in strange contrast with the + business which had brought us there. + + "Still at it, then?" said he to Holmes. "I thought you Londoners were + never at fault. You don't seem to be so very quick, after all." + + "Ah, you must give us a little time," said Holmes good-humoredly. + + "You'll want it," said young Alec Cunningham. "Why, I don't see that + we have any clue at all." + + "There's only one," answered the Inspector. "We thought that if we + could only find--Good heavens, Mr. Holmes! What is the matter?" + + My poor friend's face had suddenly assumed the most dreadful + expression. His eyes rolled upwards, his features writhed in agony, + and with a suppressed groan he dropped on his face upon the ground. + Horrified at the suddenness and severity of the attack, we carried + him into the kitchen, where he lay back in a large chair, and + breathed heavily for some minutes. Finally, with a shamefaced apology + for his weakness, he rose once more. + + "Watson would tell you that I have only just recovered from a severe + illness," he explained. "I am liable to these sudden nervous + attacks." + + "Shall I send you home in my trap?" asked old Cunningham. + + "Well, since I am here, there is one point on which I should like to + feel sure. We can very easily verify it." + + "What was it?" + + "Well, it seems to me that it is just possible that the arrival of + this poor fellow William was not before, but after, the entrance of + the burglary into the house. You appear to take it for granted that, + although the door was forced, the robber never got in." + + "I fancy that is quite obvious," said Mr. Cunningham, gravely. "Why, + my son Alec had not yet gone to bed, and he would certainly have + heard any one moving about." + + "Where was he sitting?" + + "I was smoking in my dressing-room." + + "Which window is that?" + + "The last on the left next my father's." + + "Both of your lamps were lit, of course?" + + "Undoubtedly." + + "There are some very singular points here," said Holmes, smiling. "Is + it not extraordinary that a burglary--and a burglar who had had some + previous experience--should deliberately break into a house at a time + when he could see from the lights that two of the family were still + afoot?" + + "He must have been a cool hand." + + "Well, of course, if the case were not an odd one we should not have + been driven to ask you for an explanation," said young Mr. Alec. "But + as to your ideas that the man had robbed the house before William + tackled him, I think it a most absurd notion. Wouldn't we have found + the place disarranged, and missed the things which he had taken?" + + "It depends on what the things were," said Holmes. "You must remember + that we are dealing with a burglar who is a very peculiar fellow, and + who appears to work on lines of his own. Look, for example, at the + queer lot of things which he took from Acton's--what was it?--a ball + of string, a letter-weight, and I don't know what other odds and + ends." + + "Well, we are quite in your hands, Mr. Holmes," said old Cunningham. + "Anything which you or the Inspector may suggest will most certainly + be done." + + "In the first place," said Holmes, "I should like you to offer a + reward--coming from yourself, for the officials may take a little + time before they would agree upon the sum, and these things cannot be + done too promptly. I have jotted down the form here, if you would not + mind signing it. Fifty pound was quite enough, I thought." + + "I would willingly give five hundred," said the J.P., taking the slip + of paper and the pencil which Holmes handed to him. "This is not + quite correct, however," he added, glancing over the document. + + "I wrote it rather hurriedly." + + "You see you begin, 'Whereas, at about a quarter to one on Tuesday + morning an attempt was made,' and so on. It was at a quarter to + twelve, as a matter of fact." + + I was pained at the mistake, for I knew how keenly Holmes would feel + any slip of the kind. It was his specialty to be accurate as to fact, + but his recent illness had shaken him, and this one little incident + was enough to show me that he was still far from being himself. He + was obviously embarrassed for an instant, while the Inspector raised + his eyebrows, and Alec Cunningham burst into a laugh. The old + gentleman corrected the mistake, however, and handed the paper back + to Holmes. + + "Get it printed as soon as possible," he said; "I think your idea is + an excellent one." + + Holmes put the slip of paper carefully away into his pocket-book. + + "And now," said he, "it really would be a good thing that we should + all go over the house together and make certain that this rather + erratic burglar did not, after all, carry anything away with him." + + Before entering, Holmes made an examination of the door which had + been forced. It was evident that a chisel or strong knife had been + thrust in, and the lock forced back with it. We could see the marks + in the wood where it had been pushed in. + + "You don't use bars, then?" he asked. + + "We have never found it necessary." + + "You don't keep a dog?" + + "Yes, but he is chained on the other side of the house." + + "When do the servants go to bed?" + + "About ten." + + "I understand that William was usually in bed also at that hour." + + "Yes." + + "It is singular that on this particular night he should have been up. + Now, I should be very glad if you would have the kindness to show us + over the house, Mr. Cunningham." + + A stone-flagged passage, with the kitchens branching away from it, + led by a wooden staircase directly to the first floor of the house. + It came out upon the landing opposite to a second more ornamental + stair which came up from the front hall. Out of this landing opened + the drawing-room and several bedrooms, including those of Mr. + Cunningham and his son. Holmes walked slowly, taking keen note of the + architecture of the house. I could tell from his expression that he + was on a hot scent, and yet I could not in the least imagine in what + direction his inferences were leading him. + + "My good sir," said Mr. Cunningham with some impatience, "this is + surely very unnecessary. That is my room at the end of the stairs, + and my son's is the one beyond it. I leave it to your judgment + whether it was possible for the thief to have come up here without + disturbing us." + + "You must try round and get on a fresh scent, I fancy," said the son + with a rather malicious smile. + + "Still, I must ask you to humor me a little further. I should like, + for example, to see how far the windows of the bedrooms command the + front. This, I understand is your son's room"--he pushed open the + door--"and that, I presume, is the dressing-room in which he sat + smoking when the alarm was given. Where does the window of that look + out to?" He stepped across the bedroom, pushed open the door, and + glanced round the other chamber. + + "I hope that you are satisfied now?" said Mr. Cunningham, tartly. + + "Thank you, I think I have seen all that I wished." + + "Then if it is really necessary we can go into my room." + + "If it is not too much trouble." + + The J.P. shrugged his shoulders, and led the way into his own + chamber, which was a plainly furnished and commonplace room. As we + moved across it in the direction of the window, Holmes fell back + until he and I were the last of the group. Near the foot of the bed + stood a dish of oranges and a carafe of water. As we passed it + Holmes, to my unutterable astonishment, leaned over in front of me + and deliberately knocked the whole thing over. The glass smashed into + a thousand pieces and the fruit rolled about into every corner of the + room. + + "You've done it now, Watson," said he, coolly. "A pretty mess you've + made of the carpet." + + I stooped in some confusion and began to pick up the fruit, + understanding for some reason my companion desired me to take the + blame upon myself. The others did the same, and set the table on its + legs again. + + "Hullo!" cried the Inspector, "where's he got to?" + + Holmes had disappeared. + + "Wait here an instant," said young Alec Cunningham. "The fellow is + off his head, in my opinion. Come with me, father, and see where he + has got to!" + + They rushed out of the room, leaving the Inspector, the Colonel, and + me staring at each other. + + "'Pon my word, I am inclined to agree with Master Alec," said the + official. "It may be the effect of this illness, but it seems to me + that--" + + His words were cut short by a sudden scream of "Help! Help! Murder!" + With a thrill I recognised the voice as that of my friend. I rushed + madly from the room on to the landing. The cries, which had sunk down + into a hoarse, inarticulate shouting, came from the room which we had + first visited. I dashed in, and on into the dressing-room beyond. The + two Cunninghams were bending over the prostrate figure of Sherlock + Holmes, the younger clutching his throat with both hands, while the + elder seemed to be twisting one of his wrists. In an instant the + three of us had torn them away from him, and Holmes staggered to his + feet, very pale and evidently greatly exhausted. + + "Arrest these men, Inspector," he gasped. + + "On what charge?" + + "That of murdering their coachman, William Kirwan." + + The Inspector stared about him in bewilderment. "Oh, come now, Mr. + Holmes," said he at last, "I'm sure you don't really mean to--" + + "Tut, man, look at their faces!" cried Holmes, curtly. + + Never, certainly, have I seen a plainer confession of guilt upon + human countenances. The older man seemed numbed and dazed with a + heavy, sullen expression upon his strongly-marked face. The son, on + the other hand, had dropped all that jaunty, dashing style which had + characterized him, and the ferocity of a dangerous wild beast gleamed + in his dark eyes and distorted his handsome features. The Inspector + said nothing, but, stepping to the door, he blew his whistle. Two of + his constables came at the call. + + "I have no alternative, Mr. Cunningham," said he. "I trust that this + may all prove to be an absurd mistake, but you can see that--Ah, + would you? Drop it!" He struck out with his hand, and a revolver + which the younger man was in the act of cocking clattered down upon + the floor. + + "Keep that," said Holmes, quietly putting his foot upon it; "you will + find it useful at the trial. But this is what we really wanted." He + held up a little crumpled piece of paper. + + "The remainder of the sheet!" cried the Inspector. + + "Precisely." + + "And where was it?" + + "Where I was sure it must be. I'll make the whole matter clear to you + presently. I think, Colonel, that you and Watson might return now, + and I will be with you again in an hour at the furthest. The + Inspector and I must have a word with the prisoners, but you will + certainly see me back at luncheon time." + + Sherlock Holmes was as good as his word, for about one o'clock he + rejoined us in the Colonel's smoking-room. He was accompanied by a + little elderly gentleman, who was introduced to me as the Mr. Acton + whose house had been the scene of the original burglary. + + "I wished Mr. Acton to be present while I demonstrated this small + matter to you," said Holmes, "for it is natural that he should take a + keen interest in the details. I am afraid, my dear Colonel, that you + must regret the hour that you took in such a stormy petrel as I am." + + "On the contrary," answered the Colonel, warmly, "I consider it the + greatest privilege to have been permitted to study your methods of + working. I confess that they quite surpass my expectations, and that + I am utterly unable to account for your result. I have not yet seen + the vestige of a clue." + + "I am afraid that my explanation may disillusion you but it has + always been my habit to hide none of my methods, either from my + friend Watson or from any one who might take an intelligent interest + in them. But, first, as I am rather shaken by the knocking about + which I had in the dressing-room, I think that I shall help myself to + a dash of your brandy, Colonel. My strength had been rather tried of + late." + + "I trust that you had no more of those nervous attacks." + + Sherlock Holmes laughed heartily. "We will come to that in its turn," + said he. "I will lay an account of the case before you in its due + order, showing you the various points which guided me in my decision. + Pray interrupt me if there is any inference which is not perfectly + clear to you. + + "It is of the highest importance in the art of detection to be able + to recognize, out of a number of facts, which are incidental and + which vital. Otherwise your energy and attention must be dissipated + instead of being concentrated. Now, in this case there was not the + slightest doubt in my mind from the first that the key of the whole + matter must be looked for in the scrap of paper in the dead man's + hand. + + "Before going into this, I would draw your attention to the fact + that, if Alec Cunningham's narrative was correct, and if the + assailant, after shooting William Kirwan, had instantly fled, then it + obviously could not be he who tore the paper from the dead man's + hand. But if it was not he, it must have been Alec Cunningham + himself, for by the time that the old man had descended several + servants were upon the scene. The point is a simple one, but the + Inspector had overlooked it because he had started with the + supposition that these county magnates had had nothing to do with the + matter. Now, I make a point of never having any prejudices, and of + following docilely wherever fact may lead me, and so, in the very + first stage of the investigation, I found myself looking a little + askance at the part which had been played by Mr. Alec Cunningham. + + "And now I made a very careful examination of the corner of paper + which the Inspector had submitted to us. It was at once clear to me + that it formed part of a very remarkable document. Here it is. Do you + not now observed something very suggestive about it?" + + "It has a very irregular look," said the Colonel. + + "My dear sir," cried Holmes, "there cannot be the least doubt in the + world that it has been written by two persons doing alternate words. + When I draw your attention to the strong t's of 'at' and 'to', and + ask you to compare them with the weak ones of 'quarter' and 'twelve,' + you will instantly recognize the fact. A very brief analysis of these + four words would enable you to say with the utmost confidence that + the 'learn' and the 'maybe' are written in the stronger hand, and the + 'what' in the weaker." + + "By Jove, it's as clear as day!" cried the Colonel. "Why on earth + should two men write a letter in such a fashion?" + + "Obviously the business was a bad one, and one of the men who + distrusted the other was determined that, whatever was done, each + should have an equal hand in it. Now, of the two men, it is clear + that the one who wrote the 'at' and 'to' was the ringleader." + + "How do you get at that?" + + "We might deduce it from the mere character of the one hand as + compared with the other. But we have more assured reasons than that + for supposing it. If you examine this scrap with attention you will + come to the conclusion that the man with the stronger hand wrote all + his words first, leaving blanks for the other to fill up. These + blanks were not always sufficient, and you can see that the second + man had a squeeze to fit his 'quarter' in between the 'at' and the + 'to,' showing that the latter were already written. The man who wrote + all his words first is undoubtedly the man who planned the affair." + + "Excellent!" cried Mr. Acton. + + "But very superficial," said Holmes. "We come now, however, to a + point which is of importance. You may not be aware that the deduction + of a man's age from his writing is one which has been brought to + considerable accuracy by experts. In normal cases one can place a man + in his true decade with tolerable confidence. I say normal cases, + because ill-health and physical weakness reproduce the signs of old + age, even when the invalid is a youth. In this case, looking at the + bold, strong hand of the one, and the rather broken-backed appearance + of the other, which still retains its legibility although the t's + have begun to lose their crossing, we can say that the one was a + young man and the other was advanced in years without being + positively decrepit." + + "Excellent!" cried Mr. Acton again. + + "There is a further point, however, which is subtler and of greater + interest. There is something in common between these hands. They + belong to men who are blood-relatives. It may be most obvious to you + in the Greek e's, but to me there are many small points which + indicate the same thing. I have no doubt at all that a family + mannerism can be traced in these two specimens of writing. I am only, + of course, giving you the leading results now of my examination of + the paper. There were twenty-three other deductions which would be of + more interest to experts than to you. They all tended to deepen the + impression upon my mind that the Cunninghams, father and son, had + written this letter. + + "Having got so far, my next step was, of course, to examine into the + details of the crime, and to see how far they would help us. I went + up to the house with the Inspector, and saw all that was to be seen. + The wound upon the dead man was, as I was able to determine with + absolute confidence, fired from a revolver at the distance of + something over four yards. There was no powder-blackening on the + clothes. Evidently, therefore, Alec Cunningham had lied when he said + that the two men were struggling when the shot was fired. Again, both + father and son agreed as to the place where the man escaped into the + road. At that point, however, as it happens, there is a broadish + ditch, moist at the bottom. As there were no indications of bootmarks + about this ditch, I was absolutely sure not only that the Cunninghams + had again lied, but that there had never been any unknown man upon + the scene at all. + + "And now I have to consider the motive of this singular crime. To get + at this, I endeavored first of all to solve the reason of the + original burglary at Mr. Acton's. I understood, from something which + the Colonel told us, that a lawsuit had been going on between you, + Mr. Acton, and the Cunninghams. Of course, it instantly occurred to + me that they had broken into your library with the intention of + getting at some document which might be of importance in the case." + + "Precisely so," said Mr. Acton. "There can be no possible doubt as to + their intentions. I have the clearest claim upon half of their + present estate, and if they could have found a single paper--which, + fortunately, was in the strong-box of my solicitors--they would + undoubtedly have crippled our case." + + "There you are," said Holmes, smiling. "It was a dangerous, reckless + attempt, in which I seem to trace the influence of young Alec. Having + found nothing they tried to divert suspicion by making it appear to + be an ordinary burglary, to which end they carried off whatever they + could lay their hands upon. That is all clear enough, but there was + much that was still obscure. What I wanted above all was to get the + missing part of that note. I was certain that Alec had torn it out of + the dead man's hand, and almost certain that he must have thrust it + into the pocket of his dressing-gown. Where else could he have put + it? The only question was whether it was still there. It was worth an + effort to find out, and for that object we all went up to the house. + + "The Cunninghams joined us, as you doubtless remember, outside the + kitchen door. It was, of course, of the very first importance that + they should not be reminded of the existence of this paper, otherwise + they would naturally destroy it without delay. The Inspector was + about to tell them the importance which we attached to it when, by + the luckiest chance in the world, I tumbled down in a sort of fit and + so changed the conversation." + + "Good heavens!" cried the Colonel, laughing, "do you mean to say all + our sympathy was wasted and your fit an imposture?" + + "Speaking professionally, it was admirably done," cried I, looking in + amazement at this man who was forever confounding me with some new + phase of his astuteness. + + "It is an art which is often useful," said he. "When I recovered I + managed, by a device which had perhaps some little merit of + ingenuity, to get old Cunningham to write the word 'twelve,' so that + I might compare it with the 'twelve' upon the paper." + + "Oh, what an ass I have been!" I exclaimed. + + "I could see that you were commiserating with me over my weakness," + said Holmes, laughing. "I was sorry to cause you the sympathetic pain + which I know that you felt. We then went upstairs together, and + having entered the room and seen the dressing-gown hanging up behind + the door, I contrived, by upsetting a table, to engage their + attention for the moment, and slipped back to examine the pockets. I + had hardly got the paper, however--which was, as I had expected, in + one of them--when the two Cunninghams were on me, and would, I verily + believe, have murdered me then and there but for your prompt and + friendly aid. As it is, I feel that young man's grip on my throat + now, and the father has twisted my wrist round in the effort to get + the paper out of my hand. They saw that I must know all about it, you + see, and the sudden change from absolute security to complete despair + made them perfectly desperate. + + "I had a little talk with old Cunningham afterwards as to the motive + of the crime. He was tractable enough, though his son was a perfect + demon, ready to blow out his own or anybody else's brains if he could + have got to his revolver. When Cunningham saw that the case against + him was so strong he lost all heart and made a clean breast of + everything. It seems that William had secretly followed his two + masters on the night when they made their raid upon Mr. Acton's, and + having thus got them into his power, proceeded, under threats of + exposure, to levy black-mail upon them. Mr. Alec, however, was a + dangerous man to play games of that sort with. It was a stroke of + positive genius on his part to see in the burglary scare which was + convulsing the country side an opportunity of plausibly getting rid + of the man whom he feared. William was decoyed up and shot, and had + they only got the whole of the note and paid a little more attention + to detail in the accessories, it is very possible that suspicion + might never have been aroused." + + "And the note?" I asked. + + Sherlock Holmes placed the subjoined paper before us. + + [ Picture: Paper which reads: If you will only come around at quarter + to twelve to the east gate you will learn what will very much + surprise you and may be of the greatest service to you and also to + Annie Morrison. But say nothing to anyone upon the matter ] + + "It is very much the sort of thing that I expected," said he. "Of + course, we do not yet know what the relations may have been between + Alec Cunningham, William Kirwan, and Annie Morrison. The results + shows that the trap was skillfully baited. I am sure that you cannot + fail to be delighted with the traces of heredity shown in the p's and + in the tails of the g's. The absence of the i-dots in the old man's + writing is also most characteristic. Watson, I think our quiet rest + in the country has been a distinct success, and I shall certainly + return much invigorated to Baker Street to-morrow." + + + + + + + THE CROOKED MAN + + One summer night, a few months after my marriage, I was seated by my + own hearth smoking a last pipe and nodding over a novel, for my day's + work had been an exhausting one. My wife had already gone upstairs, + and the sound of the locking of the hall door some time before told + me that the servants had also retired. I had risen from my seat and + was knocking out the ashes of my pipe when I suddenly heard the clang + of the bell. + + I looked at the clock. It was a quarter to twelve. This could not + be a visitor at so late an hour. A patient, evidently, and possibly + an all-night sitting. With a wry face I went out into the hall and + opened the door. To my astonishment it was Sherlock Holmes who stood + upon my step. + + "Ah, Watson," said he, "I hoped that I might not be too late to catch + you." + + "My dear fellow, pray come in." + + "You look surprised, and no wonder! Relieved, too, I fancy! Hum! + You still smoke the Arcadia mixture of your bachelor days then! + There's no mistaking that fluffy ash upon your coat. It's easy to + tell that you have been accustomed to wear a uniform, Watson. You'll + never pass as a pure-bred civilian as long as you keep that habit of + carrying your handkerchief in your sleeve. Could you put me up + tonight?" + + "With pleasure." + + "You told me that you had bachelor quarters for one, and I see that + you have no gentleman visitor at present. Your hat-stand proclaims + as much." + + "I shall be delighted if you will stay." + + "Thank you. I'll fill the vacant peg then. Sorry to see that you've + had the British workman in the house. He's a token of evil. Not the + drains, I hope?" + + "No, the gas." + + "Ah! He has left two nail-marks from his boot upon your linoleum + just where the light strikes it. No, thank you, I had some supper at + Waterloo, but I'll smoke a pipe with you with pleasure." + + I handed him my pouch, and he seated himself opposite to me and + smoked for some time in silence. I was well aware that nothing but + business of importance would have brought him to me at such an hour, + so I waited patiently until he should come round to it. + + "I see that you are professionally rather busy just now," said he, + glancing very keenly across at me. + + "Yes, I've had a busy day," I answered. "It may seem very foolish in + your eyes," I added, "but really I don't know how you deduced it." + + Holmes chuckled to himself. + + "I have the advantage of knowing your habits, my dear Watson," said + he. "When your round is a short one you walk, and when it is a long + one you use a hansom. As I perceive that your boots, although used, + are by no means dirty, I cannot doubt that you are at present busy + enough to justify the hansom." + + "Excellent!" I cried. + + "Elementary," said he. "It is one of those instances where the + reasoner can produce an effect which seems remarkable to his + neighbor, because the latter has missed the one little point which is + the basis of the deduction. The same may be said, my dear fellow, + for the effect of some of these little sketches of yours, which is + entirely meretricious, depending as it does upon your retaining in + your own hands some factors in the problem which are never imparted + to the reader. Now, at present I am in the position of these same + readers, for I hold in this hand several threads of one of the + strangest cases which ever perplexed a man's brain, and yet I lack + the one or two which are needful to complete my theory. But I'll + have them, Watson, I'll have them!" His eyes kindled and a slight + flush sprang into his thin cheeks. For an instant the veil had lifted + upon his keen, intense nature, but for an instant only. When I + glanced again his face had resumed that red-Indian composure which + had made so many regard him as a machine rather than a man. + + "The problem presents features of interest," said he. "I may even + say exceptional features of interest. I have already looked into the + matter, and have come, as I think, within sight of my solution. If + you could accompany me in that last step you might be of considerable + service to me." + + "I should be delighted." + + "Could you go as far as Aldershot to-morrow?" + + "I have no doubt Jackson would take my practice." + + "Very good. I want to start by the 11.10 from Waterloo." + + "That would give me time." + + "Then, if you are not too sleepy, I will give you a sketch of what + has happened, and of what remains to be done." + + "I was sleepy before you came. I am quite wakeful now." + + "I will compress the story as far as may be done without omitting + anything vital to the case. It is conceivable that you may even have + read some account of the matter. It is the supposed murder of + Colonel Barclay, of the Royal Munsters, at Aldershot, which I am + investigating." + + "I have heard nothing of it." + + "It has not excited much attention yet, except locally. The facts + are only two days old. Briefly they are these: + + "The Royal Munsters is, as you know, one of the most famous Irish + regiments in the British army. It did wonders both in the Crimea and + the Mutiny, and has since that time distinguished itself upon every + possible occasion. It was commanded up to Monday night by James + Barclay, a gallant veteran, who started as a full private, was raised + to commissioned rank for his bravery at the time of the Mutiny, and + so lived to command the regiment in which he had once carried a + musket. + + "Colonel Barclay had married at the time when he was a sergeant, and + his wife, whose maiden name was Miss Nancy Devoy, was the daughter of + a former color-sergeant in the same corps. There was, therefore, as + can be imagined, some little social friction when the young couple + (for they were still young) found themselves in their new + surroundings. They appear, however, to have quickly adapted + themselves, and Mrs. Barclay has always, I understand, been as + popular with the ladies of the regiment as her husband was with his + brother officers. I may add that she was a woman of great beauty, + and that even now, when she has been married for upwards of thirty + years, she is still of a striking and queenly appearance. + + "Colonel Barclay's family life appears to have been a uniformly happy + one. Major Murphy, to whom I owe most of my facts, assures me that + he has never heard of any misunderstanding between the pair. On the + whole, he thinks that Barclay's devotion to his wife was greater than + his wife's to Barclay. He was acutely uneasy if he were absent from + her for a day. She, on the other hand, though devoted and faithful, + was less obtrusively affectionate. But they were regarded in the + regiment as the very model of a middle-aged couple. There was + absolutely nothing in their mutual relations to prepare people for + the tragedy which was to follow. + + "Colonel Barclay himself seems to have had some singular traits in + his character. He was a dashing, jovial old solder in his usual + mood, but there were occasions on which he seemed to show himself + capable of considerable violence and vindictiveness. This side of + his nature, however, appears never to have been turned towards his + wife. Another fact, which had struck Major Murphy and three out of + five of the other officers with whom I conversed, was the singular + sort of depression which came upon him at times. As the major + expressed it, the smile had often been struck from his mouth, as if + by some invisible hand, when he has been joining the gaieties and + chaff of the mess-table. For days on end, when the mood was on him, + he has been sunk in the deepest gloom. This and a certain tinge of + superstition were the only unusual traits in his character which his + brother officers had observed. The latter peculiarity took the form + of a dislike to being left alone, especially after dark. This + puerile feature in a nature which was conspicuously manly had often + given rise to comment and conjecture. + + "The first battalion of the Royal Munsters (which is the old 117th) + has been stationed at Aldershot for some years. The married officers + live out of barracks, and the Colonel has during all this time + occupied a villa called Lachine, about half a mile from the north + camp. The house stands in its own grounds, but the west side of it + is not more than thirty yards from the high-road. A coachman and two + maids form the staff of servants. These with their master and + mistress were the sole occupants of Lachine, for the Barclays had no + children, nor was it usual for them to have resident visitors. + + "Now for the events at Lachine between nine and ten on the evening of + last Monday. + + "Mrs. Barclay was, it appears, a member of the Roman Catholic Church, + and had interested herself very much in the establishment of the + Guild of St. George, which was formed in connection with the Watt + Street Chapel for the purpose of supplying the poor with cast-off + clothing. A meeting of the Guild had been held that evening at + eight, and Mrs. Barclay had hurried over her dinner in order to be + present at it. When leaving the house she was heard by the coachman + to make some commonplace remark to her husband, and to assure him + that she would be back before very long. She then called for Miss + Morrison, a young lady who lives in the next villa, and the two went + off together to their meeting. It lasted forty minutes, and at a + quarter-past nine Mrs. Barclay returned home, having left Miss + Morrison at her door as she passed. + + "There is a room which is used as a morning-room at Lachine. This + faces the road and opens by a large glass folding-door on to the + lawn. The lawn is thirty yards across, and is only divided from the + highway by a low wall with an iron rail above it. It was into this + room that Mrs. Barclay went upon her return. The blinds were not + down, for the room was seldom used in the evening, but Mrs. Barclay + herself lit the lamp and then rang the bell, asking Jane Stewart, the + house-maid, to bring her a cup of tea, which was quite contrary to + her usual habits. The Colonel had been sitting in the dining-room, + but hearing that his wife had returned he joined her in the + morning-room. The coachman saw him cross the hall and enter it. He + was never seen again alive. + + "The tea which had been ordered was brought up at the end of ten + minutes; but the maid, as she approached the door, was surprised to + hear the voices of her master and mistress in furious altercation. + She knocked without receiving any answer, and even turned the handle, + but only to find that the door was locked upon the inside. Naturally + enough she ran down to tell the cook, and the two women with the + coachman came up into the hall and listened to the dispute which was + still raging. They all agreed that only two voices were to be heard, + those of Barclay and of his wife. Barclay's remarks were subdued and + abrupt, so that none of them were audible to the listeners. The + lady's, on the other hand, were most bitter, and when she raised her + voice could be plainly heard. 'You coward!' she repeated over and + over again. 'What can be done now? What can be done now? Give me + back my life. I will never so much as breathe the same air with you + again! You coward! You Coward!' Those were scraps of her + conversation, ending in a sudden dreadful cry in the man's voice, + with a crash, and a piercing scream from the woman. Convinced that + some tragedy had occurred, the coachman rushed to the door and strove + to force it, while scream after scream issued from within. He was + unable, however, to make his way in, and the maids were too + distracted with fear to be of any assistance to him. A sudden + thought struck him, however, and he ran through the hall door and + round to the lawn upon which the long French windows open. One side + of the window was open, which I understand was quite usual in the + summer-time, and he passed without difficulty into the room. His + mistress had ceased to scream and was stretched insensible upon a + couch, while with his feet tilted over the side of an arm-chair, and + his head upon the ground near the corner of the fender, was lying the + unfortunate soldier stone dead in a pool of his own blood. + + "Naturally, the coachman's first thought, on finding that he could do + nothing for his master, was to open the door. But here an unexpected + and singular difficulty presented itself. The key was not in the + inner side of the door, nor could he find it anywhere in the room. + He went out again, therefore, through the window, and having obtained + the help of a policeman and of a medical man, he returned. The lady, + against whom naturally the strongest suspicion rested, was removed to + her room, still in a state of insensibility. The Colonel's body was + then placed upon the sofa, and a careful examination made of the + scene of the tragedy. + + "The injury from which the unfortunate veteran was suffering was + found to be a jagged cut some two inches long at the back part of his + head, which had evidently been caused by a violent blow from a blunt + weapon. Nor was it difficult to guess what that weapon may have + been. Upon the floor, close to the body, was lying a singular club + of hard carved wood with a bone handle. The Colonel possessed a + varied collection of weapons brought from the different countries in + which he had fought, and it is conjectured by the police that his + club was among his trophies. The servants deny having seen it + before, but among the numerous curiosities in the house it is + possible that it may have been overlooked. Nothing else of + importance was discovered in the room by the police, save the + inexplicable fact that neither upon Mrs. Barclay's person nor upon + that of the victim nor in any part of the room was the missing key to + be found. The door had eventually to be opened by a locksmith from + Aldershot. + + "That was the state of things, Watson, when upon the Tuesday morning + I, at the request of Major Murphy, went down to Aldershot to + supplement the efforts of the police. I think that you will + acknowledge that the problem was already one of interest, but my + observations soon made me realize that it was in truth much more + extraordinary than would at first sight appear. + + "Before examining the room I cross-questioned the servants, but only + succeeded in eliciting the facts which I have already stated. One + other detail of interest was remembered by Jane Stewart, the + housemaid. You will remember that on hearing the sound of the + quarrel she descended and returned with the other servants. On that + first occasion, when she was alone, she says that the voices of her + master and mistress were sunk so low that she could hear hardly + anything, and judged by their tones rather than their words that they + had fallen out. On my pressing her, however, she remembered that she + heard the word David uttered twice by the lady. The point is of the + utmost importance as guiding us towards the reason of the sudden + quarrel. The Colonel's name, you remember, was James. + + "There was one thing in the case which had made the deepest + impression both upon the servants and the police. This was the + contortion of the Colonel's face. It had set, according to their + account, into the most dreadful expression of fear and horror which a + human countenance is capable of assuming. More than one person + fainted at the mere sight of him, so terrible was the effect. It was + quite certain that he had foreseen his fate, and that it had caused + him the utmost horror. This, of course, fitted in well enough with + the police theory, if the Colonel could have seen his wife making a + murderous attack upon him. Nor was the fact of the wound being on + the back of his head a fatal objection to this, as he might have + turned to avoid the blow. No information could be got from the lady + herself, who was temporarily insane from an acute attack of + brain-fever. + + "From the police I learned that Miss Morrison, who you remember went + out that evening with Mrs. Barclay, denied having any knowledge of + what it was which had caused the ill-humor in which her companion had + returned. + + "Having gathered these facts, Watson, I smoked several pipes over + them, trying to separate those which were crucial from others which + were merely incidental. There could be no question that the most + distinctive and suggestive point in the case was the singular + disappearance of the door-key. A most careful search had failed to + discover it in the room. Therefore it must have been taken from it. + But neither the Colonel nor the Colonel's wife could have taken it. + That was perfectly clear. Therefore a third person must have entered + the room. And that third person could only have come in through the + window. It seemed to me that a careful examination of the room and + the lawn might possibly reveal some traces of this mysterious + individual. You know my methods, Watson. There was not one of them + which I did not apply to the inquiry. And it ended by my discovering + traces, but very different ones from those which I had expected. + There had been a man in the room, and he had crossed the lawn coming + from the road. I was able to obtain five very clear impressions of + his foot-marks: one in the roadway itself, at the point where he had + climbed the low wall, two on the lawn, and two very faint ones upon + the stained boards near the window where he had entered. He had + apparently rushed across the lawn, for his toe-marks were much deeper + than his heels. But it was not the man who surprised me. It was his + companion." + + "His companion!" + + Holmes pulled a large sheet of tissue-paper out of his pocket and + carefully unfolded it upon his knee. + + "What do you make of that?" he asked. + + The paper was covered with the tracings of the foot-marks of some + small animal. It had five well-marked foot-pads, an indication of + long nails, and the whole print might be nearly as large as a + dessert-spoon. + + "It's a dog," said I. + + "Did you ever hear of a dog running up a curtain? I found distinct + traces that this creature had done so." + + "A monkey, then?" + + "But it is not the print of a monkey." + + "What can it be, then?" + + "Neither dog nor cat nor monkey nor any creature that we are familiar + with. I have tried to reconstruct it from the measurements. Here + are four prints where the beast has been standing motionless. You + see that it is no less than fifteen inches from fore-foot to hind. + Add to that the length of neck and head, and you get a creature not + much less than two feet long--probably more if there is any tail. + But now observe this other measurement. The animal has been moving, + and we have the length of its stride. In each case it is only about + three inches. You have an indication, you see, of a long body with + very short legs attached to it. It has not been considerate enough + to leave any of its hair behind it. But its general shape must be + what I have indicated, and it can run up a curtain, and it is + carnivorous." + + "How do you deduce that?" + + "Because it ran up the curtain. A canary's cage was hanging in the + window, and its aim seems to have been to get at the bird." + + "Then what was the beast?" + + "Ah, if I could give it a name it might go a long way towards solving + the case. On the whole, it was probably some creature of the weasel + and stoat tribe--and yet it is larger than any of these that I have + seen." + + "But what had it to do with the crime?" + + "That, also, is still obscure. But we have learned a good deal, you + perceive. We know that a man stood in the road looking at the + quarrel between the Barclays--the blinds were up and the room + lighted. We know, also, that he ran across the lawn, entered the + room, accompanied by a strange animal, and that he either struck the + Colonel or, as is equally possible, that the Colonel fell down from + sheer fright at the sight of him, and cut his head on the corner of + the fender. Finally, we have the curious fact that the intruder + carried away the key with him when he left." + + "Your discoveries seem to have left the business more obscure that it + was before," said I. + + "Quite so. They undoubtedly showed that the affair was much deeper + than was at first conjectured. I thought the matter over, and I came + to the conclusion that I must approach the case from another aspect. + But really, Watson, I am keeping you up, and I might just as well + tell you all this on our way to Aldershot to-morrow." + + "Thank you, you have gone rather too far to stop." + + "It is quite certain that when Mrs. Barclay left the house at + half-past seven she was on good terms with her husband. She was + never, as I think I have said, ostentatiously affectionate, but she + was heard by the coachman chatting with the Colonel in a friendly + fashion. Now, it was equally certain that, immediately on her + return, she had gone to the room in which she was least likely to see + her husband, had flown to tea as an agitated woman will, and finally, + on his coming in to her, had broken into violent recriminations. + Therefore something had occurred between seven-thirty and nine + o'clock which had completely altered her feelings towards him. But + Miss Morrison had been with her during the whole of that hour and a + half. It was absolutely certain, therefore, in spite of her denial, + that she must know something of the matter. + + "My first conjecture was, that possibly there had been some passages + between this young lady and the old soldier, which the former had now + confessed to the wife. That would account for the angry return, and + also for the girl's denial that anything had occurred. Nor would it + be entirely incompatible with most of the words overhead. But there + was the reference to David, and there was the known affection of the + Colonel for his wife, to weigh against it, to say nothing of the + tragic intrusion of this other man, which might, of course, be + entirely disconnected with what had gone before. It was not easy to + pick one's steps, but, on the whole, I was inclined to dismiss the + idea that there had been anything between the Colonel and Miss + Morrison, but more than ever convinced that the young lady held the + clue as to what it was which had turned Mrs. Barclay to hatred of her + husband. I took the obvious course, therefore, of calling upon Miss + M., of explaining to her that I was perfectly certain that she held + the facts in her possession, and of assuring her that her friend, + Mrs. Barclay, might find herself in the dock upon a capital charge + unless the matter were cleared up. + + "Miss Morrison is a little ethereal slip of a girl, with timid eyes + and blond hair, but I found her by no means wanting in shrewdness and + common-sense. She sat thinking for some time after I had spoken, and + then, turning to me with a brisk air of resolution, she broke into a + remarkable statement which I will condense for your benefit. + + "'I promised my friend that I would say nothing of the matter, and a + promise is a promise,' said she; 'but if I can really help her when + so serious a charge is laid against her, and when her own mouth, poor + darling, is closed by illness, then I think I am absolved from my + promise. I will tell you exactly what happened upon Monday evening. + + "'We were returning from the Watt Street Mission about a quarter to + nine o'clock. On our way we had to pass through Hudson Street, which + is a very quiet thoroughfare. There is only one lamp in it, upon the + left-hand side, and as we approached this lamp I saw a man coming + towards us with is back very bent, and something like a box slung + over one of his shoulders. He appeared to be deformed, for he + carried his head low and walked with his knees bent. We were passing + him when he raised his face to look at us in the circle of light + thrown by the lamp, and as he did so he stopped and screamed out in a + dreadful voice, "My God, it's Nancy!" Mrs. Barclay turned as white + as death, and would have fallen down had the dreadful-looking + creature not caught hold of her. I was going to call for the police, + but she, to my surprise, spoke quite civilly to the fellow. + + "'"I thought you had been dead this thirty years, Henry," said she, + in a shaking voice. + + "'"So I have," said he, and it was awful to hear the tones that he + said it in. He had a very dark, fearsome face, and a gleam in his + eyes that comes back to me in my dreams. His hair and whiskers were + shot with gray, and his face was all crinkled and puckered like a + withered apple. + + "'"Just walk on a little way, dear," said Mrs. Barclay; "I want to + have a word with this man. There is nothing to be afraid of." She + tried to speak boldly, but she was still deadly pale and could hardly + get her words out for the trembling of her lips. + + "'I did as she asked me, and they talked together for a few minutes. + Then she came down the street with her eyes blazing, and I saw the + crippled wretch standing by the lamp-post and shaking his clenched + fists in the air as if he were mad with rage. She never said a word + until we were at the door here, when she took me by the hand and + begged me to tell no one what had happened. + + "'"It's an old acquaintance of mine who has come down in the world," + said she. When I promised her I would say nothing she kissed me, and + I have never seen her since. I have told you now the whole truth, + and if I withheld it from the police it is because I did not realize + then the danger in which my dear friend stood. I know that it can + only be to her advantage that everything should be known.' + + "There was her statement, Watson, and to me, as you can imagine, it + was like a light on a dark night. Everything which had been + disconnected before began at once to assume its true place, and I had + a shadowy presentiment of the whole sequence of events. My next step + obviously was to find the man who had produced such a remarkable + impression upon Mrs. Barclay. If he were still in Aldershot it + should not be a very difficult matter. There are not such a very + great number of civilians, and a deformed man was sure to have + attracted attention. I spent a day in the search, and by + evening--this very evening, Watson--I had run him down. The man's + name is Henry Wood, and he lives in lodgings in this same street in + which the ladies met him. He has only been five days in the place. + In the character of a registration-agent I had a most interesting + gossip with his landlady. The man is by trade a conjurer and + performer, going round the canteens after nightfall, and giving a + little entertainment at each. He carries some creature about with + him in that box; about which the landlady seemed to be in + considerable trepidation, for she had never seen an animal like it. + He uses it in some of his tricks according to her account. So much + the woman was able to tell me, and also that it was a wonder the man + lived, seeing how twisted he was, and that he spoke in a strange + tongue sometimes, and that for the last two nights she had heard him + groaning and weeping in his bedroom. He was all right, as far as + money went, but in his deposit he had given her what looked like a + bad florin. She showed it to me, Watson, and it was an Indian rupee. + + "So now, my dear fellow, you see exactly how we stand and why it is I + want you. It is perfectly plain that after the ladies parted from + this man he followed them at a distance, that he saw the quarrel + between husband and wife through the window, that he rushed in, and + that the creature which he carried in his box got loose. That is all + very certain. But he is the only person in this world who can tell + us exactly what happened in that room." + + "And you intend to ask him?" + + "Most certainly--but in the presence of a witness." + + "And I am the witness?" + + "If you will be so good. If he can clear the matter up, well and + good. If he refuses, we have no alternative but to apply for a + warrant." + + "But how do you know he'll be there when we return?" + + "You may be sure that I took some precautions. I have one of my + Baker Street boys mounting guard over him who would stick to him like + a burr, go where he might. We shall find him in Hudson Street + to-morrow, Watson, and meanwhile I should be the criminal myself if I + kept you out of bed any longer." + + It was midday when we found ourselves at the scene of the tragedy, + and, under my companion's guidance, we made our way at once to Hudson + Street. In spite of his capacity for concealing his emotions, I + could easily see that Holmes was in a state of suppressed excitement, + while I was myself tingling with that half-sporting, + half-intellectual pleasure which I invariably experienced when I + associated myself with him in his investigations. + + "This is the street," said he, as we turned into a short thoroughfare + lined with plain two-storied brick houses. "Ah, here is Simpson to + report." + + "He's in all right, Mr. Holmes," cried a small street Arab, running + up to us. + + "Good, Simpson!" said Holmes, patting him on the head. "Come along, + Watson. This is the house." He sent in his card with a message that + he had come on important business, and a moment later we were face to + face with the man whom we had come to see. In spite of the warm + weather he was crouching over a fire, and the little room was like an + oven. The man sat all twisted and huddled in his chair in a way + which gave an indescribably impression of deformity; but the face + which he turned towards us, though worn and swarthy, must at some + time have been remarkable for its beauty. He looked suspiciously at + us now out of yellow-shot, bilious eyes, and, without speaking or + rising, he waved towards two chairs. + + "Mr. Henry Wood, late of India, I believe," said Holmes, affably. + "I've come over this little matter of Colonel Barclay's death." + + "What should I know about that?" + + "That's what I want to ascertain. You know, I suppose, that unless + the matter is cleared up, Mrs. Barclay, who is an old friend of + yours, will in all probability be tried for murder." + + The man gave a violent start. + + "I don't know who you are," he cried, "nor how you come to know what + you do know, but will you swear that this is true that you tell me?" + + "Why, they are only waiting for her to come to her senses to arrest + her." + + "My God! Are you in the police yourself?" + + "No." + + "What business is it of yours, then?" + + "It's every man's business to see justice done." + + "You can take my word that she is innocent." + + "Then you are guilty." + + "No, I am not." + + "Who killed Colonel James Barclay, then?" + + "It was a just providence that killed him. But, mind you this, that + if I had knocked his brains out, as it was in my heart to do, he + would have had no more than his due from my hands. If his own guilty + conscience had not struck him down it is likely enough that I might + have had his blood upon my soul. You want me to tell the story. + Well, I don't know why I shouldn't, for there's no cause for me to be + ashamed of it. + + "It was in this way, sir. You see me now with my back like a camel + and by ribs all awry, but there was a time when Corporal Henry Wood + was the smartest man in the 117th foot. We were in India then, in + cantonments, at a place we'll call Bhurtee. Barclay, who died the + other day, was sergeant in the same company as myself, and the belle + of the regiment, ay, and the finest girl that ever had the breath of + life between her lips, was Nancy Devoy, the daughter of the + color-sergeant. There were two men that loved her, and one that she + loved, and you'll smile when you look at this poor thing huddled + before the fire, and hear me say that it was for my good looks that + she loved me. + + "Well, though I had her heart, her father was set upon her marrying + Barclay. I was a harum-scarum, reckless lad, and he had had an + education, and was already marked for the sword-belt. But the girl + held true to me, and it seemed that I would have had her when the + Mutiny broke out, and all hell was loose in the country. + + "We were shut up in Bhurtee, the regiment of us with half a battery + of artillery, a company of Sikhs, and a lot of civilians and + women-folk. There were ten thousand rebels round us, and they were + as keen as a set of terriers round a rat-cage. About the second week + of it our water gave out, and it was a question whether we could + communicate with General Neill's column, which was moving up country. + It was our only chance, for we could not hope to fight our way out + with all the women and children, so I volunteered to go out and to + warn General Neill of our danger. My offer was accepted, and I + talked it over with Sergeant Barclay, who was supposed to know the + ground better than any other man, and who drew up a route by which I + might get through the rebel lines. At ten o'clock the same night I + started off upon my journey. There were a thousand lives to save, + but it was of only one that I was thinking when I dropped over the + wall that night. + + "My way ran down a dried-up watercourse, which we hoped would screen + me from the enemy's sentries; but as I crept round the corner of it I + walked right into six of them, who were crouching down in the dark + waiting for me. In an instant I was stunned with a blow and bound + hand and foot. But the real blow was to my heart and not to my head, + for as I came to and listened to as much as I could understand of + their talk, I heard enough to tell me that my comrade, the very man + who had arranged the way that I was to take, had betrayed me by means + of a native servant into the hands of the enemy. + + "Well, there's no need for me to dwell on that part of it. You know + now what James Barclay was capable of. Bhurtee was relieved by Neill + next day, but the rebels took me away with them in their retreat, and + it was many a long year before ever I saw a white face again. I was + tortured and tried to get away, and was captured and tortured again. + You can see for yourselves the state in which I was left. Some of + them that fled into Nepal took me with them, and then afterwards I + was up past Darjeeling. The hill-folk up there murdered the rebels + who had me, and I became their slave for a time until I escaped; but + instead of going south I had to go north, until I found myself among + the Afghans. There I wandered about for many a year, and at last + came back to the Punjaub, where I lived mostly among the natives and + picked up a living by the conjuring tricks that I had learned. What + use was it for me, a wretched cripple, to go back to England or to + make myself known to my old comrades? Even my wish for revenge would + not make me do that. I had rather that Nancy and my old pals should + think of Harry Wood as having died with a straight back, than see him + living and crawling with a stick like a chimpanzee. They never + doubted that I was dead, and I meant that they never should. I heard + that Barclay had married Nancy, and that he was rising rapidly in the + regiment, but even that did not make me speak. + + "But when one gets old one has a longing for home. For years I've + been dreaming of the bright green fields and the hedges of England. + At last I determined to see them before I died. I saved enough to + bring me across, and then I came here where the soldiers are, for I + know their ways and how to amuse them and so earn enough to keep me." + + "Your narrative is most interesting," said Sherlock Holmes. "I have + already heard of your meeting with Mrs. Barclay, and your mutual + recognition. You then, as I understand, followed her home and saw + through the window an altercation between her husband and her, in + which she doubtless cast his conduct to you in his teeth. Your own + feelings overcame you, and you ran across the lawn and broke in upon + them." + + "I did, sir, and at the sight of me he looked as I have never seen a + man look before, and over he went with his head on the fender. But + he was dead before he fell. I read death on his face as plain as I + can read that text over the fire. The bare sight of me was like a + bullet through his guilty heart." + + "And then?" + + "Then Nancy fainted, and I caught up the key of the door from her + hand, intending to unlock it and get help. But as I was doing it it + seemed to me better to leave it alone and get away, for the thing + might look black against me, and any way my secret would be out if I + were taken. In my haste I thrust the key into my pocket, and dropped + my stick while I was chasing Teddy, who had run up the curtain. When + I got him into his box, from which he had slipped, I was off as fast + as I could run." + + "Who's Teddy?" asked Holmes. + + The man leaned over and pulled up the front of a kind of hutch in the + corner. In an instant out there slipped a beautiful reddish-brown + creature, thin and lithe, with the legs of a stoat, a long, thin + nose, and a pair of the finest red eyes that ever I saw in an + animal's head. + + "It's a mongoose," I cried. + + "Well, some call them that, and some call them ichneumon," said the + man. "Snake-catcher is what I call them, and Teddy is amazing quick + on cobras. I have one here without the fangs, and Teddy catches it + every night to please the folk in the canteen. + + "Any other point, sir?" + + "Well, we may have to apply to you again if Mrs. Barclay should prove + to be in serious trouble." + + "In that case, of course, I'd come forward." + + "But if not, there is no object in raking up this scandal against a + dead man, foully as he has acted. You have at least the satisfaction + of knowing that for thirty years of his life his conscience bitterly + reproached him for this wicked deed. Ah, there goes Major Murphy on + the other side of the street. Good-bye, Wood. I want to learn if + anything has happened since yesterday." + + We were in time to overtake the major before he reached the corner. + + "Ah, Holmes," he said: "I suppose you have heard that all this fuss + has come to nothing?" + + "What then?" + + "The inquest is just over. The medical evidence showed conclusively + that death was due to apoplexy. You see it was quite a simple case + after all." + + "Oh, remarkably superficial," said Holmes, smiling. "Come, Watson, I + don't think we shall be wanted in Aldershot any more." + + "There's one thing," said I, as we walked down to the station. "If + the husband's name was James, and the other was Henry, what was this + talk about David?" + + "That one word, my dear Watson, should have told me the whole story + had I been the ideal reasoner which you are so fond of depicting. It + was evidently a term of reproach." + + "Of reproach?" + + "Yes; David strayed a little occasionally, you know, and on one + occasion in the same direction as Sergeant James Barclay. You + remember the small affair of Uriah and Bathsheba? My biblical + knowledge is a trifle rusty, I fear, but you will find the story in + the first or second of Samuel." + + + + + + + THE RESIDENT PATIENT + + Glancing over the somewhat incoherent series of Memoirs with which I + have endeavored to illustrate a few of the mental peculiarities of my + friend Mr. Sherlock Holmes, I have been struck by the difficulty + which I have experienced in picking out examples which shall in every + way answer my purpose. For in those cases in which Holmes has + performed some tour de force of analytical reasoning, and has + demonstrated the value of his peculiar methods of investigation, the + facts themselves have often been so slight or so commonplace that I + could not feel justified in laying them before the public. On the + other hand, it has frequently happened that he has been concerned in + some research where the facts have been of the most remarkable and + dramatic character, but where the share which he has himself taken in + determining their causes has been less pronounced than I, as his + biographer, could wish. The small matter which I have chronicled + under the heading of "A Study in Scarlet," and that other later one + connected with the loss of the Gloria Scott, may serve as examples of + this Scylla and Charybdis which are forever threatening the + historian. It may be that in the business of which I am now about to + write the part which my friend played is not sufficiently + accentuated; and yet the whole train of circumstances is so + remarkable that I cannot bring myself to omit it entirely from this + series. + + It had been a close, rainy day in October. Our blinds were + half-drawn, and Holmes lay curled upon the sofa, reading and + re-reading a letter which he had received by the morning post. For + myself, my term of service in India had trained me to stand heat + better than cold, and a thermometer of 90 was no hardship. But the + paper was uninteresting. Parliament had risen. Everybody was out of + town, and I yearned for the glades of the New Forest or the shingle + of Southsea. A depleted bank account had caused me to postpone my + holiday, and as to my companion, neither the country nor the sea + presented the slightest attraction to him. He loved to lie in the + very centre of five millions of people, with his filaments stretching + out and running through them, responsive to every little rumor or + suspicion of unsolved crime. Appreciation of Nature found no place + among his many gifts, and his only change was when he turned his mind + from the evil-doer of the town to track down his brother of the + country. + + I cannot be sure of the exact date, for some of my memoranda upon the + matter have been mislaid, but it must have been towards the end of + the first year during which Holmes and I shared chambers in Baker + Street. It was boisterous October weather, and we had both remained + indoors all day, I because I feared with my shaken health to face the + keen autumn wind, while he was deep in some of those abstruse + chemical investigations which absorbed him utterly as long as he was + engaged upon them. Towards evening, however, the breaking of a + test-tube brought his research to a premature ending, and he sprang + up from his chair with an exclamation of impatience and a clouded + brow. + + "A day's work ruined, Watson," said he, striding across to the + window. "Ha! The stars are out and he wind has fallen. What do you + say to a ramble through London?" + + I was weary of our little sitting-room and gladly acquiesced. For + three hours we strolled about together, watching the ever-changing + kaleidoscope of life as it ebbs and flows through Fleet Street and + the Strand. His characteristic talk, with its keen observance of + detail and subtle power of inference held me amused and enthralled. + It was ten o'clock before we reached Baker Street again. A brougham + was waiting at our door. + + "Hum! A doctor's--general practitioner, I perceive," said Holmes. + "Not been long in practice, but has had a good deal to do. Come to + consult us, I fancy! Lucky we came back!" + + I was sufficiently conversant with Holmes's methods to be able to + follow his reasoning, and to see that the nature and state of the + various medical instruments in the wicker basket which hung in the + lamplight inside the brougham had given him the data for his swift + deduction. The light in our window above showed that this late visit + was indeed intended for us. With some curiosity as to what could have + sent a brother medico to us at such an hour, I followed Holmes into + our sanctum. + + A pale, taper-faced man with sandy whiskers rose up from a chair by + the fire as we entered. His age may not have been more than three or + four and thirty, but his haggard expression and unhealthy hue told of + a life which has sapped his strength and robbed him of his youth. His + manner was nervous and shy, like that of a sensitive gentleman, and + the thin white hand which he laid on the mantelpiece as he rose was + that of an artist rather than of a surgeon. His dress was quiet and + sombre--a black frock-coat, dark trousers, and a touch of color about + his necktie. + + "Good-evening, doctor," said Holmes, cheerily. "I am glad to see that + you have only been waiting a very few minutes." + + "You spoke to my coachman, then?" + + "No, it was the candle on the side-table that told me. Pray resume + your seat and let me know how I can serve you." + + "My name is Doctor Percy Trevelyan," said our visitor, "and I live at + 403 Brook Street." + + "Are you not the author of a monograph upon obscure nervous lesions?" + I asked. + + His pale cheeks flushed with pleasure at hearing that his work was + known to me. + + "I so seldom hear of the work that I thought it was quite dead," said + he. "My publishers gave me a most discouraging account of its sale. + You are yourself, I presume, a medical man?" + + "A retired army surgeon." + + "My own hobby has always been nervous disease. I should wish to make + it an absolute specialty, but, of course, a man must take what he can + get at first. This, however, is beside the question, Mr. Sherlock + Holmes, and I quite appreciate how valuable your time is. The fact is + that a very singular train of events has occurred recently at my + house in Brook Street, and to-night they came to such a head that I + felt it was quite impossible for me to wait another hour before + asking for your advice and assistance." + + Sherlock Holmes sat down and lit his pipe. "You are very welcome to + both," said he. "Pray let me have a detailed account of what the + circumstances are which have disturbed you." + + "One or two of them are so trivial," said Dr. Trevelyan, "that really + I am almost ashamed to mention them. But the matter is so + inexplicable, and the recent turn which it has taken is so elaborate, + that I shall lay it all before you, and you shall judge what is + essential and what is not. + + "I am compelled, to begin with, to say something of my own college + career. I am a London University man, you know, and I am sure that + you will not think that I am unduly singing my own praises if I say + that my student career was considered by my professors to be a very + promising one. After I had graduated I continued to devote myself to + research, occupying a minor position in King's College Hospital, and + I was fortunate enough to excite considerable interest by my research + into the pathology of catalepsy, and finally to win the Bruce + Pinkerton prize and medal by the monograph on nervous lesions to + which your friend has just alluded. I should not go too far if I were + to say that there was a general impression at that time that a + distinguished career lay before me. + + "But the one great stumbling-block lay in my want of capital. As you + will readily understand, a specialist who aims high is compelled to + start in one of a dozen streets in the Cavendish Square quarter, all + of which entail enormous rents and furnishing expenses. Besides this + preliminary outlay, he must be prepared to keep himself for some + years, and to hire a presentable carriage and horse. To do this was + quite beyond my power, and I could only hope that by economy I might + in ten years' time save enough to enable me to put up my plate. + Suddenly, however, an unexpected incident opened up quite a new + prospect to me. + + "This was a visit from a gentleman of the name of Blessington, who + was a complete stranger to me. He came up to my room one morning, and + plunged into business in an instant. + + "'You are the same Percy Trevelyan who has had so distinguished a + career and won a great prize lately?' said he. + + "I bowed. + + "'Answer me frankly,' he continued, 'for you will find it to your + interest to do so. You have all the cleverness which makes a + successful man. Have you the tact?' + + "I could not help smiling at the abruptness of the question. + + "'I trust that I have my share,' I said. + + "'Any bad habits? Not drawn towards drink, eh?' + + "'Really, sir!' I cried. + + "'Quite right! That's all right! But I was bound to ask. With all + these qualities, why are you not in practice?' + + "I shrugged my shoulders. + + "'Come, come!' said he, in his bustling way. 'It's the old story. + More in your brains than in your pocket, eh? What would you say if I + were to start you in Brook Street?' + + "I stared at him in astonishment. + + "'Oh, it's for my sake, not for yours,' he cried. 'I'll be perfectly + frank with you, and if it suits you it will suit me very well. I have + a few thousands to invest, d'ye see, and I think I'll sink them in + you.' + + "'But why?' I gasped. + + "'Well, it's just like any other speculation, and safer than most.' + + "'What am I to do, then?' + + "'I'll tell you. I'll take the house, furnish it, pay the maids, and + run the whole place. All you have to do is just to wear out your + chair in the consulting-room. I'll let you have pocket-money and + everything. Then you hand over to me three quarters of what you earn, + and you keep the other quarter for yourself.' + + "This was the strange proposal, Mr. Holmes, with which the man + Blessington approached me. I won't weary you with the account of how + we bargained and negotiated. It ended in my moving into the house + next Lady Day, and starting in practice on very much the same + conditions as he had suggested. He came himself to live with me in + the character of a resident patient. His heart was weak, it appears, + and he needed constant medical supervision. He turned the two best + rooms of the first floor into a sitting-room and bedroom for himself. + He was a man of singular habits, shunning company and very seldom + going out. His life was irregular, but in one respect he was + regularity itself. Every evening, at the same hour, he walked into + the consulting-room, examined the books, put down five and + three-pence for every guinea that I had earned, and carried the rest + off to the strong-box in his own room. + + "I may say with confidence that he never had occasion to regret his + speculation. From the first it was a success. A few good cases and + the reputation which I had won in the hospital brought me rapidly to + the front, and during the last few years I have made him a rich man. + + "So much, Mr. Holmes, for my past history and my relations with Mr. + Blessington. It only remains for me now to tell you what has occurred + to bring me here to-night. + + "Some weeks ago Mr. Blessington came down to me in, as it seemed to + me, a state of considerable agitation. He spoke of some burglary + which, he said, had been committed in the West End, and he appeared, + I remember, to be quite unnecessarily excited about it, declaring + that a day should not pass before we should add stronger bolts to our + windows and doors. For a week he continued to be in a peculiar state + of restlessness, peering continually out of the windows, and ceasing + to take the short walk which had usually been the prelude to his + dinner. From his manner it struck me that he was in mortal dread of + something or somebody, but when I questioned him upon the point he + became so offensive that I was compelled to drop the subject. + Gradually, as time passed, his fears appeared to die away, and he had + renewed his former habits, when a fresh event reduced him to the + pitiable state of prostration in which he now lies. + + "What happened was this. Two days ago I received the letter which I + now read to you. Neither address nor date is attached to it. + + "'A Russian nobleman who is now resident in England,' it runs, 'would + be glad to avail himself of the professional assistance of Dr. Percy + Trevelyan. He has been for some years a victim to cataleptic attacks, + on which, as is well known, Dr. Trevelyan is an authority. He + proposes to call at about quarter past six to-morrow evening, if Dr. + Trevelyan will make it convenient to be at home.' + + "This letter interested me deeply, because the chief difficulty in + the study of catalepsy is the rareness of the disease. You may + believe, than, that I was in my consulting-room when, at the + appointed hour, the page showed in the patient. + + He was an elderly man, thin, demure, and common-place--by no means + the conception one forms of a Russian nobleman. I was much more + struck by the appearance of his companion. This was a tall young man, + surprisingly handsome, with a dark, fierce face, and the limbs and + chest of a Hercules. He had his hand under the other's arm as they + entered, and helped him to a chair with a tenderness which one would + hardly have expected from his appearance. + + "'You will excuse my coming in, doctor,' said he to me, speaking + English with a slight lisp. 'This is my father, and his health is a + matter of the most overwhelming importance to me.' + + "I was touched by this filial anxiety. 'You would, perhaps, care to + remain during the consultation?' said I. + + "'Not for the world,' he cried with a gesture of horror. 'It is more + painful to me than I can express. If I were to see my father in one + of these dreadful seizures I am convinced that I should never survive + it. My own nervous system is an exceptionally sensitive one. With + your permission, I will remain in the waiting-room while you go into + my father's case.' + + "To this, of course, I assented, and the young man withdrew. The + patient and I then plunged into a discussion of his case, of which I + took exhaustive notes. He was not remarkable for intelligence, and + his answers were frequently obscure, which I attributed to his + limited acquaintance with our language. Suddenly, however, as I sat + writing, he ceased to give any answer at all to my inquiries, and on + my turning towards him I was shocked to see that he was sitting bolt + upright in his chair, staring at me with a perfectly blank and rigid + face. He was again in the grip of his mysterious malady. + + "My first feeling, as I have just said, was one of pity and horror. + My second, I fear, was rather one of professional satisfaction. I + made notes of my patient's pulse and temperature, tested the rigidity + of his muscles, and examined his reflexes. There was nothing markedly + abnormal in any of these conditions, which harmonized with my former + experiences. I had obtained good results in such cases by the + inhalation of nitrite of amyl, and the present seemed an admirable + opportunity of testing its virtues. The bottle was downstairs in my + laboratory, so leaving my patient seated in his chair, I ran down to + get it. There was some little delay in finding it--five minutes, let + us say--and then I returned. Imagine my amazement to find the room + empty and the patient gone. + + "Of course, my first act was to run into the waiting-room. The son + had gone also. The hall door had been closed, but not shut. My page + who admits patients is a new boy and by no means quick. He waits + downstairs, and runs up to show patients out when I ring the + consulting-room bell. He had heard nothing, and the affair remained a + complete mystery. Mr. Blessington came in from his walk shortly + afterwards, but I did not say anything to him upon the subject, for, + to tell the truth, I have got in the way of late of holding as little + communication with him as possible. + + "Well, I never thought that I should see anything more of the Russian + and his son, so you can imagine my amazement when, at the very same + hour this evening, they both came marching into my consulting-room, + just as they had done before. + + "'I feel that I owe you a great many apologies for my abrupt + departure yesterday, doctor,' said my patient. + + "'I confess that I was very much surprised at it,' said I. + + "'Well, the fact is,' he remarked, 'that when I recover from these + attacks my mind is always very clouded as to all that has gone + before. I woke up in a strange room, as it seemed to me, and made my + way out into the street in a sort of dazed way when you were absent.' + + "'And I,' said the son, 'seeing my father pass the door of the + waiting-room, naturally thought that the consultation had come to an + end. It was not until we had reached home that I began to realize the + true state of affairs.' + + "'Well,' said I, laughing, 'there is no harm done except that you + puzzled me terribly; so if you, sir, would kindly step into the + waiting-room I shall be happy to continue our consultation which was + brought to so abrupt an ending.' + + "For half an hour or so I discussed that old gentleman's symptoms + with him, and then, having prescribed for him, I saw him go off upon + the arm of his son. + + "I have told you that Mr. Blessington generally chose this hour of + the day for his exercise. He came in shortly afterwards and passed + upstairs. An instant later I heard him running down, and he burst + into my consulting-room like a man who is mad with panic. + + "'Who has been in my room?' he cried. + + "'No one,' said I. + + "'It's a lie!' He yelled. 'Come up and look!' + + "I passed over the grossness of his language, as he seemed half out + of his mind with fear. When I went upstairs with him he pointed to + several footprints upon the light carpet. + + "'D'you mean to say those are mine?' he cried. + + "They were certainly very much larger than any which he could have + made, and were evidently quite fresh. It rained hard this afternoon, + as you know, and my patients were the only people who called. It must + have been the case, then, that the man in the waiting-room had, for + some unknown reason, while I was busy with the other, ascended to the + room of my resident patient. Nothing has been touched or taken, but + there were the footprints to prove that the intrusion was an + undoubted fact. + + "Mr. Blessington seemed more excited over the matter than I should + have thought possible, though of course it was enough to disturb + anybody's peace of mind. He actually sat crying in an arm-chair, and + I could hardly get him to speak coherently. It was his suggestion + that I should come round to you, and of course I at once saw the + propriety of it, for certainly the incident is a very singular one, + though he appears to completely overrate its importance. If you would + only come back with me in my brougham, you would at least be able to + soothe him, though I can hardly hope that you will be able to explain + this remarkable occurrence." + + Sherlock Holmes had listened to this long narrative with an + intentness which showed me that his interest was keenly aroused. His + face was as impassive as ever, but his lids had drooped more heavily + over his eyes, and his smoke had curled up more thickly from his pipe + to emphasize each curious episode in the doctor's tale. As our + visitor concluded, Holmes sprang up without a word, handed me my hat, + picked his own from the table, and followed Dr. Trevelyan to the + door. Within a quarter of an hour we had been dropped at the door of + the physician's residence in Brook Street, one of those sombre, + flat-faced houses which one associates with a West-End practice. A + small page admitted us, and we began at once to ascend the broad, + well-carpeted stair. + + But a singular interruption brought us to a standstill. The light at + the top was suddenly whisked out, and from the darkness came a reedy, + quivering voice. + + "I have a pistol," it cried. "I give you my word that I'll fire if + you come any nearer." + + "This really grows outrageous, Mr. Blessington," cried Dr. Trevelyan. + + "Oh, then it is you, doctor," said the voice, with a great heave of + relief. "But those other gentlemen, are they what they pretend to + be?" + + We were conscious of a long scrutiny out of the darkness. + + "Yes, yes, it's all right," said the voice at last. "You can come up, + and I am sorry if my precautions have annoyed you." + + He relit the stair gas as he spoke, and we saw before us a + singular-looking man, whose appearance, as well as his voice, + testified to his jangled nerves. He was very fat, but had apparently + at some time been much fatter, so that the skin hung about his face + in loose pouches, like the cheeks of a blood-hound. He was of a + sickly color, and his thin, sandy hair seemed to bristle up with the + intensity of his emotion. In his hand he held a pistol, but he thrust + it into his pocket as we advanced. + + "Good-evening, Mr. Holmes," said he. "I am sure I am very much + obliged to you for coming round. No one ever needed your advice more + than I do. I suppose that Dr. Trevelyan has told you of this most + unwarrantable intrusion into my rooms." + + "Quite so," said Holmes. "Who are these two men Mr. Blessington, and + why do they wish to molest you?" + + "Well, well," said the resident patient, in a nervous fashion, "of + course it is hard to say that. You can hardly expect me to answer + that, Mr. Holmes." + + "Do you mean that you don't know?" + + "Come in here, if you please. Just have the kindness to step in + here." + + He led the way into his bedroom, which was large and comfortably + furnished. + + "You see that," said he, pointing to a big black box at the end of + his bed. "I have never been a very rich man, Mr. Holmes--never made + but one investment in my life, as Dr. Trevelyan would tell you. But I + don't believe in bankers. I would never trust a banker, Mr. Holmes. + Between ourselves, what little I have is in that box, so you can + understand what it means to me when unknown people force themselves + into my rooms." + + Holmes looked at Blessington in his questioning way and shook his + head. + + "I cannot possibly advise you if you try to deceive me," said he. + + "But I have told you everything." + + Holmes turned on his heel with a gesture of disgust. "Good-night, Dr. + Trevelyan," said he. + + "And no advice for me?" cried Blessington, in a breaking voice. + + "My advice to your, sir, is to speak the truth." + + A minute later we were in the street and walking for home. We had + crossed Oxford Street and were half way down Harley Street before I + could get a word from my companion. + + "Sorry to bring you out on such a fool's errand, Watson," he said at + last. "It is an interesting case, too, at the bottom of it." + + "I can make little of it," I confessed. + + "Well, it is quite evident that there are two men--more, perhaps, but + at least two--who are determined for some reason to get at this + fellow Blessington. I have no doubt in my mind that both on the first + and on the second occasion that young man penetrated to Blessington's + room, while his confederate, by an ingenious device, kept the doctor + from interfering." + + "And the catalepsy?" + + "A fraudulent imitation, Watson, though I should hardly dare to hint + as much to our specialist. It is a very easy complaint to imitate. I + have done it myself." + + "And then?" + + "By the purest chance Blessington was out on each occasion. Their + reason for choosing so unusual an hour for a consultation was + obviously to insure that there should be no other patient in the + waiting-room. It just happened, however, that this hour coincided + with Blessington's constitutional, which seems to show that they were + not very well acquainted with his daily routine. Of course, if they + had been merely after plunder they would at least have made some + attempt to search for it. Besides, I can read in a man's eye when it + is his own skin that he is frightened for. It is inconceivable that + this fellow could have made two such vindictive enemies as these + appear to be without knowing of it. I hold it, therefore, to be + certain that he does know who these men are, and that for reasons of + his own he suppresses it. It is just possible that to-morrow may find + him in a more communicative mood." + + "Is there not one alternative," I suggested, "grotesquely improbably, + no doubt, but still just conceivable? Might the whole story of the + cataleptic Russian and his son be a concoction of Dr. Trevelyan's, + who has, for his own purposes, been in Blessington's rooms?" + + I saw in the gaslight that Holmes wore an amused smile at this + brilliant departure of mine. + + "My dear fellow," said he, "it was one of the first solutions which + occurred to me, but I was soon able to corroborate the doctor's tale. + This young man has left prints upon the stair-carpet which made it + quite superfluous for me to ask to see those which he had made in the + room. When I tell you that his shoes were square-toed instead of + being pointed like Blessington's, and were quite an inch and a third + longer than the doctor's, you will acknowledge that there can be no + doubt as to his individuality. But we may sleep on it now, for I + shall be surprised if we do not hear something further from Brook + Street in the morning." + + Sherlock Holmes's prophecy was soon fulfilled, and in a dramatic + fashion. At half-past seven next morning, in the first glimmer of + daylight, I found him standing by my bedside in his dressing-gown. + + "There's a brougham waiting for us, Watson," said he. + + "What's the matter, then?" + + "The Brook Street business." + + "Any fresh news?" + + "Tragic, but ambiguous," said he, pulling up the blind. "Look at + this--a sheet from a note-book, with 'For God's sake come at once--P. + T.,' scrawled upon it in pencil. Our friend, the doctor, was hard put + to it when he wrote this. Come along, my dear fellow, for it's an + urgent call." + + In a quarter of an hour or so we were back at the physician's house. + He came running out to meet us with a face of horror. + + "Oh, such a business!" he cried, with his hands to his temples. + + "What then?" + + "Blessington has committed suicide!" + + Holmes whistled. + + "Yes, he hanged himself during the night." + + We had entered, and the doctor had preceded us into what was + evidently his waiting-room. + + "I really hardly know what I am doing," he cried. "The police are + already upstairs. It has shaken me most dreadfully." + + "When did you find it out?" + + "He has a cup of tea taken in to him early every morning. When the + maid entered, about seven, there the unfortunate fellow was hanging + in the middle of the room. He had tied his cord to the hook on which + the heavy lamp used to hang, and he had jumped off from the top of + the very box that he showed us yesterday." + + Holmes stood for a moment in deep thought. + + "With your permission," said he at last, "I should like to go + upstairs and look into the matter." + + We both ascended, followed by the doctor. + + It was a dreadful sight which met us as we entered the bedroom door. + I have spoken of the impression of flabbiness which this man + Blessington conveyed. As he dangled from the hook it was exaggerated + and intensified until he was scarce human in his appearance. The neck + was drawn out like a plucked chicken's, making the rest of him seem + the more obese and unnatural by the contrast. He was clad only in his + long night-dress, and his swollen ankles and ungainly feet protruded + starkly from beneath it. Beside him stood a smart-looking + police-inspector, who was taking notes in a pocket-book. + + "Ah, Mr. Holmes," said he, heartily, as my friend entered, "I am + delighted to see you." + + "Good-morning, Lanner," answered Holmes; "you won't think me an + intruder, I am sure. Have you heard of the events which led up to + this affair?" + + "Yes, I heard something of them." + + "Have you formed any opinion?" + + "As far as I can see, the man has been driven out of his senses by + fright. The bed has been well slept in, you see. There's his + impression deep enough. It's about five in the morning, you know, + that suicides are most common. That would be about his time for + hanging himself. It seems to have been a very deliberate affair." + + "I should say that he has been dead about three hours, judging by the + rigidity of the muscles," said I. + + "Noticed anything peculiar about the room?" asked Holmes. + + "Found a screw-driver and some screws on the wash-hand stand. Seems + to have smoked heavily during the night, too. Here are four + cigar-ends that I picked out of the fireplace." + + "Hum!" said Holmes, "have you got his cigar-holder?" + + "No, I have seen none." + + "His cigar-case, then?" + + "Yes, it was in his coat-pocket." + + Holmes opened it and smelled the single cigar which it contained. + + "Oh, this is an Havana, and these others are cigars of the peculiar + sort which are imported by the Dutch from their East Indian colonies. + They are usually wrapped in straw, you know, and are thinner for + their length than any other brand." He picked up the four ends and + examined them with his pocket-lens. + + "Two of these have been smoked from a holder and two without," said + he. "Two have been cut by a not very sharp knife, and two have had + the ends bitten off by a set of excellent teeth. This is no suicide, + Mr. Lanner. It is a very deeply planned and cold-blooded murder." + + "Impossible!" cried the inspector. + + "And why?" + + "Why should any one murder a man in so clumsy a fashion as by hanging + him?" + + "That is what we have to find out." + + "How could they get in?" + + "Through the front door." + + "It was barred in the morning." + + "Then it was barred after them." + + "How do you know?" + + "I saw their traces. Excuse me a moment, and I may be able to give + you some further information about it." + + He went over to the door, and turning the lock he examined it in his + methodical way. Then he took out the key, which was on the inside, + and inspected that also. The bed, the carpet, the chairs the + mantelpiece, the dead body, and the rope were each in turn examined, + until at last he professed himself satisfied, and with my aid and + that of the inspector cut down the wretched object and laid it + reverently under a sheet. + + "How about this rope?" he asked. + + "It is cut off this," said Dr. Trevelyan, drawing a large coil from + under the bed. "He was morbidly nervous of fire, and always kept this + beside him, so that he might escape by the window in case the stairs + were burning." + + "That must have saved them trouble," said Holmes, thoughtfully. "Yes, + the actual facts are very plain, and I shall be surprised if by the + afternoon I cannot give you the reasons for them as well. I will take + this photograph of Blessington, which I see upon the mantelpiece, as + it may help me in my inquiries." + + "But you have told us nothing!" cried the doctor. + + "Oh, there can be no doubt as to the sequence of events," said + Holmes. "There were three of them in it: the young man, the old man, + and a third, to whose identity I have no clue. The first two, I need + hardly remark, are the same who masqueraded as the Russian count and + his son, so we can give a very full description of them. They were + admitted by a confederate inside the house. If I might offer you a + word of advice, Inspector, it would be to arrest the page, who, as I + understand, has only recently come into your service, Doctor." + + "The young imp cannot be found," said Dr. Trevelyan; "the maid and + the cook have just been searching for him." + + Holmes shrugged his shoulders. + + "He has played a not unimportant part in this drama," said he. "The + three men having ascended the stairs, which they did on tiptoe, the + elder man first, the younger man second, and the unknown man in the + rear--" + + "My dear Holmes!" I ejaculated. + + "Oh, there could be no question as to the superimposing of the + footmarks. I had the advantage of learning which was which last + night. They ascended, then, to Mr. Blessington's room, the door of + which they found to be locked. With the help of a wire, however, they + forced round the key. Even without the lens you will perceive, by the + scratches on this ward, where the pressure was applied. + + "On entering the room their first proceeding must have been to gag + Mr. Blessington. He may have been asleep, or he may have been so + paralyzed with terror as to have been unable to cry out. These walls + are thick, and it is conceivable that his shriek, if he had time to + utter one, was unheard. + + "Having secured him, it is evident to me that a consultation of some + sort was held. Probably it was something in the nature of a judicial + proceeding. It must have lasted for some time, for it was then that + these cigars were smoked. The older man sat in that wicker chair; it + was he who used the cigar-holder. The younger man sat over yonder; he + knocked his ash off against the chest of drawers. The third fellow + paced up and down. Blessington, I think, sat upright in the bed, but + of that I cannot be absolutely certain. + + "Well, it ended by their taking Blessington and hanging him. The + matter was so prearranged that it is my belief that they brought with + them some sort of block or pulley which might serve as a gallows. + That screw-driver and those screws were, as I conceive, for fixing it + up. Seeing the hook, however they naturally saved themselves the + trouble. Having finished their work they made off, and the door was + barred behind them by their confederate." + + We had all listened with the deepest interest to this sketch of the + night's doings, which Holmes had deduced from signs so subtle and + minute that, even when he had pointed them out to us, we could + scarcely follow him in his reasoning. The inspector hurried away on + the instant to make inquiries about the page, while Holmes and I + returned to Baker Street for breakfast. + + "I'll be back by three," said he, when we had finished our meal. + "Both the inspector and the doctor will meet me here at that hour, + and I hope by that time to have cleared up any little obscurity which + the case may still present." + + Our visitors arrived at the appointed time, but it was a quarter to + four before my friend put in an appearance. From his expression as he + entered, however, I could see that all had gone well with him. + + "Any news, Inspector?" + + "We have got the boy, sir." + + "Excellent, and I have got the men." + + "You have got them!" we cried, all three. + + "Well, at least I have got their identity. This so-called Blessington + is, as I expected, well known at headquarters, and so are his + assailants. Their names are Biddle, Hayward, and Moffat." + + "The Worthingdon bank gang," cried the inspector. + + "Precisely," said Holmes. + + "Then Blessington must have been Sutton." + + "Exactly," said Holmes. + + "Why, that makes it as clear as crystal," said the inspector. + + But Trevelyan and I looked at each other in bewilderment. + + "You must surely remember the great Worthingdon bank business," said + Holmes. "Five men were in it--these four and a fifth called + Cartwright. Tobin, the care-taker, was murdered, and the thieves got + away with seven thousand pounds. This was in 1875. They were all five + arrested, but the evidence against them was by no means conclusive. + This Blessington or Sutton, who was the worst of the gang, turned + informer. On his evidence Cartwright was hanged and the other three + got fifteen years apiece. When they got out the other day, which was + some years before their full term, they set themselves, as you + perceive, to hunt down the traitor and to avenge the death of their + comrade upon him. Twice they tried to get at him and failed; a third + time, you see, it came off. Is there anything further which I can + explain, Dr. Trevelyan?" + + "I think you have made it all remarkable clear," said the doctor. "No + doubt the day on which he was perturbed was the day when he had seen + of their release in the newspapers." + + "Quite so. His talk about a burglary was the merest blind." + + "But why could he not tell you this?" + + "Well, my dear sir, knowing the vindictive character of his old + associates, he was trying to hide his own identity from everybody as + long as he could. His secret was a shameful one, and he could not + bring himself to divulge it. However, wretch as he was, he was still + living under the shield of British law, and I have no doubt, + Inspector, that you will see that, though that shield may fail to + guard, the sword of justice is still there to avenge." + + Such were the singular circumstances in connection with the Resident + Patient and the Brook Street Doctor. From that night nothing has been + seen of the three murderers by the police, and it is surmised at + Scotland Yard that they were among the passengers of the ill-fated + steamer Norah Creina, which was lost some years ago with all hands + upon the Portuguese coast, some leagues to the north of Oporto. The + proceedings against the page broke down for want of evidence, and the + Brook Street Mystery, as it was called, has never until now been + fully dealt with in any public print. + + + + + + + THE GREEK INTERPRETER + + During my long and intimate acquaintance with Mr. Sherlock Holmes I + had never heard him refer to his relations, and hardly ever to his + own early life. This reticence upon his part had increased the + somewhat inhuman effect which he produced upon me, until sometimes I + found myself regarding him as an isolated phenomenon, a brain without + a heart, as deficient in human sympathy as he was pre-eminent in + intelligence. His aversion to women and his disinclination to form + new friendships were both typical of his unemotional character, but + not more so than his complete suppression of every reference to his + own people. I had come to believe that he was an orphan with no + relatives living, but one day, to my very great surprise, he began to + talk to me about his brother. + + It was after tea on a summer evening, and the conversation, which had + roamed in a desultory, spasmodic fashion from golf clubs to the + causes of the change in the obliquity of the ecliptic, came round at + last to the question of atavism and hereditary aptitudes. The point + under discussion was, how far any singular gift in an individual was + due to his ancestry and how far to his own early training. + + "In your own case," said I, "from all that you have told me, it seems + obvious that your faculty of observation and your peculiar facility + for deduction are due to your own systematic training." + + "To some extent," he answered, thoughtfully. "My ancestors were + country squires, who appear to have led much the same life as is + natural to their class. But, none the less, my turn that way is in + my veins, and may have come with my grandmother, who was the sister + of Vernet, the French artist. Art in the blood is liable to take the + strangest forms." + + "But how do you know that it is hereditary?" + + "Because my brother Mycroft possesses it in a larger degree than I + do." + + This was news to me indeed. If there were another man with such + singular powers in England, how was it that neither police nor public + had heard of him? I put the question, with a hint that it was my + companion's modesty which made him acknowledge his brother as his + superior. Holmes laughed at my suggestion. + + "My dear Watson," said he, "I cannot agree with those who rank + modesty among the virtues. To the logician all things should be seen + exactly as they are, and to underestimate one's self is as much a + departure from truth as to exaggerate one's own powers. When I say, + therefore, that Mycroft has better powers of observation than I, you + may take it that I am speaking the exact and literal truth." + + "Is he your junior?" + + "Seven years my senior." + + "How comes it that he is unknown?" + + "Oh, he is very well known in his own circle." + + "Where, then?" + + "Well, in the Diogenes Club, for example." + + I had never heard of the institution, and my face must have + proclaimed as much, for Sherlock Holmes pulled out his watch. + + "The Diogenes Club is the queerest club in London, and Mycroft one of + the queerest men. He's always there from quarter to five to twenty + to eight. It's six now, so if you care for a stroll this beautiful + evening I shall be very happy to introduce you to two curiosities." + + Five minutes later we were in the street, walking towards Regent's + Circus. + + "You wonder," said my companion, "why it is that Mycroft does not use + his powers for detective work. He is incapable of it." + + "But I thought you said--" + + "I said that he was my superior in observation and deduction. If the + art of the detective began and ended in reasoning from an arm-chair, + my brother would be the greatest criminal agent that ever lived. But + he has no ambition and no energy. He will not even go out of his way + to verify his own solution, and would rather be considered wrong than + take the trouble to prove himself right. Again and again I have + taken a problem to him, and have received an explanation which has + afterwards proved to be the correct one. And yet he was absolutely + incapable of working out the practical points which must be gone into + before a case could be laid before a judge or jury." + + "It is not his profession, then?" + + "By no means. What is to me a means of livelihood is to him the + merest hobby of a dilettante. He has an extraordinary faculty for + figures, and audits the books in some of the government departments. + Mycroft lodges in Pall Mall, and he walks round the corner into + Whitehall every morning and back every evening. From year's end to + year's end he takes no other exercise, and is seen nowhere else, + except only in the Diogenes Club, which is just opposite his rooms." + + "I cannot recall the name." + + "Very likely not. There are many men in London, you know, who, some + from shyness, some from misanthropy, have no wish for the company of + their fellows. Yet they are not averse to comfortable chairs and the + latest periodicals. It is for the convenience of these that the + Diogenes Club was started, and it now contains the most unsociable + and unclubable men in town. No member is permitted to take the least + notice of any other one. Save in the Stranger's Room, no talking is, + under any circumstances, allowed, and three offences, if brought to + the notice of the committee, render the talker liable to expulsion. + My brother was one of the founders, and I have myself found it a very + soothing atmosphere." + + We had reached Pall Mall as we talked, and were walking down it from + the St. James's end. Sherlock Holmes stopped at a door some little + distance from the Carlton, and, cautioning me not to speak, he led + the way into the hall. Through the glass paneling I caught a glimpse + of a large and luxurious room, in which a considerable number of men + were sitting about and reading papers, each in his own little nook. + Holmes showed me into a small chamber which looked out into Pall + Mall, and then, leaving me for a minute, he came back with a + companion whom I knew could only be his brother. + + Mycroft Holmes was a much larger and stouter man than Sherlock. His + body was absolutely corpulent, but his face, though massive, had + preserved something of the sharpness of expression which was so + remarkable in that of his brother. His eyes, which were of a + peculiarly light, watery gray, seemed to always retain that far-away, + introspective look which I had only observed in Sherlock's when he + was exerting his full powers. + + "I am glad to meet you, sir," said he, putting out a broad, fat hand + like the flipper of a seal. "I hear of Sherlock everywhere since you + became his chronicler. By the way, Sherlock, I expected to see you + round last week, to consult me over that Manor House case. I thought + you might be a little out of your depth." + + "No, I solved it," said my friend, smiling. + + "It was Adams, of course." + + "Yes, it was Adams." + + "I was sure of it from the first." The two sat down together in the + bow-window of the club. "To any one who wishes to study mankind this + is the spot," said Mycroft. "Look at the magnificent types! Look at + these two men who are coming towards us, for example." + + "The billiard-marker and the other?" + + "Precisely. What do you make of the other?" + + The two men had stopped opposite the window. Some chalk marks over + the waistcoat pocket were the only signs of billiards which I could + see in one of them. The other was a very small, dark fellow, with + his hat pushed back and several packages under his arm. + + "An old soldier, I perceive," said Sherlock. + + "And very recently discharged," remarked the brother. + + "Served in India, I see." + + "And a non-commissioned officer." + + "Royal Artillery, I fancy," said Sherlock. + + "And a widower." + + "But with a child." + + "Children, my dear boy, children." + + "Come," said I, laughing, "this is a little too much." + + "Surely," answered Holmes, "it is not hard to say that a man with + that bearing, expression of authority, and sunbaked skin, is a + soldier, is more than a private, and is not long from India." + + "That he has not left the service long is shown by his still wearing + his 'ammunition boots', as they are called," observed Mycroft. + + "He had not the cavalry stride, yet he wore his hat on one side, as + is shown by the lighter skin of that side of his brow. His weight is + against his being a sapper. He is in the artillery." + + "Then, of course, his complete mourning shows that he has lost some + one very dear. The fact that he is doing his own shopping looks as + though it were his wife. He has been buying things for children, you + perceive. There is a rattle, which shows that one of them is very + young. The wife probably died in childbed. The fact that he has a + picture-book under his arm shows that there is another child to be + thought of." + + I began to understand what my friend meant when he said that his + brother possessed even keener faculties that he did himself. He + glanced across at me and smiled. Mycroft took snuff from a + tortoise-shell box, and brushed away the wandering grains from his + coat front with a large, red silk handkerchief. + + "By the way, Sherlock," said he, "I have had something quite after + your own heart--a most singular problem--submitted to my judgment. I + really had not the energy to follow it up save in a very incomplete + fashion, but it gave me a basis for some pleasing speculation. If + you would care to hear the facts--" + + "My dear Mycroft, I should be delighted." + + The brother scribbled a note upon a leaf of his pocket-book, and, + ringing the bell, he handed it to the waiter. + + "I have asked Mr. Melas to step across," said he. "He lodges on the + floor above me, and I have some slight acquaintance with him, which + led him to come to me in his perplexity. Mr. Melas is a Greek by + extraction, as I understand, and he is a remarkable linguist. He + earns his living partly as interpreter in the law courts and partly + by acting as guide to any wealthy Orientals who may visit the + Northumberland Avenue hotels. I think I will leave him to tell his + very remarkable experience in his own fashion." + + A few minutes later we were joined by a short, stout man whose olive + face and coal-black hair proclaimed his Southern origin, though his + speech was that of an educated Englishman. He shook hands eagerly + with Sherlock Holmes, and his dark eyes sparkled with pleasure when + he understood that the specialist was anxious to hear his story. + + "I do not believe that the police credit me--on my word, I do not," + said he in a wailing voice. "Just because they have never heard of + it before, they think that such a thing cannot be. But I know that I + shall never be easy in my mind until I know what has become of my + poor man with the sticking-plaster upon his face." + + "I am all attention," said Sherlock Holmes. + + "This is Wednesday evening," said Mr. Melas. "Well then, it was + Monday night--only two days ago, you understand--that all this + happened. I am an interpreter, as perhaps my neighbor there has told + you. I interpret all languages--or nearly all--but as I am a Greek + by birth and with a Grecian name, it is with that particular tongue + that I am principally associated. For many years I have been the + chief Greek interpreter in London, and my name is very well known in + the hotels. + + It happens not unfrequently that I am sent for at strange hours by + foreigners who get into difficulties, or by travelers who arrive late + and wish my services. I was not surprised, therefore, on Monday + night when a Mr. Latimer, a very fashionably dressed young man, came + up to my rooms and asked me to accompany him in a cab which was + waiting at the door. A Greek friend had come to see him upon + business, he said, and as he could speak nothing but his own tongue, + the services of an interpreter were indispensable. He gave me to + understand that his house was some little distance off, in + Kensington, and he seemed to be in a great hurry, bustling me rapidly + into the cab when we had descended to the street. + + "I say into the cab, but I soon became doubtful as to whether it was + not a carriage in which I found myself. It was certainly more roomy + than the ordinary four-wheeled disgrace to London, and the fittings, + though frayed, were of rich quality. Mr. Latimer seated himself + opposite to me and we started off through Charing Cross and up the + Shaftesbury Avenue. We had come out upon Oxford Street and I had + ventured some remark as to this being a roundabout way to Kensington, + when my words were arrested by the extraordinary conduct of my + companion. + + "He began by drawing a most formidable-looking bludgeon loaded with + lead from his pocket, and switching it backward and forward several + times, as if to test its weight and strength. Then he placed it + without a word upon the seat beside him. Having done this, he drew + up the windows on each side, and I found to my astonishment that they + were covered with paper so as to prevent my seeing through them. + + "'I am sorry to cut off your view, Mr. Melas,' said he. 'The fact is + that I have no intention that you should see what the place is to + which we are driving. It might possibly be inconvenient to me if you + could find your way there again.' + + "As you can imagine, I was utterly taken aback by such an address. + My companion was a powerful, broad-shouldered young fellow, and, + apart from the weapon, I should not have had the slightest chance in + a struggle with him. + + "'This is very extraordinary conduct, Mr. Latimer,' I stammered. + 'You must be aware that what you are doing is quite illegal.' + + "'It is somewhat of a liberty, no doubt,' said he, 'but we'll make it + up to you. I must warn you, however, Mr. Melas, that if at any time + to-night you attempt to raise an alarm or do anything which is + against my interests, you will find it a very serious thing. I beg + you to remember that no one knows where you are, and that, whether + you are in this carriage or in my house, you are equally in my + power.' + + "His words were quiet, but he had a rasping way of saying them which + was very menacing. I sat in silence wondering what on earth could be + his reason for kidnapping me in this extraordinary fashion. Whatever + it might be, it was perfectly clear that there was no possible use in + my resisting, and that I could only wait to see what might befall. + + "For nearly two hours we drove without my having the least clue as to + where we were going. Sometimes the rattle of the stones told of a + paved causeway, and at others our smooth, silent course suggested + asphalt; but, save by this variation in sound, there was nothing at + all which could in the remotest way help me to form a guess as to + where we were. The paper over each window was impenetrable to light, + and a blue curtain was drawn across the glass work in front. It was + a quarter-past seven when we left Pall Mall, and my watch showed me + that it was ten minutes to nine when we at last came to a standstill. + My companion let down the window, and I caught a glimpse of a low, + arched doorway with a lamp burning above it. As I was hurried from + the carriage it swung open, and I found myself inside the house, with + a vague impression of a lawn and trees on each side of me as I + entered. Whether these were private grounds, however, or bona-fide + country was more than I could possibly venture to say. + + "There was a colored gas-lamp inside which was turned so low that I + could see little save that the hall was of some size and hung with + pictures. In the dim light I could make out that the person who had + opened the door was a small, mean-looking, middle-aged man with + rounded shoulders. As he turned towards us the glint of the light + showed me that he was wearing glasses. + + "'Is this Mr. Melas, Harold?' said he. + + "'Yes.' + + "'Well done, well done! No ill-will, Mr. Melas, I hope, but we could + not get on without you. If you deal fair with us you'll not regret + it, but if you try any tricks, God help you!' He spoke in a nervous, + jerky fashion, and with little giggling laughs in between, but + somehow he impressed me with fear more than the other. + + "'What do you want with me?' I asked. + + "'Only to ask a few questions of a Greek gentleman who is visiting + us, and to let us have the answers. But say no more than you are + told to say, or--' here came the nervous giggle again--'you had + better never have been born.' + + "As he spoke he opened a door and showed the way into a room which + appeared to be very richly furnished, but again the only light was + afforded by a single lamp half-turned down. The chamber was + certainly large, and the way in which my feet sank into the carpet as + I stepped across it told me of its richness. I caught glimpses of + velvet chairs, a high white marble mantel-piece, and what seemed to + be a suit of Japanese armor at one side of it. There was a chair + just under the lamp, and the elderly man motioned that I should sit + in it. The younger had left us, but he suddenly returned through + another door, leading with him a gentleman clad in some sort of loose + dressing-gown who moved slowly towards us. As he came into the + circle of dim light which enabled me to see him more clearly I was + thrilled with horror at his appearance. He was deadly pale and + terribly emaciated, with the protruding, brilliant eyes of a man + whose spirit was greater than his strength. But what shocked me more + than any signs of physical weakness was that his face was grotesquely + criss-crossed with sticking-plaster, and that one large pad of it was + fastened over his mouth. + + "'Have you the slate, Harold?' cried the older man, as this strange + being fell rather than sat down into a chair. 'Are his hands loose? + Now, then, give him the pencil. You are to ask the questions, Mr. + Melas, and he will write the answers. Ask him first of all whether + he is prepared to sign the papers?' + + "The man's eyes flashed fire. + + "'Never!' he wrote in Greek upon the slate. + + "'On no condition?' I asked, at the bidding of our tyrant. + + "'Only if I see her married in my presence by a Greek priest whom I + know.' + + "The man giggled in his venomous way. + + "'You know what awaits you, then?' + + "'I care nothing for myself.' + + "These are samples of the questions and answers which made up our + strange half-spoken, half-written conversation. Again and again I + had to ask him whether he would give in and sign the documents. + Again and again I had the same indignant reply. But soon a happy + thought came to me. I took to adding on little sentences of my own + to each question, innocent ones at first, to test whether either of + our companions knew anything of the matter, and then, as I found that + they showed no signs I played a more dangerous game. Our + conversation ran something like this: + + "'You can do no good by this obstinacy. Who are you?' + + "'I care not. I am a stranger in London.' + + "'Your fate will be upon your own head. How long have you been here?' + + "'Let it be so. Three weeks.' + + "'The property can never be yours. What ails you?' + + "'It shall not go to villains. They are starving me.' + + "'You shall go free if you sign. What house is this?' + + "'I will never sign. I do not know.' + + "'You are not doing her any service. What is your name?' + + "'Let me hear her say so. Kratides.' + + "'You shall see her if you sign. Where are you from?' + + "'Then I shall never see her. Athens.' + + "Another five minutes, Mr. Holmes, and I should have wormed out the + whole story under their very noses. My very next question might have + cleared the matter up, but at that instant the door opened and a + woman stepped into the room. I could not see her clearly enough to + know more than that she was tall and graceful, with black hair, and + clad in some sort of loose white gown. + + "'Harold,' said she, speaking English with a broken accent. 'I could + not stay away longer. It is so lonely up there with only--Oh, my + God, it is Paul!' + + "These last words were in Greek, and at the same instant the man with + a convulsive effort tore the plaster from his lips, and screaming out + 'Sophy! Sophy!' rushed into the woman's arms. Their embrace was but + for an instant, however, for the younger man seized the woman and + pushed her out of the room, while the elder easily overpowered his + emaciated victim, and dragged him away through the other door. For a + moment I was left alone in the room, and I sprang to my feet with + some vague idea that I might in some way get a clue to what this + house was in which I found myself. Fortunately, however, I took no + steps, for looking up I saw that the older man was standing in the + door-way with his eyes fixed upon me. + + "'That will do, Mr. Melas,' said he. 'You perceive that we have + taken you into our confidence over some very private business. We + should not have troubled you, only that our friend who speaks Greek + and who began these negotiations has been forced to return to the + East. It was quite necessary for us to find some one to take his + place, and we were fortunate in hearing of your powers.' + + "I bowed. + + "'There are five sovereigns here,' said he, walking up to me, 'which + will, I hope, be a sufficient fee. But remember,' he added, tapping + me lightly on the chest and giggling, 'if you speak to a human soul + about this--one human soul, mind--well, may God have mercy upon your + soul!' + + "I cannot tell you the loathing and horror with which this + insignificant-looking man inspired me. I could see him better now as + the lamp-light shone upon him. His features were peaky and sallow, + and his little pointed beard was thready and ill-nourished. He + pushed his face forward as he spoke and his lips and eyelids were + continually twitching like a man with St. Vitus's dance. I could not + help thinking that his strange, catchy little laugh was also a + symptom of some nervous malady. The terror of his face lay in his + eyes, however, steel gray, and glistening coldly with a malignant, + inexorable cruelty in their depths. + + "'We shall know if you speak of this,' said he. 'We have our own + means of information. Now you will find the carriage waiting, and my + friend will see you on your way.' + + "I was hurried through the hall and into the vehicle, again obtaining + that momentary glimpse of trees and a garden. Mr. Latimer followed + closely at my heels, and took his place opposite to me without a + word. In silence we again drove for an interminable distance with + the windows raised, until at last, just after midnight, the carriage + pulled up. + + "'You will get down here, Mr. Melas,' said my companion. 'I am sorry + to leave you so far from your house, but there is no alternative. + Any attempt upon your part to follow the carriage can only end in + injury to yourself.' + + "He opened the door as he spoke, and I had hardly time to spring out + when the coachman lashed the horse and the carriage rattled away. I + looked around me in astonishment. I was on some sort of a heathy + common mottled over with dark clumps of furze-bushes. Far away + stretched a line of houses, with a light here and there in the upper + windows. On the other side I saw the red signal-lamps of a railway. + + "The carriage which had brought me was already out of sight. I stood + gazing round and wondering where on earth I might be, when I saw some + one coming towards me in the darkness. As he came up to me I made + out that he was a railway porter. + + "'Can you tell me what place this is?' I asked. + + "'Wandsworth Common,' said he. + + "'Can I get a train into town?' + + "'If you walk on a mile or so to Clapham Junction,' said he, 'you'll + just be in time for the last to Victoria.' + + "So that was the end of my adventure, Mr. Holmes. I do not know + where I was, nor whom I spoke with, nor anything save what I have + told you. But I know that there is foul play going on, and I want to + help that unhappy man if I can. I told the whole story to Mr. + Mycroft Holmes next morning, and subsequently to the police." + + We all sat in silence for some little time after listening to this + extraordinary narrative. Then Sherlock looked across at his brother. + + "Any steps?" he asked. + + Mycroft picked up the Daily News, which was lying on the side-table. + + "Anybody supplying any information as to the whereabouts of a Greek + gentleman named Paul Kratides, from Athens, who is unable to speak + English, will be rewarded. A similar reward paid to any one giving + information about a Greek lady whose first name is Sophy. X 2473. + + "That was in all the dailies. No answer." + + "How about the Greek Legation?" + + "I have inquired. They know nothing." + + "A wire to the head of the Athens police, then?" + + "Sherlock has all the energy of the family," said Mycroft, turning to + me. "Well, you take the case up by all means, and let me know if you + do any good." + + "Certainly," answered my friend, rising from his chair. "I'll let + you know, and Mr. Melas also. In the meantime, Mr. Melas, I should + certainly be on my guard, if I were you, for of course they must know + through these advertisements that you have betrayed them." + + As we walked home together, Holmes stopped at a telegraph office and + sent off several wires. + + "You see, Watson," he remarked, "our evening has been by no means + wasted. Some of my most interesting cases have come to me in this + way through Mycroft. The problem which we have just listened to, + although it can admit of but one explanation, has still some + distinguishing features." + + "You have hopes of solving it?" + + "Well, knowing as much as we do, it will be singular indeed if we + fail to discover the rest. You must yourself have formed some theory + which will explain the facts to which we have listened." + + "In a vague way, yes." + + "What was your idea, then?" + + "It seemed to me to be obvious that this Greek girl had been carried + off by the young Englishman named Harold Latimer." + + "Carried off from where?" + + "Athens, perhaps." + + Sherlock Holmes shook his head. "This young man could not talk a + word of Greek. The lady could talk English fairly well. + Inference--that she had been in England some little time, but he had + not been in Greece." + + "Well, then, we will presume that she had come on a visit to England, + and that this Harold had persuaded her to fly with him." + + "That is more probable." + + "Then the brother--for that, I fancy, must be the relationship--comes + over from Greece to interfere. He imprudently puts himself into the + power of the young man and his older associate. They seize him and + use violence towards him in order to make him sign some papers to + make over the girl's fortune--of which he may be trustee--to them. + This he refuses to do. In order to negotiate with him they have to + get an interpreter, and they pitch upon this Mr. Melas, having used + some other one before. The girl is not told of the arrival of her + brother, and finds it out by the merest accident." + + "Excellent, Watson!" cried Holmes. "I really fancy that you are not + far from the truth. You see that we hold all the cards, and we have + only to fear some sudden act of violence on their part. If they give + us time we must have them." + + "But how can we find where this house lies?" + + "Well, if our conjecture is correct and the girl's name is or was + Sophy Kratides, we should have no difficulty in tracing her. That + must be our main hope, for the brother is, of course, a complete + stranger. It is clear that some time has elapsed since this Harold + established these relations with the girl--some weeks, at any + rate--since the brother in Greece has had time to hear of it and come + across. If they have been living in the same place during this time, + it is probable that we shall have some answer to Mycroft's + advertisement." + + We had reached our house in Baker Street while we had been talking. + Holmes ascended the stair first, and as he opened the door of our + room he gave a start of surprise. Looking over his shoulder, I was + equally astonished. His brother Mycroft was sitting smoking in the + arm-chair. + + "Come in, Sherlock! Come in, sir," said he blandly, smiling at our + surprised faces. "You don't expect such energy from me, do you, + Sherlock? But somehow this case attracts me." + + "How did you get here?" + + "I passed you in a hansom." + + "There has been some new development?" + + "I had an answer to my advertisement." + + "Ah!" + + "Yes, it came within a few minutes of your leaving." + + "And to what effect?" + + Mycroft Holmes took out a sheet of paper. + + "Here it is," said he, "written with a J pen on royal cream paper by + a middle-aged man with a weak constitution. + + "Sir [he says]: + "In answer to your advertisement of to-day's date, I beg to inform + you that I know the young lady in question very well. If you should + care to call upon me I could give you some particulars as to her + painful history. She is living at present at The Myrtles, Beckenham. + "Yours faithfully, + "J. Davenport. + + "He writes from Lower Brixton," said Mycroft Holmes. "Do you not + think that we might drive to him now, Sherlock, and learn these + particulars?" + + "My dear Mycroft, the brother's life is more valuable than the + sister's story. I think we should call at Scotland Yard for + Inspector Gregson, and go straight out to Beckenham. We know that a + man is being done to death, and every hour may be vital." + + "Better pick up Mr. Melas on our way," I suggested. "We may need an + interpreter." + + "Excellent," said Sherlock Holmes. "Send the boy for a four-wheeler, + and we shall be off at once." He opened the table-drawer as he + spoke, and I noticed that he slipped his revolver into his pocket. + "Yes," said he, in answer to my glance; "I should say from what we + have heard, that we are dealing with a particularly dangerous gang." + + It was almost dark before we found ourselves in Pall Mall, at the + rooms of Mr. Melas. A gentleman had just called for him, and he was + gone. + + "Can you tell me where?" asked Mycroft Holmes. + + "I don't know, sir," answered the woman who had opened the door; "I + only know that he drove away with the gentleman in a carriage." + + "Did the gentleman give a name?" + + "No, sir." + + "He wasn't a tall, handsome, dark young man?" + + "Oh, no, sir. He was a little gentleman, with glasses, thin in the + face, but very pleasant in his ways, for he was laughing all the time + that he was talking." + + "Come along!" cried Sherlock Holmes, abruptly. "This grows serious," + he observed, as we drove to Scotland Yard. "These men have got hold + of Melas again. He is a man of no physical courage, as they are well + aware from their experience the other night. This villain was able + to terrorize him the instant that he got into his presence. No doubt + they want his professional services, but, having used him, they may + be inclined to punish him for what they will regard as his + treachery." + + Our hope was that, by taking train, we might get to Beckenham as soon + or sooner than the carriage. On reaching Scotland Yard, however, it + was more than an hour before we could get Inspector Gregson and + comply with the legal formalities which would enable us to enter the + house. It was a quarter to ten before we reached London Bridge, and + half past before the four of us alighted on the Beckenham platform. + A drive of half a mile brought us to The Myrtles--a large, dark house + standing back from the road in its own grounds. Here we dismissed + our cab, and made our way up the drive together. + + "The windows are all dark," remarked the inspector. "The house seems + deserted." + + "Our birds are flown and the nest empty," said Holmes. + + "Why do you say so?" + + "A carriage heavily loaded with luggage has passed out during the + last hour." + + The inspector laughed. "I saw the wheel-tracks in the light of the + gate-lamp, but where does the luggage come in?" + + "You may have observed the same wheel-tracks going the other way. + But the outward-bound ones were very much deeper--so much so that we + can say for a certainty that there was a very considerable weight on + the carriage." + + "You get a trifle beyond me there," said the inspector, shrugging his + shoulder. "It will not be an easy door to force, but we will try if + we cannot make some one hear us." + + He hammered loudly at the knocker and pulled at the bell, but without + any success. Holmes had slipped away, but he came back in a few + minutes. + + "I have a window open," said he. + + "It is a mercy that you are on the side of the force, and not against + it, Mr. Holmes," remarked the inspector, as he noted the clever way + in which my friend had forced back the catch. "Well, I think that + under the circumstances we may enter without an invitation." + + One after the other we made our way into a large apartment, which was + evidently that in which Mr. Melas had found himself. The inspector + had lit his lantern, and by its light we could see the two doors, the + curtain, the lamp, and the suit of Japanese mail as he had described + them. On the table lay two glasses, and empty brandy-bottle, and the + remains of a meal. + + "What is that?" asked Holmes, suddenly. + + We all stood still and listened. A low moaning sound was coming from + somewhere over our heads. Holmes rushed to the door and out into the + hall. The dismal noise came from upstairs. He dashed up, the + inspector and I at his heels, while his brother Mycroft followed as + quickly as his great bulk would permit. + + Three doors faced up upon the second floor, and it was from the + central of these that the sinister sounds were issuing, sinking + sometimes into a dull mumble and rising again into a shrill whine. + It was locked, but the key had been left on the outside. Holmes + flung open the door and rushed in, but he was out again in an + instant, with his hand to his throat. + + "It's charcoal," he cried. "Give it time. It will clear." + + Peering in, we could see that the only light in the room came from a + dull blue flame which flickered from a small brass tripod in the + centre. It threw a livid, unnatural circle upon the floor, while in + the shadows beyond we saw the vague loom of two figures which + crouched against the wall. From the open door there reeked a + horrible poisonous exhalation which set us gasping and coughing. + Holmes rushed to the top of the stairs to draw in the fresh air, and + then, dashing into the room, he threw up the window and hurled the + brazen tripod out into the garden. + + "We can enter in a minute," he gasped, darting out again. "Where is + a candle? I doubt if we could strike a match in that atmosphere. + Hold the light at the door and we shall get them out, Mycroft. Now!" + + With a rush we got to the poisoned men and dragged them out into the + well-lit hall. Both of them were blue-lipped and insensible, with + swollen, congested faces and protruding eyes. Indeed, so distorted + were their features that, save for his black beard and stout figure, + we might have failed to recognize in one of them the Greek + interpreter who had parted from us only a few hours before at the + Diogenes Club. His hands and feet were securely strapped together, + and he bore over one eye the marks of a violent blow. The other, who + was secured in a similar fashion, was a tall man in the last stage of + emaciation, with several strips of sticking-plaster arranged in a + grotesque pattern over his face. He had ceased to moan as we laid + him down, and a glance showed me that for him at least our aid had + come too late. Mr. Melas, however, still lived, and in less than an + hour, with the aid of ammonia and brandy I had the satisfaction of + seeing him open his eyes, and of knowing that my hand had drawn him + back from that dark valley in which all paths meet. + + It was a simple story which he had to tell, and one which did but + confirm our own deductions. His visitor, on entering his rooms, had + drawn a life-preserver from his sleeve, and had so impressed him with + the fear of instant and inevitable death that he had kidnapped him + for the second time. Indeed, it was almost mesmeric, the effect + which this giggling ruffian had produced upon the unfortunate + linguist, for he could not speak of him save with trembling hands and + a blanched cheek. He had been taken swiftly to Beckenham, and had + acted as interpreter in a second interview, even more dramatic than + the first, in which the two Englishmen had menaced their prisoner + with instant death if he did not comply with their demands. Finally, + finding him proof against every threat, they had hurled him back into + his prison, and after reproaching Melas with his treachery, which + appeared from the newspaper advertisement, they had stunned him with + a blow from a stick, and he remembered nothing more until he found us + bending over him. + + And this was the singular case of the Grecian Interpreter, the + explanation of which is still involved in some mystery. We were able + to find out, by communicating with the gentleman who had answered the + advertisement, that the unfortunate young lady came of a wealthy + Grecian family, and that she had been on a visit to some friends in + England. While there she had met a young man named Harold Latimer, + who had acquired an ascendancy over her and had eventually persuaded + her to fly with him. Her friends, shocked at the event, had + contented themselves with informing her brother at Athens, and had + then washed their hands of the matter. The brother, on his arrival + in England, had imprudently placed himself in the power of Latimer + and of his associate, whose name was Wilson Kemp--a man of the + foulest antecedents. These two, finding that through his ignorance + of the language he was helpless in their hands, had kept him a + prisoner, and had endeavored by cruelty and starvation to make him + sign away his own and his sister's property. They had kept him in + the house without the girl's knowledge, and the plaster over the face + had been for the purpose of making recognition difficult in case she + should ever catch a glimpse of him. Her feminine perception, + however, had instantly seen through the disguise when, on the + occasion of the interpreter's visit, she had seen him for the first + time. The poor girl, however, was herself a prisoner, for there was + no one about the house except the man who acted as coachman, and his + wife, both of whom were tools of the conspirators. Finding that + their secret was out, and that their prisoner was not to be coerced, + the two villains with the girl had fled away at a few hours' notice + from the furnished house which they had hired, having first, as they + thought, taken vengeance both upon the man who had defied and the one + who had betrayed them. + + Months afterwards a curious newspaper cutting reached us from + Buda-Pesth. It told how two Englishmen who had been traveling with a + woman had met with a tragic end. They had each been stabbed, it + seems, and the Hungarian police were of opinion that they had + quarreled and had inflicted mortal injuries upon each other. Holmes, + however, is, I fancy, of a different way of thinking, and holds to + this day that, if one could find the Grecian girl, one might learn + how the wrongs of herself and her brother came to be avenged. + + + + + + + THE NAVAL TREATY + + The July which immediately succeeded my marriage was made memorable + by three cases of interest, in which I had the privilege of being + associated with Sherlock Holmes and of studying his methods. I find + them recorded in my notes under the headings of "The Adventure of the + Second Stain," "The Adventure of the Naval Treaty," and "The + Adventure of the Tired Captain." The first of these, however, deals + with interest of such importance and implicates so many of the first + families in the kingdom that for many years it will be impossible to + make it public. No case, however, in which Holmes was engaged has + ever illustrated the value of his analytical methods so clearly or + has impressed those who were associated with him so deeply. I still + retain an almost verbatim report of the interview in which he + demonstrated the true facts of the case to Monsieur Dubugue of the + Paris police, and Fritz von Waldbaum, the well-known specialist of + Dantzig, both of whom had wasted their energies upon what proved to + be side-issues. The new century will have come, however, before the + story can be safely told. Meanwhile I pass on to the second on my + list, which promised also at one time to be of national importance, + and was marked by several incidents which give it a quite unique + character. + + During my school-days I had been intimately associated with a lad + named Percy Phelps, who was of much the same age as myself, though he + was two classes ahead of me. He was a very brilliant boy, and carried + away every prize which the school had to offer, finishing his + exploits by winning a scholarship which sent him on to continue his + triumphant career at Cambridge. He was, I remember, extremely well + connected, and even when we were all little boys together we knew + that his mother's brother was Lord Holdhurst, the great conservative + politician. This gaudy relationship did him little good at school. On + the contrary, it seemed rather a piquant thing to us to chevy him + about the playground and hit him over the shins with a wicket. But it + was another thing when he came out into the world. I heard vaguely + that his abilities and the influences which he commanded had won him + a good position at the Foreign Office, and then he passed completely + out of my mind until the following letter recalled his existence: + + Briarbrae, Woking. + My dear Watson: + I have no doubt that you can remember "Tadpole" Phelps, who was in + the fifth form when you were in the third. It is possible even that + you may have heard that through my uncle's influence I obtained a + good appointment at the Foreign Office, and that I was in a situation + of trust and honor until a horrible misfortune came suddenly to blast + my career. + There is no use writing of the details of that dreadful event. In the + event of your acceding to my request it is probable that I shall have + to narrate them to you. I have only just recovered from nine weeks of + brain-fever, and am still exceedingly weak. Do you think that you + could bring your friend Mr. Holmes down to see me? I should like to + have his opinion of the case, though the authorities assure me that + nothing more can be done. Do try to bring him down, and as soon as + possible. Every minute seems an hour while I live in this state of + horrible suspense. Assure him that if I have not asked his advice + sooner it was not because I did not appreciate his talents, but + because I have been off my head ever since the blow fell. Now I am + clear again, though I dare not think of it too much for fear of a + relapse. I am still so weak that I have to write, as you see, by + dictating. Do try to bring him. + Your old school-fellow, + Percy Phelps. + + There was something that touched me as I read this letter, something + pitiable in the reiterated appeals to bring Holmes. So moved was I + that even had it been a difficult matter I should have tried it, but + of course I knew well that Holmes loved his art, so that he was ever + as ready to bring his aid as his client could be to receive it. My + wife agreed with me that not a moment should be lost in laying the + matter before him, and so within an hour of breakfast-time I found + myself back once more in the old rooms in Baker Street. + + Holmes was seated at his side-table clad in his dressing-gown, and + working hard over a chemical investigation. A large curved retort was + boiling furiously in the bluish flame of a Bunsen burner, and the + distilled drops were condensing into a two-litre measure. My friend + hardly glanced up as I entered, and I, seeing that his investigation + must be of importance, seated myself in an arm-chair and waited. He + dipped into this bottle or that, drawing out a few drops of each with + his glass pipette, and finally brought a test-tube containing a + solution over to the table. In his right hand he held a slip of + litmus-paper. + + "You come at a crisis, Watson," said he. "If this paper remains blue, + all is well. If it turns red, it means a man's life." He dipped it + into the test-tube and it flushed at once into a dull, dirty crimson. + "Hum! I thought as much!" he cried. "I will be at your service in an + instant, Watson. You will find tobacco in the Persian slipper." He + turned to his desk and scribbled off several telegrams, which were + handed over to the page-boy. Then he threw himself down into the + chair opposite, and drew up his knees until his fingers clasped round + his long, thin shins. + + "A very commonplace little murder," said he. "You've got something + better, I fancy. You are the stormy petrel of crime, Watson. What is + it?" + + I handed him the letter, which he read with the most concentrated + attention. + + "It does not tell us very much, does it?" he remarked, as he handed + it back to me. + + "Hardly anything." + + "And yet the writing is of interest." + + "But the writing is not his own." + + "Precisely. It is a woman's." + + "A man's surely," I cried. + + "No, a woman's, and a woman of rare character. You see, at the + commencement of an investigation it is something to know that your + client is in close contact with some one who, for good or evil, has + an exceptional nature. My interest is already awakened in the case. + If you are ready we will start at once for Woking, and see this + diplomatist who is in such evil case, and the lady to whom he + dictates his letters." + + We were fortunate enough to catch an early train at Waterloo, and in + a little under an hour we found ourselves among the fir-woods and the + heather of Woking. Briarbrae proved to be a large detached house + standing in extensive grounds within a few minutes' walk of the + station. On sending in our cards we were shown into an elegantly + appointed drawing-room, where we were joined in a few minutes by a + rather stout man who received us with much hospitality. His age may + have been nearer forty than thirty, but his cheeks were so ruddy and + his eyes so merry that he still conveyed the impression of a plump + and mischievous boy. + + "I am so glad that you have come," said he, shaking our hands with + effusion. "Percy has been inquiring for you all morning. Ah, poor old + chap, he clings to any straw! His father and his mother asked me to + see you, for the mere mention of the subject is very painful to + them." + + "We have had no details yet," observed Holmes. "I perceive that you + are not yourself a member of the family." + + Our acquaintance looked surprised, and then, glancing down, he began + to laugh. + + "Of course you saw the J H monogram on my locket," said he. "For a + moment I thought you had done something clever. Joseph Harrison is my + name, and as Percy is to marry my sister Annie I shall at least be a + relation by marriage. You will find my sister in his room, for she + has nursed him hand-and-foot this two months back. Perhaps we'd + better go in at once, for I know how impatient he is." + + The chamber in which we were shown was on the same floor as the + drawing-room. It was furnished partly as a sitting and partly as a + bedroom, with flowers arranged daintily in every nook and corner. A + young man, very pale and worn, was lying upon a sofa near the open + window, through which came the rich scent of the garden and the balmy + summer air. A woman was sitting beside him, who rose as we entered. + + "Shall I leave, Percy?" she asked. + + He clutched her hand to detain her. "How are you, Watson?" said he, + cordially. "I should never have known you under that moustache, and I + dare say you would not be prepared to swear to me. This I presume is + your celebrated friend, Mr. Sherlock Holmes?" + + I introduced him in a few words, and we both sat down. The stout + young man had left us, but his sister still remained with her hand in + that of the invalid. She was a striking-looking woman, a little short + and thick for symmetry, but with a beautiful olive complexion, large, + dark, Italian eyes, and a wealth of deep black hair. Her rich tints + made the white face of her companion the more worn and haggard by the + contrast. + + "I won't waste your time," said he, raising himself upon the sofa. + "I'll plunge into the matter without further preamble. I was a happy + and successful man, Mr. Holmes, and on the eve of being married, when + a sudden and dreadful misfortune wrecked all my prospects in life. + + "I was, as Watson may have told you, in the Foreign Office, and + through the influences of my uncle, Lord Holdhurst, I rose rapidly to + a responsible position. When my uncle became foreign minister in this + administration he gave me several missions of trust, and as I always + brought them to a successful conclusion, he came at last to have the + utmost confidence in my ability and tact. + + "Nearly ten weeks ago--to be more accurate, on the twenty-third of + May--he called me into his private room, and, after complimenting me + on the good work which I had done, he informed me that he had a new + commission of trust for me to execute. + + "'This,' said he, taking a gray roll of paper from his bureau, 'is + the original of that secret treaty between England and Italy of + which, I regret to say, some rumors have already got into the public + press. It is of enormous importance that nothing further should leak + out. The French or the Russian embassy would pay an immense sum to + learn the contents of these papers. They should not leave my bureau + were it not that it is absolutely necessary to have them copied. You + have a desk in your office?' + + "'Yes, sir.' + + "'Then take the treaty and lock it up there. I shall give directions + that you may remain behind when the others go, so that you may copy + it at your leisure without fear of being overlooked. When you have + finished, relock both the original and the draft in the desk, and + hand them over to me personally to-morrow morning.' + + "I took the papers and--" + + "Excuse me an instant," said Holmes. "Were you alone during this + conversation?" + + "Absolutely." + + "In a large room?" + + "Thirty feet each way." + + "In the centre?" + + "Yes, about it." + + "And speaking low?" + + "My uncle's voice is always remarkably low. I hardly spoke at all." + + "Thank you," said Holmes, shutting his eyes; "pray go on." + + "I did exactly what he indicated, and waited until the other clerks + had departed. One of them in my room, Charles Gorot, had some arrears + of work to make up, so I left him there and went out to dine. When I + returned he was gone. I was anxious to hurry my work, for I knew that + Joseph--the Mr. Harrison whom you saw just now--was in town, and that + he would travel down to Woking by the eleven-o'clock train, and I + wanted if possible to catch it. + + "When I came to examine the treaty I saw at once that it was of such + importance that my uncle had been guilty of no exaggeration in what + he had said. Without going into details, I may say that it defined + the position of Great Britain towards the Triple Alliance, and + fore-shadowed the policy which this country would pursue in the event + of the French fleet gaining a complete ascendancy over that of Italy + in the Mediterranean. The questions treated in it were purely naval. + At the end were the signatures of the high dignitaries who had signed + it. I glanced my eyes over it, and then settled down to my task of + copying. + + "It was a long document, written in the French language, and + containing twenty-six separate articles. I copied as quickly as I + could, but at nine o'clock I had only done nine articles, and it + seemed hopeless for me to attempt to catch my train. I was feeling + drowsy and stupid, partly from my dinner and also from the effects of + a long day's work. A cup of coffee would clear my brain. A + commissionaire remains all night in a little lodge at the foot of the + stairs, and is in the habit of making coffee at his spirit-lamp for + any of the officials who may be working over time. I rang the bell, + therefore, to summon him. + + "To my surprise, it was a woman who answered the summons, a large, + coarse-faced, elderly woman, in an apron. She explained that she was + the commissionaire's wife, who did the charing, and I gave her the + order for the coffee. + + "I wrote two more articles and then, feeling more drowsy than ever, I + rose and walked up and down the room to stretch my legs. My coffee + had not yet come, and I wondered what was the cause of the delay + could be. Opening the door, I started down the corridor to find out. + There was a straight passage, dimly lighted, which led from the room + in which I had been working, and was the only exit from it. It ended + in a curving staircase, with the commissionaire's lodge in the + passage at the bottom. Half way down this staircase is a small + landing, with another passage running into it at right angles. This + second one leads by means of a second small stair to a side door, + used by servants, and also as a short cut by clerks when coming from + Charles Street. Here is a rough chart of the place." + + "Thank you. I think that I quite follow you," said Sherlock Holmes. + + "It is of the utmost importance that you should notice this point. I + went down the stairs and into the hall, where I found the + commissionaire fast asleep in his box, with the kettle boiling + furiously upon the spirit-lamp. I took off the kettle and blew out + the lamp, for the water was spurting over the floor. Then I put out + my hand and was about to shake the man, who was still sleeping + soundly, when a bell over his head rang loudly, and he woke with a + start. + + "'Mr. Phelps, sir!' said he, looking at me in bewilderment. + + "'I came down to see if my coffee was ready.' + + "'I was boiling the kettle when I fell asleep, sir.' He looked at me + and then up at the still quivering bell with an ever-growing + astonishment upon his face. + + "'If you was here, sir, then who rang the bell?' he asked. + + "'The bell!' I cried. 'What bell is it?' + + "'It's the bell of the room you were working in.' + + "A cold hand seemed to close round my heart. Some one, then, was in + that room where my precious treaty lay upon the table. I ran + frantically up the stair and along the passage. There was no one in + the corridors, Mr. Holmes. There was no one in the room. All was + exactly as I left it, save only that the papers which had been + committed to my care had been taken from the desk on which they lay. + The copy was there, and the original was gone." + + Holmes sat up in his chair and rubbed his hands. I could see that the + problem was entirely to his heart. "Pray, what did you do then?" he + murmured. + + "I recognized in an instant that the thief must have come up the + stairs from the side door. Of course I must have met him if he had + come the other way." + + "You were satisfied that he could not have been concealed in the room + all the time, or in the corridor which you have just described as + dimly lighted?" + + "It is absolutely impossible. A rat could not conceal himself either + in the room or the corridor. There is no cover at all." + + "Thank you. Pray proceed." + + "The commissionaire, seeing by my pale face that something was to be + feared, had followed me upstairs. Now we both rushed along the + corridor and down the steep steps which led to Charles Street. The + door at the bottom was closed, but unlocked. We flung it open and + rushed out. I can distinctly remember that as we did so there came + three chimes from a neighboring clock. It was quarter to ten." + + "That is of enormous importance," said Holmes, making a note upon his + shirt-cuff. + + "The night was very dark, and a thin, warm rain was falling. There + was no one in Charles Street, but a great traffic was going on, as + usual, in Whitehall, at the extremity. We rushed along the pavement, + bare-headed as we were, and at the far corner we found a policeman + standing. + + "'A robbery has been committed,' I gasped. 'A document of immense + value has been stolen from the Foreign Office. Has any one passed + this way?' + + "'I have been standing here for a quarter of an hour, sir,' said he; + 'only one person has passed during that time--a woman, tall and + elderly, with a Paisley shawl.' + + "'Ah, that is only my wife,' cried the commissionaire; 'has no one + else passed?' + + "'No one.' + + "'Then it must be the other way that the thief took,' cried the + fellow, tugging at my sleeve. + + "But I was not satisfied, and the attempts which he made to draw me + away increased my suspicions. + + "'Which way did the woman go?' I cried. + + "'I don't know, sir. I noticed her pass, but I had no special reason + for watching her. She seemed to be in a hurry.' + + "'How long ago was it?' + + "'Oh, not very many minutes.' + + "'Within the last five?' + + "'Well, it could not be more than five.' + + "'You're only wasting your time, sir, and every minute now is of + importance,' cried the commissionaire; 'take my word for it that my + old woman has nothing to do with it, and come down to the other end + of the street. Well, if you won't, I will.' And with that he rushed + off in the other direction. + + "But I was after him in an instant and caught him by the sleeve. + + "'Where do you live?' said I. + + "'16 Ivy Lane, Brixton,' he answered. 'But don't let yourself be + drawn away upon a false scent, Mr. Phelps. Come to the other end of + the street and let us see if we can hear of anything.' + + "Nothing was to be lost by following his advice. With the policeman + we both hurried down, but only to find the street full of traffic, + many people coming and going, but all only too eager to get to a + place of safety upon so wet a night. There was no lounger who could + tell us who had passed. + + "Then we returned to the office, and searched the stairs and the + passage without result. The corridor which led to the room was laid + down with a kind of creamy linoleum which shows an impression very + easily. We examined it very carefully, but found no outline of any + footmark." + + "Had it been raining all evening?" + + "Since about seven." + + "How is it, then, that the woman who came into the room about nine + left no traces with her muddy boots?" + + "I am glad you raised the point. It occurred to me at the time. The + charwomen are in the habit of taking off their boots at the + commissionaire's office, and putting on list slippers." + + "That is very clear. There were no marks, then, though the night was + a wet one? The chain of events is certainly one of extraordinary + interest. What did you do next?" + + "We examined the room also. There is no possibility of a secret door, + and the windows are quite thirty feet from the ground. Both of them + were fastened on the inside. The carpet prevents any possibility of a + trap-door, and the ceiling is of the ordinary whitewashed kind. I + will pledge my life that whoever stole my papers could only have come + through the door." + + "How about the fireplace?" + + "They use none. There is a stove. The bell-rope hangs from the wire + just to the right of my desk. Whoever rang it must have come right up + to the desk to do it. But why should any criminal wish to ring the + bell? It is a most insoluble mystery." + + "Certainly the incident was unusual. What were your next steps? You + examined the room, I presume, to see if the intruder had left any + traces--any cigar-end or dropped glove or hairpin or other trifle?" + + "There was nothing of the sort." + + "No smell?" + + "Well, we never thought of that." + + "Ah, a scent of tobacco would have been worth a great deal to us in + such an investigation." + + "I never smoke myself, so I think I should have observed it if there + had been any smell of tobacco. There was absolutely no clue of any + kind. The only tangible fact was that the commissionaire's wife--Mrs. + Tangey was the name--had hurried out of the place. He could give no + explanation save that it was about the time when the woman always + went home. The policeman and I agreed that our best plan would be to + seize the woman before she could get rid of the papers, presuming + that she had them. + + "The alarm had reached Scotland Yard by this time, and Mr. Forbes, + the detective, came round at once and took up the case with a great + deal of energy. We hired a hansom, and in half an hour we were at the + address which had been given to us. A young woman opened the door, + who proved to be Mrs. Tangey's eldest daughter. Her mother had not + come back yet, and we were shown into the front room to wait. + + "About ten minutes later a knock came at the door, and here we made + the one serious mistake for which I blame myself. Instead of opening + the door ourselves, we allowed the girl to do so. We heard her say, + 'Mother, there are two men in the house waiting to see you,' and an + instant afterwards we heard the patter of feet rushing down the + passage. Forbes flung open the door, and we both ran into the back + room or kitchen, but the woman had got there before us. She stared at + us with defiant eyes, and then, suddenly recognizing me, an + expression of absolute astonishment came over her face. + + "'Why, if it isn't Mr. Phelps, of the office!' she cried. + + "'Come, come, who did you think we were when you ran away from us?' + asked my companion. + + "'I thought you were the brokers,' said she, 'we have had some + trouble with a tradesman.' + + "'That's not quite good enough,' answered Forbes. 'We have reason to + believe that you have taken a paper of importance from the Foreign + Office, and that you ran in here to dispose of it. You must come back + with us to Scotland Yard to be searched.' + + "It was in vain that she protested and resisted. A four-wheeler was + brought, and we all three drove back in it. We had first made an + examination of the kitchen, and especially of the kitchen fire, to + see whether she might have made away with the papers during the + instant that she was alone. There were no signs, however, of any + ashes or scraps. When we reached Scotland Yard she was handed over at + once to the female searcher. I waited in an agony of suspense until + she came back with her report. There were no signs of the papers. + + "Then for the first time the horror of my situation came in its full + force. Hitherto I had been acting, and action had numbed thought. I + had been so confident of regaining the treaty at once that I had not + dared to think of what would be the consequence if I failed to do so. + But now there was nothing more to be done, and I had leisure to + realize my position. It was horrible. Watson there would tell you + that I was a nervous, sensitive boy at school. It is my nature. I + thought of my uncle and of his colleagues in the Cabinet, of the + shame which I had brought upon him, upon myself, upon every one + connected with me. What though I was the victim of an extraordinary + accident? No allowance is made for accidents where diplomatic + interests are at stake. I was ruined, shamefully, hopelessly ruined. + I don't know what I did. I fancy I must have made a scene. I have a + dim recollection of a group of officials who crowded round me, + endeavoring to soothe me. One of them drove down with me to Waterloo, + and saw me into the Woking train. I believe that he would have come + all the way had it not been that Dr. Ferrier, who lives near me, was + going down by that very train. The doctor most kindly took charge of + me, and it was well he did so, for I had a fit in the station, and + before we reached home I was practically a raving maniac. + + "You can imagine the state of things here when they were roused from + their beds by the doctor's ringing and found me in this condition. + Poor Annie here and my mother were broken-hearted. Dr. Ferrier had + just heard enough from the detective at the station to be able to + give an idea of what had happened, and his story did not mend + matters. It was evident to all that I was in for a long illness, so + Joseph was bundled out of this cheery bedroom, and it was turned into + a sick-room for me. Here I have lain, Mr. Holmes, for over nine + weeks, unconscious, and raving with brain-fever. If it had not been + for Miss Harrison here and for the doctor's care I should not be + speaking to you now. She has nursed me by day and a hired nurse has + looked after me by night, for in my mad fits I was capable of + anything. Slowly my reason has cleared, but it is only during the + last three days that my memory has quite returned. Sometimes I wish + that it never had. The first thing that I did was to wire to Mr. + Forbes, who had the case in hand. He came out, and assures me that, + though everything has been done, no trace of a clue has been + discovered. The commissionaire and his wife have been examined in + every way without any light being thrown upon the matter. The + suspicions of the police then rested upon young Gorot, who, as you + may remember, stayed over time in the office that night. His + remaining behind and his French name were really the only two points + which could suggest suspicion; but, as a matter of fact, I did not + begin work until he had gone, and his people are of Huguenot + extraction, but as English in sympathy and tradition as you and I + are. Nothing was found to implicate him in any way, and there the + matter dropped. I turn to you, Mr. Holmes, as absolutely my last + hope. If you fail me, then my honor as well as my position are + forever forfeited." + + The invalid sank back upon his cushions, tired out by this long + recital, while his nurse poured him out a glass of some stimulating + medicine. Holmes sat silently, with his head thrown back and his eyes + closed, in an attitude which might seem listless to a stranger, but + which I knew betokened the most intense self-absorption. + + "You statement has been so explicit," said he at last, "that you have + really left me very few questions to ask. There is one of the very + utmost importance, however. Did you tell any one that you had this + special task to perform?" + + "No one." + + "Not Miss Harrison here, for example?" + + "No. I had not been back to Woking between getting the order and + executing the commission." + + "And none of your people had by chance been to see you?" + + "None." + + "Did any of them know their way about in the office?" + + "Oh, yes, all of them had been shown over it." + + "Still, of course, if you said nothing to any one about the treaty + these inquiries are irrelevant." + + "I said nothing." + + "Do you know anything of the commissionaire?" + + "Nothing except that he is an old soldier." + + "What regiment?" + + "Oh, I have heard--Coldstream Guards." + + "Thank you. I have no doubt I can get details from Forbes. The + authorities are excellent at amassing facts, though they do not + always use them to advantage. What a lovely thing a rose is!" + + He walked past the couch to the open window, and held up the drooping + stalk of a moss-rose, looking down at the dainty blend of crimson and + green. It was a new phase of his character to me, for I had never + before seen him show any keen interest in natural objects. + + "There is nothing in which deduction is so necessary as in religion," + said he, leaning with his back against the shutters. "It can be built + up as an exact science by the reasoner. Our highest assurance of the + goodness of Providence seems to me to rest in the flowers. All other + things, our powers our desires, our food, are all really necessary + for our existence in the first instance. But this rose is an extra. + Its smell and its color are an embellishment of life, not a condition + of it. It is only goodness which gives extras, and so I say again + that we have much to hope from the flowers." + + Percy Phelps and his nurse looked at Holmes during this demonstration + with surprise and a good deal of disappointment written upon their + faces. He had fallen into a reverie, with the moss-rose between his + fingers. It had lasted some minutes before the young lady broke in + upon it. + + "Do you see any prospect of solving this mystery, Mr. Holmes?" she + asked, with a touch of asperity in her voice. + + "Oh, the mystery!" he answered, coming back with a start to the + realities of life. "Well, it would be absurd to deny that the case is + a very abstruse and complicated one, but I can promise you that I + will look into the matter and let you know any points which may + strike me." + + "Do you see any clue?" + + "You have furnished me with seven, but, of course, I must test them + before I can pronounce upon their value." + + "You suspect some one?" + + "I suspect myself." + + "What!" + + "Of coming to conclusions too rapidly." + + "Then go to London and test your conclusions." + + "Your advice is very excellent, Miss Harrison," said Holmes, rising. + "I think, Watson, we cannot do better. Do not allow yourself to + indulge in false hopes, Mr. Phelps. The affair is a very tangled + one." + + "I shall be in a fever until I see you again," cried the diplomatist. + + "Well, I'll come out by the same train to-morrow, though it's more + than likely that my report will be a negative one." + + "God bless you for promising to come," cried our client. "It gives me + fresh life to know that something is being done. By the way, I have + had a letter from Lord Holdhurst." + + "Ha! What did he say?" + + "He was cold, but not harsh. I dare say my severe illness prevented + him from being that. He repeated that the matter was of the utmost + importance, and added that no steps would be taken about my + future--by which he means, of course, my dismissal--until my health + was restored and I had an opportunity of repairing my misfortune." + + "Well, that was reasonable and considerate," said Holmes. "Come, + Watson, for we have a good day's work before us in town." + + Mr. Joseph Harrison drove us down to the station, and we were soon + whirling up in a Portsmouth train. Holmes was sunk in profound + thought, and hardly opened his mouth until we had passed Clapham + Junction. + + "It's a very cheery thing to come into London by any of these lines + which run high, and allow you to look down upon the houses like + this." + + I thought he was joking, for the view was sordid enough, but he soon + explained himself. + + "Look at those big, isolated clumps of building rising up above the + slates, like brick islands in a lead-colored sea." + + "The board-schools." + + "Light-houses, my boy! Beacons of the future! Capsules with hundreds + of bright little seeds in each, out of which will spring the wise, + better England of the future. I suppose that man Phelps does not + drink?" + + "I should not think so." + + "Nor should I, but we are bound to take every possibility into + account. The poor devil has certainly got himself into very deep + water, and it's a question whether we shall ever be able to get him + ashore. What did you think of Miss Harrison?" + + "A girl of strong character." + + "Yes, but she is a good sort, or I am mistaken. She and her brother + are the only children of an iron-master somewhere up Northumberland + way. He got engaged to her when traveling last winter, and she came + down to be introduced to his people, with her brother as escort. Then + came the smash, and she stayed on to nurse her lover, while brother + Joseph, finding himself pretty snug, stayed on too. I've been making + a few independent inquiries, you see. But to-day must be a day of + inquiries." + + "My practice--" I began. + + "Oh, if you find your own cases more interesting than mine--" said + Holmes, with some asperity. + + "I was going to say that my practice could get along very well for a + day or two, since it is the slackest time in the year." + + "Excellent," said he, recovering his good-humor. "Then we'll look + into this matter together. I think that we should begin by seeing + Forbes. He can probably tell us all the details we want until we know + from what side the case is to be approached." + + "You said you had a clue?" + + "Well, we have several, but we can only test their value by further + inquiry. The most difficult crime to track is the one which is + purposeless. Now this is not purposeless. Who is it who profits by + it? There is the French ambassador, there is the Russian, there is + who-ever might sell it to either of these, and there is Lord + Holdhurst." + + "Lord Holdhurst!" + + "Well, it is just conceivable that a statesman might find himself in + a position where he was not sorry to have such a document + accidentally destroyed." + + "Not a statesman with the honorable record of Lord Holdhurst?" + + "It is a possibility and we cannot afford to disregard it. We shall + see the noble lord to-day and find out if he can tell us anything. + Meanwhile I have already set inquiries on foot." + + "Already?" + + "Yes, I sent wires from Woking station to every evening paper in + London. This advertisement will appear in each of them." + + He handed over a sheet torn from a note-book. On it was scribbled in + pencil: + + "£10 reward. The number of the cab which dropped a fare at or about + the door of the Foreign Office in Charles Street at quarter to ten in + the evening of May 23d. Apply 221b, Baker Street." + + "You are confident that the thief came in a cab?" + + "If not, there is no harm done. But if Mr. Phelps is correct in + stating that there is no hiding-place either in the room or the + corridors, then the person must have come from outside. If he came + from outside on so wet a night, and yet left no trace of damp upon + the linoleum, which was examined within a few minutes of his passing, + then it is exceeding probably that he came in a cab. Yes, I think + that we may safely deduce a cab." + + "It sounds plausible." + + "That is one of the clues of which I spoke. It may lead us to + something. And then, of course, there is the bell--which is the most + distinctive feature of the case. Why should the bell ring? Was it the + thief who did it out of bravado? Or was it some one who was with the + thief who did it in order to prevent the crime? Or was it an + accident? Or was it--?" He sank back into the state of intense and + silent thought from which he had emerged; but it seemed to me, + accustomed as I was to his every mood, that some new possibility had + dawned suddenly upon him. + + It was twenty past three when we reached our terminus, and after a + hasty luncheon at the buffet we pushed on at once to Scotland Yard. + Holmes had already wired to Forbes, and we found him waiting to + receive us--a small, foxy man with a sharp but by no means amiable + expression. He was decidedly frigid in his manner to us, especially + when he heard the errand upon which we had come. + + "I've heard of your methods before now, Mr. Holmes," said he, tartly. + "You are ready enough to use all the information that the police can + lay at your disposal, and then you try to finish the case yourself + and bring discredit on them." + + "On the contrary," said Holmes, "out of my last fifty-three cases my + name has only appeared in four, and the police have had all the + credit in forty-nine. I don't blame you for not knowing this, for you + are young and inexperienced, but if you wish to get on in your new + duties you will work with me and not against me." + + "I'd be very glad of a hint or two," said the detective, changing his + manner. "I've certainly had no credit from the case so far." + + "What steps have you taken?" + + "Tangey, the commissionaire, has been shadowed. He left the Guards + with a good character and we can find nothing against him. His wife + is a bad lot, though. I fancy she knows more about this than + appears." + + "Have you shadowed her?" + + "We have set one of our women on to her. Mrs. Tangey drinks, and our + woman has been with her twice when she was well on, but she could get + nothing out of her." + + "I understand that they have had brokers in the house?" + + "Yes, but they were paid off." + + "Where did the money come from?" + + "That was all right. His pension was due. They have not shown any + sign of being in funds." + + "What explanation did she give of having answered the bell when Mr. + Phelps rang for the coffee?" + + "She said that he husband was very tired and she wished to relieve + him." + + "Well, certainly that would agree with his being found a little later + asleep in his chair. There is nothing against them then but the + woman's character. Did you ask her why she hurried away that night? + Her haste attracted the attention of the police constable." + + "She was later than usual and wanted to get home." + + "Did you point out to her that you and Mr. Phelps, who started at + least twenty minutes after he, got home before her?" + + "She explains that by the difference between a 'bus and a hansom." + + "Did she make it clear why, on reaching her house, she ran into the + back kitchen?" + + "Because she had the money there with which to pay off the brokers." + + "She has at least an answer for everything. Did you ask her whether + in leaving she met any one or saw any one loitering about Charles + Street?" + + "She saw no one but the constable." + + "Well, you seem to have cross-examined her pretty thoroughly. What + else have you done?" + + "The clerk Gorot has been shadowed all these nine weeks, but without + result. We can show nothing against him." + + "Anything else?" + + "Well, we have nothing else to go upon--no evidence of any kind." + + "Have you formed a theory about how that bell rang?" + + "Well, I must confess that it beats me. It was a cool hand, whoever + it was, to go and give the alarm like that." + + "Yes, it was a queer thing to do. Many thanks to you for what you + have told me. If I can put the man into your hands you shall hear + from me. Come along, Watson." + + "Where are we going to now?" I asked, as we left the office. + + "We are now going to interview Lord Holdhurst, the cabinet minister + and future premier of England." + + We were fortunate in finding that Lord Holdhurst was still in his + chambers in Downing Street, and on Holmes sending in his card we were + instantly shown up. The statesman received us with that old-fashioned + courtesy for which he is remarkable, and seated us on the two + luxuriant lounges on either side of the fireplace. Standing on the + rug between us, with his slight, tall figure, his sharp features, + thoughtful face, and curling hair prematurely tinged with gray, he + seemed to represent that not too common type, a nobleman who is in + truth noble. + + "Your name is very familiar to me, Mr. Holmes," said he, smiling. + "And, of course, I cannot pretend to be ignorant of the object of + your visit. There has only been one occurrence in these offices which + could call for your attention. In whose interest are you acting, may + I ask?" + + "In that of Mr. Percy Phelps," answered Holmes. + + "Ah, my unfortunate nephew! You can understand that our kinship makes + it the more impossible for me to screen him in any way. I fear that + the incident must have a very prejudicial effect upon his career." + + "But if the document is found?" + + "Ah, that, of course, would be different." + + "I had one or two questions which I wished to ask you, Lord + Holdhurst." + + "I shall be happy to give you any information in my power." + + "Was it in this room that you gave your instructions as to the + copying of the document?" + + "It was." + + "Then you could hardly have been overheard?" + + "It is out of the question." + + "Did you ever mention to any one that it was your intention to give + any one the treaty to be copied?" + + "Never." + + "You are certain of that?" + + "Absolutely." + + "Well, since you never said so, and Mr. Phelps never said so, and + nobody else knew anything of the matter, then the thief's presence in + the room was purely accidental. He saw his chance and he took it." + + The statesman smiled. "You take me out of my province there," said + he. + + Holmes considered for a moment. "There is another very important + point which I wish to discuss with you," said he. "You feared, as I + understand, that very grave results might follow from the details of + this treaty becoming known." + + A shadow passed over the expressive face of the statesman. "Very + grave results indeed." + + "And have they occurred?" + + "Not yet." + + "If the treaty had reached, let us say, the French or Russian Foreign + Office, you would expect to hear of it?" + + "I should," said Lord Holdhurst, with a wry face. + + "Since nearly ten weeks have elapsed, then, and nothing has been + heard, it is not unfair to suppose that for some reason the treaty + has not reached them." + + Lord Holdhurst shrugged his shoulders. + + "We can hardly suppose, Mr. Holmes, that the thief took the treaty in + order to frame it and hang it up." + + "Perhaps he is waiting for a better price." + + "If he waits a little longer he will get no price at all. The treaty + will cease to be secret in a few months." + + "That is most important," said Holmes. "Of course, it is a possible + supposition that the thief has had a sudden illness--" + + "An attack of brain-fever, for example?" asked the statesman, + flashing a swift glance at him. + + "I did not say so," said Holmes, imperturbably. "And now, Lord + Holdhurst, we have already taken up too much of your valuable time, + and we shall wish you good-day." + + "Every success to your investigation, be the criminal who it may," + answered the nobleman, as he bowed us out the door. + + "He's a fine fellow," said Holmes, as we came out into Whitehall. + "But he has a struggle to keep up his position. He is far from rich + and has many calls. You noticed, of course, that his boots had been + re-soled? Now, Watson, I won't detain you from your legitimate work + any longer. I shall do nothing more to-day, unless I have an answer + to my cab advertisement. But I should be extremely obliged to you if + you would come down with me to Woking to-morrow, by the same train + which we took yesterday." + + I met him accordingly next morning and we traveled down to Woking + together. He had had no answer to his advertisement, he said, and no + fresh light had been thrown upon the case. He had, when he so willed + it, the utter immobility of countenance of a red Indian, and I could + not gather from his appearance whether he was satisfied or not with + the position of the case. His conversation, I remember, was about the + Bertillon system of measurements, and he expressed his enthusiastic + admiration of the French savant. + + We found our client still under the charge of his devoted nurse, but + looking considerably better than before. He rose from the sofa and + greeted us without difficulty when we entered. + + "Any news?" he asked, eagerly. + + "My report, as I expected, is a negative one," said Holmes. "I have + seen Forbes, and I have seen your uncle, and I have set one or two + trains of inquiry upon foot which may lead to something." + + "You have not lost heart, then?" + + "By no means." + + "God bless you for saying that!" cried Miss Harrison. "If we keep our + courage and our patience the truth must come out." + + "We have more to tell you than you have for us," said Phelps, + reseating himself upon the couch. + + "I hoped you might have something." + + "Yes, we have had an adventure during the night, and one which might + have proved to be a serious one." His expression grew very grave as + he spoke, and a look of something akin to fear sprang up in his eyes. + "Do you know," said he, "that I begin to believe that I am the + unconscious centre of some monstrous conspiracy, and that my life is + aimed at as well as my honor?" + + "Ah!" cried Holmes. + + "It sounds incredible, for I have not, as far as I know, an enemy in + the world. Yet from last night's experience I can come to no other + conclusion." + + "Pray let me hear it." + + "You must know that last night was the very first night that I have + ever slept without a nurse in the room. I was so much better that I + thought I could dispense with one. I had a night-light burning, + however. Well, about two in the morning I had sunk into a light sleep + when I was suddenly aroused by a slight noise. It was like the sound + which a mouse makes when it is gnawing a plank, and I lay listening + to it for some time under the impression that it must come from that + cause. Then it grew louder, and suddenly there came from the window a + sharp metallic snick. I sat up in amazement. There could be no doubt + what the sounds were now. The first ones had been caused by some one + forcing an instrument through the slit between the sashes, and the + second by the catch being pressed back. + + "There was a pause then for about ten minutes, as if the person were + waiting to see whether the noise had awakened me. Then I heard a + gentle creaking as the window was very slowly opened. I could stand + it no longer, for my nerves are not what they used to be. I sprang + out of bed and flung open the shutters. A man was crouching at the + window. I could see little of him, for he was gone like a flash. He + was wrapped in some sort of cloak which came across the lower part of + his face. One thing only I am sure of, and that is that he had some + weapon in his hand. It looked to me like a long knife. I distinctly + saw the gleam of it as he turned to run." + + "This is most interesting," said Holmes. "Pray what did you do then?" + + "I should have followed him through the open window if I had been + stronger. As it was, I rang the bell and roused the house. It took me + some little time, for the bell rings in the kitchen and the servants + all sleep upstairs. I shouted, however, and that brought Joseph down, + and he roused the others. Joseph and the groom found marks on the bed + outside the window, but the weather has been so dry lately that they + found it hopeless to follow the trail across the grass. There's a + place, however, on the wooden fence which skirts the road which shows + signs, they tell me, as if some one had got over, and had snapped the + top of the rail in doing so. I have said nothing to the local police + yet, for I thought I had best have your opinion first." + + This tale of our client's appeared to have an extraordinary effect + upon Sherlock Holmes. He rose from his chair and paced about the room + in uncontrollable excitement. + + "Misfortunes never come single," said Phelps, smiling, though it was + evident that his adventure had somewhat shaken him. + + "You have certainly had your share," said Holmes. "Do you think you + could walk round the house with me?" + + "Oh, yes, I should like a little sunshine. Joseph will come, too." + + "And I also," said Miss Harrison. + + "I am afraid not," said Holmes, shaking his head. "I think I must ask + you to remain sitting exactly where you are." + + The young lady resumed her seat with an air of displeasure. Her + brother, however, had joined us and we set off all four together. We + passed round the lawn to the outside of the young diplomatist's + window. There were, as he had said, marks upon the bed, but they were + hopelessly blurred and vague. Holmes stopped over them for an + instant, and then rose shrugging his shoulders. + + "I don't think any one could make much of this," said he. "Let us go + round the house and see why this particular room was chose by the + burglar. I should have thought those larger windows of the + drawing-room and dining-room would have had more attractions for + him." + + "They are more visible from the road," suggested Mr. Joseph Harrison. + + "Ah, yes, of course. There is a door here which he might have + attempted. What is it for?" + + "It is the side entrance for trades-people. Of course it is locked at + night." + + "Have you ever had an alarm like this before?" + + "Never," said our client. + + "Do you keep plate in the house, or anything to attract burglars?" + + "Nothing of value." + + Holmes strolled round the house with his hands in his pockets and a + negligent air which was unusual with him. + + "By the way," said he to Joseph Harrison, "you found some place, I + understand, where the fellow scaled the fence. Let us have a look at + that!" + + The plump young man led us to a spot where the top of one of the + wooden rails had been cracked. A small fragment of the wood was + hanging down. Holmes pulled it off and examined it critically. + + "Do you think that was done last night? It looks rather old, does it + not?" + + "Well, possibly so." + + "There are no marks of any one jumping down upon the other side. No, + I fancy we shall get no help here. Let us go back to the bedroom and + talk the matter over." + + Percy Phelps was walking very slowly, leaning upon the arm of his + future brother-in-law. Holmes walked swiftly across the lawn, and we + were at the open window of the bedroom long before the others came + up. + + "Miss Harrison," said Holmes, speaking with the utmost intensity of + manner, "you must stay where you are all day. Let nothing prevent you + from staying where you are all day. It is of the utmost importance." + + "Certainly, if you wish it, Mr. Holmes," said the girl in + astonishment. + + "When you go to bed lock the door of this room on the outside and + keep the key. Promise to do this." + + "But Percy?" + + "He will come to London with us." + + "And am I to remain here?" + + "It is for his sake. You can serve him. Quick! Promise!" + + She gave a quick nod of assent just as the other two came up. + + "Why do you sit moping there, Annie?" cried her brother. "Come out + into the sunshine!" + + "No, thank you, Joseph. I have a slight headache and this room is + deliciously cool and soothing." + + "What do you propose now, Mr. Holmes?" asked our client. + + "Well, in investigating this minor affair we must not lose sight of + our main inquiry. It would be a very great help to me if you would + come up to London with us." + + "At once?" + + "Well, as soon as you conveniently can. Say in an hour." + + "I feel quite strong enough, if I can really be of any help." + + "The greatest possible." + + "Perhaps you would like me to stay there to-night?" + + "I was just going to propose it." + + "Then, if my friend of the night comes to revisit me, he will find + the bird flown. We are all in your hands, Mr. Holmes, and you must + tell us exactly what you would like done. Perhaps you would prefer + that Joseph came with us so as to look after me?" + + "Oh, no; my friend Watson is a medical man, you know, and he'll look + after you. We'll have our lunch here, if you will permit us, and then + we shall all three set off for town together." + + It was arranged as he suggested, though Miss Harrison excused herself + from leaving the bedroom, in accordance with Holmes's suggestion. + What the object of my friend's manoeuvres was I could not conceive, + unless it were to keep the lady away from Phelps, who, rejoiced by + his returning health and by the prospect of action, lunched with us + in the dining-room. Holmes had still more startling surprise for us, + however, for, after accompanying us down to the station and seeing us + into our carriage, he calmly announced that he had no intention of + leaving Woking. + + "There are one or two small points which I should desire to clear up + before I go," said he. "Your absence, Mr. Phelps, will in some ways + rather assist me. Watson, when you reach London you would oblige me + by driving at once to Baker Street with our friend here, and + remaining with him until I see you again. It is fortunate that you + are old school-fellows, as you must have much to talk over. Mr. + Phelps can have the spare bedroom to-night, and I will be with you in + time for breakfast, for there is a train which will take me into + Waterloo at eight." + + "But how about our investigation in London?" asked Phelps, ruefully. + + "We can do that to-morrow. I think that just at present I can be of + more immediate use here." + + "You might tell them at Briarbrae that I hope to be back to-morrow + night," cried Phelps, as we began to move from the platform. + + "I hardly expect to go back to Briarbrae," answered Holmes, and waved + his hand to us cheerily as we shot out from the station. + + Phelps and I talked it over on our journey, but neither of us could + devise a satisfactory reason for this new development. + + "I suppose he wants to find out some clue as to the burglary last + night, if a burglar it was. For myself, I don't believe it was an + ordinary thief." + + "What is your own idea, then?" + + "Upon my word, you may put it down to my weak nerves or not, but I + believe there is some deep political intrigue going on around me, and + that for some reason that passes my understanding my life is aimed at + by the conspirators. It sounds high-flown and absurd, but consider + the facts! Why should a thief try to break in at a bedroom window, + where there could be no hope of any plunder, and why should he come + with a long knife in his hand?" + + "You are sure it was not a house-breaker's jimmy?" + + "Oh, no, it was a knife. I saw the flash of the blade quite + distinctly." + + "But why on earth should you be pursued with such animosity?" + + "Ah, that is the question." + + "Well, if Holmes takes the same view, that would account for his + action, would it not? Presuming that your theory is correct, if he + can lay his hands upon the man who threatened you last night he will + have gone a long way towards finding who took the naval treaty. It is + absurd to suppose that you have two enemies, one of whom robs you, + while the other threatens your life." + + "But Holmes said that he was not going to Briarbrae." + + "I have known him for some time," said I, "but I never knew him do + anything yet without a very good reason," and with that our + conversation drifted off on to other topics. + + But it was a weary day for me. Phelps was still weak after his long + illness, and his misfortune made him querulous and nervous. In vain I + endeavored to interest him in Afghanistan, in India, in social + questions, in anything which might take his mind out of the groove. + He would always come back to his lost treaty, wondering, guessing, + speculating, as to what Holmes was doing, what steps Lord Holdhurst + was taking, what news we should have in the morning. As the evening + wore on his excitement became quite painful. + + "You have implicit faith in Holmes?" he asked. + + "I have seen him do some remarkable things." + + "But he never brought light into anything quite so dark as this?" + + "Oh, yes, I have known him solve questions which presented fewer + clues than yours." + + "But not where such large interests are at stake?" + + "I don't know that. To my certain knowledge he has acted on behalf of + three of the reigning houses of Europe in very vital matters." + + "But you know him well, Watson. He is such an inscrutable fellow that + I never quite know what to make of him. Do you think he is hopeful? + Do you think he expects to make a success of it?" + + "He has said nothing." + + "That is a bad sign." + + "On the contrary, I have noticed that when he is off the trail he + generally says so. It is when he is on a scent and is not quite + absolutely sure yet that it is the right one that he is most + taciturn. Now, my dear fellow, we can't help matters by making + ourselves nervous about them, so let me implore you to go to bed and + so be fresh for whatever may await us to-morrow." + + I was able at last to persuade my companion to take my advice, though + I knew from his excited manner that there was not much hope of sleep + for him. Indeed, his mood was infectious, for I lay tossing half the + night myself, brooding over this strange problem, and inventing a + hundred theories, each of which was more impossible than the last. + Why had Holmes remained at Woking? Why had he asked Miss Harrison to + remain in the sick-room all day? Why had he been so careful not to + inform the people at Briarbrae that he intended to remain near them? + I cudgelled my brains until I fell asleep in the endeavor to find + some explanation which would cover all these facts. + + It was seven o'clock when I awoke, and I set off at once for Phelps's + room, to find him haggard and spent after a sleepless night. His + first question was whether Holmes had arrived yet. + + "He'll be here when he promised," said I, "and not an instant sooner + or later." + + And my words were true, for shortly after eight a hansom dashed up to + the door and our friend got out of it. Standing in the window we saw + that his left hand was swathed in a bandage and that his face was + very grim and pale. He entered the house, but it was some little time + before he came upstairs. + + "He looks like a beaten man," cried Phelps. + + I was forced to confess that he was right. "After all," said I, "the + clue of the matter lies probably here in town." + + Phelps gave a groan. + + "I don't know how it is," said he, "but I had hoped for so much from + his return. But surely his hand was not tied up like that yesterday. + What can be the matter?" + + "You are not wounded, Holmes?" I asked, as my friend entered the + room. + + "Tut, it is only a scratch through my own clumsiness," he answered, + nodding his good-mornings to us. "This case of yours, Mr. Phelps, is + certainly one of the darkest which I have ever investigated." + + "I feared that you would find it beyond you." + + "It has been a most remarkable experience." + + "That bandage tells of adventures," said I. "Won't you tell us what + has happened?" + + "After breakfast, my dear Watson. Remember that I have breathed + thirty miles of Surrey air this morning. I suppose that there has + been no answer from my cabman advertisement? Well, well, we cannot + expect to score every time." + + The table was all laid, and just as I was about to ring Mrs. Hudson + entered with the tea and coffee. A few minutes later she brought in + three covers, and we all drew up to the table, Holmes ravenous, I + curious, and Phelps in the gloomiest state of depression. + + "Mrs. Hudson has risen to the occasion," said Holmes, uncovering a + dish of curried chicken. "Her cuisine is a little limited, but she + has as good an idea of breakfast as a Scotch-woman. What have you + here, Watson?" + + "Ham and eggs," I answered. + + "Good! What are you going to take, Mr. Phelps--curried fowl or eggs, + or will you help yourself?" + + "Thank you. I can eat nothing," said Phelps. + + "Oh, come! Try the dish before you." + + "Thank you, I would really rather not." + + "Well, then," said Holmes, with a mischievous twinkle, "I suppose + that you have no objection to helping me?" + + Phelps raised the cover, and as he did so he uttered a scream, and + sat there staring with a face as white as the plate upon which he + looked. Across the centre of it was lying a little cylinder of + blue-gray paper. He caught it up, devoured it with his eyes, and then + danced madly about the room, passing it to his bosom and shrieking + out in his delight. Then he fell back into an arm-chair so limp and + exhausted with his own emotions that we had to pour brandy down his + throat to keep him from fainting. + + "There! there!" said Holmes, soothing, patting him upon the shoulder. + "It was too bad to spring it on you like this, but Watson here will + tell you that I never can resist a touch of the dramatic." + + Phelps seized his hand and kissed it. "God bless you!" he cried. "You + have saved my honor." + + "Well, my own was at stake, you know," said Holmes. "I assure you it + is just as hateful to me to fail in a case as it can be to you to + blunder over a commission." + + Phelps thrust away the precious document into the innermost pocket of + his coat. + + "I have not the heart to interrupt your breakfast any further, and + yet I am dying to know how you got it and where it was." + + Sherlock Holmes swallowed a cup of coffee, and turned his attention + to the ham and eggs. Then he rose, lit his pipe, and settled himself + down into his chair. + + "I'll tell you what I did first, and how I came to do it afterwards," + said he. "After leaving you at the station I went for a charming walk + through some admirable Surrey scenery to a pretty little village + called Ripley, where I had my tea at an inn, and took the precaution + of filling my flask and of putting a paper of sandwiches in my + pocket. There I remained until evening, when I set off for Woking + again, and found myself in the high-road outside Briarbrae just after + sunset. + + "Well, I waited until the road was clear--it is never a very + frequented one at any time, I fancy--and then I clambered over the + fence into the grounds." + + "Surely the gate was open!" ejaculated Phelps. + + "Yes, but I have a peculiar taste in these matters. I chose the place + where the three fir-trees stand, and behind their screen I got over + without the least chance of any one in the house being able to see + me. I crouched down among the bushes on the other side, and crawled + from one to the other--witness the disreputable state of my trouser + knees--until I had reached the clump of rhododendrons just opposite + to your bedroom window. There I squatted down and awaited + developments. + + "The blind was not down in your room, and I could see Miss Harrison + sitting there reading by the table. It was quarter-past ten when she + closed her book, fastened the shutters, and retired. + + "I heard her shut the door, and felt quite sure that she had turned + the key in the lock." + + "The key!" ejaculated Phelps. + + "Yes, I had given Miss Harrison instructions to lock the door on the + outside and take the key with her when she went to bed. She carried + out every one of my injunctions to the letter, and certainly without + her cooperation you would not have that paper in you coat-pocket. She + departed then and the lights went out, and I was left squatting in + the rhododendron-bush. + + "The night was fine, but still it was a very weary vigil. Of course + it has the sort of excitement about it that the sportsman feels when + he lies beside the water-course and waits for the big game. It was + very long, though--almost as long, Watson, as when you and I waited + in that deadly room when we looked into the little problem of the + Speckled Band. There was a church-clock down at Woking which struck + the quarters, and I thought more than once that it had stopped. At + last however about two in the morning, I suddenly heard the gentle + sound of a bolt being pushed back and the creaking of a key. A moment + later the servant's door was opened, and Mr. Joseph Harrison stepped + out into the moonlight." + + "Joseph!" ejaculated Phelps. + + "He was bare-headed, but he had a black coat thrown over his shoulder + so that he could conceal his face in an instant if there were any + alarm. He walked on tiptoe under the shadow of the wall, and when he + reached the window he worked a long-bladed knife through the sash and + pushed back the catch. Then he flung open the window, and putting his + knife through the crack in the shutters, he thrust the bar up and + swung them open. + + "From where I lay I had a perfect view of the inside of the room and + of every one of his movements. He lit the two candles which stood + upon the mantelpiece, and then he proceeded to turn back the corner + of the carpet in the neighborhood of the door. Presently he stopped + and picked out a square piece of board, such as is usually left to + enable plumbers to get at the joints of the gas-pipes. This one + covered, as a matter of fact, the T joint which gives off the pipe + which supplies the kitchen underneath. Out of this hiding-place he + drew that little cylinder of paper, pushed down the board, rearranged + the carpet, blew out the candles, and walked straight into my arms as + I stood waiting for him outside the window. + + "Well, he has rather more viciousness than I gave him credit for, has + Master Joseph. He flew at me with his knife, and I had to grasp him + twice, and got a cut over the knuckles, before I had the upper hand + of him. He looked murder out of the only eye he could see with when + we had finished, but he listened to reason and gave up the papers. + Having got them I let my man go, but I wired full particulars to + Forbes this morning. If he is quick enough to catch his bird, well + and good. But if, as I shrewdly suspect, he finds the nest empty + before he gets there, why, all the better for the government. I fancy + that Lord Holdhurst for one, and Mr. Percy Phelps for another, would + very much rather that the affair never got as far as a police-court. + + "My God!" gasped our client. "Do you tell me that during these long + ten weeks of agony the stolen papers were within the very room with + me all the time?" + + "So it was." + + "And Joseph! Joseph a villain and a thief!" + + "Hum! I am afraid Joseph's character is a rather deeper and more + dangerous one than one might judge from his appearance. From what I + have heard from him this morning, I gather that he has lost heavily + in dabbling with stocks, and that he is ready to do anything on earth + to better his fortunes. Being an absolutely selfish man, when a + chance presented itself he did not allow either his sister's + happiness or your reputation to hold his hand." + + Percy Phelps sank back in his chair. "My head whirls," said he. "Your + words have dazed me." + + "The principal difficulty in your case," remarked Holmes, in his + didactic fashion, "lay in the fact of there being too much evidence. + What was vital was overlaid and hidden by what was irrelevant. Of all + the facts which were presented to us we had to pick just those which + we deemed to be essential, and then piece them together in their + order, so as to reconstruct this very remarkable chain of events. I + had already begun to suspect Joseph, from the fact that you had + intended to travel home with him that night, and that therefore it + was a likely enough thing that he should call for you, knowing the + Foreign Office well, upon his way. When I heard that some one had + been so anxious to get into the bedroom, in which no one but Joseph + could have concealed anything--you told us in your narrative how you + had turned Joseph out when you arrived with the doctor--my suspicions + all changed to certainties, especially as the attempt was made on the + first night upon which the nurse was absent, showing that the + intruder was well acquainted with the ways of the house." + + "How blind I have been!" + + "The facts of the case, as far as I have worked them out, are these: + this Joseph Harrison entered the office through the Charles Street + door, and knowing his way he walked straight into your room the + instant after you left it. Finding no one there he promptly rang the + bell, and at the instant that he did so his eyes caught the paper + upon the table. A glance showed him that chance had put in his way a + State document of immense value, and in an instant he had thrust it + into his pocket and was gone. A few minutes elapsed, as you remember, + before the sleepy commissionaire drew your attention to the bell, and + those were just enough to give the thief time to make his escape. + + "He made his way to Woking by the first train, and having examined + his booty and assured himself that it really was of immense value, he + had concealed it in what he thought was a very safe place, with the + intention of taking it out again in a day or two, and carrying it to + the French embassy, or wherever he thought that a long price was to + be had. Then came your sudden return. He, without a moment's warning, + was bundled out of his room, and from that time onward there were + always at least two of you there to prevent him from regaining his + treasure. The situation to him must have been a maddening one. But at + last he thought he saw his chance. He tried to steal in, but was + baffled by your wakefulness. You remember that you did not take your + usual draught that night." + + "I remember." + + "I fancy that he had taken steps to make that draught efficacious, + and that he quite relied upon your being unconscious. Of course, I + understood that he would repeat the attempt whenever it could be done + with safety. Your leaving the room gave him the chance he wanted. I + kept Miss Harrison in it all day so that he might not anticipate us. + Then, having given him the idea that the coast was clear, I kept + guard as I have described. I already knew that the papers were + probably in the room, but I had no desire to rip up all the planking + and skirting in search of them. I let him take them, therefore, from + the hiding-place, and so saved myself an infinity of trouble. Is + there any other point which I can make clear?" + + "Why did he try the window on the first occasion," I asked, "when he + might have entered by the door?" + + "In reaching the door he would have to pass seven bedrooms. On the + other hand, he could get out on to the lawn with ease. Anything + else?" + + "You do not think," asked Phelps, "that he had any murderous + intention? The knife was only meant as a tool." + + "It may be so," answered Holmes, shrugging his shoulders. "I can only + say for certain that Mr. Joseph Harrison is a gentleman to whose + mercy I should be extremely unwilling to trust." + + + + + + + THE FINAL PROBLEM + + It is with a heavy heart that I take up my pen to write these the + last words in which I shall ever record the singular gifts by which + my friend Mr. Sherlock Holmes was distinguished. In an incoherent + and, as I deeply feel, an entirely inadequate fashion, I have + endeavored to give some account of my strange experiences in his + company from the chance which first brought us together at the period + of the "Study in Scarlet," up to the time of his interference in the + matter of the "Naval Treaty"--an interference which had the + unquestionable effect of preventing a serious international + complication. It was my intention to have stopped there, and to have + said nothing of that event which has created a void in my life which + the lapse of two years has done little to fill. My hand has been + forced, however, by the recent letters in which Colonel James + Moriarty defends the memory of his brother, and I have no choice but + to lay the facts before the public exactly as they occurred. I alone + know the absolute truth of the matter, and I am satisfied that the + time has come when no good purpose is to be served by its + suppression. As far as I know, there have been only three accounts + in the public press: that in the Journal de Genève on May 6th, 1891, + the Reuter's despatch in the English papers on May 7th, and finally + the recent letters to which I have alluded. Of these the first and + second were extremely condensed, while the last is, as I shall now + show, an absolute perversion of the facts. It lies with me to tell + for the first time what really took place between Professor Moriarty + and Mr. Sherlock Holmes. + + It may be remembered that after my marriage, and my subsequent start + in private practice, the very intimate relations which had existed + between Holmes and myself became to some extent modified. He still + came to me from time to time when he desired a companion in his + investigation, but these occasions grew more and more seldom, until I + find that in the year 1890 there were only three cases of which I + retain any record. During the winter of that year and the early + spring of 1891, I saw in the papers that he had been engaged by the + French government upon a matter of supreme importance, and I received + two notes from Holmes, dated from Narbonne and from Nimes, from which + I gathered that his stay in France was likely to be a long one. It + was with some surprise, therefore, that I saw him walk into my + consulting-room upon the evening of April 24th. It struck me that he + was looking even paler and thinner than usual. + + "Yes, I have been using myself up rather too freely," he remarked, in + answer to my look rather than to my words; "I have been a little + pressed of late. Have you any objection to my closing your + shutters?" + + The only light in the room came from the lamp upon the table at which + I had been reading. Holmes edged his way round the wall and flinging + the shutters together, he bolted them securely. + + "You are afraid of something?" I asked. + + "Well, I am." + + "Of what?" + + "Of air-guns." + + "My dear Holmes, what do you mean?" + + "I think that you know me well enough, Watson, to understand that I + am by no means a nervous man. At the same time, it is stupidity + rather than courage to refuse to recognize danger when it is close + upon you. Might I trouble you for a match?" He drew in the smoke of + his cigarette as if the soothing influence was grateful to him. + + "I must apologize for calling so late," said he, "and I must further + beg you to be so unconventional as to allow me to leave your house + presently by scrambling over your back garden wall." + + "But what does it all mean?" I asked. + + He held out his hand, and I saw in the light of the lamp that two of + his knuckles were burst and bleeding. + + "It is not an airy nothing, you see," said he, smiling. "On the + contrary, it is solid enough for a man to break his hand over. Is + Mrs. Watson in?" + + "She is away upon a visit." + + "Indeed! You are alone?" + + "Quite." + + "Then it makes it the easier for me to propose that you should come + away with me for a week to the Continent." + + "Where?" + + "Oh, anywhere. It's all the same to me." + + There was something very strange in all this. It was not Holmes's + nature to take an aimless holiday, and something about his pale, worn + face told me that his nerves were at their highest tension. He saw + the question in my eyes, and, putting his finger-tips together and + his elbows upon his knees, he explained the situation. + + "You have probably never heard of Professor Moriarty?" said he. + + "Never." + + "Aye, there's the genius and the wonder of the thing!" he cried. + "The man pervades London, and no one has heard of him. That's what + puts him on a pinnacle in the records of crime. I tell you, Watson, + in all seriousness, that if I could beat that man, if I could free + society of him, I should feel that my own career had reached its + summit, and I should be prepared to turn to some more placid line in + life. Between ourselves, the recent cases in which I have been of + assistance to the royal family of Scandinavia, and to the French + republic, have left me in such a position that I could continue to + live in the quiet fashion which is most congenial to me, and to + concentrate my attention upon my chemical researches. But I could + not rest, Watson, I could not sit quiet in my chair, if I thought + that such a man as Professor Moriarty were walking the streets of + London unchallenged." + + "What has he done, then?" + + "His career has been an extraordinary one. He is a man of good birth + and excellent education, endowed by nature with a phenomenal + mathematical faculty. At the age of twenty-one he wrote a treatise + upon the Binomial Theorem, which has had a European vogue. On the + strength of it he won the Mathematical Chair at one of our smaller + universities, and had, to all appearance, a most brilliant career + before him. But the man had hereditary tendencies of the most + diabolical kind. A criminal strain ran in his blood, which, instead + of being modified, was increased and rendered infinitely more + dangerous by his extraordinary mental powers. Dark rumors gathered + round him in the university town, and eventually he was compelled to + resign his chair and to come down to London, where he set up as an + army coach. So much is known to the world, but what I am telling you + now is what I have myself discovered. + + "As you are aware, Watson, there is no one who knows the higher + criminal world of London so well as I do. For years past I have + continually been conscious of some power behind the malefactor, some + deep organizing power which forever stands in the way of the law, and + throws its shield over the wrong-doer. Again and again in cases of + the most varying sorts--forgery cases, robberies, murders--I have + felt the presence of this force, and I have deduced its action in + many of those undiscovered crimes in which I have not been personally + consulted. For years I have endeavored to break through the veil + which shrouded it, and at last the time came when I seized my thread + and followed it, until it led me, after a thousand cunning windings, + to ex-Professor Moriarty of mathematical celebrity. + + "He is the Napoleon of crime, Watson. He is the organizer of half + that is evil and of nearly all that is undetected in this great city. + He is a genius, a philosopher, an abstract thinker. He has a brain + of the first order. He sits motionless, like a spider in the center + of its web, but that web has a thousand radiations, and he knows well + every quiver of each of them. He does little himself. He only + plans. But his agents are numerous and splendidly organized. Is + there a crime to be done, a paper to be abstracted, we will say, a + house to be rifled, a man to be removed--the word is passed to the + Professor, the matter is organized and carried out. The agent may be + caught. In that case money is found for his bail or his defence. + But the central power which uses the agent is never caught--never so + much as suspected. This was the organization which I deduced, + Watson, and which I devoted my whole energy to exposing and breaking + up. + + "But the Professor was fenced round with safeguards so cunningly + devised that, do what I would, it seemed impossible to get evidence + which would convict in a court of law. You know my powers, my dear + Watson, and yet at the end of three months I was forced to confess + that I had at last met an antagonist who was my intellectual equal. + My horror at his crimes was lost in my admiration at his skill. But + at last he made a trip--only a little, little trip--but it was more + than he could afford when I was so close upon him. I had my chance, + and, starting from that point, I have woven my net round him until + now it is all ready to close. In three days--that is to say, on + Monday next--matters will be ripe, and the Professor, with all the + principal members of his gang, will be in the hands of the police. + Then will come the greatest criminal trial of the century, the + clearing up of over forty mysteries, and the rope for all of them; + but if we move at all prematurely, you understand, they may slip out + of our hands even at the last moment. + + "Now, if I could have done this without the knowledge of Professor + Moriarty, all would have been well. But he was too wily for that. + He saw every step which I took to draw my toils round him. Again and + again he strove to break away, but I as often headed him off. I tell + you, my friend, that if a detailed account of that silent contest + could be written, it would take its place as the most brilliant bit + of thrust-and-parry work in the history of detection. Never have I + risen to such a height, and never have I been so hard pressed by an + opponent. He cut deep, and yet I just undercut him. This morning + the last steps were taken, and three days only were wanted to + complete the business. I was sitting in my room thinking the matter + over, when the door opened and Professor Moriarty stood before me. + + "My nerves are fairly proof, Watson, but I must confess to a start + when I saw the very man who had been so much in my thoughts standing + there on my threshold. His appearance was quite familiar to me. He + is extremely tall and thin, his forehead domes out in a white curve, + and his two eyes are deeply sunken in his head. He is clean-shaven, + pale, and ascetic-looking, retaining something of the professor in + his features. His shoulders are rounded from much study, and his + face protrudes forward, and is forever slowly oscillating from side + to side in a curiously reptilian fashion. He peered at me with great + curiosity in his puckered eyes. + + "'You have less frontal development that I should have expected,' + said he, at last. 'It is a dangerous habit to finger loaded firearms + in the pocket of one's dressing-gown.' + + "The fact is that upon his entrance I had instantly recognized the + extreme personal danger in which I lay. The only conceivable escape + for him lay in silencing my tongue. In an instant I had slipped the + revolver from the drawer into my pocket, and was covering him through + the cloth. At his remark I drew the weapon out and laid it cocked + upon the table. He still smiled and blinked, but there was something + about his eyes which made me feel very glad that I had it there. + + "'You evidently don't know me,' said he. + + "'On the contrary,' I answered, 'I think it is fairly evident that I + do. Pray take a chair. I can spare you five minutes if you have + anything to say.' + + "'All that I have to say has already crossed your mind,' said he. + + "'Then possibly my answer has crossed yours,' I replied. + + "'You stand fast?' + + "'Absolutely.' + + "He clapped his hand into his pocket, and I raised the pistol from + the table. But he merely drew out a memorandum-book in which he had + scribbled some dates. + + "'You crossed my path on the 4th of January,' said he. 'On the 23d + you incommoded me; by the middle of February I was seriously + inconvenienced by you; at the end of March I was absolutely hampered + in my plans; and now, at the close of April, I find myself placed in + such a position through your continual persecution that I am in + positive danger of losing my liberty. The situation is becoming an + impossible one.' + + "'Have you any suggestion to make?' I asked. + + "'You must drop it, Mr. Holmes,' said he, swaying his face about. + 'You really must, you know.' + + "'After Monday,' said I. + + "'Tut, tut,' said he. 'I am quite sure that a man of your + intelligence will see that there can be but one outcome to this + affair. It is necessary that you should withdraw. You have worked + things in such a fashion that we have only one resource left. It has + been an intellectual treat to me to see the way in which you have + grappled with this affair, and I say, unaffectedly, that it would be + a grief to me to be forced to take any extreme measure. You smile, + sir, but I assure you that it really would.' + + "'Danger is part of my trade,' I remarked. + + "'That is not danger,' said he. 'It is inevitable destruction. You + stand in the way not merely of an individual, but of a mighty + organization, the full extent of which you, with all your cleverness, + have been unable to realize. You must stand clear, Mr. Holmes, or be + trodden under foot.' + + "'I am afraid,' said I, rising, 'that in the pleasure of this + conversation I am neglecting business of importance which awaits me + elsewhere.' + + "He rose also and looked at me in silence, shaking his head sadly. + + "'Well, well,' said he, at last. 'It seems a pity, but I have done + what I could. I know every move of your game. You can do nothing + before Monday. It has been a duel between you and me, Mr. Holmes. + You hope to place me in the dock. I tell you that I will never stand + in the dock. You hope to beat me. I tell you that you will never + beat me. If you are clever enough to bring destruction upon me, rest + assured that I shall do as much to you.' + + "'You have paid me several compliments, Mr. Moriarty,' said I. 'Let + me pay you one in return when I say that if I were assured of the + former eventuality I would, in the interests of the public, + cheerfully accept the latter.' + + "'I can promise you the one, but not the other,' he snarled, and so + turned his rounded back upon me, and went peering and blinking out of + the room. + + "That was my singular interview with Professor Moriarty. I confess + that it left an unpleasant effect upon my mind. His soft, precise + fashion of speech leaves a conviction of sincerity which a mere bully + could not produce. Of course, you will say: 'Why not take police + precautions against him?' the reason is that I am well convinced + that it is from his agents the blow would fall. I have the best + proofs that it would be so." + + "You have already been assaulted?" + + "My dear Watson, Professor Moriarty is not a man who lets the grass + grow under his feet. I went out about mid-day to transact some + business in Oxford Street. As I passed the corner which leads from + Bentinck Street on to the Welbeck Street crossing a two-horse van + furiously driven whizzed round and was on me like a flash. I sprang + for the foot-path and saved myself by the fraction of a second. The + van dashed round by Marylebone Lane and was gone in an instant. I + kept to the pavement after that, Watson, but as I walked down Vere + Street a brick came down from the roof of one of the houses, and was + shattered to fragments at my feet. I called the police and had the + place examined. There were slates and bricks piled up on the roof + preparatory to some repairs, and they would have me believe that the + wind had toppled over one of these. Of course I knew better, but I + could prove nothing. I took a cab after that and reached my + brother's rooms in Pall Mall, where I spent the day. Now I have come + round to you, and on my way I was attacked by a rough with a + bludgeon. I knocked him down, and the police have him in custody; + but I can tell you with the most absolute confidence that no possible + connection will ever be traced between the gentleman upon whose front + teeth I have barked my knuckles and the retiring mathematical coach, + who is, I dare say, working out problems upon a black-board ten miles + away. You will not wonder, Watson, that my first act on entering + your rooms was to close your shutters, and that I have been compelled + to ask your permission to leave the house by some less conspicuous + exit than the front door." + + I had often admired my friend's courage, but never more than now, as + he sat quietly checking off a series of incidents which must have + combined to make up a day of horror. + + "You will spend the night here?" I said. + + "No, my friend, you might find me a dangerous guest. I have my plans + laid, and all will be well. Matters have gone so far now that they + can move without my help as far as the arrest goes, though my + presence is necessary for a conviction. It is obvious, therefore, + that I cannot do better than get away for the few days which remain + before the police are at liberty to act. It would be a great + pleasure to me, therefore, if you could come on to the Continent with + me." + + "The practice is quiet," said I, "and I have an accommodating + neighbor. I should be glad to come." + + "And to start to-morrow morning?" + + "If necessary." + + "Oh yes, it is most necessary. Then these are your instructions, and + I beg, my dear Watson, that you will obey them to the letter, for you + are now playing a double-handed game with me against the cleverest + rogue and the most powerful syndicate of criminals in Europe. Now + listen! You will dispatch whatever luggage you intend to take by a + trusty messenger unaddressed to Victoria to-night. In the morning + you will send for a hansom, desiring your man to take neither the + first nor the second which may present itself. Into this hansom you + will jump, and you will drive to the Strand end of the Lowther + Arcade, handing the address to the cabman upon a slip of paper, with + a request that he will not throw it away. Have your fare ready, and + the instant that your cab stops, dash through the Arcade, timing + yourself to reach the other side at a quarter-past nine. You will + find a small brougham waiting close to the curb, driven by a fellow + with a heavy black cloak tipped at the collar with red. Into this + you will step, and you will reach Victoria in time for the + Continental express." + + "Where shall I meet you?" + + "At the station. The second first-class carriage from the front will + be reserved for us." + + "The carriage is our rendezvous, then?" + + "Yes." + + It was in vain that I asked Holmes to remain for the evening. It was + evident to me that he thought he might bring trouble to the roof he + was under, and that that was the motive which impelled him to go. + With a few hurried words as to our plans for the morrow he rose and + came out with me into the garden, clambering over the wall which + leads into Mortimer Street, and immediately whistling for a hansom, + in which I heard him drive away. + + In the morning I obeyed Holmes's injunctions to the letter. A hansom + was procured with such precaution as would prevent its being one + which was placed ready for us, and I drove immediately after + breakfast to the Lowther Arcade, through which I hurried at the top + of my speed. A brougham was waiting with a very massive driver + wrapped in a dark cloak, who, the instant that I had stepped in, + whipped up the horse and rattled off to Victoria Station. On my + alighting there he turned the carriage, and dashed away again without + so much as a look in my direction. + + So far all had gone admirably. My luggage was waiting for me, and I + had no difficulty in finding the carriage which Holmes had indicated, + the less so as it was the only one in the train which was marked + "Engaged." My only source of anxiety now was the non-appearance of + Holmes. The station clock marked only seven minutes from the time + when we were due to start. In vain I searched among the groups of + travellers and leave-takers for the lithe figure of my friend. There + was no sign of him. I spent a few minutes in assisting a venerable + Italian priest, who was endeavoring to make a porter understand, in + his broken English, that his luggage was to be booked through to + Paris. Then, having taken another look round, I returned to my + carriage, where I found that the porter, in spite of the ticket, had + given me my decrepit Italian friend as a traveling companion. It was + useless for me to explain to him that his presence was an intrusion, + for my Italian was even more limited than his English, so I shrugged + my shoulders resignedly, and continued to look out anxiously for my + friend. A chill of fear had come over me, as I thought that his + absence might mean that some blow had fallen during the night. + Already the doors had all been shut and the whistle blown, when-- + + "My dear Watson," said a voice, "you have not even condescended to + say good-morning." + + I turned in uncontrollable astonishment. The aged ecclesiastic had + turned his face towards me. For an instant the wrinkles were + smoothed away, the nose drew away from the chin, the lower lip ceased + to protrude and the mouth to mumble, the dull eyes regained their + fire, the drooping figure expanded. The next the whole frame + collapsed again, and Holmes had gone as quickly as he had come. + + "Good heavens!" I cried; "how you startled me!" + + "Every precaution is still necessary," he whispered. "I have reason + to think that they are hot upon our trail. Ah, there is Moriarty + himself." + + The train had already begun to move as Holmes spoke. Glancing back, + I saw a tall man pushing his way furiously through the crowd, and + waving his hand as if he desired to have the train stopped. It was + too late, however, for we were rapidly gathering momentum, and an + instant later had shot clear of the station. + + "With all our precautions, you see that we have cut it rather fine," + said Holmes, laughing. He rose, and throwing off the black cassock + and hat which had formed his disguise, he packed them away in a + hand-bag. + + "Have you seen the morning paper, Watson?" + + "No." + + "You haven't seen about Baker Street, then?" + + "Baker Street?" + + "They set fire to our rooms last night. No great harm was done." + + "Good heavens, Holmes, this is intolerable!" + + "They must have lost my track completely after their bludgeon-man was + arrested. Otherwise they could not have imagined that I had returned + to my rooms. They have evidently taken the precaution of watching + you, however, and that is what has brought Moriarty to Victoria. You + could not have made any slip in coming?" + + "I did exactly what you advised." + + "Did you find your brougham?" + + "Yes, it was waiting." + + "Did you recognize your coachman?" + + "No." + + "It was my brother Mycroft. It is an advantage to get about in such + a case without taking a mercenary into your confidence. But we must + plan what we are to do about Moriarty now." + + "As this is an express, and as the boat runs in connection with it, I + should think we have shaken him off very effectively." + + "My dear Watson, you evidently did not realize my meaning when I said + that this man may be taken as being quite on the same intellectual + plane as myself. You do not imagine that if I were the pursuer I + should allow myself to be baffled by so slight an obstacle. Why, + then, should you think so meanly of him?" + + "What will he do?" + + "What I should do." + + "What would you do, then?" + + "Engage a special." + + "But it must be late." + + "By no means. This train stops at Canterbury; and there is always at + least a quarter of an hour's delay at the boat. He will catch us + there." + + "One would think that we were the criminals. Let us have him + arrested on his arrival." + + "It would be to ruin the work of three months. We should get the big + fish, but the smaller would dart right and left out of the net. On + Monday we should have them all. No, an arrest is inadmissible." + + "What then?" + + "We shall get out at Canterbury." + + "And then?" + + "Well, then we must make a cross-country journey to Newhaven, and so + over to Dieppe. Moriarty will again do what I should do. He will + get on to Paris, mark down our luggage, and wait for two days at the + depot. In the meantime we shall treat ourselves to a couple of + carpet-bags, encourage the manufactures of the countries through + which we travel, and make our way at our leisure into Switzerland, + via Luxembourg and Basle." + + At Canterbury, therefore, we alighted, only to find that we should + have to wait an hour before we could get a train to Newhaven. + + I was still looking rather ruefully after the rapidly disappearing + luggage-van which contained my wardrobe, when Holmes pulled my sleeve + and pointed up the line. + + "Already, you see," said he. + + Far away, from among the Kentish woods there rose a thin spray of + smoke. A minute later a carriage and engine could be seen flying + along the open curve which leads to the station. We had hardly time + to take our place behind a pile of luggage when it passed with a + rattle and a roar, beating a blast of hot air into our faces. + + "There he goes," said Holmes, as we watched the carriage swing and + rock over the point. "There are limits, you see, to our friend's + intelligence. It would have been a coup-de-maître had he deduced + what I would deduce and acted accordingly." + + "And what would he have done had he overtaken us?" + + "There cannot be the least doubt that he would have made a murderous + attack upon me. It is, however, a game at which two may play. The + question now is whether we should take a premature lunch here, or run + our chance of starving before we reach the buffet at Newhaven." + + We made our way to Brussels that night and spent two days there, + moving on upon the third day as far as Strasburg. On the Monday + morning Holmes had telegraphed to the London police, and in the + evening we found a reply waiting for us at our hotel. Holmes tore it + open, and then with a bitter curse hurled it into the grate. + + "I might have known it!" he groaned. "He has escaped!" + + "Moriarty?" + + "They have secured the whole gang with the exception of him. He has + given them the slip. Of course, when I had left the country there + was no one to cope with him. But I did think that I had put the game + in their hands. I think that you had better return to England, + Watson." + + "Why?" + + "Because you will find me a dangerous companion now. This man's + occupation is gone. He is lost if he returns to London. If I read + his character right he will devote his whole energies to revenging + himself upon me. He said as much in our short interview, and I fancy + that he meant it. I should certainly recommend you to return to your + practice." + + It was hardly an appeal to be successful with one who was an old + campaigner as well as an old friend. We sat in the Strasbourg + salle-à-manger arguing the question for half an hour, but the same + night we had resumed our journey and were well on our way to Geneva. + + For a charming week we wandered up the Valley of the Rhone, and then, + branching off at Leuk, we made our way over the Gemmi Pass, still + deep in snow, and so, by way of Interlaken, to Meiringen. It was a + lovely trip, the dainty green of the spring below, the virgin white + of the winter above; but it was clear to me that never for one + instant did Holmes forget the shadow which lay across him. In the + homely Alpine villages or in the lonely mountain passes, I could tell + by his quick glancing eyes and his sharp scrutiny of every face that + passed us, that he was well convinced that, walk where we would, we + could not walk ourselves clear of the danger which was dogging our + footsteps. + + Once, I remember, as we passed over the Gemmi, and walked along the + border of the melancholy Daubensee, a large rock which had been + dislodged from the ridge upon our right clattered down and roared + into the lake behind us. In an instant Holmes had raced up on to the + ridge, and, standing upon a lofty pinnacle, craned his neck in every + direction. It was in vain that our guide assured him that a fall of + stones was a common chance in the spring-time at that spot. He said + nothing, but he smiled at me with the air of a man who sees the + fulfillment of that which he had expected. + + And yet for all his watchfulness he was never depressed. On the + contrary, I can never recollect having seen him in such exuberant + spirits. Again and again he recurred to the fact that if he could be + assured that society was freed from Professor Moriarty he would + cheerfully bring his own career to a conclusion. + + "I think that I may go so far as to say, Watson, that I have not + lived wholly in vain," he remarked. "If my record were closed + to-night I could still survey it with equanimity. The air of London + is the sweeter for my presence. In over a thousand cases I am not + aware that I have ever used my powers upon the wrong side. Of late I + have been tempted to look into the problems furnished by nature + rather than those more superficial ones for which our artificial + state of society is responsible. Your memoirs will draw to an end, + Watson, upon the day that I crown my career by the capture or + extinction of the most dangerous and capable criminal in Europe." + + I shall be brief, and yet exact, in the little which remains for me + to tell. It is not a subject on which I would willingly dwell, and + yet I am conscious that a duty devolves upon me to omit no detail. + + It was on the third of May that we reached the little village of + Meiringen, where we put up at the Englischer Hof, then kept by Peter + Steiler the elder. Our landlord was an intelligent man, and spoke + excellent English, having served for three years as waiter at the + Grosvenor Hotel in London. At his advice, on the afternoon of the + fourth we set off together, with the intention of crossing the hills + and spending the night at the hamlet of Rosenlaui. We had strict + injunctions, however, on no account to pass the falls of Reichenbach, + which are about half-way up the hill, without making a small detour + to see them. + + It is, indeed, a fearful place. The torrent, swollen by the melting + snow, plunges into a tremendous abyss, from which the spray rolls up + like the smoke from a burning house. The shaft into which the river + hurls itself is an immense chasm, lined by glistening coal-black + rock, and narrowing into a creaming, boiling pit of incalculable + depth, which brims over and shoots the stream onward over its jagged + lip. The long sweep of green water roaring forever down, and the + thick flickering curtain of spray hissing forever upward, turn a man + giddy with their constant whirl and clamor. We stood near the edge + peering down at the gleam of the breaking water far below us against + the black rocks, and listening to the half-human shout which came + booming up with the spray out of the abyss. + + The path has been cut half-way round the fall to afford a complete + view, but it ends abruptly, and the traveler has to return as he + came. We had turned to do so, when we saw a Swiss lad come running + along it with a letter in his hand. It bore the mark of the hotel + which we had just left, and was addressed to me by the landlord. It + appeared that within a very few minutes of our leaving, an English + lady had arrived who was in the last stage of consumption. She had + wintered at Davos Platz, and was journeying now to join her friends + at Lucerne, when a sudden hemorrhage had overtaken her. It was + thought that she could hardly live a few hours, but it would be a + great consolation to her to see an English doctor, and, if I would + only return, etc. The good Steiler assured me in a postscript that + he would himself look upon my compliance as a very great favor, since + the lady absolutely refused to see a Swiss physician, and he could + not but feel that he was incurring a great responsibility. + + The appeal was one which could not be ignored. It was impossible to + refuse the request of a fellow-countrywoman dying in a strange land. + Yet I had my scruples about leaving Holmes. It was finally agreed, + however, that he should retain the young Swiss messenger with him as + guide and companion while I returned to Meiringen. My friend would + stay some little time at the fall, he said, and would then walk + slowly over the hill to Rosenlaui, where I was to rejoin him in the + evening. As I turned away I saw Holmes, with his back against a rock + and his arms folded, gazing down at the rush of the waters. It was + the last that I was ever destined to see of him in this world. + + When I was near the bottom of the descent I looked back. It was + impossible, from that position, to see the fall, but I could see the + curving path which winds over the shoulder of the hill and leads to + it. Along this a man was, I remember, walking very rapidly. + + I could see his black figure clearly outlined against the green + behind him. I noted him, and the energy with which he walked but he + passed from my mind again as I hurried on upon my errand. + + It may have been a little over an hour before I reached Meiringen. + Old Steiler was standing at the porch of his hotel. + + "Well," said I, as I came hurrying up, "I trust that she is no + worse?" + + A look of surprise passed over his face, and at the first quiver of + his eyebrows my heart turned to lead in my breast. + + "You did not write this?" I said, pulling the letter from my pocket. + "There is no sick Englishwoman in the hotel?" + + "Certainly not!" he cried. "But it has the hotel mark upon it! Ha, + it must have been written by that tall Englishman who came in after + you had gone. He said--" + + But I waited for none of the landlord's explanations. In a tingle of + fear I was already running down the village street, and making for + the path which I had so lately descended. It had taken me an hour to + come down. For all my efforts two more had passed before I found + myself at the fall of Reichenbach once more. There was Holmes's + Alpine-stock still leaning against the rock by which I had left him. + But there was no sign of him, and it was in vain that I shouted. My + only answer was my own voice reverberating in a rolling echo from the + cliffs around me. + + It was the sight of that Alpine-stock which turned me cold and sick. + He had not gone to Rosenlaui, then. He had remained on that + three-foot path, with sheer wall on one side and sheer drop on the + other, until his enemy had overtaken him. The young Swiss had gone + too. He had probably been in the pay of Moriarty, and had left the + two men together. And then what had happened? Who was to tell us + what had happened then? + + I stood for a minute or two to collect myself, for I was dazed with + the horror of the thing. Then I began to think of Holmes's own + methods and to try to practise them in reading this tragedy. It was, + alas, only too easy to do. During our conversation we had not gone + to the end of the path, and the Alpine-stock marked the place where + we had stood. The blackish soil is kept forever soft by the + incessant drift of spray, and a bird would leave its tread upon it. + Two lines of footmarks were clearly marked along the farther end of + the path, both leading away from me. There were none returning. A + few yards from the end the soil was all ploughed up into a patch of + mud, and the branches and ferns which fringed the chasm were torn and + bedraggled. I lay upon my face and peered over with the spray + spouting up all around me. It had darkened since I left, and now I + could only see here and there the glistening of moisture upon the + black walls, and far away down at the end of the shaft the gleam of + the broken water. I shouted; but only the same half-human cry of the + fall was borne back to my ears. + + But it was destined that I should after all have a last word of + greeting from my friend and comrade. I have said that his + Alpine-stock had been left leaning against a rock which jutted on to + the path. From the top of this boulder the gleam of something bright + caught my eye, and, raising my hand, I found that it came from the + silver cigarette-case which he used to carry. As I took it up a + small square of paper upon which it had lain fluttered down on to the + ground. Unfolding it, I found that it consisted of three pages torn + from his note-book and addressed to me. It was characteristic of the + man that the direction was as precise, and the writing as firm and + clear, as though it had been written in his study. + + My dear Watson [it said]: + I write these few lines through the courtesy of Mr. Moriarty, who + awaits my convenience for the final discussion of those questions + which lie between us. He has been giving me a sketch of the methods + by which he avoided the English police and kept himself informed of + our movements. They certainly confirm the very high opinion which I + had formed of his abilities. I am pleased to think that I shall be + able to free society from any further effects of his presence, though + I fear that it is at a cost which will give pain to my friends, and + especially, my dear Watson, to you. I have already explained to you, + however, that my career had in any case reached its crisis, and that + no possible conclusion to it could be more congenial to me than this. + Indeed, if I may make a full confession to you, I was quite + convinced that the letter from Meiringen was a hoax, and I allowed + you to depart on that errand under the persuasion that some + development of this sort would follow. Tell Inspector Patterson that + the papers which he needs to convict the gang are in pigeonhole M., + done up in a blue envelope and inscribed "Moriarty." I made every + disposition of my property before leaving England, and handed it to + my brother Mycroft. Pray give my greetings to Mrs. Watson, and + believe me to be, my dear fellow, + Very sincerely yours, + Sherlock Holmes + + A few words may suffice to tell the little that remains. An + examination by experts leaves little doubt that a personal contest + between the two men ended, as it could hardly fail to end in such a + situation, in their reeling over, locked in each other's arms. Any + attempt at recovering the bodies was absolutely hopeless, and there, + deep down in that dreadful cauldron of swirling water and seething + foam, will lie for all time the most dangerous criminal and the + foremost champion of the law of their generation. The Swiss youth + was never found again, and there can be no doubt that he was one of + the numerous agents whom Moriarty kept in his employ. As to the + gang, it will be within the memory of the public how completely the + evidence which Holmes had accumulated exposed their organization, and + how heavily the hand of the dead man weighed upon them. Of their + terrible chief few details came out during the proceedings, and if I + have now been compelled to make a clear statement of his career it is + due to those injudicious champions who have endeavored to clear his + memory by attacks upon him whom I shall ever regard as the best and + the wisest man whom I have ever known. + + + + + + + THE RETURN OF SHERLOCK HOLMES + + + + + + THE ADVENTURE OF THE EMPTY HOUSE + + It was in the spring of the year 1894 that all London was interested, + and the fashionable world dismayed, by the murder of the Honourable + Ronald Adair under most unusual and inexplicable circumstances. The + public has already learned those particulars of the crime which came + out in the police investigation; but a good deal was suppressed upon + that occasion, since the case for the prosecution was so + overwhelmingly strong that it was not necessary to bring forward all + the facts. Only now, at the end of nearly ten years, am I allowed to + supply those missing links which make up the whole of that remarkable + chain. The crime was of interest in itself, but that interest was as + nothing to me compared to the inconceivable sequel, which afforded me + the greatest shock and surprise of any event in my adventurous life. + Even now, after this long interval, I find myself thrilling as I + think of it, and feeling once more that sudden flood of joy, + amazement, and incredulity which utterly submerged my mind. Let me + say to that public which has shown some interest in those glimpses + which I have occasionally given them of the thoughts and actions of a + very remarkable man that they are not to blame me if I have not + shared my knowledge with them, for I should have considered it my + first duty to have done so had I not been barred by a positive + prohibition from his own lips, which was only withdrawn upon the + third of last month. + + It can be imagined that my close intimacy with Sherlock Holmes had + interested me deeply in crime, and that after his disappearance I + never failed to read with care the various problems which came before + the public, and I even attempted more than once for my own private + satisfaction to employ his methods in their solution, though with + indifferent success. There was none, however, which appealed to me + like this tragedy of Ronald Adair. As I read the evidence at the + inquest, which led up to a verdict of wilful murder against some + person or persons unknown, I realized more clearly than I had ever + done the loss which the community had sustained by the death of + Sherlock Holmes. There were points about this strange business which + would, I was sure, have specially appealed to him, and the efforts of + the police would have been supplemented, or more probably + anticipated, by the trained observation and the alert mind of the + first criminal agent in Europe. All day as I drove upon my round I + turned over the case in my mind, and found no explanation which + appeared to me to be adequate. At the risk of telling a twice-told + tale I will recapitulate the facts as they were known to the public + at the conclusion of the inquest. + + The Honourable Ronald Adair was the second son of the Earl of + Maynooth, at that time Governor of one of the Australian Colonies. + Adair's mother had returned from Australia to undergo the operation + for cataract, and she, her son Ronald, and her daughter Hilda were + living together at 427, Park Lane. The youth moved in the best + society, had, so far as was known, no enemies, and no particular + vices. He had been engaged to Miss Edith Woodley, of Carstairs, but + the engagement had been broken off by mutual consent some months + before, and there was no sign that it had left any very profound + feeling behind it. For the rest the man's life moved in a narrow and + conventional circle, for his habits were quiet and his nature + unemotional. Yet it was upon this easy-going young aristocrat that + death came in most strange and unexpected form between the hours of + ten and eleven-twenty on the night of March 30, 1894. + + Ronald Adair was fond of cards, playing continually, but never for + such stakes as would hurt him. He was a member of the Baldwin, the + Cavendish, and the Bagatelle card clubs. It was shown that after + dinner on the day of his death he had played a rubber of whist at the + latter club. He had also played there in the afternoon. The evidence + of those who had played with him--Mr. Murray, Sir John Hardy, and + Colonel Moran--showed that the game was whist, and that there was a + fairly equal fall of the cards. Adair might have lost five pounds, + but not more. His fortune was a considerable one, and such a loss + could not in any way affect him. He had played nearly every day at + one club or other, but he was a cautious player, and usually rose a + winner. It came out in evidence that in partnership with Colonel + Moran he had actually won as much as four hundred and twenty pounds + in a sitting some weeks before from Godfrey Milner and Lord Balmoral. + So much for his recent history, as it came out at the inquest. + + On the evening of the crime he returned from the club exactly at ten. + His mother and sister were out spending the evening with a relation. + The servant deposed that she heard him enter the front room on the + second floor, generally used as his sitting-room. She had lit a fire + there, and as it smoked she had opened the window. No sound was heard + from the room until eleven-twenty, the hour of the return of Lady + Maynooth and her daughter. Desiring to say good-night, she had + attempted to enter her son's room. The door was locked on the inside, + and no answer could be got to their cries and knocking. Help was + obtained and the door forced. The unfortunate young man was found + lying near the table. His head had been horribly mutilated by an + expanding revolver bullet, but no weapon of any sort was to be found + in the room. On the table lay two bank-notes for ten pounds each and + seventeen pounds ten in silver and gold, the money arranged in little + piles of varying amount. There were some figures also upon a sheet of + paper with the names of some club friends opposite to them, from + which it was conjectured that before his death he was endeavouring to + make out his losses or winnings at cards. + + A minute examination of the circumstances served only to make the + case more complex. In the first place, no reason could be given why + the young man should have fastened the door upon the inside. There + was the possibility that the murderer had done this and had + afterwards escaped by the window. The drop was at least twenty feet, + however, and a bed of crocuses in full bloom lay beneath. Neither the + flowers nor the earth showed any sign of having been disturbed, nor + were there any marks upon the narrow strip of grass which separated + the house from the road. Apparently, therefore, it was the young man + himself who had fastened the door. But how did he come by his death? + No one could have climbed up to the window without leaving traces. + Suppose a man had fired through the window, it would indeed be a + remarkable shot who could with a revolver inflict so deadly a wound. + Again, Park Lane is a frequented thoroughfare, and there is a + cab-stand within a hundred yards of the house. No one had heard a + shot. And yet there was the dead man, and there the revolver bullet, + which had mushroomed out, as soft-nosed bullets will, and so + inflicted a wound which must have caused instantaneous death. Such + were the circumstances of the Park Lane Mystery, which were further + complicated by entire absence of motive, since, as I have said, young + Adair was not known to have any enemy, and no attempt had been made + to remove the money or valuables in the room. + + All day I turned these facts over in my mind, endeavouring to hit + upon some theory which could reconcile them all, and to find that + line of least resistance which my poor friend had declared to be the + starting-point of every investigation. I confess that I made little + progress. In the evening I strolled across the Park, and found myself + about six o'clock at the Oxford Street end of Park Lane. A group of + loafers upon the pavements, all staring up at a particular window, + directed me to the house which I had come to see. A tall, thin man + with coloured glasses, whom I strongly suspected of being a + plain-clothes detective, was pointing out some theory of his own, + while the others crowded round to listen to what he said. I got as + near him as I could, but his observations seemed to me to be absurd, + so I withdrew again in some disgust. As I did so I struck against an + elderly deformed man, who had been behind me, and I knocked down + several books which he was carrying. I remember that as I picked them + up I observed the title of one of them, The Origin of Tree Worship, + and it struck me that the fellow must be some poor bibliophile who, + either as a trade or as a hobby, was a collector of obscure volumes. + I endeavoured to apologize for the accident, but it was evident that + these books which I had so unfortunately maltreated were very + precious objects in the eyes of their owner. With a snarl of contempt + he turned upon his heel, and I saw his curved back and white + side-whiskers disappear among the throng. + + My observations of No. 427, Park Lane did little to clear up the + problem in which I was interested. The house was separated from the + street by a low wall and railing, the whole not more than five feet + high. It was perfectly easy, therefore, for anyone to get into the + garden, but the window was entirely inaccessible, since there was no + water-pipe or anything which could help the most active man to climb + it. More puzzled than ever I retraced my steps to Kensington. I had + not been in my study five minutes when the maid entered to say that a + person desired to see me. To my astonishment it was none other than + my strange old book-collector, his sharp, wizened face peering out + from a frame of white hair, and his precious volumes, a dozen of them + at least, wedged under his right arm. + + "You're surprised to see me, sir," said he, in a strange, croaking + voice. + + I acknowledged that I was. + + "Well, I've a conscience, sir, and when I chanced to see you go into + this house, as I came hobbling after you, I thought to myself, I'll + just step in and see that kind gentleman, and tell him that if I was + a bit gruff in my manner there was not any harm meant, and that I am + much obliged to him for picking up my books." + + "You make too much of a trifle," said I. "May I ask how you knew who + I was?" + + "Well, sir, if it isn't too great a liberty, I am a neighbour of + yours, for you'll find my little bookshop at the corner of Church + Street, and very happy to see you, I am sure. Maybe you collect + yourself, sir; here's British Birds, and Catullus, and The Holy + War--a bargain every one of them. With five volumes you could just + fill that gap on that second shelf. It looks untidy, does it not, + sir?" + + I moved my head to look at the cabinet behind me. When I turned again + Sherlock Holmes was standing smiling at me across my study table. I + rose to my feet, stared at him for some seconds in utter amazement, + and then it appears that I must have fainted for the first and the + last time in my life. Certainly a grey mist swirled before my eyes, + and when it cleared I found my collar-ends undone and the tingling + after-taste of brandy upon my lips. Holmes was bending over my chair, + his flask in his hand. + + "My dear Watson," said the well-remembered voice, "I owe you a + thousand apologies. I had no idea that you would be so affected." + + I gripped him by the arm. + + "Holmes!" I cried. "Is it really you? Can it indeed be that you are + alive? Is it possible that you succeeded in climbing out of that + awful abyss?" + + "Wait a moment," said he. "Are you sure that you are really fit to + discuss things? I have given you a serious shock by my unnecessarily + dramatic reappearance." + + "I am all right, but indeed, Holmes, I can hardly believe my eyes. + Good heavens, to think that you--you of all men--should be standing + in my study!" Again I gripped him by the sleeve and felt the thin, + sinewy arm beneath it. "Well, you're not a spirit, anyhow," said I. + "My dear chap, I am overjoyed to see you. Sit down and tell me how + you came alive out of that dreadful chasm." + + He sat opposite to me and lit a cigarette in his old nonchalant + manner. He was dressed in the seedy frock-coat of the book merchant, + but the rest of that individual lay in a pile of white hair and old + books upon the table. Holmes looked even thinner and keener than of + old, but there was a dead-white tinge in his aquiline face which told + me that his life recently had not been a healthy one. + + "I am glad to stretch myself, Watson," said he. "It is no joke when a + tall man has to take a foot off his stature for several hours on end. + Now, my dear fellow, in the matter of these explanations we have, if + I may ask for your co-operation, a hard and dangerous night's work in + front of us. Perhaps it would be better if I gave you an account of + the whole situation when that work is finished." + + "I am full of curiosity. I should much prefer to hear now." + + "You'll come with me to-night?" + + "When you like and where you like." + + "This is indeed like the old days. We shall have time for a mouthful + of dinner before we need go. Well, then, about that chasm. I had no + serious difficulty in getting out of it, for the very simple reason + that I never was in it." + + "You never were in it?" + + "No, Watson, I never was in it. My note to you was absolutely + genuine. I had little doubt that I had come to the end of my career + when I perceived the somewhat sinister figure of the late Professor + Moriarty standing upon the narrow pathway which led to safety. I read + an inexorable purpose in his grey eyes. I exchanged some remarks with + him, therefore, and obtained his courteous permission to write the + short note which you afterwards received. I left it with my + cigarette-box and my stick and I walked along the pathway, Moriarty + still at my heels. When I reached the end I stood at bay. He drew no + weapon, but he rushed at me and threw his long arms around me. He + knew that his own game was up, and was only anxious to revenge + himself upon me. We tottered together upon the brink of the fall. I + have some knowledge, however, of baritsu, or the Japanese system of + wrestling, which has more than once been very useful to me. I slipped + through his grip, and he with a horrible scream kicked madly for a + few seconds and clawed the air with both his hands. But for all his + efforts he could not get his balance, and over he went. With my face + over the brink I saw him fall for a long way. Then he struck a rock, + bounded off, and splashed into the water." + + I listened with amazement to this explanation, which Holmes delivered + between the puffs of his cigarette. + + "But the tracks!" I cried. "I saw with my own eyes that two went down + the path and none returned." + + "It came about in this way. The instant that the Professor had + disappeared it struck me what a really extraordinarily lucky chance + Fate had placed in my way. I knew that Moriarty was not the only man + who had sworn my death. There were at least three others whose desire + for vengeance upon me would only be increased by the death of their + leader. They were all most dangerous men. One or other would + certainly get me. On the other hand, if all the world was convinced + that I was dead they would take liberties, these men, they would lay + themselves open, and sooner or later I could destroy them. Then it + would be time for me to announce that I was still in the land of the + living. So rapidly does the brain act that I believe I had thought + this all out before Professor Moriarty had reached the bottom of the + Reichenbach Fall. + + "I stood up and examined the rocky wall behind me. In your + picturesque account of the matter, which I read with great interest + some months later, you assert that the wall was sheer. This was not + literally true. A few small footholds presented themselves, and there + was some indication of a ledge. The cliff is so high that to climb it + all was an obvious impossibility, and it was equally impossible to + make my way along the wet path without leaving some tracks. I might, + it is true, have reversed my boots, as I have done on similar + occasions, but the sight of three sets of tracks in one direction + would certainly have suggested a deception. On the whole, then, it + was best that I should risk the climb. It was not a pleasant + business, Watson. The fall roared beneath me. I am not a fanciful + person, but I give you my word that I seemed to hear Moriarty's voice + screaming at me out of the abyss. A mistake would have been fatal. + More than once, as tufts of grass came out in my hand or my foot + slipped in the wet notches of the rock, I thought that I was gone. + But I struggled upwards, and at last I reached a ledge several feet + deep and covered with soft green moss, where I could lie unseen in + the most perfect comfort. There I was stretched when you, my dear + Watson, and all your following were investigating in the most + sympathetic and inefficient manner the circumstances of my death. + + "At last, when you had all formed your inevitable and totally + erroneous conclusions, you departed for the hotel and I was left + alone. I had imagined that I had reached the end of my adventures, + but a very unexpected occurrence showed me that there were surprises + still in store for me. A huge rock, falling from above, boomed past + me, struck the path, and bounded over into the chasm. For an instant + I thought that it was an accident; but a moment later, looking up, I + saw a man's head against the darkening sky, and another stone struck + the very ledge upon which I was stretched, within a foot of my head. + Of course, the meaning of this was obvious. Moriarty had not been + alone. A confederate--and even that one glance had told me how + dangerous a man that confederate was--had kept guard while the + Professor had attacked me. From a distance, unseen by me, he had been + a witness of his friend's death and of my escape. He had waited, and + then, making his way round to the top of the cliff, he had + endeavoured to succeed where his comrade had failed. + + "I did not take long to think about it, Watson. Again I saw that grim + face look over the cliff, and I knew that it was the precursor of + another stone. I scrambled down on to the path. I don't think I could + have done it in cold blood. It was a hundred times more difficult + than getting up. But I had no time to think of the danger, for + another stone sang past me as I hung by my hands from the edge of the + ledge. Halfway down I slipped, but by the blessing of God I landed, + torn and bleeding, upon the path. I took to my heels, did ten miles + over the mountains in the darkness, and a week later I found myself + in Florence with the certainty that no one in the world knew what had + become of me. + + "I had only one confidant--my brother Mycroft. I owe you many + apologies, my dear Watson, but it was all-important that it should be + thought I was dead, and it is quite certain that you would not have + written so convincing an account of my unhappy end had you not + yourself thought that it was true. Several times during the last + three years I have taken up my pen to write to you, but always I + feared lest your affectionate regard for me should tempt you to some + indiscretion which would betray my secret. For that reason I turned + away from you this evening when you upset my books, for I was in + danger at the time, and any show of surprise and emotion upon your + part might have drawn attention to my identity and led to the most + deplorable and irreparable results. As to Mycroft, I had to confide + in him in order to obtain the money which I needed. The course of + events in London did not run so well as I had hoped, for the trial of + the Moriarty gang left two of its most dangerous members, my own most + vindictive enemies, at liberty. I travelled for two years in Tibet, + therefore, and amused myself by visiting Lhassa and spending some + days with the head Llama. You may have read of the remarkable + explorations of a Norwegian named Sigerson, but I am sure that it + never occurred to you that you were receiving news of your friend. I + then passed through Persia, looked in at Mecca, and paid a short but + interesting visit to the Khalifa at Khartoum, the results of which I + have communicated to the Foreign Office. Returning to France I spent + some months in a research into the coal-tar derivatives, which I + conducted in a laboratory at Montpelier, in the South of France. + Having concluded this to my satisfaction, and learning that only one + of my enemies was now left in London, I was about to return when my + movements were hastened by the news of this very remarkable Park Lane + Mystery, which not only appealed to me by its own merits, but which + seemed to offer some most peculiar personal opportunities. I came + over at once to London, called in my own person at Baker Street, + threw Mrs. Hudson into violent hysterics, and found that Mycroft had + preserved my rooms and my papers exactly as they had always been. So + it was, my dear Watson, that at two o'clock to-day I found myself in + my old arm-chair in my own old room, and only wishing that I could + have seen my old friend Watson in the other chair which he has so + often adorned." + + Such was the remarkable narrative to which I listened on that April + evening--a narrative which would have been utterly incredible to me + had it not been confirmed by the actual sight of the tall, spare + figure and the keen, eager face, which I had never thought to see + again. In some manner he had learned of my own sad bereavement, and + his sympathy was shown in his manner rather than in his words. "Work + is the best antidote to sorrow, my dear Watson," said he, "and I have + a piece of work for us both to-night which, if we can bring it to a + successful conclusion, will in itself justify a man's life on this + planet." In vain I begged him to tell me more. "You will hear and see + enough before morning," he answered. "We have three years of the past + to discuss. Let that suffice until half-past nine, when we start upon + the notable adventure of the empty house." + + It was indeed like old times when, at that hour, I found myself + seated beside him in a hansom, my revolver in my pocket and the + thrill of adventure in my heart. Holmes was cold and stern and + silent. As the gleam of the street-lamps flashed upon his austere + features I saw that his brows were drawn down in thought and his thin + lips compressed. I knew not what wild beast we were about to hunt + down in the dark jungle of criminal London, but I was well assured + from the bearing of this master huntsman that the adventure was a + most grave one, while the sardonic smile which occasionally broke + through his ascetic gloom boded little good for the object of our + quest. + + I had imagined that we were bound for Baker Street, but Holmes + stopped the cab at the corner of Cavendish Square. I observed that as + he stepped out he gave a most searching glance to right and left, and + at every subsequent street corner he took the utmost pains to assure + that he was not followed. Our route was certainly a singular one. + Holmes's knowledge of the byways of London was extraordinary, and on + this occasion he passed rapidly, and with an assured step, through a + network of mews and stables the very existence of which I had never + known. We emerged at last into a small road, lined with old, gloomy + houses, which led us into Manchester Street, and so to Blandford + Street. Here he turned swiftly down a narrow passage, passed through + a wooden gate into a deserted yard, and then opened with a key the + back door of a house. We entered together and he closed it behind us. + + The place was pitch-dark, but it was evident to me that it was an + empty house. Our feet creaked and crackled over the bare planking, + and my outstretched hand touched a wall from which the paper was + hanging in ribbons. Holmes's cold, thin fingers closed round my wrist + and led me forwards down a long hall, until I dimly saw the murky + fanlight over the door. Here Holmes turned suddenly to the right, and + we found ourselves in a large, square, empty room, heavily shadowed + in the corners, but faintly lit in the centre from the lights of the + street beyond. There was no lamp near and the window was thick with + dust, so that we could only just discern each other's figures within. + My companion put his hand upon my shoulder and his lips close to my + ear. + + "Do you know where we are?" he whispered. + + "Surely that is Baker Street," I answered, staring through the dim + window. + + "Exactly. We are in Camden House, which stands opposite to our own + old quarters." + + "But why are we here?" + + "Because it commands so excellent a view of that picturesque pile. + Might I trouble you, my dear Watson, to draw a little nearer to the + window, taking every precaution not to show yourself, and then to + look up at our old rooms--the starting-point of so many of our little + adventures? We will see if my three years of absence have entirely + taken away my power to surprise you." + + I crept forward and looked across at the familiar window. As my eyes + fell upon it I gave a gasp and a cry of amazement. The blind was down + and a strong light was burning in the room. The shadow of a man who + was seated in a chair within was thrown in hard, black outline upon + the luminous screen of the window. There was no mistaking the poise + of the head, the squareness of the shoulders, the sharpness of the + features. The face was turned half-round, and the effect was that of + one of those black silhouettes which our grandparents loved to frame. + It was a perfect reproduction of Holmes. So amazed was I that I threw + out my hand to make sure that the man himself was standing beside me. + He was quivering with silent laughter. + + "Well?" said he. + + "Good heavens!" I cried. "It is marvellous." + + "I trust that age doth not wither nor custom stale my infinite + variety,'" said he, and I recognised in his voice the joy and pride + which the artist takes in his own creation. "It really is rather like + me, is it not?" + + "I should be prepared to swear that it was you." + + "The credit of the execution is due to Monsieur Oscar Meunier, of + Grenoble, who spent some days in doing the moulding. It is a bust in + wax. The rest I arranged myself during my visit to Baker Street this + afternoon." + + "But why?" + + "Because, my dear Watson, I had the strongest possible reason for + wishing certain people to think that I was there when I was really + elsewhere." + + "And you thought the rooms were watched?" + + "I knew that they were watched." + + "By whom?" + + "By my old enemies, Watson. By the charming society whose leader lies + in the Reichenbach Fall. You must remember that they knew, and only + they knew, that I was still alive. Sooner or later they believed that + I should come back to my rooms. They watched them continuously, and + this morning they saw me arrive." + + "How do you know?" + + "Because I recognised their sentinel when I glanced out of my window. + He is a harmless enough fellow, Parker by name, a garroter by trade, + and a remarkable performer upon the Jew's harp. I cared nothing for + him. But I cared a great deal for the much more formidable person who + was behind him, the bosom friend of Moriarty, the man who dropped the + rocks over the cliff, the most cunning and dangerous criminal in + London. That is the man who is after me to-night, Watson, and that is + the man who is quite unaware that we are after him." + + My friend's plans were gradually revealing themselves. From this + convenient retreat the watchers were being watched and the trackers + tracked. That angular shadow up yonder was the bait and we were the + hunters. In silence we stood together in the darkness and watched the + hurrying figures who passed and repassed in front of us. Holmes was + silent and motionless; but I could tell that he was keenly alert, and + that his eyes were fixed intently upon the stream of passers-by. It + was a bleak and boisterous night, and the wind whistled shrilly down + the long street. Many people were moving to and fro, most of them + muffled in their coats and cravats. Once or twice it seemed to me + that I had seen the same figure before, and I especially noticed two + men who appeared to be sheltering themselves from the wind in the + doorway of a house some distance up the street. I tried to draw my + companion's attention to them, but he gave a little ejaculation of + impatience and continued to stare into the street. More than once he + fidgeted with his feet and tapped rapidly with his fingers upon the + wall. It was evident to me that he was becoming uneasy and that his + plans were not working out altogether as he had hoped. At last, as + midnight approached and the street gradually cleared, he paced up and + down the room in uncontrollable agitation. I was about to make some + remark to him when I raised my eyes to the lighted window and again + experienced almost as great a surprise as before. I clutched Holmes's + arm and pointed upwards. + + "The shadow has moved!" I cried. + + It was, indeed, no longer the profile, but the back, which was turned + towards us. + + Three years had certainly not smoothed the asperities of his temper + or his impatience with a less active intelligence than his own. + + "Of course it has moved," said he. "Am I such a farcical bungler, + Watson, that I should erect an obvious dummy and expect that some of + the sharpest men in Europe would be deceived by it? We have been in + this room two hours, and Mrs. Hudson has made some change in that + figure eight times, or once in every quarter of an hour. She works it + from the front so that her shadow may never be seen. Ah!" He drew in + his breath with a shrill, excited intake. In the dim light I saw his + head thrown forward, his whole attitude rigid with attention. + Outside, the street was absolutely deserted. Those two men might + still be crouching in the doorway, but I could no longer see them. + All was still and dark, save only that brilliant yellow screen in + front of us with the black figure outlined upon its centre. Again in + the utter silence I heard that thin, sibilant note which spoke of + intense suppressed excitement. An instant later he pulled me back + into the blackest corner of the room, and I felt his warning hand + upon my lips. The fingers which clutched me were quivering. Never had + I known my friend more moved, and yet the dark street still stretched + lonely and motionless before us. + + But suddenly I was aware of that which his keener senses had already + distinguished. A low, stealthy sound came to my ears, not from the + direction of Baker Street, but from the back of the very house in + which we lay concealed. A door opened and shut. An instant later + steps crept down the passage--steps which were meant to be silent, + but which reverberated harshly through the empty house. Holmes + crouched back against the wall and I did the same, my hand closing + upon the handle of my revolver. Peering through the gloom, I saw the + vague outline of a man, a shade blacker than the blackness of the + open door. He stood for an instant, and then he crept forward, + crouching, menacing, into the room. He was within three yards of us, + this sinister figure, and I had braced myself to meet his spring, + before I realized that he had no idea of our presence. He passed + close beside us, stole over to the window, and very softly and + noiselessly raised it for half a foot. As he sank to the level of + this opening the light of the street, no longer dimmed by the dusty + glass, fell full upon his face. The man seemed to be beside himself + with excitement. His two eyes shone like stars and his features were + working convulsively. He was an elderly man, with a thin, projecting + nose, a high, bald forehead, and a huge grizzled moustache. An + opera-hat was pushed to the back of his head, and an evening dress + shirt-front gleamed out through his open overcoat. His face was gaunt + and swarthy, scored with deep, savage lines. In his hand he carried + what appeared to be a stick, but as he laid it down upon the floor it + gave a metallic clang. Then from the pocket of his overcoat he drew a + bulky object, and he busied himself in some task which ended with a + loud, sharp click, as if a spring or bolt had fallen into its place. + Still kneeling upon the floor he bent forward and threw all his + weight and strength upon some lever, with the result that there came + a long, whirling, grinding noise, ending once more in a powerful + click. He straightened himself then, and I saw that what he held in + his hand was a sort of gun, with a curiously misshapen butt. He + opened it at the breech, put something in, and snapped the + breech-block. Then, crouching down, he rested the end of the barrel + upon the ledge of the open window, and I saw his long moustache droop + over the stock and his eye gleam as it peered along the sights. I + heard a little sigh of satisfaction as he cuddled the butt into his + shoulder, and saw that amazing target, the black man on the yellow + ground, standing clear at the end of his fore sight. For an instant + he was rigid and motionless. Then his finger tightened on the + trigger. There was a strange, loud whiz and a long, silvery tinkle of + broken glass. At that instant Holmes sprang like a tiger on to the + marksman's back and hurled him flat upon his face. He was up again in + a moment, and with convulsive strength he seized Holmes by the + throat; but I struck him on the head with the butt of my revolver and + he dropped again upon the floor. I fell upon him, and as I held him + my comrade blew a shrill call upon a whistle. There was the clatter + of running feet upon the pavement, and two policemen in uniform, with + one plain-clothes detective, rushed through the front entrance and + into the room. + + "That you, Lestrade?" said Holmes. + + "Yes, Mr. Holmes. I took the job myself. It's good to see you back in + London, sir." + + "I think you want a little unofficial help. Three undetected murders + in one year won't do, Lestrade. But you handled the Molesey Mystery + with less than your usual--that's to say, you handled it fairly + well." + + We had all risen to our feet, our prisoner breathing hard, with a + stalwart constable on each side of him. Already a few loiterers had + begun to collect in the street. Holmes stepped up to the window, + closed it, and dropped the blinds. Lestrade had produced two candles + and the policemen had uncovered their lanterns. I was able at last to + have a good look at our prisoner. + + It was a tremendously virile and yet sinister face which was turned + towards us. With the brow of a philosopher above and the jaw of a + sensualist below, the man must have started with great capacities for + good or for evil. But one could not look upon his cruel blue eyes, + with their drooping, cynical lids, or upon the fierce, aggressive + nose and the threatening, deep-lined brow, without reading Nature's + plainest danger-signals. He took no heed of any of us, but his eyes + were fixed upon Holmes's face with an expression in which hatred and + amazement were equally blended. "You fiend!" he kept on muttering. + "You clever, clever fiend!" + + "Ah, Colonel!" said Holmes, arranging his rumpled collar; "'journeys + end in lovers' meetings,' as the old play says. I don't think I have + had the pleasure of seeing you since you favoured me with those + attentions as I lay on the ledge above the Reichenbach Fall." + + The Colonel still stared at my friend like a man in a trance. "You + cunning, cunning fiend!" was all that he could say. + + "I have not introduced you yet," said Holmes. "This, gentlemen, is + Colonel Sebastian Moran, once of Her Majesty's Indian Army, and the + best heavy game shot that our Eastern Empire has ever produced. I + believe I am correct, Colonel, in saying that your bag of tigers + still remains unrivalled?" + + The fierce old man said nothing, but still glared at my companion; + with his savage eyes and bristling moustache he was wonderfully like + a tiger himself. + + "I wonder that my very simple stratagem could deceive so old a + shikari," said Holmes. "It must be very familiar to you. Have you not + tethered a young kid under a tree, lain above it with your rifle, and + waited for the bait to bring up your tiger? This empty house is my + tree and you are my tiger. You have possibly had other guns in + reserve in case there should be several tigers, or in the unlikely + supposition of your own aim failing you. These," he pointed around, + "are my other guns. The parallel is exact." + + Colonel Moran sprang forward, with a snarl of rage, but the + constables dragged him back. The fury upon his face was terrible to + look at. + + "I confess that you had one small surprise for me," said Holmes. "I + did not anticipate that you would yourself make use of this empty + house and this convenient front window. I had imagined you as + operating from the street, where my friend Lestrade and his merry men + were awaiting you. With that exception all has gone as I expected." + + Colonel Moran turned to the official detective. + + "You may or may not have just cause for arresting me," said he, "but + at least there can be no reason why I should submit to the gibes of + this person. If I am in the hands of the law let things be done in a + legal way." + + "Well, that's reasonable enough," said Lestrade. "Nothing further you + have to say, Mr. Holmes, before we go?" + + Holmes had picked up the powerful air-gun from the floor and was + examining its mechanism. + + "An admirable and unique weapon," said he, "noiseless and of + tremendous power. I knew Von Herder, the blind German mechanic, who + constructed it to the order of the late Professor Moriarty. For years + I have been aware of its existence, though I have never before had + the opportunity of handling it. I commend it very specially to your + attention, Lestrade, and also the bullets which fit it." + + "You can trust us to look after that, Mr. Holmes," said Lestrade, as + the whole party moved towards the door. "Anything further to say?" + + "Only to ask what charge you intend to prefer?" + + "What charge, sir? Why, of course, the attempted murder of Mr. + Sherlock Holmes." + + "Not so, Lestrade. I do not propose to appear in the matter at all. + To you, and to you only, belongs the credit of the remarkable arrest + which you have effected. Yes, Lestrade, I congratulate you! With your + usual happy mixture of cunning and audacity you have got him." + + "Got him! Got whom, Mr. Holmes?" + + "The man that the whole force has been seeking in vain--Colonel + Sebastian Moran, who shot the Honourable Ronald Adair with an + expanding bullet from an air-gun through the open window of the + second-floor front of No. 427, Park Lane, upon the 30th of last + month. That's the charge, Lestrade. And now, Watson, if you can + endure the draught from a broken window, I think that half an hour in + my study over a cigar may afford you some profitable amusement." + + Our old chambers had been left unchanged through the supervision of + Mycroft Holmes and the immediate care of Mrs. Hudson. As I entered I + saw, it is true, an unwonted tidiness, but the old landmarks were all + in their place. There were the chemical corner and the acid-stained, + deal-topped table. There upon a shelf was the row of formidable + scrap-books and books of reference which many of our fellow-citizens + would have been so glad to burn. The diagrams, the violin-case, and + the pipe-rack--even the Persian slipper which contained the + tobacco--all met my eyes as I glanced round me. There were two + occupants of the room--one Mrs. Hudson, who beamed upon us both as we + entered; the other the strange dummy which had played so important a + part in the evening's adventures. It was a wax-coloured model of my + friend, so admirably done that it was a perfect facsimile. It stood + on a small pedestal table with an old dressing-gown of Holmes's so + draped round it that the illusion from the street was absolutely + perfect. + + "I hope you preserved all precautions, Mrs. Hudson?" said Holmes. + + "I went to it on my knees, sir, just as you told me." + + "Excellent. You carried the thing out very well. Did you observe + where the bullet went?" + + "Yes, sir. I'm afraid it has spoilt your beautiful bust, for it + passed right through the head and flattened itself on the wall. I + picked it up from the carpet. Here it is!" + + Holmes held it out to me. "A soft revolver bullet, as you perceive, + Watson. There's genius in that, for who would expect to find such a + thing fired from an air-gun. All right, Mrs. Hudson, I am much + obliged for your assistance. And now, Watson, let me see you in your + old seat once more, for there are several points which I should like + to discuss with you." + + He had thrown off the seedy frock-coat, and now he was the Holmes of + old in the mouse-coloured dressing-gown which he took from his + effigy. + + "The old shikari's nerves have not lost their steadiness nor his eyes + their keenness," said he, with a laugh, as he inspected the shattered + forehead of his bust. + + "Plumb in the middle of the back of the head and smack through the + brain. He was the best shot in India, and I expect that there are few + better in London. Have you heard the name?" + + "No, I have not." + + "Well, well, such is fame! But, then, if I remember aright, you had + not heard the name of Professor James Moriarty, who had one of the + great brains of the century. Just give me down my index of + biographies from the shelf." + + He turned over the pages lazily, leaning back in his chair and + blowing great clouds from his cigar. + + "My collection of M's is a fine one," said he. "Moriarty himself is + enough to make any letter illustrious, and here is Morgan the + poisoner, and Merridew of abominable memory, and Mathews, who knocked + out my left canine in the waiting-room at Charing Cross, and, + finally, here is our friend of to-night." + + He handed over the book, and I read: + + Moran, Sebastian, Colonel. Unemployed. Formerly 1st Bengalore + Pioneers. Born London, 1840. Son of Sir Augustus Moran, C.B., once + British Minister to Persia. Educated Eton and Oxford. Served in + Jowaki Campaign, Afghan Campaign, Charasiab (despatches), Sherpur, + and Cabul. Author of Heavy Game of the Western Himalayas, 1881; Three + Months in the Jungle, 1884. Address: Conduit Street. Clubs: The + Anglo-Indian, the Tankerville, the Bagatelle Card Club. + + On the margin was written, in Holmes's precise hand: + + The second most dangerous man in London. + + "This is astonishing," said I, as I handed back the volume. "The + man's career is that of an honourable soldier." + + "It is true," Holmes answered. "Up to a certain point he did well. He + was always a man of iron nerve, and the story is still told in India + how he crawled down a drain after a wounded man-eating tiger. There + are some trees, Watson, which grow to a certain height and then + suddenly develop some unsightly eccentricity. You will see it often + in humans. I have a theory that the individual represents in his + development the whole procession of his ancestors, and that such a + sudden turn to good or evil stands for some strong influence which + came into the line of his pedigree. The person becomes, as it were, + the epitome of the history of his own family." + + "It is surely rather fanciful." + + "Well, I don't insist upon it. Whatever the cause, Colonel Moran + began to go wrong. Without any open scandal he still made India too + hot to hold him. He retired, came to London, and again acquired an + evil name. It was at this time that he was sought out by Professor + Moriarty, to whom for a time he was chief of the staff. Moriarty + supplied him liberally with money and used him only in one or two + very high-class jobs which no ordinary criminal could have + undertaken. You may have some recollection of the death of Mrs. + Stewart, of Lauder, in 1887. Not? Well, I am sure Moran was at the + bottom of it; but nothing could be proved. So cleverly was the + Colonel concealed that even when the Moriarty gang was broken up we + could not incriminate him. You remember at that date, when I called + upon you in your rooms, how I put up the shutters for fear of + air-guns? No doubt you thought me fanciful. I knew exactly what I was + doing, for I knew of the existence of this remarkable gun, and I knew + also that one of the best shots in the world would be behind it. When + we were in Switzerland he followed us with Moriarty, and it was + undoubtedly he who gave me that evil five minutes on the Reichenbach + ledge. + + "You may think that I read the papers with some attention during my + sojourn in France, on the look-out for any chance of laying him by + the heels. So long as he was free in London my life would really not + have been worth living. Night and day the shadow would have been over + me, and sooner or later his chance must have come. What could I do? I + could not shoot him at sight, or I should myself be in the dock. + There was no use appealing to a magistrate. They cannot interfere on + the strength of what would appear to them to be a wild suspicion. So + I could do nothing. But I watched the criminal news, knowing that + sooner or later I should get him. Then came the death of this Ronald + Adair. My chance had come at last! Knowing what I did, was it not + certain that Colonel Moran had done it? He had played cards with the + lad; he had followed him home from the club; he had shot him through + the open window. There was not a doubt of it. The bullets alone are + enough to put his head in a noose. I came over at once. I was seen by + the sentinel, who would, I knew, direct the Colonel's attention to my + presence. He could not fail to connect my sudden return with his + crime and to be terribly alarmed. I was sure that he would make an + attempt to get me out of the way at once, and would bring round his + murderous weapon for that purpose. I left him an excellent mark in + the window, and, having warned the police that they might be + needed--by the way, Watson, you spotted their presence in that + doorway with unerring accuracy--I took up what seemed to me to be a + judicious post for observation, never dreaming that he would choose + the same spot for his attack. Now, my dear Watson, does anything + remain for me to explain?" + + "Yes," said I. "You have not made it clear what was Colonel Moran's + motive in murdering the Honourable Ronald Adair." + + "Ah! my dear Watson, there we come into those realms of conjecture + where the most logical mind may be at fault. Each may form his own + hypothesis upon the present evidence, and yours is as likely to be + correct as mine." + + "You have formed one, then?" + + "I think that it is not difficult to explain the facts. It came out + in evidence that Colonel Moran and young Adair had between them won a + considerable amount of money. Now, Moran undoubtedly played foul--of + that I have long been aware. I believe that on the day of the murder + Adair had discovered that Moran was cheating. Very likely he had + spoken to him privately, and had threatened to expose him unless he + voluntarily resigned his membership of the club and promised not to + play cards again. It is unlikely that a youngster like Adair would at + once make a hideous scandal by exposing a well-known man so much + older than himself. Probably he acted as I suggest. The exclusion + from his clubs would mean ruin to Moran, who lived by his ill-gotten + card gains. He therefore murdered Adair, who at the time was + endeavouring to work out how much money he should himself return, + since he could not profit by his partner's foul play. He locked the + door lest the ladies should surprise him and insist upon knowing what + he was doing with these names and coins. Will it pass?" + + "I have no doubt that you have hit upon the truth." + + "It will be verified or disproved at the trial. Meanwhile, come what + may, Colonel Moran will trouble us no more, the famous air-gun of Von + Herder will embellish the Scotland Yard Museum, and once again Mr. + Sherlock Holmes is free to devote his life to examining those + interesting little problems which the complex life of London so + plentifully presents." + + + + + + + THE ADVENTURE OF THE NORWOOD BUILDER + + "From the point of view of the criminal expert," said Mr. Sherlock + Holmes, "London has become a singularly uninteresting city since the + death of the late lamented Professor Moriarty." + + "I can hardly think that you would find many decent citizens to agree + with you," I answered. + + "Well, well, I must not be selfish," said he, with a smile, as he + pushed back his chair from the breakfast-table. "The community is + certainly the gainer, and no one the loser, save the poor out-of-work + specialist, whose occupation has gone. With that man in the field + one's morning paper presented infinite possibilities. Often it was + only the smallest trace, Watson, the faintest indication, and yet it + was enough to tell me that the great malignant brain was there, as + the gentlest tremors of the edges of the web remind one of the foul + spider which lurks in the centre. Petty thefts, wanton assaults, + purposeless outrage--to the man who held the clue all could be worked + into one connected whole. To the scientific student of the higher + criminal world no capital in Europe offered the advantages which + London then possessed. But now--" He shrugged his shoulders in + humorous deprecation of the state of things which he had himself done + so much to produce. + + At the time of which I speak Holmes had been back for some months, + and I, at his request, had sold my practice and returned to share the + old quarters in Baker Street. A young doctor, named Verner, had + purchased my small Kensington practice, and given with astonishingly + little demur the highest price that I ventured to ask--an incident + which only explained itself some years later when I found that Verner + was a distant relation of Holmes's, and that it was my friend who had + really found the money. + + Our months of partnership had not been so uneventful as he had + stated, for I find, on looking over my notes, that this period + includes the case of the papers of Ex-President Murillo, and also the + shocking affair of the Dutch steamship Friesland, which so nearly + cost us both our lives. His cold and proud nature was always averse, + however, to anything in the shape of public applause, and he bound me + in the most stringent terms to say no further word of himself, his + methods, or his successes--a prohibition which, as I have explained, + has only now been removed. + + Mr. Sherlock Holmes was leaning back in his chair after his whimsical + protest, and was unfolding his morning paper in a leisurely fashion, + when our attention was arrested by a tremendous ring at the bell, + followed immediately by a hollow drumming sound, as if someone were + beating on the outer door with his fist. As it opened there came a + tumultuous rush into the hall, rapid feet clattered up the stair, and + an instant later a wild-eyed and frantic young man, pale, + dishevelled, and palpitating, burst into the room. He looked from one + to the other of us, and under our gaze of inquiry he became conscious + that some apology was needed for this unceremonious entry. + + "I'm sorry, Mr. Holmes," he cried. "You mustn't blame me. I am nearly + mad. Mr. Holmes, I am the unhappy John Hector McFarlane." + + He made the announcement as if the name alone would explain both his + visit and its manner; but I could see by my companion's unresponsive + face that it meant no more to him than to me. + + "Have a cigarette, Mr. McFarlane," said he, pushing his case across. + "I am sure that with your symptoms my friend Dr. Watson here would + prescribe a sedative. The weather has been so very warm these last + few days. Now, if you feel a little more composed, I should be glad + if you would sit down in that chair and tell us very slowly and + quietly who you are and what it is that you want. You mentioned your + name as if I should recognise it, but I assure you that, beyond the + obvious facts that you are a bachelor, a solicitor, a Freemason, and + an asthmatic, I know nothing whatever about you." + + Familiar as I was with my friend's methods, it was not difficult for + me to follow his deductions, and to observe the untidiness of attire, + the sheaf of legal papers, the watch-charm, and the breathing which + had prompted them. Our client, however, stared in amazement. + + "Yes, I am all that, Mr. Holmes, and in addition I am the most + unfortunate man at this moment in London. For Heaven's sake don't + abandon me, Mr. Holmes! If they come to arrest me before I have + finished my story, make them give me time so that I may tell you the + whole truth. I could go to jail happy if I knew that you were working + for me outside." + + "Arrest you!" said Holmes. "This is really most grati--most + interesting. On what charge do you expect to be arrested?" + + "Upon the charge of murdering Mr. Jonas Oldacre, of Lower Norwood." + + My companion's expressive face showed a sympathy which was not, I am + afraid, entirely unmixed with satisfaction. + + "Dear me," said he; "it was only this moment at breakfast that I was + saying to my friend, Dr. Watson, that sensational cases had + disappeared out of our papers." + + Our visitor stretched forward a quivering hand and picked up the + Daily Telegraph, which still lay upon Holmes's knee. + + "If you had looked at it, sir, you would have seen at a glance what + the errand is on which I have come to you this morning. I feel as if + my name and my misfortune must be in every man's mouth." He turned it + over to expose the central page. "Here it is, and with your + permission I will read it to you. Listen to this, Mr. Holmes. The + head-lines are: 'Mysterious Affair at Lower Norwood. Disappearance of + a Well-known Builder. Suspicion of Murder and Arson. A Clue to the + Criminal.' That is the clue which they are already following, Mr. + Holmes, and I know that it leads infallibly to me. I have been + followed from London Bridge Station, and I am sure that they are only + waiting for the warrant to arrest me. It will break my mother's + heart--it will break her heart!" He wrung his hands in an agony of + apprehension, and swayed backwards and forwards in his chair. + + I looked with interest upon this man, who was accused of being the + perpetrator of a crime of violence. He was flaxen-haired and handsome + in a washed-out negative fashion, with frightened blue eyes and a + clean-shaven face, with a weak, sensitive mouth. His age may have + been about twenty-seven; his dress and bearing that of a gentleman. + From the pocket of his light summer overcoat protruded the bundle of + endorsed papers which proclaimed his profession. + + "We must use what time we have," said Holmes. "Watson, would you have + the kindness to take the paper and to read me the paragraph in + question?" + + Underneath the vigorous head-lines which our client had quoted I read + the following suggestive narrative:-- + + "Late last night, or early this morning, an incident occurred at + Lower Norwood which points, it is feared, to a serious crime. Mr. + Jonas Oldacre is a well-known resident of that suburb, where he has + carried on his business as a builder for many years. Mr. Oldacre is a + bachelor, fifty-two years of age, and lives in Deep Dene House, at + the Sydenham end of the road of that name. He has had the reputation + of being a man of eccentric habits, secretive and retiring. For some + years he has practically withdrawn from the business, in which he is + said to have amassed considerable wealth. A small timber-yard still + exists, however, at the back of the house, and last night, about + twelve o'clock, an alarm was given that one of the stacks was on + fire. The engines were soon upon the spot, but the dry wood burned + with great fury, and it was impossible to arrest the conflagration + until the stack had been entirely consumed. Up to this point the + incident bore the appearance of an ordinary accident, but fresh + indications seem to point to serious crime. Surprise was expressed at + the absence of the master of the establishment from the scene of the + fire, and an inquiry followed, which showed that he had disappeared + from the house. An examination of his room revealed that the bed had + not been slept in, that a safe which stood in it was open, that a + number of important papers were scattered about the room, and, + finally, that there were signs of a murderous struggle, slight traces + of blood being found within the room, and an oaken walking-stick, + which also showed stains of blood upon the handle. It is known that + Mr. Jonas Oldacre had received a late visitor in his bedroom upon + that night, and the stick found has been identified as the property + of this person, who is a young London solicitor named John Hector + McFarlane, junior partner of Graham and McFarlane, of 426, Gresham + Buildings, E.C. The police believe that they have evidence in their + possession which supplies a very convincing motive for the crime, and + altogether it cannot be doubted that sensational developments will + follow. + "Later.--It is rumoured as we go to press that Mr. John Hector + McFarlane has actually been arrested on the charge of the murder of + Mr. Jonas Oldacre. It is at least certain that a warrant has been + issued. There have been further and sinister developments in the + investigation at Norwood. Besides the signs of a struggle in the room + of the unfortunate builder it is now known that the French windows of + his bedroom (which is on the ground floor) were found to be open, + that there were marks as if some bulky object had been dragged across + to the wood-pile, and, finally, it is asserted that charred remains + have been found among the charcoal ashes of the fire. The police + theory is that a most sensational crime has been committed, that the + victim was clubbed to death in his own bedroom, his papers rifled, + and his dead body dragged across to the wood-stack, which was then + ignited so as to hide all traces of the crime. The conduct of the + criminal investigation has been left in the experienced hands of + Inspector Lestrade, of Scotland Yard, who is following up the clues + with his accustomed energy and sagacity." + + Sherlock Holmes listened with closed eyes and finger-tips together to + this remarkable account. + + "The case has certainly some points of interest," said he, in his + languid fashion. "May I ask, in the first place, Mr. McFarlane, how + it is that you are still at liberty, since there appears to be enough + evidence to justify your arrest?" + + "I live at Torrington Lodge, Blackheath, with my parents, Mr. Holmes; + but last night, having to do business very late with Mr. Jonas + Oldacre, I stayed at an hotel in Norwood, and came to my business + from there. I knew nothing of this affair until I was in the train, + when I read what you have just heard. I at once saw the horrible + danger of my position, and I hurried to put the case into your hands. + I have no doubt that I should have been arrested either at my City + office or at my home. A man followed me from London Bridge Station, + and I have no doubt--Great Heaven, what is that?" + + It was a clang of the bell, followed instantly by heavy steps upon + the stair. A moment later our old friend Lestrade appeared in the + doorway. Over his shoulder I caught a glimpse of one or two uniformed + policemen outside. + + "Mr. John Hector McFarlane?" said Lestrade. + + Our unfortunate client rose with a ghastly face. + + "I arrest you for the wilful murder of Mr. Jonas Oldacre, of Lower + Norwood." + + McFarlane turned to us with a gesture of despair, and sank into his + chair once more like one who is crushed. + + "One moment, Lestrade," said Holmes. "Half an hour more or less can + make no difference to you, and the gentleman was about to give us an + account of this very interesting affair, which might aid us in + clearing it up." + + "I think there will be no difficulty in clearing it up," said + Lestrade, grimly. + + "None the less, with your permission, I should be much interested to + hear his account." + + "Well, Mr. Holmes, it is difficult for me to refuse you anything, for + you have been of use to the force once or twice in the past, and we + owe you a good turn at Scotland Yard," said Lestrade. "At the same + time I must remain with my prisoner, and I am bound to warn him that + anything he may say will appear in evidence against him." + + "I wish nothing better," said our client. "All I ask is that you + should hear and recognise the absolute truth." + + Lestrade looked at his watch. "I'll give you half an hour," said he. + + "I must explain first," said McFarlane, "that I knew nothing of Mr. + Jonas Oldacre. His name was familiar to me, for many years ago my + parents were acquainted with him, but they drifted apart. I was very + much surprised, therefore, when yesterday, about three o'clock in the + afternoon, he walked into my office in the City. But I was still more + astonished when he told me the object of his visit. He had in his + hand several sheets of a note-book, covered with scribbled + writing--here they are--and he laid them on my table. + + "'Here is my will,' said he. 'I want you, Mr. McFarlane, to cast it + into proper legal shape. I will sit here while you do so.' + + "I set myself to copy it, and you can imagine my astonishment when I + found that, with some reservations, he had left all his property to + me. He was a strange little, ferret-like man, with white eyelashes, + and when I looked up at him I found his keen grey eyes fixed upon me + with an amused expression. I could hardly believe my own senses as I + read the terms of the will; but he explained that he was a bachelor + with hardly any living relation, that he had known my parents in his + youth, and that he had always heard of me as a very deserving young + man, and was assured that his money would be in worthy hands. Of + course, I could only stammer out my thanks. The will was duly + finished, signed, and witnessed by my clerk. This is it on the blue + paper, and these slips, as I have explained, are the rough draft. Mr. + Jonas Oldacre then informed me that there were a number of + documents--building leases, title-deeds, mortgages, scrip, and so + forth--which it was necessary that I should see and understand. He + said that his mind would not be easy until the whole thing was + settled, and he begged me to come out to his house at Norwood that + night, bringing the will with me, and to arrange matters. 'Remember, + my boy, not one word to your parents about the affair until + everything is settled. We will keep it as a little surprise for + them.' He was very insistent upon this point, and made me promise it + faithfully. + + "You can imagine, Mr. Holmes, that I was not in a humour to refuse + him anything that he might ask. He was my benefactor, and all my + desire was to carry out his wishes in every particular. I sent a + telegram home, therefore, to say that I had important business on + hand, and that it was impossible for me to say how late I might be. + Mr. Oldacre had told me that he would like me to have supper with him + at nine, as he might not be home before that hour. I had some + difficulty in finding his house, however, and it was nearly half-past + before I reached it. I found him--" + + "One moment!" said Holmes. "Who opened the door?" + + "A middle-aged woman, who was, I suppose, his housekeeper." + + "And it was she, I presume, who mentioned your name?" + + "Exactly," said McFarlane. + + "Pray proceed." + + McFarlane wiped his damp brow and then continued his narrative:-- + + "I was shown by this woman into a sitting-room, where a frugal supper + was laid out. Afterwards Mr. Jonas Oldacre led me into his bedroom, + in which there stood a heavy safe. This he opened and took out a mass + of documents, which we went over together. It was between eleven and + twelve when we finished. He remarked that we must not disturb the + housekeeper. He showed me out through his own French window, which + had been open all this time." + + "Was the blind down?" asked Holmes. + + "I will not be sure, but I believe that it was only half down. Yes, I + remember how he pulled it up in order to swing open the window. I + could not find my stick, and he said, 'Never mind, my boy; I shall + see a good deal of you now, I hope, and I will keep your stick until + you come back to claim it.' I left him there, the safe open, and the + papers made up in packets upon the table. It was so late that I could + not get back to Blackheath, so I spent the night at the Anerley Arms, + and I knew nothing more until I read of this horrible affair in the + morning." + + "Anything more that you would like to ask, Mr. Holmes?" said + Lestrade, whose eyebrows had gone up once or twice during this + remarkable explanation. + + "Not until I have been to Blackheath." + + "You mean to Norwood," said Lestrade. + + "Oh, yes; no doubt that is what I must have meant," said Holmes, with + his enigmatical smile. Lestrade had learned by more experiences than + he would care to acknowledge that that razor-like brain could cut + through that which was impenetrable to him. I saw him look curiously + at my companion. + + "I think I should like to have a word with you presently, Mr. + Sherlock Holmes," said he. "Now, Mr. McFarlane, two of my constables + are at the door and there is a four-wheeler waiting." The wretched + young man arose, and with a last beseeching glance at us walked from + the room. The officers conducted him to the cab, but Lestrade + remained. + + Holmes had picked up the pages which formed the rough draft of the + will, and was looking at them with the keenest interest upon his + face. + + "There are some points about that document, Lestrade, are there not?" + said he, pushing them over. + + The official looked at them with a puzzled expression. + + "I can read the first few lines, and these in the middle of the + second page, and one or two at the end. Those are as clear as print," + said he; "but the writing in between is very bad, and there are three + places where I cannot read it at all." + + "What do you make of that?" said Holmes. + + "Well, what do you make of it?" + + "That it was written in a train; the good writing represents + stations, the bad writing movement, and the very bad writing passing + over points. A scientific expert would pronounce at once that this + was drawn up on a suburban line, since nowhere save in the immediate + vicinity of a great city could there be so quick a succession of + points. Granting that his whole journey was occupied in drawing up + the will, then the train was an express, only stopping once between + Norwood and London Bridge." + + Lestrade began to laugh. + + "You are too many for me when you begin to get on your theories, Mr. + Holmes," said he. "How does this bear on the case?" + + "Well, it corroborates the young man's story to the extent that the + will was drawn up by Jonas Oldacre in his journey yesterday. It is + curious--is it not?--that a man should draw up so important a + document in so haphazard a fashion. It suggests that he did not think + it was going to be of much practical importance. If a man drew up a + will which he did not intend ever to be effective he might do it so." + + "Well, he drew up his own death-warrant at the same time," said + Lestrade. + + "Oh, you think so?" + + "Don't you?" + + "Well, it is quite possible; but the case is not clear to me yet." + + "Not clear? Well, if that isn't clear, what could be clear? Here is a + young man who learns suddenly that if a certain older man dies he + will succeed to a fortune. What does he do? He says nothing to + anyone, but he arranges that he shall go out on some pretext to see + his client that night; he waits until the only other person in the + house is in bed, and then in the solitude of a man's room he murders + him, burns his body in the wood-pile, and departs to a neighbouring + hotel. The blood-stains in the room and also on the stick are very + slight. It is probable that he imagined his crime to be a bloodless + one, and hoped that if the body were consumed it would hide all + traces of the method of his death--traces which for some reason must + have pointed to him. Is all this not obvious?" + + "It strikes me, my good Lestrade, as being just a trifle too + obvious," said Holmes. "You do not add imagination to your other + great qualities; but if you could for one moment put yourself in the + place of this young man, would you choose the very night after the + will had been made to commit your crime? Would it not seem dangerous + to you to make so very close a relation between the two incidents? + Again, would you choose an occasion when you are known to be in the + house, when a servant has let you in? And, finally, would you take + the great pains to conceal the body and yet leave your own stick as a + sign that you were the criminal? Confess, Lestrade, that all this is + very unlikely." + + "As to the stick, Mr. Holmes, you know as well as I do that a + criminal is often flurried and does things which a cool man would + avoid. He was very likely afraid to go back to the room. Give me + another theory that would fit the facts." + + "I could very easily give you half-a-dozen," said Holmes. "Here, for + example, is a very possible and even probable one. I make you a free + present of it. The older man is showing documents which are of + evident value. A passing tramp sees them through the window, the + blind of which is only half down. Exit the solicitor. Enter the + tramp! He seizes a stick, which he observes there, kills Oldacre, and + departs after burning the body." + + "Why should the tramp burn the body?" + + "For the matter of that why should McFarlane?" + + "To hide some evidence." + + "Possibly the tramp wanted to hide that any murder at all had been + committed." + + "And why did the tramp take nothing?" + + "Because they were papers that he could not negotiate." + + Lestrade shook his head, though it seemed to me that his manner was + less absolutely assured than before. + + "Well, Mr. Sherlock Holmes, you may look for your tramp, and while + you are finding him we will hold on to our man. The future will show + which is right. Just notice this point, Mr. Holmes: that so far as we + know none of the papers were removed, and that the prisoner is the + one man in the world who had no reason for removing them, since he + was heir-at-law and would come into them in any case." + + My friend seemed struck by this remark. + + "I don't mean to deny that the evidence is in some ways very strongly + in favour of your theory," said he. "I only wish to point out that + there are other theories possible. As you say, the future will + decide. Good morning! I dare say that in the course of the day I + shall drop in at Norwood and see how you are getting on." + + When the detective departed my friend rose and made his preparations + for the day's work with the alert air of a man who has a congenial + task before him. + + "My first movement, Watson," said he, as he bustled into his + frock-coat, "must, as I said, be in the direction of Blackheath." + + "And why not Norwood?" + + "Because we have in this case one singular incident coming close to + the heels of another singular incident. The police are making the + mistake of concentrating their attention upon the second, because it + happens to be the one which is actually criminal. But it is evident + to me that the logical way to approach the case is to begin by trying + to throw some light upon the first incident--the curious will, so + suddenly made, and to so unexpected an heir. It may do something to + simplify what followed. No, my dear fellow, I don't think you can + help me. There is no prospect of danger, or I should not dream of + stirring out without you. I trust that when I see you in the evening + I will be able to report that I have been able to do something for + this unfortunate youngster who has thrown himself upon my + protection." + + It was late when my friend returned, and I could see by a glance at + his haggard and anxious face that the high hopes with which he had + started had not been fulfilled. For an hour he droned away upon his + violin, endeavouring to soothe his own ruffled spirits. At last he + flung down the instrument and plunged into a detailed account of his + misadventures. + + "It's all going wrong, Watson--all as wrong as it can go. I kept a + bold face before Lestrade, but, upon my soul, I believe that for once + the fellow is on the right track and we are on the wrong. All my + instincts are one way and all the facts are the other, and I much + fear that British juries have not yet attained that pitch of + intelligence when they will give the preference to my theories over + Lestrade's facts." + + "Did you go to Blackheath?" + + "Yes, Watson, I went there, and I found very quickly that the late + lamented Oldacre was a pretty considerable black-guard. The father + was away in search of his son. The mother was at home--a little, + fluffy, blue-eyed person, in a tremor of fear and indignation. Of + course, she would not admit even the possibility of his guilt. But + she would not express either surprise or regret over the fate of + Oldacre. On the contrary, she spoke of him with such bitterness that + she was unconsciously considerably strengthening the case of the + police, for, of course, if her son had heard her speak of the man in + this fashion it would predispose him towards hatred and violence. 'He + was more like a malignant and cunning ape than a human being,' said + she, 'and he always was, ever since he was a young man.' + + "'You knew him at that time?' said I. + + "'Yes, I knew him well; in fact, he was an old suitor of mine. Thank + Heaven that I had the sense to turn away from him and to marry a + better, if a poorer, man. I was engaged to him, Mr. Holmes, when I + heard a shocking story of how he had turned a cat loose in an aviary, + and I was so horrified at his brutal cruelty that I would have + nothing more to do with him.' She rummaged in a bureau, and presently + she produced a photograph of a woman, shamefully defaced and + mutilated with a knife. 'That is my own photograph,' she said. 'He + sent it to me in that state, with his curse, upon my wedding + morning.' + + "'Well,' said I, 'at least he has forgiven you now, since he has left + all his property to your son.' + + "'Neither my son nor I want anything from Jonas Oldacre, dead or + alive,' she cried, with a proper spirit. 'There is a God in Heaven, + Mr. Holmes, and that same God who has punished that wicked man will + show in His own good time that my son's hands are guiltless of his + blood.' + + "Well, I tried one or two leads, but could get at nothing which would + help our hypothesis, and several points which would make against it. + I gave it up at last and off I went to Norwood. + + "This place, Deep Dene House, is a big modern villa of staring brick, + standing back in its own grounds, with a laurel-clumped lawn in front + of it. To the right and some distance back from the road was the + timber-yard which had been the scene of the fire. Here's a rough plan + on a leaf of my note-book. This window on the left is the one which + opens into Oldacre's room. You can look into it from the road, you + see. That is about the only bit of consolation I have had to-day. + Lestrade was not there, but his head constable did the honours. They + had just made a great treasure-trove. They had spent the morning + raking among the ashes of the burned wood-pile, and besides the + charred organic remains they had secured several discoloured metal + discs. I examined them with care, and there was no doubt that they + were trouser buttons. I even distinguished that one of them was + marked with the name of 'Hyams,' who was Oldacre's tailor. I then + worked the lawn very carefully for signs and traces, but this drought + has made everything as hard as iron. Nothing was to be seen save that + some body or bundle had been dragged through a low privet hedge which + is in a line with the wood-pile. All that, of course, fits in with + the official theory. I crawled about the lawn with an August sun on + my back, but I got up at the end of an hour no wiser than before. + + "Well, after this fiasco I went into the bedroom and examined that + also. The blood-stains were very slight, mere smears and + discolorations, but undoubtedly fresh. The stick had been removed, + but there also the marks were slight. There is no doubt about the + stick belonging to our client. He admits it. Footmarks of both men + could be made out on the carpet, but none of any third person, which + again is a trick for the other side. They were piling up their score + all the time and we were at a standstill. + + "Only one little gleam of hope did I get--and yet it amounted to + nothing. I examined the contents of the safe, most of which had been + taken out and left on the table. The papers had been made up into + sealed envelopes, one or two of which had been opened by the police. + They were not, so far as I could judge, of any great value, nor did + the bank-book show that Mr. Oldacre was in such very affluent + circumstances. But it seemed to me that all the papers were not + there. There were allusions to some deeds--possibly the more + valuable--which I could not find. This, of course, if we could + definitely prove it, would turn Lestrade's argument against himself, + for who would steal a thing if he knew that he would shortly inherit + it? + + "Finally, having drawn every other cover and picked up no scent, I + tried my luck with the housekeeper. Mrs. Lexington is her name, a + little, dark, silent person, with suspicious and sidelong eyes. She + could tell us something if she would--I am convinced of it. But she + was as close as wax. Yes, she had let Mr. McFarlane in at half-past + nine. She wished her hand had withered before she had done so. She + had gone to bed at half-past ten. Her room was at the other end of + the house, and she could hear nothing of what passed. Mr. McFarlane + had left his hat, and to the best of her belief his stick, in the + hall. She had been awakened by the alarm of fire. Her poor, dear + master had certainly been murdered. Had he any enemies? Well, every + man had enemies, but Mr. Oldacre kept himself very much to himself, + and only met people in the way of business. She had seen the buttons, + and was sure that they belonged to the clothes which he had worn last + night. The wood-pile was very dry, for it had not rained for a month. + It burned like tinder, and by the time she reached the spot nothing + could be seen but flames. She and all the firemen smelled the burned + flesh from inside it. She knew nothing of the papers, nor of Mr. + Oldacre's private affairs. + + "So, my dear Watson, there's my report of a failure. And yet--and + yet--"--he clenched his thin hands in a paroxysm of conviction--"I + know it's all wrong. I feel it in my bones. There is something that + has not come out, and that housekeeper knows it. There was a sort of + sulky defiance in her eyes, which only goes with guilty knowledge. + However, there's no good talking any more about it, Watson; but + unless some lucky chance comes our way I fear that the Norwood + Disappearance Case will not figure in that chronicle of our successes + which I foresee that a patient public will sooner or later have to + endure." + + "Surely," said I, "the man's appearance would go far with any jury?" + + "That is a dangerous argument, my dear Watson. You remember that + terrible murderer, Bert Stevens, who wanted us to get him off in '87? + Was there ever a more mild-mannered, Sunday-school young man?" + + "It is true." + + "Unless we succeed in establishing an alternative theory this man is + lost. You can hardly find a flaw in the case which can now be + presented against him, and all further investigation has served to + strengthen it. By the way, there is one curious little point about + those papers which may serve us as the starting-point for an inquiry. + On looking over the bank-book I found that the low state of the + balance was principally due to large cheques which have been made out + during the last year to Mr. Cornelius. I confess that I should be + interested to know who this Mr. Cornelius may be with whom a retired + builder has such very large transactions. Is it possible that he has + had a hand in the affair? Cornelius might be a broker, but we have + found no scrip to correspond with these large payments. Failing any + other indication my researches must now take the direction of an + inquiry at the bank for the gentleman who has cashed these cheques. + But I fear, my dear fellow, that our case will end ingloriously by + Lestrade hanging our client, which will certainly be a triumph for + Scotland Yard." + + I do not know how far Sherlock Holmes took any sleep that night, but + when I came down to breakfast I found him pale and harassed, his + bright eyes the brighter for the dark shadows round them. The carpet + round his chair was littered with cigarette-ends and with the early + editions of the morning papers. An open telegram lay upon the table. + + "What do you think of this, Watson?" he asked, tossing it across. + + It was from Norwood, and ran as follows: + + "Important fresh evidence to hand. McFarlane's guilt definitely + established. Advise you to abandon case. + Lestrade. + + "This sounds serious," said I. + + "It is Lestrade's little cock-a-doodle of victory," Holmes answered, + with a bitter smile. "And yet it may be premature to abandon the + case. After all, important fresh evidence is a two-edged thing, and + may possibly cut in a very different direction to that which Lestrade + imagines. Take your breakfast, Watson, and we will go out together + and see what we can do. I feel as if I shall need your company and + your moral support to-day." + + My friend had no breakfast himself, for it was one of his + peculiarities that in his more intense moments he would permit + himself no food, and I have known him presume upon his iron strength + until he has fainted from pure inanition. "At present I cannot spare + energy and nerve force for digestion," he would say in answer to my + medical remonstrances. I was not surprised, therefore, when this + morning he left his untouched meal behind him and started with me for + Norwood. A crowd of morbid sightseers were still gathered round Deep + Dene House, which was just such a suburban villa as I had pictured. + Within the gates Lestrade met us, his face flushed with victory, his + manner grossly triumphant. + + "Well, Mr. Holmes, have you proved us to be wrong yet? Have you found + your tramp?" he cried. + + "I have formed no conclusion whatever," my companion answered. + + "But we formed ours yesterday, and now it proves to be correct; so + you must acknowledge that we have been a little in front of you this + time, Mr. Holmes." + + "You certainly have the air of something unusual having occurred," + said Holmes. + + Lestrade laughed loudly. + + "You don't like being beaten any more than the rest of us do," said + he. "A man can't expect always to have it his own way, can he, Dr. + Watson? Step this way, if you please, gentlemen, and I think I can + convince you once for all that it was John McFarlane who did this + crime." + + He led us through the passage and out into a dark hall beyond. + + "This is where young McFarlane must have come out to get his hat + after the crime was done," said he. "Now, look at this." With + dramatic suddenness he struck a match and by its light exposed a + stain of blood upon the whitewashed wall. As he held the match nearer + I saw that it was more than a stain. It was the well-marked print of + a thumb. + + "Look at that with your magnifying glass, Mr. Holmes." + + "Yes, I am doing so." + + "You are aware that no two thumb marks are alike?" + + "I have heard something of the kind." + + "Well, then, will you please compare that print with this wax + impression of young McFarlane's right thumb, taken by my orders this + morning?" + + As he held the waxen print close to the blood-stain it did not take a + magnifying glass to see that the two were undoubtedly from the same + thumb. It was evident to me that our unfortunate client was lost. + + "That is final," said Lestrade. + + "Yes, that is final," I involuntarily echoed. + + "It is final," said Holmes. + + Something in his tone caught my ear, and I turned to look at him. An + extraordinary change had come over his face. It was writhing with + inward merriment. His two eyes were shining like stars. It seemed to + me that he was making desperate efforts to restrain a convulsive + attack of laughter. + + "Dear me! Dear me!" he said at last. "Well, now, who would have + thought it? And how deceptive appearances may be, to be sure! Such a + nice young man to look at! It is a lesson to us not to trust our own + judgment, is it not, Lestrade?" + + "Yes, some of us are a little too much inclined to be cocksure, Mr. + Holmes," said Lestrade. The man's insolence was maddening, but we + could not resent it. + + "What a providential thing that this young man should press his right + thumb against the wall in taking his hat from the peg! Such a very + natural action, too, if you come to think of it." Holmes was + outwardly calm, but his whole body gave a wriggle of suppressed + excitement as he spoke. "By the way, Lestrade, who made this + remarkable discovery?" + + "It was the housekeeper, Mrs. Lexington, who drew the night + constable's attention to it." + + "Where was the night constable?" + + "He remained on guard in the bedroom where the crime was committed, + so as to see that nothing was touched." + + "But why didn't the police see this mark yesterday?" + + "Well, we had no particular reason to make a careful examination of + the hall. Besides, it's not in a very prominent place, as you see." + + "No, no, of course not. I suppose there is no doubt that the mark was + there yesterday?" + + Lestrade looked at Holmes as if he thought he was going out of his + mind. I confess that I was myself surprised both at his hilarious + manner and at his rather wild observation. + + "I don't know whether you think that McFarlane came out of jail in + the dead of the night in order to strengthen the evidence against + himself," said Lestrade. "I leave it to any expert in the world + whether that is not the mark of his thumb." + + "It is unquestionably the mark of his thumb." + + "There, that's enough," said Lestrade. "I am a practical man, Mr. + Holmes, and when I have got my evidence I come to my conclusions. If + you have anything to say you will find me writing my report in the + sitting-room." + + Holmes had recovered his equanimity, though I still seemed to detect + gleams of amusement in his expression. + + "Dear me, this is a very sad development, Watson, is it not?" said + he. "And yet there are singular points about it which hold out some + hopes for our client." + + "I am delighted to hear it," said I, heartily. "I was afraid it was + all up with him." + + "I would hardly go so far as to say that, my dear Watson. The fact is + that there is one really serious flaw in this evidence to which our + friend attaches so much importance." + + "Indeed, Holmes! What is it?" + + "Only this: that I know that that mark was not there when I examined + the hall yesterday. And now, Watson, let us have a little stroll + round in the sunshine." + + With a confused brain, but with a heart into which some warmth of + hope was returning, I accompanied my friend in a walk round the + garden. Holmes took each face of the house in turn and examined it + with great interest. He then led the way inside and went over the + whole building from basement to attics. Most of the rooms were + unfurnished, but none the less Holmes inspected them all minutely. + Finally, on the top corridor, which ran outside three untenanted + bedrooms, he again was seized with a spasm of merriment. + + "There are really some very unique features about this case, Watson," + said he. "I think it is time now that we took our friend Lestrade + into our confidence. He has had his little smile at our expense, and + perhaps we may do as much by him if my reading of this problem proves + to be correct. Yes, yes; I think I see how we should approach it." + + The Scotland Yard inspector was still writing in the parlour when + Holmes interrupted him. + + "I understood that you were writing a report of this case," said he. + + "So I am." + + "Don't you think it may be a little premature? I can't help thinking + that your evidence is not complete." + + Lestrade knew my friend too well to disregard his words. He laid down + his pen and looked curiously at him. + + "What do you mean, Mr. Holmes?" + + "Only that there is an important witness whom you have not seen." + + "Can you produce him?" + + "I think I can." + + "Then do so." + + "I will do my best. How many constables have you?" + + "There are three within call." + + "Excellent!" said Holmes. "May I ask if they are all large, + able-bodied men with powerful voices?" + + "I have no doubt they are, though I fail to see what their voices + have to do with it." + + "Perhaps I can help you to see that and one or two other things as + well," said Holmes. "Kindly summon your men, and I will try." + + Five minutes later three policemen had assembled in the hall. + + "In the outhouse you will find a considerable quantity of straw," + said Holmes. "I will ask you to carry in two bundles of it. I think + it will be of the greatest assistance in producing the witness whom I + require. Thank you very much. I believe you have some matches in your + pocket, Watson. Now, Mr. Lestrade, I will ask you all to accompany me + to the top landing." + + As I have said, there was a broad corridor there, which ran outside + three empty bedrooms. At one end of the corridor we were all + marshalled by Sherlock Holmes, the constables grinning and Lestrade + staring at my friend with amazement, expectation, and derision + chasing each other across his features. Holmes stood before us with + the air of a conjurer who is performing a trick. + + "Would you kindly send one of your constables for two buckets of + water? Put the straw on the floor here, free from the wall on either + side. Now I think that we are all ready." + + Lestrade's face had begun to grow red and angry. + + "I don't know whether you are playing a game with us, Mr. Sherlock + Holmes," said he. "If you know anything, you can surely say it + without all this tomfoolery." + + "I assure you, my good Lestrade, that I have an excellent reason for + everything that I do. You may possibly remember that you chaffed me a + little some hours ago, when the sun seemed on your side of the hedge, + so you must not grudge me a little pomp and ceremony now. Might I ask + you, Watson, to open that window, and then to put a match to the edge + of the straw?" + + I did so, and, driven by the draught, a coil of grey smoke swirled + down the corridor, while the dry straw crackled and flamed. + + "Now we must see if we can find this witness for you, Lestrade. Might + I ask you all to join in the cry of 'Fire!'? Now, then; one, two, + three--" + + "Fire!" we all yelled. + + "Thank you. I will trouble you once again." + + "Fire!" + + "Just once more, gentlemen, and all together." + + "Fire!" The shout must have rung over Norwood. + + It had hardly died away when an amazing thing happened. A door + suddenly flew open out of what appeared to be solid wall at the end + of the corridor, and a little, wizened man darted out of it, like a + rabbit out of its burrow. + + "Capital!" said Holmes, calmly. "Watson, a bucket of water over the + straw. That will do! Lestrade, allow me to present you with your + principal missing witness, Mr. Jonas Oldacre." + + The detective stared at the new-comer with blank amazement. The + latter was blinking in the bright light of the corridor, and peering + at us and at the smouldering fire. It was an odious face--crafty, + vicious, malignant, with shifty, light-grey eyes and white eyelashes. + + "What's this, then?" said Lestrade at last. "What have you been doing + all this time, eh?" + + Oldacre gave an uneasy laugh, shrinking back from the furious red + face of the angry detective. + + "I have done no harm." + + "No harm? You have done your best to get an innocent man hanged. If + it wasn't for this gentleman here, I am not sure that you would not + have succeeded." + + The wretched creature began to whimper. + + "I am sure, sir, it was only my practical joke." + + "Oh! a joke, was it? You won't find the laugh on your side, I promise + you. Take him down and keep him in the sitting-room until I come. Mr. + Holmes," he continued, when they had gone, "I could not speak before + the constables, but I don't mind saying, in the presence of Dr. + Watson, that this is the brightest thing that you have done yet, + though it is a mystery to me how you did it. You have saved an + innocent man's life, and you have prevented a very grave scandal, + which would have ruined my reputation in the Force." + + Holmes smiled and clapped Lestrade upon the shoulder. + + "Instead of being ruined, my good sir, you will find that your + reputation has been enormously enhanced. Just make a few alterations + in that report which you were writing, and they will understand how + hard it is to throw dust in the eyes of Inspector Lestrade." + + "And you don't want your name to appear?" + + "Not at all. The work is its own reward. Perhaps I shall get the + credit also at some distant day when I permit my zealous historian to + lay out his foolscap once more--eh, Watson? Well, now, let us see + where this rat has been lurking." + + A lath-and-plaster partition had been run across the passage six feet + from the end, with a door cunningly concealed in it. It was lit + within by slits under the eaves. A few articles of furniture and a + supply of food and water were within, together with a number of books + and papers. + + "There's the advantage of being a builder," said Holmes, as we came + out. "He was able to fix up his own little hiding-place without any + confederate--save, of course, that precious housekeeper of his, whom + I should lose no time in adding to your bag, Lestrade." + + "I'll take your advice. But how did you know of this place, Mr. + Holmes?" + + "I made up my mind that the fellow was in hiding in the house. When I + paced one corridor and found it six feet shorter than the + corresponding one below, it was pretty clear where he was. I thought + he had not the nerve to lie quiet before an alarm of fire. We could, + of course, have gone in and taken him, but it amused me to make him + reveal himself; besides, I owed you a little mystification, Lestrade, + for your chaff in the morning." + + "Well, sir, you certainly got equal with me on that. But how in the + world did you know that he was in the house at all?" + + "The thumb-mark, Lestrade. You said it was final; and so it was, in a + very different sense. I knew it had not been there the day before. I + pay a good deal of attention to matters of detail, as you may have + observed, and I had examined the hall and was sure that the wall was + clear. Therefore, it had been put on during the night." + + "But how?" + + "Very simply. When those packets were sealed up, Jonas Oldacre got + McFarlane to secure one of the seals by putting his thumb upon the + soft wax. It would be done so quickly and so naturally that I dare + say the young man himself has no recollection of it. Very likely it + just so happened, and Oldacre had himself no notion of the use he + would put it to. Brooding over the case in that den of his, it + suddenly struck him what absolutely damning evidence he could make + against McFarlane by using that thumb-mark. It was the simplest thing + in the world for him to take a wax impression from the seal, to + moisten it in as much blood as he could get from a pin-prick, and to + put the mark upon the wall during the night, either with his own hand + or with that of his housekeeper. If you examine among those documents + which he took with him into his retreat I will lay you a wager that + you find the seal with the thumb-mark upon it." + + "Wonderful!" said Lestrade. "Wonderful! It's all as clear as crystal, + as you put it. But what is the object of this deep deception, Mr. + Holmes?" + + It was amusing to me to see how the detective's overbearing manner + had changed suddenly to that of a child asking questions of its + teacher. + + "Well, I don't think that is very hard to explain. A very deep, + malicious, vindictive person is the gentleman who is now awaiting us + downstairs. You know that he was once refused by McFarlane's mother? + You don't! I told you that you should go to Blackheath first and + Norwood afterwards. Well, this injury, as he would consider it, has + rankled in his wicked, scheming brain, and all his life he has longed + for vengeance, but never seen his chance. During the last year or two + things have gone against him--secret speculation, I think--and he + finds himself in a bad way. He determines to swindle his creditors, + and for this purpose he pays large cheques to a certain Mr. + Cornelius, who is, I imagine, himself under another name. I have not + traced these cheques yet, but I have no doubt that they were banked + under that name at some provincial town where Oldacre from time to + time led a double existence. He intended to change his name + altogether, draw this money, and vanish, starting life again + elsewhere." + + "Well, that's likely enough." + + "It would strike him that in disappearing he might throw all pursuit + off his track, and at the same time have an ample and crushing + revenge upon his old sweetheart, if he could give the impression that + he had been murdered by her only child. It was a masterpiece of + villainy, and he carried it out like a master. The idea of the will, + which would give an obvious motive for the crime, the secret visit + unknown to his own parents, the retention of the stick, the blood, + and the animal remains and buttons in the wood-pile, all were + admirable. It was a net from which it seemed to me a few hours ago + that there was no possible escape. But he had not that supreme gift + of the artist, the knowledge of when to stop. He wished to improve + that which was already perfect--to draw the rope tighter yet round + the neck of his unfortunate victim--and so he ruined all. Let us + descend, Lestrade. There are just one or two questions that I would + ask him." + + The malignant creature was seated in his own parlour with a policeman + upon each side of him. + + "It was a joke, my good sir, a practical joke, nothing more," he + whined incessantly. "I assure you, sir, that I simply concealed + myself in order to see the effect of my disappearance, and I am sure + that you would not be so unjust as to imagine that I would have + allowed any harm to befall poor young Mr. McFarlane." + + "That's for a jury to decide," said Lestrade. "Anyhow, we shall have + you on a charge of conspiracy, if not for attempted murder." + + "And you'll probably find that your creditors will impound the + banking account of Mr. Cornelius," said Holmes. + + The little man started and turned his malignant eyes upon my friend. + + "I have to thank you for a good deal," said he. "Perhaps I'll pay my + debt some day." + + Holmes smiled indulgently. + + "I fancy that for some few years you will find your time very fully + occupied," said he. "By the way, what was it you put into the + wood-pile besides your old trousers? A dead dog, or rabbits, or what? + You won't tell? Dear me, how very unkind of you! Well, well, I dare + say that a couple of rabbits would account both for the blood and for + the charred ashes. If ever you write an account, Watson, you can make + rabbits serve your turn." + + + + + + + THE ADVENTURE OF THE DANCING MEN + + Holmes had been seated for some hours in silence with his long, thin + back curved over a chemical vessel in which he was brewing a + particularly malodorous product. His head was sunk upon his breast, + and he looked from my point of view like a strange, lank bird, with + dull grey plumage and a black top-knot. + + "So, Watson," said he, suddenly, "you do not propose to invest in + South African securities?" + + I gave a start of astonishment. Accustomed as I was to Holmes's + curious faculties, this sudden intrusion into my most intimate + thoughts was utterly inexplicable. + + "How on earth do you know that?" I asked. + + He wheeled round upon his stool, with a steaming test-tube in his + hand and a gleam of amusement in his deep-set eyes. + + "Now, Watson, confess yourself utterly taken aback," said he. + + "I am." + + "I ought to make you sign a paper to that effect." + + "Why?" + + "Because in five minutes you will say that it is all so absurdly + simple." + + "I am sure that I shall say nothing of the kind." + + "You see, my dear Watson"--he propped his test-tube in the rack and + began to lecture with the air of a professor addressing his + class--"it is not really difficult to construct a series of + inferences, each dependent upon its predecessor and each simple in + itself. If, after doing so, one simply knocks out all the central + inferences and presents one's audience with the starting-point and + the conclusion, one may produce a startling, though possibly a + meretricious, effect. Now, it was not really difficult, by an + inspection of the groove between your left forefinger and thumb, to + feel sure that you did not propose to invest your small capital in + the goldfields." + + "I see no connection." + + "Very likely not; but I can quickly show you a close connection. Here + are the missing links of the very simple chain: 1. You had chalk + between your left finger and thumb when you returned from the club + last night. 2. You put chalk there when you play billiards to steady + the cue. 3. You never play billiards except with Thurston. 4. You + told me four weeks ago that Thurston had an option on some South + African property which would expire in a month, and which he desired + you to share with him. 5. Your cheque-book is locked in my drawer, + and you have not asked for the key. 6. You do not propose to invest + your money in this manner." + + "How absurdly simple!" I cried. + + "Quite so!" said he, a little nettled. "Every problem becomes very + childish when once it is explained to you. Here is an unexplained + one. See what you can make of that, friend Watson." He tossed a sheet + of paper upon the table and turned once more to his chemical + analysis. + + I looked with amazement at the absurd hieroglyphics upon the paper. + + "Why, Holmes, it is a child's drawing," I cried. + + "Oh, that's your idea!" + + "What else should it be?" + + "That is what Mr. Hilton Cubitt, of Ridling Thorpe Manor, Norfolk, is + very anxious to know. This little conundrum came by the first post, + and he was to follow by the next train. There's a ring at the bell, + Watson. I should not be very much surprised if this were he." + + A heavy step was heard upon the stairs, and an instant later there + entered a tall, ruddy, clean-shaven gentleman, whose clear eyes and + florid cheeks told of a life led far from the fogs of Baker Street. + He seemed to bring a whiff of his strong, fresh, bracing, east-coast + air with him as he entered. Having shaken hands with each of us, he + was about to sit down when his eye rested upon the paper with the + curious markings, which I had just examined and left upon the table. + + "Well, Mr. Holmes, what do you make of these?" he cried. "They told + me that you were fond of queer mysteries, and I don't think you can + find a queerer one than that. I sent the paper on ahead so that you + might have time to study it before I came." + + "It is certainly rather a curious production," said Holmes. "At first + sight it would appear to be some childish prank. It consists of a + number of absurd little figures dancing across the paper upon which + they are drawn. Why should you attribute any importance to so + grotesque an object?" + + "I never should, Mr. Holmes. But my wife does. It is frightening her + to death. She says nothing, but I can see terror in her eyes. That's + why I want to sift the matter to the bottom." + + Holmes held up the paper so that the sunlight shone full upon it. It + was a page torn from a note-book. The markings were done in pencil, + and ran in this way:-- + + [ Picture: Picture of several figures of dancing men, some holding + flags ] + + Holmes examined it for some time, and then, folding it carefully up, + he placed it in his pocket-book. + + "This promises to be a most interesting and unusual case," said he. + "You gave me a few particulars in your letter, Mr. Hilton Cubitt, but + I should be very much obliged if you would kindly go over it all + again for the benefit of my friend, Dr. Watson." + + "I'm not much of a story-teller," said our visitor, nervously + clasping and unclasping his great, strong hands. "You'll just ask me + anything that I don't make clear. I'll begin at the time of my + marriage last year; but I want to say first of all that, though I'm + not a rich man, my people have been at Ridling Thorpe for a matter of + five centuries, and there is no better known family in the County of + Norfolk. Last year I came up to London for the Jubilee, and I stopped + at a boarding-house in Russell Square, because Parker, the vicar of + our parish, was staying in it. There was an American young lady + there--Patrick was the name--Elsie Patrick. In some way we became + friends, until before my month was up I was as much in love as a man + could be. We were quietly married at a registry office, and we + returned to Norfolk a wedded couple. You'll think it very mad, Mr. + Holmes, that a man of a good old family should marry a wife in this + fashion, knowing nothing of her past or of her people; but if you saw + her and knew her it would help you to understand. + + "She was very straight about it, was Elsie. I can't say that she did + not give me every chance of getting out of it if I wished to do so. + 'I have had some very disagreeable associations in my life,' said + she; 'I wish to forget all about them. I would rather never allude to + the past, for it is very painful to me. If you take me, Hilton, you + will take a woman who has nothing that she need be personally ashamed + of; but you will have to be content with my word for it, and to allow + me to be silent as to all that passed up to the time when I became + yours. If these conditions are too hard, then go back to Norfolk and + leave me to the lonely life in which you found me.' It was only the + day before our wedding that she said those very words to me. I told + her that I was content to take her on her own terms, and I have been + as good as my word. + + "Well, we have been married now for a year, and very happy we have + been. But about a month ago, at the end of June, I saw for the first + time signs of trouble. One day my wife received a letter from + America. I saw the American stamp. She turned deadly white, read the + letter, and threw it into the fire. She made no allusion to it + afterwards, and I made none, for a promise is a promise; but she has + never known an easy hour from that moment. There is always a look of + fear upon her face--a look as if she were waiting and expecting. She + would do better to trust me. She would find that I was her best + friend. But until she speaks I can say nothing. Mind you, she is a + truthful woman, Mr. Holmes, and whatever trouble there may have been + in her past life it has been no fault of hers. I am only a simple + Norfolk squire, but there is not a man in England who ranks his + family honour more highly than I do. She knows it well, and she knew + it well before she married me. She would never bring any stain upon + it--of that I am sure. + + "Well, now I come to the queer part of my story. About a week ago--it + was the Tuesday of last week--I found on one of the window-sills a + number of absurd little dancing figures, like these upon the paper. + They were scrawled with chalk. I thought that it was the stable-boy + who had drawn them, but the lad swore he knew nothing about it. + Anyhow, they had come there during the night. I had them washed out, + and I only mentioned the matter to my wife afterwards. To my surprise + she took it very seriously, and begged me if any more came to let her + see them. None did come for a week, and then yesterday morning I + found this paper lying on the sun-dial in the garden. I showed it to + Elsie, and down she dropped in a dead faint. Since then she has + looked like a woman in a dream, half dazed, and with terror always + lurking in her eyes. It was then that I wrote and sent the paper to + you, Mr. Holmes. It was not a thing that I could take to the police, + for they would have laughed at me, but you will tell me what to do. I + am not a rich man; but if there is any danger threatening my little + woman I would spend my last copper to shield her." + + He was a fine creature, this man of the old English soil, simple, + straight, and gentle, with his great, earnest blue eyes and broad, + comely face. His love for his wife and his trust in her shone in his + features. Holmes had listened to his story with the utmost attention, + and now he sat for some time in silent thought. + + "Don't you think, Mr. Cubitt," said he, at last, "that your best plan + would be to make a direct appeal to your wife, and to ask her to + share her secret with you?" + + Hilton Cubitt shook his massive head. + + "A promise is a promise, Mr. Holmes. If Elsie wished to tell me she + would. If not, it is not for me to force her confidence. But I am + justified in taking my own line--and I will." + + "Then I will help you with all my heart. In the first place, have you + heard of any strangers being seen in your neighbourhood?" + + "No." + + "I presume that it is a very quiet place. Any fresh face would cause + comment?" + + "In the immediate neighbourhood, yes. But we have several small + watering-places not very far away. And the farmers take in lodgers." + + "These hieroglyphics have evidently a meaning. If it is a purely + arbitrary one it may be impossible for us to solve it. If, on the + other hand, it is systematic, I have no doubt that we shall get to + the bottom of it. But this particular sample is so short that I can + do nothing, and the facts which you have brought me are so indefinite + that we have no basis for an investigation. I would suggest that you + return to Norfolk, that you keep a keen look-out, and that you take + an exact copy of any fresh dancing men which may appear. It is a + thousand pities that we have not a reproduction of those which were + done in chalk upon the window-sill. Make a discreet inquiry also as + to any strangers in the neighbourhood. When you have collected some + fresh evidence come to me again. That is the best advice which I can + give you, Mr. Hilton Cubitt. If there are any pressing fresh + developments I shall be always ready to run down and see you in your + Norfolk home." + + The interview left Sherlock Holmes very thoughtful, and several times + in the next few days I saw him take his slip of paper from his + note-book and look long and earnestly at the curious figures + inscribed upon it. He made no allusion to the affair, however, until + one afternoon a fortnight or so later. I was going out when he called + me back. + + "You had better stay here, Watson." + + "Why?" + + "Because I had a wire from Hilton Cubitt this morning--you remember + Hilton Cubitt, of the dancing men? He was to reach Liverpool Street + at one-twenty. He may be here at any moment. I gather from his wire + that there have been some new incidents of importance." + + We had not long to wait, for our Norfolk squire came straight from + the station as fast as a hansom could bring him. He was looking + worried and depressed, with tired eyes and a lined forehead. + + "It's getting on my nerves, this business, Mr. Holmes," said he, as + he sank, like a wearied man, into an arm-chair. "It's bad enough to + feel that you are surrounded by unseen, unknown folk, who have some + kind of design upon you; but when, in addition to that, you know that + it is just killing your wife by inches, then it becomes as much as + flesh and blood can endure. She's wearing away under it--just wearing + away before my eyes." + + "Has she said anything yet?" + + "No, Mr. Holmes, she has not. And yet there have been times when the + poor girl has wanted to speak, and yet could not quite bring herself + to take the plunge. I have tried to help her; but I dare say I did it + clumsily, and scared her off from it. She has spoken about my old + family, and our reputation in the county, and our pride in our + unsullied honour, and I always felt it was leading to the point; but + somehow it turned off before we got there." + + "But you have found out something for yourself?" + + "A good deal, Mr. Holmes. I have several fresh dancing men pictures + for you to examine, and, what is more important, I have seen the + fellow." + + "What, the man who draws them?" + + "Yes, I saw him at his work. But I will tell you everything in order. + When I got back after my visit to you, the very first thing I saw + next morning was a fresh crop of dancing men. They had been drawn in + chalk upon the black wooden door of the tool-house, which stands + beside the lawn in full view of the front windows. I took an exact + copy, and here it is." He unfolded a paper and laid it upon the + table. Here is a copy of the hieroglyphics:-- + + [ Picture: Picture of a few dancing men ] + + "Excellent!" said Holmes. "Excellent! Pray continue." + + "When I had taken the copy I rubbed out the marks; but two mornings + later a fresh inscription had appeared. I have a copy of it here":-- + + [ Picture: Picture of some more dancing man figures ] + + Holmes rubbed his hands and chuckled with delight. + + "Our material is rapidly accumulating," said he. + + "Three days later a message was left scrawled upon paper, and placed + under a pebble upon the sun-dial. Here it is. The characters are, as + you see, exactly the same as the last one. After that I determined to + lie in wait; so I got out my revolver and I sat up in my study, which + overlooks the lawn and garden. About two in the morning I was seated + by the window, all being dark save for the moonlight outside, when I + heard steps behind me, and there was my wife in her dressing-gown. + She implored me to come to bed. I told her frankly that I wished to + see who it was who played such absurd tricks upon us. She answered + that it was some senseless practical joke, and that I should not take + any notice of it. + + "'If it really annoys you, Hilton, we might go and travel, you and I, + and so avoid this nuisance.' + + "'What, be driven out of our own house by a practical joker?' said I. + 'Why, we should have the whole county laughing at us.' + + "'Well, come to bed,' said she, 'and we can discuss it in the + morning.' + + "Suddenly, as she spoke, I saw her white face grow whiter yet in the + moonlight, and her hand tightened upon my shoulder. Something was + moving in the shadow of the tool-house. I saw a dark, creeping figure + which crawled round the corner and squatted in front of the door. + Seizing my pistol I was rushing out, when my wife threw her arms + round me and held me with convulsive strength. I tried to throw her + off, but she clung to me most desperately. At last I got clear, but + by the time I had opened the door and reached the house the creature + was gone. He had left a trace of his presence, however, for there on + the door was the very same arrangement of dancing men which had + already twice appeared, and which I have copied on that paper. There + was no other sign of the fellow anywhere, though I ran all over the + grounds. And yet the amazing thing is that he must have been there + all the time, for when I examined the door again in the morning he + had scrawled some more of his pictures under the line which I had + already seen." + + "Have you that fresh drawing?" + + "Yes; it is very short, but I made a copy of it, and here it is." + + Again he produced a paper. The new dance was in this form:-- + + [ Picture: Picture of five dancing men figures ] + + "Tell me," said Holmes--and I could see by his eyes that he was much + excited--"was this a mere addition to the first, or did it appear to + be entirely separate?" + + "It was on a different panel of the door." + + "Excellent! This is far the most important of all for our purpose. It + fills me with hopes. Now, Mr. Hilton Cubitt, please continue your + most interesting statement." + + "I have nothing more to say, Mr. Holmes, except that I was angry with + my wife that night for having held me back when I might have caught + the skulking rascal. She said that she feared that I might come to + harm. For an instant it had crossed my mind that perhaps what she + really feared was that he might come to harm, for I could not doubt + that she knew who this man was and what he meant by these strange + signals. But there is a tone in my wife's voice, Mr. Holmes, and a + look in her eyes which forbid doubt, and I am sure that it was indeed + my own safety that was in her mind. There's the whole case, and now I + want your advice as to what I ought to do. My own inclination is to + put half-a-dozen of my farm lads in the shrubbery, and when this + fellow comes again to give him such a hiding that he will leave us in + peace for the future." + + "I fear it is too deep a case for such simple remedies," said Holmes. + "How long can you stay in London?" + + "I must go back to-day. I would not leave my wife alone all night for + anything. She is very nervous and begged me to come back." + + "I dare say you are right. But if you could have stopped I might + possibly have been able to return with you in a day or two. Meanwhile + you will leave me these papers, and I think that it is very likely + that I shall be able to pay you a visit shortly and to throw some + light upon your case." + + Sherlock Holmes preserved his calm professional manner until our + visitor had left us, although it was easy for me, who knew him so + well, to see that he was profoundly excited. The moment that Hilton + Cubitt's broad back had disappeared through the door my comrade + rushed to the table, laid out all the slips of paper containing + dancing men in front of him, and threw himself into an intricate and + elaborate calculation. For two hours I watched him as he covered + sheet after sheet of paper with figures and letters, so completely + absorbed in his task that he had evidently forgotten my presence. + Sometimes he was making progress and whistled and sang at his work; + sometimes he was puzzled, and would sit for long spells with a + furrowed brow and a vacant eye. Finally he sprang from his chair with + a cry of satisfaction, and walked up and down the room rubbing his + hands together. Then he wrote a long telegram upon a cable form. "If + my answer to this is as I hope, you will have a very pretty case to + add to your collection, Watson," said he. "I expect that we shall be + able to go down to Norfolk to-morrow, and to take our friend some + very definite news as to the secret of his annoyance." + + I confess that I was filled with curiosity, but I was aware that + Holmes liked to make his disclosures at his own time and in his own + way; so I waited until it should suit him to take me into his + confidence. + + But there was a delay in that answering telegram, and two days of + impatience followed, during which Holmes pricked up his ears at every + ring of the bell. On the evening of the second there came a letter + from Hilton Cubitt. All was quiet with him, save that a long + inscription had appeared that morning upon the pedestal of the + sun-dial. He inclosed a copy of it, which is here reproduced:-- + + [ Picture: Picture of many dancing men figures ] + + Holmes bent over this grotesque frieze for some minutes, and then + suddenly sprang to his feet with an exclamation of surprise and + dismay. His face was haggard with anxiety. + + "We have let this affair go far enough," said he. "Is there a train + to North Walsham to-night?" + + I turned up the time-table. The last had just gone. + + "Then we shall breakfast early and take the very first in the + morning," said Holmes. "Our presence is most urgently needed. Ah! + here is our expected cablegram. One moment, Mrs. Hudson; there may be + an answer. No, that is quite as I expected. This message makes it + even more essential that we should not lose an hour in letting Hilton + Cubitt know how matters stand, for it is a singular and a dangerous + web in which our simple Norfolk squire is entangled." + + So, indeed, it proved, and as I come to the dark conclusion of a + story which had seemed to me to be only childish and bizarre I + experience once again the dismay and horror with which I was filled. + Would that I had some brighter ending to communicate to my readers, + but these are the chronicles of fact, and I must follow to their dark + crisis the strange chain of events which for some days made Ridling + Thorpe Manor a household word through the length and breadth of + England. + + We had hardly alighted at North Walsham, and mentioned the name of + our destination, when the station-master hurried towards us. "I + suppose that you are the detectives from London?" said he. + + A look of annoyance passed over Holmes's face. + + "What makes you think such a thing?" + + "Because Inspector Martin from Norwich has just passed through. But + maybe you are the surgeons. She's not dead--or wasn't by last + accounts. You may be in time to save her yet--though it be for the + gallows." + + Holmes's brow was dark with anxiety. + + "We are going to Ridling Thorpe Manor," said he, "but we have heard + nothing of what has passed there." + + "It's a terrible business," said the station-master. "They are shot, + both Mr. Hilton Cubitt and his wife. She shot him and then + herself--so the servants say. He's dead and her life is despaired of. + Dear, dear, one of the oldest families in the County of Norfolk, and + one of the most honoured." + + Without a word Holmes hurried to a carriage, and during the long + seven miles' drive he never opened his mouth. Seldom have I seen him + so utterly despondent. He had been uneasy during all our journey from + town, and I had observed that he had turned over the morning papers + with anxious attention; but now this sudden realization of his worst + fears left him in a blank melancholy. He leaned back in his seat, + lost in gloomy speculation. Yet there was much around to interest us, + for we were passing through as singular a country-side as any in + England, where a few scattered cottages represented the population of + to-day, while on every hand enormous square-towered churches bristled + up from the flat, green landscape and told of the glory and + prosperity of old East Anglia. At last the violet rim of the German + Ocean appeared over the green edge of the Norfolk coast, and the + driver pointed with his whip to two old brick and timber gables which + projected from a grove of trees. "That's Ridling Thorpe Manor," said + he. + + As we drove up to the porticoed front door I observed in front of it, + beside the tennis lawn, the black tool-house and the pedestalled + sun-dial with which we had such strange associations. A dapper little + man, with a quick, alert manner and a waxed moustache, had just + descended from a high dog-cart. He introduced himself as Inspector + Martin, of the Norfolk Constabulary, and he was considerably + astonished when he heard the name of my companion. + + "Why, Mr. Holmes, the crime was only committed at three this morning. + How could you hear of it in London and get to the spot as soon as I?" + + "I anticipated it. I came in the hope of preventing it." + + "Then you must have important evidence of which we are ignorant, for + they were said to be a most united couple." + + "I have only the evidence of the dancing men," said Holmes. "I will + explain the matter to you later. Meanwhile, since it is too late to + prevent this tragedy, I am very anxious that I should use the + knowledge which I possess in order to ensure that justice be done. + Will you associate me in your investigation, or will you prefer that + I should act independently?" + + "I should be proud to feel that we were acting together, Mr. Holmes," + said the inspector, earnestly. + + "In that case I should be glad to hear the evidence and to examine + the premises without an instant of unnecessary delay." + + Inspector Martin had the good sense to allow my friend to do things + in his own fashion, and contented himself with carefully noting the + results. The local surgeon, an old, white-haired man, had just come + down from Mrs. Hilton Cubitt's room, and he reported that her + injuries were serious, but not necessarily fatal. The bullet had + passed through the front of her brain, and it would probably be some + time before she could regain consciousness. On the question of + whether she had been shot or had shot herself he would not venture to + express any decided opinion. Certainly the bullet had been discharged + at very close quarters. There was only the one pistol found in the + room, two barrels of which had been emptied. Mr. Hilton Cubitt had + been shot through the heart. It was equally conceivable that he had + shot her and then himself, or that she had been the criminal, for the + revolver lay upon the floor midway between them. + + "Has he been moved?" asked Holmes. + + "We have moved nothing except the lady. We could not leave her lying + wounded upon the floor." + + "How long have you been here, doctor?" + + "Since four o'clock." + + "Anyone else?" + + "Yes, the constable here." + + "And you have touched nothing?" + + "Nothing." + + "You have acted with great discretion. Who sent for you?" + + "The housemaid, Saunders." + + "Was it she who gave the alarm?" + + "She and Mrs. King, the cook." + + "Where are they now?" + + "In the kitchen, I believe." + + "Then I think we had better hear their story at once." + + The old hall, oak-panelled and high-windowed, had been turned into a + court of investigation. Holmes sat in a great, old-fashioned chair, + his inexorable eyes gleaming out of his haggard face. I could read in + them a set purpose to devote his life to this quest until the client + whom he had failed to save should at last be avenged. The trim + Inspector Martin, the old, grey-headed country doctor, myself, and a + stolid village policeman made up the rest of that strange company. + + The two women told their story clearly enough. They had been aroused + from their sleep by the sound of an explosion, which had been + followed a minute later by a second one. They slept in adjoining + rooms, and Mrs. King had rushed in to Saunders. Together they had + descended the stairs. The door of the study was open and a candle was + burning upon the table. Their master lay upon his face in the centre + of the room. He was quite dead. Near the window his wife was + crouching, her head leaning against the wall. She was horribly + wounded, and the side of her face was red with blood. She breathed + heavily, but was incapable of saying anything. The passage, as well + as the room, was full of smoke and the smell of powder. The window + was certainly shut and fastened upon the inside. Both women were + positive upon the point. They had at once sent for the doctor and for + the constable. Then, with the aid of the groom and the stable-boy, + they had conveyed their injured mistress to her room. Both she and + her husband had occupied the bed. She was clad in her dress--he in + his dressing-gown, over his night clothes. Nothing had been moved in + the study. So far as they knew there had never been any quarrel + between husband and wife. They had always looked upon them as a very + united couple. + + These were the main points of the servants' evidence. In answer to + Inspector Martin they were clear that every door was fastened upon + the inside, and that no one could have escaped from the house. In + answer to Holmes they both remembered that they were conscious of the + smell of powder from the moment that they ran out of their rooms upon + the top floor. "I commend that fact very carefully to your + attention," said Holmes to his professional colleague. "And now I + think that we are in a position to undertake a thorough examination + of the room." + + The study proved to be a small chamber, lined on three sides with + books, and with a writing-table facing an ordinary window, which + looked out upon the garden. Our first attention was given to the body + of the unfortunate squire, whose huge frame lay stretched across the + room. His disordered dress showed that he had been hastily aroused + from sleep. The bullet had been fired at him from the front, and had + remained in his body after penetrating the heart. His death had + certainly been instantaneous and painless. There was no + powder-marking either upon his dressing-gown or on his hands. + According to the country surgeon the lady had stains upon her face, + but none upon her hand. + + "The absence of the latter means nothing, though its presence may + mean everything," said Holmes. "Unless the powder from a + badly-fitting cartridge happens to spurt backwards, one may fire many + shots without leaving a sign. I would suggest that Mr. Cubitt's body + may now be removed. I suppose, doctor, you have not recovered the + bullet which wounded the lady?" + + "A serious operation will be necessary before that can be done. But + there are still four cartridges in the revolver. Two have been fired + and two wounds inflicted, so that each bullet can be accounted for." + + "So it would seem," said Holmes. "Perhaps you can account also for + the bullet which has so obviously struck the edge of the window?" + + He had turned suddenly, and his long, thin finger was pointing to a + hole which had been drilled right through the lower window-sash about + an inch above the bottom. + + "By George!" cried the inspector. "How ever did you see that?" + + "Because I looked for it." + + "Wonderful!" said the country doctor. "You are certainly right, sir. + Then a third shot has been fired, and therefore a third person must + have been present. But who could that have been and how could he have + got away?" + + "That is the problem which we are now about to solve," said Sherlock + Holmes. "You remember, Inspector Martin, when the servants said that + on leaving their room they were at once conscious of a smell of + powder I remarked that the point was an extremely important one?" + + "Yes, sir; but I confess I did not quite follow you." + + "It suggested that at the time of the firing the window as well as + the door of the room had been open. Otherwise the fumes of powder + could not have been blown so rapidly through the house. A draught in + the room was necessary for that. Both door and window were only open + for a very short time, however." + + "How do you prove that?" + + "Because the candle has not guttered." + + "Capital!" cried the inspector. "Capital!" + + "Feeling sure that the window had been open at the time of the + tragedy I conceived that there might have been a third person in the + affair, who stood outside this opening and fired through it. Any shot + directed at this person might hit the sash. I looked, and there, sure + enough, was the bullet mark!" + + "But how came the window to be shut and fastened?" + + "The woman's first instinct would be to shut and fasten the window. + But, halloa! what is this?" + + It was a lady's hand-bag which stood upon the study table--a trim + little hand-bag of crocodile-skin and silver. Holmes opened it and + turned the contents out. There were twenty fifty-pound notes of the + Bank of England, held together by an india-rubber band--nothing else. + + "This must be preserved, for it will figure in the trial," said + Holmes, as he handed the bag with its contents to the inspector. "It + is now necessary that we should try to throw some light upon this + third bullet, which has clearly, from the splintering of the wood, + been fired from inside the room. I should like to see Mrs. King, the + cook, again. You said, Mrs. King, that you were awakened by a loud + explosion. When you said that, did you mean that it seemed to you to + be louder than the second one?" + + "Well, sir, it wakened me from my sleep, and so it is hard to judge. + But it did seem very loud." + + "You don't think that it might have been two shots fired almost at + the same instant?" + + "I am sure I couldn't say, sir." + + "I believe that it was undoubtedly so. I rather think, Inspector + Martin, that we have now exhausted all that this room can teach us. + If you will kindly step round with me, we shall see what fresh + evidence the garden has to offer." + + A flower-bed extended up to the study window, and we all broke into + an exclamation as we approached it. The flowers were trampled down, + and the soft soil was imprinted all over with footmarks. Large, + masculine feet they were, with peculiarly long, sharp toes. Holmes + hunted about among the grass and leaves like a retriever after a + wounded bird. Then, with a cry of satisfaction, he bent forward and + picked up a little brazen cylinder. + + "I thought so," said he; "the revolver had an ejector, and here is + the third cartridge. I really think, Inspector Martin, that our case + is almost complete." + + The country inspector's face had shown his intense amazement at the + rapid and masterful progress of Holmes's investigation. At first he + had shown some disposition to assert his own position; but now he was + overcome with admiration and ready to follow without question + wherever Holmes led. + + "Whom do you suspect?" he asked. + + "I'll go into that later. There are several points in this problem + which I have not been able to explain to you yet. Now that I have got + so far I had best proceed on my own lines, and then clear the whole + matter up once and for all." + + "Just as you wish, Mr. Holmes, so long as we get our man." + + "I have no desire to make mysteries, but it is impossible at the + moment of action to enter into long and complex explanations. I have + the threads of this affair all in my hand. Even if this lady should + never recover consciousness we can still reconstruct the events of + last night and ensure that justice be done. First of all I wish to + know whether there is any inn in this neighbourhood known as + 'Elrige's'?" + + The servants were cross-questioned, but none of them had heard of + such a place. The stable-boy threw a light upon the matter by + remembering that a farmer of that name lived some miles off in the + direction of East Ruston. + + "Is it a lonely farm?" + + "Very lonely, sir." + + "Perhaps they have not heard yet of all that happened here during the + night?" + + "Maybe not, sir." + + Holmes thought for a little and then a curious smile played over his + face. + + "Saddle a horse, my lad," said he. "I shall wish you to take a note + to Elrige's Farm." + + He took from his pocket the various slips of the dancing men. With + these in front of him he worked for some time at the study-table. + Finally he handed a note to the boy, with directions to put it into + the hands of the person to whom it was addressed, and especially to + answer no questions of any sort which might be put to him. I saw the + outside of the note, addressed in straggling, irregular characters, + very unlike Holmes's usual precise hand. It was consigned to Mr. Abe + Slaney, Elrige's Farm, East Ruston, Norfolk. + + "I think, inspector," Holmes remarked, "that you would do well to + telegraph for an escort, as, if my calculations prove to be correct, + you may have a particularly dangerous prisoner to convey to the + county jail. The boy who takes this note could no doubt forward your + telegram. If there is an afternoon train to town, Watson, I think we + should do well to take it, as I have a chemical analysis of some + interest to finish, and this investigation draws rapidly to a close." + + When the youth had been dispatched with the note, Sherlock Holmes + gave his instructions to the servants. If any visitor were to call + asking for Mrs. Hilton Cubitt no information should be given as to + her condition, but he was to be shown at once into the drawing-room. + He impressed these points upon them with the utmost earnestness. + Finally he led the way into the drawing-room with the remark that the + business was now out of our hands, and that we must while away the + time as best we might until we could see what was in store for us. + The doctor had departed to his patients, and only the inspector and + myself remained. + + "I think that I can help you to pass an hour in an interesting and + profitable manner," said Holmes, drawing his chair up to the table + and spreading out in front of him the various papers upon which were + recorded the antics of the dancing men. "As to you, friend Watson, I + owe you every atonement for having allowed your natural curiosity to + remain so long unsatisfied. To you, inspector, the whole incident may + appeal as a remarkable professional study. I must tell you first of + all the interesting circumstances connected with the previous + consultations which Mr. Hilton Cubitt has had with me in Baker + Street." He then shortly recapitulated the facts which have already + been recorded. "I have here in front of me these singular + productions, at which one might smile had they not proved themselves + to be the fore-runners of so terrible a tragedy. I am fairly familiar + with all forms of secret writings, and am myself the author of a + trifling monograph upon the subject, in which I analyze one hundred + and sixty separate ciphers; but I confess that this is entirely new + to me. The object of those who invented the system has apparently + been to conceal that these characters convey a message, and to give + the idea that they are the mere random sketches of children. + + "Having once recognised, however, that the symbols stood for letters, + and having applied the rules which guide us in all forms of secret + writings, the solution was easy enough. The first message submitted + to me was so short that it was impossible for me to do more than to + say with some confidence that the symbol + + [ Picture: Picture of a single dancing man ] + + stood for E. As you are aware, E is the most common letter in the + English alphabet, and it predominates to so marked an extent that + even in a short sentence one would expect to find it most often. Out + of fifteen symbols in the first message four were the same, so it was + reasonable to set this down as E. It is true that in some cases the + figure was bearing a flag and in some cases not, but it was probable + from the way in which the flags were distributed that they were used + to break the sentence up into words. I accepted this as a hypothesis, + and noted that E was represented by + + [ Picture: Picture of a single dancing man ] + + "But now came the real difficulty of the inquiry. The order of the + English letters after E is by no means well marked, and any + preponderance which may be shown in an average of a printed sheet may + be reversed in a single short sentence. Speaking roughly, T, A, O, I, + N, S, H, R, D, and L are the numerical order in which letters occur; + but T, A, O, and I are very nearly abreast of each other, and it + would be an endless task to try each combination until a meaning was + arrived at. I, therefore, waited for fresh material. In my second + interview with Mr. Hilton Cubitt he was able to give me two other + short sentences and one message, which appeared--since there was no + flag--to be a single word. Here are the symbols. Now, in the single + word I have already got the two E's coming second and fourth in a + word of five letters. It might be 'sever,' or 'lever,' or 'never.' + There can be no question that the latter as a reply to an appeal is + far the most probable, and the circumstances pointed to its being a + reply written by the lady. Accepting it as correct, we are now able + to say that the symbols + + [ Picture: Picture of three dancing men ] + + stand respectively for N, V, and R. + + "Even now I was in considerable difficulty, but a happy thought put + me in possession of several other letters. It occurred to me that if + these appeals came, as I expected, from someone who had been intimate + with the lady in her early life, a combination which contained two + E's with three letters between might very well stand for the name + 'ELSIE.' On examination I found that such a combination formed the + termination of the message which was three times repeated. It was + certainly some appeal to 'Elsie.' In this way I had got my L, S, and + I. But what appeal could it be? There were only four letters in the + word which preceded 'Elsie,' and it ended in E. Surely the word must + be 'COME.' I tried all other four letters ending in E, but could find + none to fit the case. So now I was in possession of C, O, and M, and + I was in a position to attack the first message once more, dividing + it into words and putting dots for each symbol which was still + unknown. So treated it worked out in this fashion: + + .M .ERE ..E SL.NE. + + "Now the first letter can only be A, which is a most useful + discovery, since it occurs no fewer than three times in this short + sentence, and the H is also apparent in the second word. Now it + becomes:-- + + AM HERE A.E SLANE. + + Or, filling in the obvious vacancies in the name:-- + + AM HERE ABE SLANEY. + + I had so many letters now that I could proceed with considerable + confidence to the second message, which worked out in this fashion:-- + + A. ELRI.ES. + + Here I could only make sense by putting T and G for the missing + letters, and supposing that the name was that of some house or inn at + which the writer was staying." + + Inspector Martin and I had listened with the utmost interest to the + full and clear account of how my friend had produced results which + had led to so complete a command over our difficulties. + + "What did you do then, sir?" asked the inspector. + + "I had every reason to suppose that this Abe Slaney was an American, + since Abe is an American contraction, and since a letter from America + had been the starting-point of all the trouble. I had also every + cause to think that there was some criminal secret in the matter. The + lady's allusions to her past and her refusal to take her husband into + her confidence both pointed in that direction. I therefore cabled to + my friend, Wilson Hargreave, of the New York Police Bureau, who has + more than once made use of my knowledge of London crime. I asked him + whether the name of Abe Slaney was known to him. Here is his reply: + 'The most dangerous crook in Chicago.' On the very evening upon which + I had his answer Hilton Cubitt sent me the last message from Slaney. + Working with known letters it took this form:-- + + ELSIE .RE.ARE TO MEET THY GO. + + The addition of a P and a D completed a message which showed me that + the rascal was proceeding from persuasion to threats, and my + knowledge of the crooks of Chicago prepared me to find that he might + very rapidly put his words into action. I at once came to Norfolk + with my friend and colleague, Dr. Watson, but, unhappily, only in + time to find that the worst had already occurred." + + "It is a privilege to be associated with you in the handling of a + case," said the inspector, warmly. "You will excuse me, however, if I + speak frankly to you. You are only answerable to yourself, but I have + to answer to my superiors. If this Abe Slaney, living at Elrige's, is + indeed the murderer, and if he has made his escape while I am seated + here, I should certainly get into serious trouble." + + "You need not be uneasy. He will not try to escape." + + "How do you know?" + + "To fly would be a confession of guilt." + + "Then let us go to arrest him." + + "I expect him here every instant." + + "But why should he come?" + + "Because I have written and asked him." + + "But this is incredible, Mr. Holmes! Why should he come because you + have asked him? Would not such a request rather rouse his suspicions + and cause him to fly?" + + "I think I have known how to frame the letter," said Sherlock Holmes. + "In fact, if I am not very much mistaken, here is the gentleman + himself coming up the drive." + + A man was striding up the path which led to the door. He was a tall, + handsome, swarthy fellow, clad in a suit of grey flannel, with a + Panama hat, a bristling black beard, and a great, aggressive hooked + nose, and flourishing a cane as he walked. He swaggered up the path + as if the place belonged to him, and we heard his loud, confident + peal at the bell. + + "I think, gentlemen," said Holmes, quietly, "that we had best take up + our position behind the door. Every precaution is necessary when + dealing with such a fellow. You will need your handcuffs, inspector. + You can leave the talking to me." + + We waited in silence for a minute--one of those minutes which one can + never forget. Then the door opened and the man stepped in. In an + instant Holmes clapped a pistol to his head and Martin slipped the + handcuffs over his wrists. It was all done so swiftly and deftly that + the fellow was helpless before he knew that he was attacked. He + glared from one to the other of us with a pair of blazing black eyes. + Then he burst into a bitter laugh. + + "Well, gentlemen, you have the drop on me this time. I seem to have + knocked up against something hard. But I came here in answer to a + letter from Mrs. Hilton Cubitt. Don't tell me that she is in this? + Don't tell me that she helped to set a trap for me?" + + "Mrs. Hilton Cubitt was seriously injured and is at death's door." + + The man gave a hoarse cry of grief which rang through the house. + + "You're crazy!" he cried, fiercely. "It was he that was hurt, not + she. Who would have hurt little Elsie? I may have threatened her, God + forgive me, but I would not have touched a hair of her pretty head. + Take it back--you! Say that she is not hurt!" + + "She was found badly wounded by the side of her dead husband." + + He sank with a deep groan on to the settee and buried his face in his + manacled hands. For five minutes he was silent. Then he raised his + face once more, and spoke with the cold composure of despair. + + "I have nothing to hide from you, gentlemen," said he. "If I shot the + man he had his shot at me, and there's no murder in that. But if you + think I could have hurt that woman, then you don't know either me or + her. I tell you there was never a man in this world loved a woman + more than I loved her. I had a right to her. She was pledged to me + years ago. Who was this Englishman that he should come between us? I + tell you that I had the first right to her, and that I was only + claiming my own." + + "She broke away from your influence when she found the man that you + are," said Holmes, sternly. "She fled from America to avoid you, and + she married an honourable gentleman in England. You dogged her and + followed her and made her life a misery to her in order to induce her + to abandon the husband whom she loved and respected in order to fly + with you, whom she feared and hated. You have ended by bringing about + the death of a noble man and driving his wife to suicide. That is + your record in this business, Mr. Abe Slaney, and you will answer for + it to the law." + + "If Elsie dies I care nothing what becomes of me," said the American. + He opened one of his hands and looked at a note crumpled up in his + palm. "See here, mister," he cried, with a gleam of suspicion in his + eyes, "you're not trying to scare me over this, are you? If the lady + is hurt as bad as you say, who was it that wrote this note?" He + tossed it forwards on to the table. + + "I wrote it to bring you here." + + "You wrote it? There was no one on earth outside the Joint who knew + the secret of the dancing men. How came you to write it?" + + "What one man can invent another can discover," said Holmes. "There + is a cab coming to convey you to Norwich, Mr. Slaney. But, meanwhile, + you have time to make some small reparation for the injury you have + wrought. Are you aware that Mrs. Hilton Cubitt has herself lain under + grave suspicion of the murder of her husband, and that it was only my + presence here and the knowledge which I happened to possess which has + saved her from the accusation? The least that you owe her is to make + it clear to the whole world that she was in no way, directly or + indirectly, responsible for his tragic end." + + "I ask nothing better," said the American. "I guess the very best + case I can make for myself is the absolute naked truth." + + "It is my duty to warn you that it will be used against you," cried + the inspector, with the magnificent fair-play of the British criminal + law. + + Slaney shrugged his shoulders. + + "I'll chance that," said he. "First of all, I want you gentlemen to + understand that I have known this lady since she was a child. There + were seven of us in a gang in Chicago, and Elsie's father was the + boss of the Joint. He was a clever man, was old Patrick. It was he + who invented that writing, which would pass as a child's scrawl + unless you just happened to have the key to it. Well, Elsie learned + some of our ways; but she couldn't stand the business, and she had a + bit of honest money of her own, so she gave us all the slip and got + away to London. She had been engaged to me, and she would have + married me, I believe, if I had taken over another profession; but + she would have nothing to do with anything on the cross. It was only + after her marriage to this Englishman that I was able to find out + where she was. I wrote to her, but got no answer. After that I came + over, and, as letters were no use, I put my messages where she could + read them. + + "Well, I have been here a month now. I lived in that farm, where I + had a room down below, and could get in and out every night, and no + one the wiser. I tried all I could to coax Elsie away. I knew that + she read the messages, for once she wrote an answer under one of + them. Then my temper got the better of me, and I began to threaten + her. She sent me a letter then, imploring me to go away and saying + that it would break her heart if any scandal should come upon her + husband. She said that she would come down when her husband was + asleep at three in the morning, and speak with me through the end + window, if I would go away afterwards and leave her in peace. She + came down and brought money with her, trying to bribe me to go. This + made me mad, and I caught her arm and tried to pull her through the + window. At that moment in rushed the husband with his revolver in his + hand. Elsie had sunk down upon the floor, and we were face to face. I + was heeled also, and I held up my gun to scare him off and let me get + away. He fired and missed me. I pulled off almost at the same + instant, and down he dropped. I made away across the garden, and as I + went I heard the window shut behind me. That's God's truth, + gentlemen, every word of it, and I heard no more about it until that + lad came riding up with a note which made me walk in here, like a + jay, and give myself into your hands." + + A cab had driven up whilst the American had been talking. Two + uniformed policemen sat inside. Inspector Martin rose and touched his + prisoner on the shoulder. + + "It is time for us to go." + + "Can I see her first?" + + "No, she is not conscious. Mr. Sherlock Holmes, I only hope that if + ever again I have an important case I shall have the good fortune to + have you by my side." + + We stood at the window and watched the cab drive away. As I turned + back my eye caught the pellet of paper which the prisoner had tossed + upon the table. It was the note with which Holmes had decoyed him. + + "See if you can read it, Watson," said he, with a smile. + + It contained no word, but this little line of dancing men:-- + + [ Picture: Picture of various dancing men ] + + "If you use the code which I have explained," said Holmes, "you will + find that it simply means 'Come here at once.' I was convinced that + it was an invitation which he would not refuse, since he could never + imagine that it could come from anyone but the lady. And so, my dear + Watson, we have ended by turning the dancing men to good when they + have so often been the agents of evil, and I think that I have + fulfilled my promise of giving you something unusual for your + note-book. Three-forty is our train, and I fancy we should be back in + Baker Street for dinner." + + Only one word of epilogue. The American, Abe Slaney, was condemned to + death at the winter assizes at Norwich; but his penalty was changed + to penal servitude in consideration of mitigating circumstances, and + the certainty that Hilton Cubitt had fired the first shot. Of Mrs. + Hilton Cubitt I only know that I have heard she recovered entirely, + and that she still remains a widow, devoting her whole life to the + care of the poor and to the administration of her husband's estate. + + + + + + + THE ADVENTURE OF THE SOLITARY CYCLIST + + From the years 1894 to 1901 inclusive Mr. Sherlock Holmes was a very + busy man. It is safe to say that there was no public case of any + difficulty in which he was not consulted during those eight years, + and there were hundreds of private cases, some of them of the most + intricate and extraordinary character, in which he played a prominent + part. Many startling successes and a few unavoidable failures were + the outcome of this long period of continuous work. As I have + preserved very full notes of all these cases, and was myself + personally engaged in many of them, it may be imagined that it is no + easy task to know which I should select to lay before the public. I + shall, however, preserve my former rule, and give the preference to + those cases which derive their interest not so much from the + brutality of the crime as from the ingenuity and dramatic quality of + the solution. For this reason I will now lay before the reader the + facts connected with Miss Violet Smith, the solitary cyclist of + Charlington, and the curious sequel of our investigation, which + culminated in unexpected tragedy. It is true that the circumstances + did not admit of any striking illustration of those powers for which + my friend was famous, but there were some points about the case which + made it stand out in those long records of crime from which I gather + the material for these little narratives. + + On referring to my note-book for the year 1895 I find that it was + upon Saturday, the 23rd of April, that we first heard of Miss Violet + Smith. Her visit was, I remember, extremely unwelcome to Holmes, for + he was immersed at the moment in a very abstruse and complicated + problem concerning the peculiar persecution to which John Vincent + Harden, the well-known tobacco millionaire, had been subjected. My + friend, who loved above all things precision and concentration of + thought, resented anything which distracted his attention from the + matter in hand. And yet without a harshness which was foreign to his + nature it was impossible to refuse to listen to the story of the + young and beautiful woman, tall, graceful, and queenly, who presented + herself at Baker Street late in the evening and implored his + assistance and advice. It was vain to urge that his time was already + fully occupied, for the young lady had come with the determination to + tell her story, and it was evident that nothing short of force could + get her out of the room until she had done so. With a resigned air + and a somewhat weary smile, Holmes begged the beautiful intruder to + take a seat and to inform us what it was that was troubling her. + + "At least it cannot be your health," said he, as his keen eyes darted + over her; "so ardent a bicyclist must be full of energy." + + She glanced down in surprise at her own feet, and I observed the + slight roughening of the side of the sole caused by the friction of + the edge of the pedal. + + "Yes, I bicycle a good deal, Mr. Holmes, and that has something to do + with my visit to you to-day." + + My friend took the lady's ungloved hand and examined it with as close + an attention and as little sentiment as a scientist would show to a + specimen. + + "You will excuse me, I am sure. It is my business," said he, as he + dropped it. "I nearly fell into the error of supposing that you were + typewriting. Of course, it is obvious that it is music. You observe + the spatulate finger-end, Watson, which is common to both + professions? There is a spirituality about the face, however"--he + gently turned it towards the light--"which the typewriter does not + generate. This lady is a musician." + + "Yes, Mr. Holmes, I teach music." + + "In the country, I presume, from your complexion." + + "Yes, sir; near Farnham, on the borders of Surrey." + + "A beautiful neighbourhood and full of the most interesting + associations. You remember, Watson, that it was near there that we + took Archie Stamford, the forger. Now, Miss Violet, what has happened + to you near Farnham, on the borders of Surrey?" + + The young lady, with great clearness and composure, made the + following curious statement:-- + + "My father is dead, Mr. Holmes. He was James Smith, who conducted the + orchestra at the old Imperial Theatre. My mother and I were left + without a relation in the world except one uncle, Ralph Smith, who + went to Africa twenty-five years ago, and we have never had a word + from him since. When father died we were left very poor, but one day + we were told that there was an advertisement in the Times inquiring + for our whereabouts. You can imagine how excited we were, for we + thought that someone had left us a fortune. We went at once to the + lawyer whose name was given in the paper. There we met two gentlemen, + Mr. Carruthers and Mr. Woodley, who were home on a visit from South + Africa. They said that my uncle was a friend of theirs, that he died + some months before in great poverty in Johannesburg, and that he had + asked them with his last breath to hunt up his relations and see that + they were in no want. It seemed strange to us that Uncle Ralph, who + took no notice of us when he was alive, should be so careful to look + after us when he was dead; but Mr. Carruthers explained that the + reason was that my uncle had just heard of the death of his brother, + and so felt responsible for our fate." + + "Excuse me," said Holmes; "when was this interview?" + + "Last December--four months ago." + + "Pray proceed." + + "Mr. Woodley seemed to me to be a most odious person. He was for ever + making eyes at me--a coarse, puffy-faced, red-moustached young man, + with his hair plastered down on each side of his forehead. I thought + that he was perfectly hateful--and I was sure that Cyril would not + wish me to know such a person." + + "Oh, Cyril is his name!" said Holmes, smiling. + + The young lady blushed and laughed. + + "Yes, Mr. Holmes; Cyril Morton, an electrical engineer, and we hope + to be married at the end of the summer. Dear me, how did I get + talking about him? What I wished to say was that Mr. Woodley was + perfectly odious, but that Mr. Carruthers, who was a much older man, + was more agreeable. He was a dark, sallow, clean-shaven, silent + person; but he had polite manners and a pleasant smile. He inquired + how we were left, and on finding that we were very poor he suggested + that I should come and teach music to his only daughter, aged ten. I + said that I did not like to leave my mother, on which he suggested + that I should go home to her every week-end, and he offered me a + hundred a year, which was certainly splendid pay. So it ended by my + accepting, and I went down to Chiltern Grange, about six miles from + Farnham. Mr. Carruthers was a widower, but he had engaged a + lady-housekeeper, a very respectable, elderly person, called Mrs. + Dixon, to look after his establishment. The child was a dear, and + everything promised well. Mr. Carruthers was very kind and very + musical, and we had most pleasant evenings together. Every week-end I + went home to my mother in town. + + "The first flaw in my happiness was the arrival of the red-moustached + Mr. Woodley. He came for a visit of a week, and oh, it seemed three + months to me! He was a dreadful person, a bully to everyone else, but + to me something infinitely worse. He made odious love to me, boasted + of his wealth, said that if I married him I would have the finest + diamonds in London, and finally, when I would have nothing to do with + him, he seized me in his arms one day after dinner--he was hideously + strong--and he swore that he would not let me go until I had kissed + him. Mr. Carruthers came in and tore him off from me, on which he + turned upon his own host, knocking him down and cutting his face + open. That was the end of his visit, as you can imagine. Mr. + Carruthers apologized to me next day, and assured me that I should + never be exposed to such an insult again. I have not seen Mr. Woodley + since. + + "And now, Mr. Holmes, I come at last to the special thing which has + caused me to ask your advice to-day. You must know that every + Saturday forenoon I ride on my bicycle to Farnham Station in order to + get the 12.22 to town. The road from Chiltern Grange is a lonely one, + and at one spot it is particularly so, for it lies for over a mile + between Charlington Heath upon one side and the woods which lie round + Charlington Hall upon the other. You could not find a more lonely + tract of road anywhere, and it is quite rare to meet so much as a + cart, or a peasant, until you reach the high road near Crooksbury + Hill. Two weeks ago I was passing this place when I chanced to look + back over my shoulder, and about two hundred yards behind me I saw a + man, also on a bicycle. He seemed to be a middle-aged man, with a + short, dark beard. I looked back before I reached Farnham, but the + man was gone, so I thought no more about it. But you can imagine how + surprised I was, Mr. Holmes, when on my return on the Monday I saw + the same man on the same stretch of road. My astonishment was + increased when the incident occurred again, exactly as before, on the + following Saturday and Monday. He always kept his distance and did + not molest me in any way, but still it certainly was very odd. I + mentioned it to Mr. Carruthers, who seemed interested in what I said, + and told me that he had ordered a horse and trap, so that in future I + should not pass over these lonely roads without some companion. + + "The horse and trap were to have come this week, but for some reason + they were not delivered, and again I had to cycle to the station. + That was this morning. You can think that I looked out when I came to + Charlington Heath, and there, sure enough, was the man, exactly as he + had been the two weeks before. He always kept so far from me that I + could not clearly see his face, but it was certainly someone whom I + did not know. He was dressed in a dark suit with a cloth cap. The + only thing about his face that I could clearly see was his dark + beard. To-day I was not alarmed, but I was filled with curiosity, and + I determined to find out who he was and what he wanted. I slowed down + my machine, but he slowed down his. Then I stopped altogether, but he + stopped also. Then I laid a trap for him. There is a sharp turning of + the road, and I pedalled very quickly round this, and then I stopped + and waited. I expected him to shoot round and pass me before he could + stop. But he never appeared. Then I went back and looked round the + corner. I could see a mile of road, but he was not on it. To make it + the more extraordinary, there was no side road at this point down + which he could have gone." + + Holmes chuckled and rubbed his hands. "This case certainly presents + some features of its own," said he. "How much time elapsed between + your turning the corner and your discovery that the road was clear?" + + "Two or three minutes." + + "Then he could not have retreated down the road, and you say that + there are no side roads?" + + "None." + + "Then he certainly took a footpath on one side or the other." + + "It could not have been on the side of the heath or I should have + seen him." + + "So by the process of exclusion we arrive at the fact that he made + his way towards Charlington Hall, which, as I understand, is situated + in its own grounds on one side of the road. Anything else?" + + "Nothing, Mr. Holmes, save that I was so perplexed that I felt I + should not be happy until I had seen you and had your advice." + + Holmes sat in silence for some little time. + + "Where is the gentleman to whom you are engaged?" he asked, at last. + + "He is in the Midland Electrical Company, at Coventry." + + "He would not pay you a surprise visit?" + + "Oh, Mr. Holmes! As if I should not know him!" + + "Have you had any other admirers?" + + "Several before I knew Cyril." + + "And since?" + + "There was this dreadful man, Woodley, if you can call him an + admirer." + + "No one else?" + + Our fair client seemed a little confused. + + "Who was he?" asked Holmes. + + "Oh, it may be a mere fancy of mine; but it has seemed to me + sometimes that my employer, Mr. Carruthers, takes a great deal of + interest in me. We are thrown rather together. I play his + accompaniments in the evening. He has never said anything. He is a + perfect gentleman. But a girl always knows." + + "Ha!" Holmes looked grave. "What does he do for a living?" + + "He is a rich man." + + "No carriages or horses?" + + "Well, at least he is fairly well-to-do. But he goes into the City + two or three times a week. He is deeply interested in South African + gold shares." + + "You will let me know any fresh development, Miss Smith. I am very + busy just now, but I will find time to make some inquiries into your + case. In the meantime take no step without letting me know. Good-bye, + and I trust that we shall have nothing but good news from you." + + "It is part of the settled order of Nature that such a girl should + have followers," said Holmes, as he pulled at his meditative pipe, + "but for choice not on bicycles in lonely country roads. Some + secretive lover, beyond all doubt. But there are curious and + suggestive details about the case, Watson." + + "That he should appear only at that point?" + + "Exactly. Our first effort must be to find who are the tenants of + Charlington Hall. Then, again, how about the connection between + Carruthers and Woodley, since they appear to be men of such a + different type? How came they both to be so keen upon looking up + Ralph Smith's relations? One more point. What sort of a menage is it + which pays double the market price for a governess, but does not keep + a horse although six miles from the station? Odd, Watson--very odd!" + + "You will go down?" + + "No, my dear fellow, you will go down. This may be some trifling + intrigue, and I cannot break my other important research for the sake + of it. On Monday you will arrive early at Farnham; you will conceal + yourself near Charlington Heath; you will observe these facts for + yourself, and act as your own judgment advises. Then, having inquired + as to the occupants of the Hall, you will come back to me and report. + And now, Watson, not another word of the matter until we have a few + solid stepping-stones on which we may hope to get across to our + solution." + + We had ascertained from the lady that she went down upon the Monday + by the train which leaves Waterloo at 9.50, so I started early and + caught the 9.13. At Farnham Station I had no difficulty in being + directed to Charlington Heath. It was impossible to mistake the scene + of the young lady's adventure, for the road runs between the open + heath on one side and an old yew hedge upon the other, surrounding a + park which is studded with magnificent trees. There was a main + gateway of lichen-studded stone, each side pillar surmounted by + mouldering heraldic emblems; but besides this central carriage drive + I observed several points where there were gaps in the hedge and + paths leading through them. The house was invisible from the road, + but the surroundings all spoke of gloom and decay. + + The heath was covered with golden patches of flowering gorse, + gleaming magnificently in the light of the bright spring sunshine. + Behind one of these clumps I took up my position, so as to command + both the gateway of the Hall and a long stretch of the road upon + either side. It had been deserted when I left it, but now I saw a + cyclist riding down it from the opposite direction to that in which I + had come. He was clad in a dark suit, and I saw that he had a black + beard. On reaching the end of the Charlington grounds he sprang from + his machine and led it through a gap in the hedge, disappearing from + my view. + + A quarter of an hour passed and then a second cyclist appeared. This + time it was the young lady coming from the station. I saw her look + about her as she came to the Charlington hedge. An instant later the + man emerged from his hiding-place, sprang upon his cycle, and + followed her. In all the broad landscape those were the only moving + figures, the graceful girl sitting very straight upon her machine, + and the man behind her bending low over his handle-bar, with a + curiously furtive suggestion in every movement. She looked back at + him and slowed her pace. He slowed also. She stopped. He at once + stopped too, keeping two hundred yards behind her. Her next movement + was as unexpected as it was spirited. She suddenly whisked her wheels + round and dashed straight at him! He was as quick as she, however, + and darted off in desperate flight. Presently she came back up the + road again, her head haughtily in the air, not deigning to take any + further notice of her silent attendant. He had turned also, and still + kept his distance until the curve of the road hid them from my sight. + + I remained in my hiding-place, and it was well that I did so, for + presently the man reappeared cycling slowly back. He turned in at the + Hall gates and dismounted from his machine. For some few minutes I + could see him standing among the trees. His hands were raised and he + seemed to be settling his necktie. Then he mounted his cycle and rode + away from me down the drive towards the Hall. I ran across the heath + and peered through the trees. Far away I could catch glimpses of the + old grey building with its bristling Tudor chimneys, but the drive + ran through a dense shrubbery, and I saw no more of my man. + + However, it seemed to me that I had done a fairly good morning's + work, and I walked back in high spirits to Farnham. The local + house-agent could tell me nothing about Charlington Hall, and + referred me to a well-known firm in Pall Mall. There I halted on my + way home, and met with courtesy from the representative. No, I could + not have Charlington Hall for the summer. I was just too late. It had + been let about a month ago. Mr. Williamson was the name of the + tenant. He was a respectable elderly gentleman. The polite agent was + afraid he could say no more, as the affairs of his clients were not + matters which he could discuss. + + Mr. Sherlock Holmes listened with attention to the long report which + I was able to present to him that evening, but it did not elicit that + word of curt praise which I had hoped for and should have valued. On + the contrary, his austere face was even more severe than usual as he + commented upon the things that I had done and the things that I had + not. + + "Your hiding-place, my dear Watson, was very faulty. You should have + been behind the hedge; then you would have had a close view of this + interesting person. As it is you were some hundreds of yards away, + and can tell me even less than Miss Smith. She thinks she does not + know the man; I am convinced she does. Why, otherwise, should he be + so desperately anxious that she should not get so near him as to see + his features? You describe him as bending over the handle-bar. + Concealment again, you see. You really have done remarkably badly. He + returns to the house and you want to find out who he is. You come to + a London house-agent!" + + "What should I have done?" I cried, with some heat. + + "Gone to the nearest public-house. That is the centre of country + gossip. They would have told you every name, from the master to the + scullery-maid. Williamson! It conveys nothing to my mind. If he is an + elderly man he is not this active cyclist who sprints away from that + athletic young lady's pursuit. What have we gained by your + expedition? The knowledge that the girl's story is true. I never + doubted it. That there is a connection between the cyclist and the + Hall. I never doubted that either. That the Hall is tenanted by + Williamson. Who's the better for that? Well, well, my dear sir, don't + look so depressed. We can do little more until next Saturday, and in + the meantime I may make one or two inquiries myself." + + Next morning we had a note from Miss Smith, recounting shortly and + accurately the very incidents which I had seen, but the pith of the + letter lay in the postscript: + + "I am sure that you will respect my confidence, Mr. Holmes, when I + tell you that my place here has become difficult owing to the fact + that my employer has proposed marriage to me. I am convinced that his + feelings are most deep and most honourable. At the same time my + promise is, of course, given. He took my refusal very seriously, but + also very gently. You can understand, however, that the situation is + a little strained." + + "Our young friend seems to be getting into deep waters," said Holmes, + thoughtfully, as he finished the letter. "The case certainly presents + more features of interest and more possibility of development than I + had originally thought. I should be none the worse for a quiet, + peaceful day in the country, and I am inclined to run down this + afternoon and test one or two theories which I have formed." + + Holmes's quiet day in the country had a singular termination, for he + arrived at Baker Street late in the evening with a cut lip and a + discoloured lump upon his forehead, besides a general air of + dissipation which would have made his own person the fitting object + of a Scotland Yard investigation. He was immensely tickled by his own + adventures, and laughed heartily as he recounted them. + + "I get so little active exercise that it is always a treat," said he. + "You are aware that I have some proficiency in the good old British + sport of boxing. Occasionally it is of service. To-day, for example, + I should have come to very ignominious grief without it." + + I begged him to tell me what had occurred. + + "I found that country pub which I had already recommended to your + notice, and there I made my discreet inquiries. I was in the bar, and + a garrulous landlord was giving me all that I wanted. Williamson is a + white-bearded man, and he lives alone with a small staff of servants + at the Hall. There is some rumour that he is or has been a clergyman; + but one or two incidents of his short residence at the Hall struck me + as peculiarly unecclesiastical. I have already made some inquiries at + a clerical agency, and they tell me that there was a man of that name + in orders whose career has been a singularly dark one. The landlord + further informed me that there are usually week-end visitors--'a warm + lot, sir'--at the Hall, and especially one gentleman with a red + moustache, Mr. Woodley by name, who was always there. We had got as + far as this when who should walk in but the gentleman himself, who + had been drinking his beer in the tap-room and had heard the whole + conversation. Who was I? What did I want? What did I mean by asking + questions? He had a fine flow of language, and his adjectives were + very vigorous. He ended a string of abuse by a vicious back-hander + which I failed to entirely avoid. The next few minutes were + delicious. It was a straight left against a slogging ruffian. I + emerged as you see me. Mr. Woodley went home in a cart. So ended my + country trip, and it must be confessed that, however enjoyable, my + day on the Surrey border has not been much more profitable than your + own." + + The Thursday brought us another letter from our client. + + You will not be surprised, Mr. Holmes [said she] to hear that I am + leaving Mr. Carruthers's employment. Even the high pay cannot + reconcile me to the discomforts of my situation. On Saturday I come + up to town and I do not intend to return. Mr. Carruthers has got a + trap, and so the dangers of the lonely road, if there ever were any + dangers, are now over. + As to the special cause of my leaving, it is not merely the strained + situation with Mr. Carruthers, but it is the reappearance of that + odious man, Mr. Woodley. He was always hideous, but he looks more + awful than ever now, for he appears to have had an accident and he is + much disfigured. I saw him out of the window, but I am glad to say I + did not meet him. He had a long talk with Mr. Carruthers, who seemed + much excited afterwards. Woodley must be staying in the + neighbourhood, for he did not sleep here, and yet I caught a glimpse + of him again this morning slinking about in the shrubbery. I would + sooner have a savage wild animal loose about the place. I loathe and + fear him more than I can say. How can Mr. Carruthers endure such a + creature for a moment? However, all my troubles will be over on + Saturday. + + "So I trust, Watson; so I trust," said Holmes, gravely. "There is + some deep intrigue going on round that little woman, and it is our + duty to see that no one molests her upon that last journey. I think, + Watson, that we must spare time to run down together on Saturday + morning, and make sure that this curious and inconclusive + investigation has no untoward ending." + + I confess that I had not up to now taken a very serious view of the + case, which had seemed to me rather grotesque and bizarre than + dangerous. That a man should lie in wait for and follow a very + handsome woman is no unheard-of thing, and if he had so little + audacity that he not only dared not address her, but even fled from + her approach, he was not a very formidable assailant. The ruffian + Woodley was a very different person, but, except on one occasion, he + had not molested our client, and now he visited the house of + Carruthers without intruding upon her presence. The man on the + bicycle was doubtless a member of those week-end parties at the Hall + of which the publican had spoken; but who he was or what he wanted + was as obscure as ever. It was the severity of Holmes's manner and + the fact that he slipped a revolver into his pocket before leaving + our rooms which impressed me with the feeling that tragedy might + prove to lurk behind this curious train of events. + + A rainy night had been followed by a glorious morning, and the + heath-covered country-side with the glowing clumps of flowering gorse + seemed all the more beautiful to eyes which were weary of the duns + and drabs and slate-greys of London. Holmes and I walked along the + broad, sandy road inhaling the fresh morning air, and rejoicing in + the music of the birds and the fresh breath of the spring. From a + rise of the road on the shoulder of Crooksbury Hill we could see the + grim Hall bristling out from amidst the ancient oaks, which, old as + they were, were still younger than the building which they + surrounded. Holmes pointed down the long tract of road which wound, a + reddish yellow band, between the brown of the heath and the budding + green of the woods. Far away, a black dot, we could see a vehicle + moving in our direction. Holmes gave an exclamation of impatience. + + "I had given a margin of half an hour," said he. "If that is her trap + she must be making for the earlier train. I fear, Watson, that she + will be past Charlington before we can possibly meet her." + + From the instant that we passed the rise we could no longer see the + vehicle, but we hastened onwards at such a pace that my sedentary + life began to tell upon me, and I was compelled to fall behind. + Holmes, however, was always in training, for he had inexhaustible + stores of nervous energy upon which to draw. His springy step never + slowed until suddenly, when he was a hundred yards in front of me, he + halted, and I saw him throw up his hand with a gesture of grief and + despair. At the same instant an empty dog-cart, the horse cantering, + the reins trailing, appeared round the curve of the road and rattled + swiftly towards us. + + "Too late, Watson; too late!" cried Holmes, as I ran panting to his + side. "Fool that I was not to allow for that earlier train! It's + abduction, Watson--abduction! Murder! Heaven knows what! Block the + road! Stop the horse! That's right. Now, jump in, and let us see if I + can repair the consequences of my own blunder." + + We had sprung into the dog-cart, and Holmes, after turning the horse, + gave it a sharp cut with the whip, and we flew back along the road. + As we turned the curve the whole stretch of road between the Hall and + the heath was opened up. I grasped Holmes's arm. + + "That's the man!" I gasped. + + A solitary cyclist was coming towards us. His head was down and his + shoulders rounded as he put every ounce of energy that he possessed + on to the pedals. He was flying like a racer. Suddenly he raised his + bearded face, saw us close to him, and pulled up, springing from his + machine. That coal-black beard was in singular contrast to the pallor + of his face, and his eyes were as bright as if he had a fever. He + stared at us and at the dog-cart. Then a look of amazement came over + his face. + + "Halloa! Stop there!" he shouted, holding his bicycle to block our + road. "Where did you get that dog-cart? Pull up, man!" he yelled, + drawing a pistol from his side pocket. "Pull up, I say, or, by + George, I'll put a bullet into your horse." + + Holmes threw the reins into my lap and sprang down from the cart. + + "You're the man we want to see. Where is Miss Violet Smith?" he said, + in his quick, clear way. + + "That's what I am asking you. You're in her dog-cart. You ought to + know where she is." + + "We met the dog-cart on the road. There was no one in it. We drove + back to help the young lady." + + "Good Lord! Good Lord! what shall I do?" cried the stranger, in an + ecstasy of despair. "They've got her, that hellhound Woodley and the + blackguard parson. Come, man, come, if you really are her friend. + Stand by me and we'll save her, if I have to leave my carcass in + Charlington Wood." + + He ran distractedly, his pistol in his hand, towards a gap in the + hedge. Holmes followed him, and I, leaving the horse grazing beside + the road, followed Holmes. + + "This is where they came through," said he, pointing to the marks of + several feet upon the muddy path. "Halloa! Stop a minute! Who's this + in the bush?" + + It was a young fellow about seventeen, dressed like an ostler, with + leather cords and gaiters. He lay upon his back, his knees drawn up, + a terrible cut upon his head. He was insensible, but alive. A glance + at his wound told me that it had not penetrated the bone. + + "That's Peter, the groom," cried the stranger. "He drove her. The + beasts have pulled him off and clubbed him. Let him lie; we can't do + him any good, but we may save her from the worst fate that can befall + a woman." + + We ran frantically down the path, which wound among the trees. We had + reached the shrubbery which surrounded the house when Holmes pulled + up. + + "They didn't go to the house. Here are their marks on the left--here, + beside the laurel bushes! Ah, I said so!" + + As he spoke a woman's shrill scream--a scream which vibrated with a + frenzy of horror--burst from the thick green clump of bushes in front + of us. It ended suddenly on its highest note with a choke and a + gurgle. + + "This way! This way! They are in the bowling alley," cried the + stranger, darting through the bushes. "Ah, the cowardly dogs! Follow + me, gentlemen! Too late! too late! by the living Jingo!" + + We had broken suddenly into a lovely glade of greensward surrounded + by ancient trees. On the farther side of it, under the shadow of a + mighty oak, there stood a singular group of three people. One was a + woman, our client, drooping and faint, a handkerchief round her + mouth. Opposite her stood a brutal, heavy-faced, red-moustached young + man, his gaitered legs parted wide, one arm akimbo, the other waving + a riding-crop, his whole attitude suggestive of triumphant bravado. + Between them an elderly, grey-bearded man, wearing a short surplice + over a light tweed suit, had evidently just completed the wedding + service, for he pocketed his prayer-book as we appeared and slapped + the sinister bridegroom upon the back in jovial congratulation. + + "They're married!" I gasped. + + "Come on!" cried our guide; "come on!" He rushed across the glade, + Holmes and I at his heels. As we approached, the lady staggered + against the trunk of the tree for support. Williamson, the + ex-clergyman, bowed to us with mock politeness, and the bully Woodley + advanced with a shout of brutal and exultant laughter. + + "You can take your beard off, Bob," said he. "I know you right + enough. Well, you and your pals have just come in time for me to be + able to introduce you to Mrs. Woodley." + + Our guide's answer was a singular one. He snatched off the dark beard + which had disguised him and threw it on the ground, disclosing a + long, sallow, clean-shaven face below it. Then he raised his revolver + and covered the young ruffian, who was advancing upon him with his + dangerous riding-crop swinging in his hand. + + "Yes," said our ally, "I am Bob Carruthers, and I'll see this woman + righted if I have to swing for it. I told you what I'd do if you + molested her, and, by the Lord, I'll be as good as my word!" + + "You're too late. She's my wife!" + + "No, she's your widow." + + His revolver cracked, and I saw the blood spurt from the front of + Woodley's waistcoat. He spun round with a scream and fell upon his + back, his hideous red face turning suddenly to a dreadful mottled + pallor. The old man, still clad in his surplice, burst into such a + string of foul oaths as I have never heard, and pulled out a revolver + of his own, but before he could raise it he was looking down the + barrel of Holmes's weapon. + + "Enough of this," said my friend, coldly. "Drop that pistol! Watson, + pick it up! Hold it to his head! Thank you. You, Carruthers, give me + that revolver. We'll have no more violence. Come, hand it over!" + + "Who are you, then?" + + "My name is Sherlock Holmes." + + "Good Lord!" + + "You have heard of me, I see. I will represent the official police + until their arrival. Here, you!" he shouted to a frightened groom who + had appeared at the edge of the glade. "Come here. Take this note as + hard as you can ride to Farnham." He scribbled a few words upon a + leaf from his note-book. "Give it to the superintendent at the + police-station. Until he comes I must detain you all under my + personal custody." + + The strong, masterful personality of Holmes dominated the tragic + scene, and all were equally puppets in his hands. Williamson and + Carruthers found themselves carrying the wounded Woodley into the + house, and I gave my arm to the frightened girl. The injured man was + laid on his bed, and at Holmes's request I examined him. I carried my + report to where he sat in the old tapestry-hung dining-room with his + two prisoners before him. + + "He will live," said I. + + "What!" cried Carruthers, springing out of his chair. "I'll go + upstairs and finish him first. Do you tell me that that girl, that + angel, is to be tied to Roaring Jack Woodley for life?" + + "You need not concern yourself about that," said Holmes. "There are + two very good reasons why she should under no circumstances be his + wife. In the first place, we are very safe in questioning Mr. + Williamson's right to solemnize a marriage." + + "I have been ordained," cried the old rascal. + + "And also unfrocked." + + "Once a clergyman, always a clergyman." + + "I think not. How about the license?" + + "We had a license for the marriage. I have it here in my pocket." + + "Then you got it by a trick. But in any case a forced marriage is no + marriage, but it is a very serious felony, as you will discover + before you have finished. You'll have time to think the point out + during the next ten years or so, unless I am mistaken. As to you, + Carruthers, you would have done better to keep your pistol in your + pocket." + + "I begin to think so, Mr. Holmes; but when I thought of all the + precaution I had taken to shield this girl--for I loved her, Mr. + Holmes, and it is the only time that ever I knew what love was--it + fairly drove me mad to think that she was in the power of the + greatest brute and bully in South Africa, a man whose name is a holy + terror from Kimberley to Johannesburg. Why, Mr. Holmes, you'll hardly + believe it, but ever since that girl has been in my employment I + never once let her go past this house, where I knew these rascals + were lurking, without following her on my bicycle just to see that + she came to no harm. I kept my distance from her, and I wore a beard + so that she should not recognise me, for she is a good and + high-spirited girl, and she wouldn't have stayed in my employment + long if she had thought that I was following her about the country + roads." + + "Why didn't you tell her of her danger?" + + "Because then, again, she would have left me, and I couldn't bear to + face that. Even if she couldn't love me it was a great deal to me + just to see her dainty form about the house, and to hear the sound of + her voice." + + "Well," said I, "you call that love, Mr. Carruthers, but I should + call it selfishness." + + "Maybe the two things go together. Anyhow, I couldn't let her go. + Besides, with this crowd about, it was well that she should have + someone near to look after her. Then when the cable came I knew they + were bound to make a move." + + "What cable?" + + Carruthers took a telegram from his pocket. + + "That's it," said he. + + It was short and concise: + + The old man is dead. + "Hum!" said Holmes. "I think I see how things worked, and I can + understand how this message would, as you say, bring them to a head. + But while we wait you might tell me what you can." + + The old reprobate with the surplice burst into a volley of bad + language. + + "By Heaven," said he, "if you squeal on us, Bob Carruthers, I'll + serve you as you served Jack Woodley. You can bleat about the girl to + your heart's content, for that's your own affair, but if you round on + your pals to this plain-clothes copper it will be the worst day's + work that ever you did." + + "Your reverence need not be excited," said Holmes, lighting a + cigarette. "The case is clear enough against you, and all I ask is a + few details for my private curiosity. However, if there's any + difficulty in your telling me I'll do the talking, and then you will + see how far you have a chance of holding back your secrets. In the + first place, three of you came from South Africa on this game--you + Williamson, you Carruthers, and Woodley." + + "Lie number one," said the old man; "I never saw either of them until + two months ago, and I have never been in Africa in my life, so you + can put that in your pipe and smoke it, Mr. Busybody Holmes!" + + "What he says is true," said Carruthers. + + "Well, well, two of you came over. His reverence is our own home-made + article. You had known Ralph Smith in South Africa. You had reason to + believe he would not live long. You found out that his niece would + inherit his fortune. How's that--eh?" + + Carruthers nodded and Williamson swore. + + "She was next-of-kin, no doubt, and you were aware that the old + fellow would make no will." + + "Couldn't read or write," said Carruthers. + + "So you came over, the two of you, and hunted up the girl. The idea + was that one of you was to marry her and the other have a share of + the plunder. For some reason Woodley was chosen as the husband. Why + was that?" + + "We played cards for her on the voyage. He won." + + "I see. You got the young lady into your service, and there Woodley + was to do the courting. She recognised the drunken brute that he was, + and would have nothing to do with him. Meanwhile, your arrangement + was rather upset by the fact that you had yourself fallen in love + with the lady. You could no longer bear the idea of this ruffian + owning her." + + "No, by George, I couldn't!" + + "There was a quarrel between you. He left you in a rage, and began to + make his own plans independently of you." + + "It strikes me, Williamson, there isn't very much that we can tell + this gentleman," cried Carruthers, with a bitter laugh. "Yes, we + quarreled, and he knocked me down. I am level with him on that, + anyhow. Then I lost sight of him. That was when he picked up with + this cast padre here. I found that they had set up house-keeping + together at this place on the line that she had to pass for the + station. I kept my eye on her after that, for I knew there was some + devilry in the wind. I saw them from time to time, for I was anxious + to know what they were after. Two days ago Woodley came up to my + house with this cable, which showed that Ralph Smith was dead. He + asked me if I would stand by the bargain. I said I would not. He + asked me if I would marry the girl myself and give him a share. I + said I would willingly do so, but that she would not have me. He + said, 'Let us get her married first, and after a week or two she may + see things a bit different.' I said I would have nothing to do with + violence. So he went off cursing, like the foul-mouthed blackguard + that he was, and swearing that he would have her yet. She was leaving + me this week-end, and I had got a trap to take her to the station, + but I was so uneasy in my mind that I followed her on my bicycle. She + had got a start, however, and before I could catch her the mischief + was done. The first thing I knew about it was when I saw you two + gentlemen driving back in her dog-cart." + + Holmes rose and tossed the end of his cigarette into the grate. "I + have been very obtuse, Watson," said he. "When in your report you + said that you had seen the cyclist as you thought arrange his necktie + in the shrubbery, that alone should have told me all. However, we may + congratulate ourselves upon a curious and in some respects a unique + case. I perceive three of the county constabulary in the drive, and I + am glad to see that the little ostler is able to keep pace with them; + so it is likely that neither he nor the interesting bridegroom will + be permanently damaged by their morning's adventures. I think, + Watson, that in your medical capacity you might wait upon Miss Smith + and tell her that if she is sufficiently recovered we shall be happy + to escort her to her mother's home. If she is not quite convalescent + you will find that a hint that we were about to telegraph to a young + electrician in the Midlands would probably complete the cure. As to + you, Mr. Carruthers, I think that you have done what you could to + make amends for your share in an evil plot. There is my card, sir, + and if my evidence can be of help to you in your trial it shall be at + your disposal." + + In the whirl of our incessant activity it has often been difficult + for me, as the reader has probably observed, to round off my + narratives, and to give those final details which the curious might + expect. Each case has been the prelude to another, and the crisis + once over the actors have passed for ever out of our busy lives. I + find, however, a short note at the end of my manuscripts dealing with + this case, in which I have put it upon record that Miss Violet Smith + did indeed inherit a large fortune, and that she is now the wife of + Cyril Morton, the senior partner of Morton & Kennedy, the famous + Westminster electricians. Williamson and Woodley were both tried for + abduction and assault, the former getting seven years and the latter + ten. Of the fate of Carruthers I have no record, but I am sure that + his assault was not viewed very gravely by the Court, since Woodley + had the reputation of being a most dangerous ruffian, and I think + that a few months were sufficient to satisfy the demands of justice. + + + + + + + THE ADVENTURE OF THE PRIORY SCHOOL + + We have had some dramatic entrances and exits upon our small stage at + Baker Street, but I cannot recollect anything more sudden and + startling than the first appearance of Thorneycroft Huxtable, M.A., + Ph.D., etc. His card, which seemed too small to carry the weight of + his academic distinctions, preceded him by a few seconds, and then he + entered himself--so large, so pompous, and so dignified that he was + the very embodiment of self-possession and solidity. And yet his + first action when the door had closed behind him was to stagger + against the table, whence he slipped down upon the floor, and there + was that majestic figure prostrate and insensible upon our bearskin + hearthrug. + + We had sprung to our feet, and for a few moments we stared in silent + amazement at this ponderous piece of wreckage, which told of some + sudden and fatal storm far out on the ocean of life. Then Holmes + hurried with a cushion for his head and I with brandy for his lips. + The heavy white face was seamed with lines of trouble, the hanging + pouches under the closed eyes were leaden in colour, the loose mouth + drooped dolorously at the corners, the rolling chins were unshaven. + Collar and shirt bore the grime of a long journey, and the hair + bristled unkempt from the well-shaped head. It was a sorely-stricken + man who lay before us. + + "What is it, Watson?" asked Holmes. + + "Absolute exhaustion--possibly mere hunger and fatigue," said I, with + my finger on the thready pulse, where the stream of life trickled + thin and small. + + "Return ticket from Mackleton, in the North of England," said Holmes, + drawing it from the watch-pocket. "It is not twelve o'clock yet. He + has certainly been an early starter." + + The puckered eyelids had begun to quiver, and now a pair of vacant, + grey eyes looked up at us. An instant later the man had scrambled on + to his feet, his face crimson with shame. + + "Forgive this weakness, Mr. Holmes; I have been a little overwrought. + Thank you, if I might have a glass of milk and a biscuit I have no + doubt that I should be better. I came personally, Mr. Holmes, in + order to ensure that you would return with me. I feared that no + telegram would convince you of the absolute urgency of the case." + + "When you are quite restored-- + + "I am quite well again. I cannot imagine how I came to be so weak. I + wish you, Mr. Holmes, to come to Mackleton with me by the next + train." + + My friend shook his head. + + "My colleague, Dr. Watson, could tell you that we are very busy at + present. I am retained in this case of the Ferrers Documents, and the + Abergavenny murder is coming up for trial. Only a very important + issue could call me from London at present." + + "Important!" Our visitor threw up his hands. "Have you heard nothing + of the abduction of the only son of the Duke of Holdernesse?" + + "What! the late Cabinet Minister?" + + "Exactly. We had tried to keep it out of the papers, but there was + some rumour in the Globe last night. I thought it might have reached + your ears." + + Holmes shot out his long, thin arm and picked out Volume "H" in his + encyclopaedia of reference. + + "'Holdernesse, 6th Duke, K.G., P.C.'--half the alphabet! 'Baron + Beverley, Earl of Carston'--dear me, what a list! 'Lord Lieutenant of + Hallamshire since 1900. Married Edith, daughter of Sir Charles + Appledore, 1888. Heir and only child, Lord Saltire. Owns about two + hundred and fifty thousand acres. Minerals in Lancashire and Wales. + Address: Carlton House Terrace; Holdernesse Hall, Hallamshire; + Carston Castle, Bangor, Wales. Lord of the Admiralty, 1872; Chief + Secretary of State for--' Well, well, this man is certainly one of + the greatest subjects of the Crown!" + + "The greatest and perhaps the wealthiest. I am aware, Mr. Holmes, + that you take a very high line in professional matters, and that you + are prepared to work for the work's sake. I may tell you, however, + that his Grace has already intimated that a cheque for five thousand + pounds will be handed over to the person who can tell him where his + son is, and another thousand to him who can name the man, or men, who + have taken him." + + "It is a princely offer," said Holmes. "Watson, I think that we shall + accompany Dr. Huxtable back to the North of England. And now, Dr. + Huxtable, when you have consumed that milk you will kindly tell me + what has happened, when it happened, how it happened, and, finally, + what Dr. Thorneycroft Huxtable, of the Priory School, near Mackleton, + has to do with the matter, and why he comes three days after an + event--the state of your chin gives the date--to ask for my humble + services." + + Our visitor had consumed his milk and biscuits. The light had come + back to his eyes and the colour to his cheeks as he set himself with + great vigour and lucidity to explain the situation. + + "I must inform you, gentlemen, that the Priory is a preparatory + school, of which I am the founder and principal. 'Huxtable's + Sidelights on Horace' may possibly recall my name to your memories. + The Priory is, without exception, the best and most select + preparatory school in England. Lord Leverstoke, the Earl of + Blackwater, Sir Cathcart Soames--they all have entrusted their sons + to me. But I felt that my school had reached its zenith when, three + weeks ago, the Duke of Holdernesse sent Mr. James Wilder, his + secretary, with the intimation that young Lord Saltire, ten years + old, his only son and heir, was about to be committed to my charge. + Little did I think that this would be the prelude to the most + crushing misfortune of my life. + + "On May 1st the boy arrived, that being the beginning of the summer + term. He was a charming youth, and he soon fell into our ways. I may + tell you--I trust that I am not indiscreet, but half-confidences are + absurd in such a case--that he was not entirely happy at home. It is + an open secret that the Duke's married life had not been a peaceful + one, and the matter had ended in a separation by mutual consent, the + Duchess taking up her residence in the South of France. This had + occurred very shortly before, and the boy's sympathies are known to + have been strongly with his mother. He moped after her departure from + Holdernesse Hall, and it was for this reason that the Duke desired to + send him to my establishment. In a fortnight the boy was quite at + home with us, and was apparently absolutely happy. + + "He was last seen on the night of May 13th--that is, the night of + last Monday. His room was on the second floor, and was approached + through another larger room in which two boys were sleeping. These + boys saw and heard nothing, so that it is certain that young Saltire + did not pass out that way. His window was open, and there is a stout + ivy plant leading to the ground. We could trace no footmarks below, + but it is sure that this is the only possible exit. + + "His absence was discovered at seven o'clock on Tuesday morning. His + bed had been slept in. He had dressed himself fully before going off + in his usual school suit of black Eton jacket and dark grey trousers. + There were no signs that anyone had entered the room, and it is quite + certain that anything in the nature of cries, or a struggle, would + have been heard, since Caunter, the elder boy in the inner room, is a + very light sleeper. + + "When Lord Saltire's disappearance was discovered I at once called a + roll of the whole establishment, boys, masters, and servants. It was + then that we ascertained that Lord Saltire had not been alone in his + flight. Heidegger, the German master, was missing. His room was on + the second floor, at the farther end of the building, facing the same + way as Lord Saltire's. His bed had also been slept in; but he had + apparently gone away partly dressed, since his shirt and socks were + lying on the floor. He had undoubtedly let himself down by the ivy, + for we could see the marks of his feet where he had landed on the + lawn. His bicycle was kept in a small shed beside this lawn, and it + also was gone. + + "He had been with me for two years, and came with the best + references; but he was a silent, morose man, not very popular either + with masters or boys. No trace could be found of the fugitives, and + now on Thursday morning we are as ignorant as we were on Tuesday. + Inquiry was, of course, made at once at Holdernesse Hall. It is only + a few miles away, and we imagined that in some sudden attack of + home-sickness he had gone back to his father; but nothing had been + heard of him. The Duke is greatly agitated--and as to me, you have + seen yourselves the state of nervous prostration to which the + suspense and the responsibility have reduced me. Mr. Holmes, if ever + you put forward your full powers, I implore you to do so now, for + never in your life could you have a case which is more worthy of + them." + + Sherlock Holmes had listened with the utmost intentness to the + statement of the unhappy schoolmaster. His drawn brows and the deep + furrow between them showed that he needed no exhortation to + concentrate all his attention upon a problem which, apart from the + tremendous interests involved, must appeal so directly to his love of + the complex and the unusual. He now drew out his note-book and jotted + down one or two memoranda. + + "You have been very remiss in not coming to me sooner," said he, + severely. "You start me on my investigation with a very serious + handicap. It is inconceivable, for example, that this ivy and this + lawn would have yielded nothing to an expert observer." + + "I am not to blame, Mr. Holmes. His Grace was extremely desirous to + avoid all public scandal. He was afraid of his family unhappiness + being dragged before the world. He has a deep horror of anything of + the kind." + + "But there has been some official investigation?" + + "Yes, sir, and it has proved most disappointing. An apparent clue was + at once obtained, since a boy and a young man were reported to have + been seen leaving a neighbouring station by an early train. Only last + night we had news that the couple had been hunted down in Liverpool, + and they prove to have no connection whatever with the matter in + hand. Then it was that in my despair and disappointment, after a + sleepless night, I came straight to you by the early train." + + "I suppose the local investigation was relaxed while this false clue + was being followed up?" + + "It was entirely dropped." + + "So that three days have been wasted. The affair has been most + deplorably handled." + + "I feel it, and admit it." + + "And yet the problem should be capable of ultimate solution. I shall + be very happy to look into it. Have you been able to trace any + connection between the missing boy and this German master?" + + "None at all." + + "Was he in the master's class?" + + "No; he never exchanged a word with him so far as I know." + + "That is certainly very singular. Had the boy a bicycle?" + + "No." + + "Was any other bicycle missing?" + + "No." + + "Is that certain?" + + "Quite." + + "Well, now, you do not mean to seriously suggest that this German + rode off upon a bicycle in the dead of the night bearing the boy in + his arms?" + + "Certainly not." + + "Then what is the theory in your mind?" + + "The bicycle may have been a blind. It may have been hidden somewhere + and the pair gone off on foot." + + "Quite so; but it seems rather an absurd blind, does it not? Were + there other bicycles in this shed?" + + "Several." + + "Would he not have hidden a couple he desired to give the idea that + they had gone off upon them?" + + "I suppose he would." + + "Of course he would. The blind theory won't do. But the incident is + an admirable starting-point for an investigation. After all, a + bicycle is not an easy thing to conceal or to destroy. One other + question. Did anyone call to see the boy on the day before he + disappeared?" + + "No." + + "Did he get any letters?" + + "Yes; one letter." + + "From whom?" + + "From his father." + + "Do you open the boys' letters?" + + "No." + + "How do you know it was from the father?" + + "The coat of arms was on the envelope, and it was addressed in the + Duke's peculiar stiff hand. Besides, the Duke remembers having + written." + + "When had he a letter before that?" + + "Not for several days." + + "Had he ever one from France?" + + "No; never." + + "You see the point of my questions, of course. Either the boy was + carried off by force or he went of his own free will. In the latter + case you would expect that some prompting from outside would be + needed to make so young a lad do such a thing. If he has had no + visitors, that prompting must have come in letters. Hence I try to + find out who were his correspondents." + + "I fear I cannot help you much. His only correspondent, so far as I + know, was his own father." + + "Who wrote to him on the very day of his disappearance. Were the + relations between father and son very friendly?" + + "His Grace is never very friendly with anyone. He is completely + immersed in large public questions, and is rather inaccessible to all + ordinary emotions. But he was always kind to the boy in his own way." + + "But the sympathies of the latter were with the mother?" + + "Yes." + + "Did he say so?" + + "No." + + "The Duke, then?" + + "Good heavens, no!" + + "Then how could you know?" + + "I have had some confidential talks with Mr. James Wilder, his + Grace's secretary. It was he who gave me the information about Lord + Saltire's feelings." + + "I see. By the way, that last letter of the Duke's--was it found in + the boy's room after he was gone?" + + "No; he had taken it with him. I think, Mr. Holmes, it is time that + we were leaving for Euston." + + "I will order a four-wheeler. In a quarter of an hour we shall be at + your service. If you are telegraphing home, Mr. Huxtable, it would be + well to allow the people in your neighbourhood to imagine that the + inquiry is still going on in Liverpool, or wherever else that red + herring led your pack. In the meantime I will do a little quiet work + at your own doors, and perhaps the scent is not so cold but that two + old hounds like Watson and myself may get a sniff of it." + + That evening found us in the cold, bracing atmosphere of the Peak + country, in which Dr. Huxtable's famous school is situated. It was + already dark when we reached it. A card was lying on the hall table, + and the butler whispered something to his master, who turned to us + with agitation in every heavy feature. + + "The Duke is here," said he. "The Duke and Mr. Wilder are in the + study. Come, gentlemen, and I will introduce you." + + I was, of course, familiar with the pictures of the famous statesman, + but the man himself was very different from his representation. He + was a tall and stately person, scrupulously dressed, with a drawn, + thin face, and a nose which was grotesquely curved and long. His + complexion was of a dead pallor, which was more startling by contrast + with a long, dwindling beard of vivid red, which flowed down over his + white waistcoat, with his watch-chain gleaming through its fringe. + Such was the stately presence who looked stonily at us from the + centre of Dr. Huxtable's hearthrug. Beside him stood a very young + man, whom I understood to be Wilder, the private secretary. He was + small, nervous, alert, with intelligent, light-blue eyes and mobile + features. It was he who at once, in an incisive and positive tone, + opened the conversation. + + "I called this morning, Dr. Huxtable, too late to prevent you from + starting for London. I learned that your object was to invite Mr. + Sherlock Holmes to undertake the conduct of this case. His Grace is + surprised, Dr. Huxtable, that you should have taken such a step + without consulting him." + + "When I learned that the police had failed--" + + "His Grace is by no means convinced that the police have failed." + + "But surely, Mr. Wilder--" + + "You are well aware, Dr. Huxtable, that his Grace is particularly + anxious to avoid all public scandal. He prefers to take as few people + as possible into his confidence." + + "The matter can be easily remedied," said the brow-beaten doctor; + "Mr. Sherlock Holmes can return to London by the morning train." + + "Hardly that, Doctor, hardly that," said Holmes, in his blandest + voice. "This northern air is invigorating and pleasant, so I propose + to spend a few days upon your moors, and to occupy my mind as best I + may. Whether I have the shelter of your roof or of the village inn + is, of course, for you to decide." + + I could see that the unfortunate doctor was in the last stage of + indecision, from which he was rescued by the deep, sonorous voice of + the red-bearded Duke, which boomed out like a dinner-gong. + + "I agree with Mr. Wilder, Dr. Huxtable, that you would have done + wisely to consult me. But since Mr. Holmes has already been taken + into your confidence, it would indeed be absurd that we should not + avail ourselves of his services. Far from going to the inn, Mr. + Holmes, I should be pleased if you would come and stay with me at + Holdernesse Hall." + + "I thank your Grace. For the purposes of my investigation I think + that it would be wiser for me to remain at the scene of the mystery." + + "Just as you like, Mr. Holmes. Any information which Mr. Wilder or I + can give you is, of course, at your disposal." + + "It will probably be necessary for me to see you at the Hall," said + Holmes. "I would only ask you now, sir, whether you have formed any + explanation in your own mind as to the mysterious disappearance of + your son?" + + "No, sir, I have not." + + "Excuse me if I allude to that which is painful to you, but I have no + alternative. Do you think that the Duchess had anything to do with + the matter?" + + The great Minister showed perceptible hesitation. + + "I do not think so," he said, at last. + + "The other most obvious explanation is that the child has been + kidnapped for the purpose of levying ransom. You have not had any + demand of the sort?" + + "No, sir." + + "One more question, your Grace. I understand that you wrote to your + son upon the day when this incident occurred." + + "No; I wrote upon the day before." + + "Exactly. But he received it on that day?" + + "Yes." + + "Was there anything in your letter which might have unbalanced him or + induced him to take such a step?" + + "No, sir, certainly not." + + "Did you post that letter yourself?" + + The nobleman's reply was interrupted by his secretary, who broke in + with some heat. + + "His Grace is not in the habit of posting letters himself," said he. + "This letter was laid with others upon the study table, and I myself + put them in the post-bag." + + "You are sure this one was among them?" + + "Yes; I observed it." + + "How many letters did your Grace write that day?" + + "Twenty or thirty. I have a large correspondence. But surely this is + somewhat irrelevant?" + + "Not entirely," said Holmes. + + "For my own part," the Duke continued, "I have advised the police to + turn their attention to the South of France. I have already said that + I do not believe that the Duchess would encourage so monstrous an + action, but the lad had the most wrong-headed opinions, and it is + possible that he may have fled to her, aided and abetted by this + German. I think, Dr. Huxtable, that we will now return to the Hall." + + I could see that there were other questions which Holmes would have + wished to put; but the nobleman's abrupt manner showed that the + interview was at an end. It was evident that to his intensely + aristocratic nature this discussion of his intimate family affairs + with a stranger was most abhorrent, and that he feared lest every + fresh question would throw a fiercer light into the discreetly + shadowed corners of his ducal history. + + When the nobleman and his secretary had left, my friend flung himself + at once with characteristic eagerness into the investigation. + + The boy's chamber was carefully examined, and yielded nothing save + the absolute conviction that it was only through the window that he + could have escaped. The German master's room and effects gave no + further clue. In his case a trailer of ivy had given way under his + weight, and we saw by the light of a lantern the mark on the lawn + where his heels had come down. That one dint in the short green grass + was the only material witness left of this inexplicable nocturnal + flight. + + Sherlock Holmes left the house alone, and only returned after eleven. + He had obtained a large ordnance map of the neighbourhood, and this + he brought into my room, where he laid it out on the bed, and, having + balanced the lamp in the middle of it, he began to smoke over it, and + occasionally to point out objects of interest with the reeking amber + of his pipe. + + "This case grows upon me, Watson," said he. "There are decidedly some + points of interest in connection with it. In this early stage I want + you to realize those geographical features which may have a good deal + to do with our investigation. + + "Look at this map. This dark square is the Priory School. I'll put a + pin in it. Now, this line is the main road. You see that it runs east + and west past the school, and you see also that there is no side road + for a mile either way. If these two folk passed away by road it was + this road." + + [ Picture: Chart of the surrounding area ] + + "Exactly." + + "By a singular and happy chance we are able to some extent to check + what passed along this road during the night in question. At this + point, where my pipe is now resting, a country constable was on duty + from twelve to six. It is, as you perceive, the first cross road on + the east side. This man declares that he was not absent from his post + for an instant, and he is positive that neither boy nor man could + have gone that way unseen. I have spoken with this policeman + to-night, and he appears to me to be a perfectly reliable person. + That blocks this end. We have now to deal with the other. There is an + inn here, the Red Bull, the landlady of which was ill. She had sent + to Mackleton for a doctor, but he did not arrive until morning, being + absent at another case. The people at the inn were alert all night, + awaiting his coming, and one or other of them seems to have + continually had an eye upon the road. They declare that no one + passed. If their evidence is good, then we are fortunate enough to be + able to block the west, and also to be able to say that the fugitives + did not use the road at all." + + "But the bicycle?" I objected. + + "Quite so. We will come to the bicycle presently. To continue our + reasoning: if these people did not go by the road, they must have + traversed the country to the north of the house or to the south of + the house. That is certain. Let us weigh the one against the other. + On the south of the house is, as you perceive, a large district of + arable land, cut up into small fields, with stone walls between them. + There, I admit that a bicycle is impossible. We can dismiss the idea. + We turn to the country on the north. Here there lies a grove of + trees, marked as the 'Ragged Shaw,' and on the farther side stretches + a great rolling moor, Lower Gill Moor, extending for ten miles and + sloping gradually upwards. Here, at one side of this wilderness, is + Holdernesse Hall, ten miles by road, but only six across the moor. It + is a peculiarly desolate plain. A few moor farmers have small + holdings, where they rear sheep and cattle. Except these, the plover + and the curlew are the only inhabitants until you come to the + Chesterfield high road. There is a church there, you see, a few + cottages, and an inn. Beyond that the hills become precipitous. + Surely it is here to the north that our quest must lie." + + "But the bicycle?" I persisted. + + "Well, well!" said Holmes, impatiently. "A good cyclist does not need + a high road. The moor is intersected with paths and the moon was at + the full. Halloa! what is this?" + + There was an agitated knock at the door, and an instant afterwards + Dr. Huxtable was in the room. In his hand he held a blue cricket-cap, + with a white chevron on the peak. + + "At last we have a clue!" he cried. "Thank Heaven! at last we are on + the dear boy's track! It is his cap." + + "Where was it found?" + + "In the van of the gipsies who camped on the moor. They left on + Tuesday. To-day the police traced them down and examined their + caravan. This was found." + + "How do they account for it?" + + "They shuffled and lied--said that they found it on the moor on + Tuesday morning. They know where he is, the rascals! Thank goodness, + they are all safe under lock and key. Either the fear of the law or + the Duke's purse will certainly get out of them all that they know." + + "So far, so good," said Holmes, when the doctor had at last left the + room. "It at least bears out the theory that it is on the side of the + Lower Gill Moor that we must hope for results. The police have really + done nothing locally, save the arrest of these gipsies. Look here, + Watson! There is a watercourse across the moor. You see it marked + here in the map. In some parts it widens into a morass. This is + particularly so in the region between Holdernesse Hall and the + school. It is vain to look elsewhere for tracks in this dry weather; + but at that point there is certainly a chance of some record being + left. I will call you early to-morrow morning, and you and I will try + if we can throw some little light upon the mystery." + + The day was just breaking when I woke to find the long, thin form of + Holmes by my bedside. He was fully dressed, and had apparently + already been out. + + "I have done the lawn and the bicycle shed," said he. "I have also + had a ramble through the Ragged Shaw. Now, Watson, there is cocoa + ready in the next room. I must beg you to hurry, for we have a great + day before us." + + His eyes shone, and his cheek was flushed with the exhilaration of + the master workman who sees his work lie ready before him. A very + different Holmes, this active, alert man, from the introspective and + pallid dreamer of Baker Street. I felt, as I looked upon that supple + figure, alive with nervous energy, that it was indeed a strenuous day + that awaited us. + + And yet it opened in the blackest disappointment. With high hopes we + struck across the peaty, russet moor, intersected with a thousand + sheep paths, until we came to the broad, light-green belt which + marked the morass between us and Holdernesse. Certainly, if the lad + had gone homewards, he must have passed this, and he could not pass + it without leaving his traces. But no sign of him or the German could + be seen. With a darkening face my friend strode along the margin, + eagerly observant of every muddy stain upon the mossy surface. + Sheep-marks there were in profusion, and at one place, some miles + down, cows had left their tracks. Nothing more. + + "Check number one," said Holmes, looking gloomily over the rolling + expanse of the moor. "There is another morass down yonder and a + narrow neck between. Halloa! halloa! halloa! what have we here?" + + We had come on a small black ribbon of pathway. In the middle of it, + clearly marked on the sodden soil, was the track of a bicycle. + + "Hurrah!" I cried. "We have it." + + But Holmes was shaking his head, and his face was puzzled and + expectant rather than joyous. + + "A bicycle, certainly, but not the bicycle," said he. "I am familiar + with forty-two different impressions left by tyres. This, as you + perceive, is a Dunlop, with a patch upon the outer cover. Heidegger's + tyres were Palmer's, leaving longitudinal stripes. Aveling, the + mathematical master, was sure upon the point. Therefore, it is not + Heidegger's track." + + "The boy's, then?" + + "Possibly, if we could prove a bicycle to have been in his + possession. But this we have utterly failed to do. This track, as you + perceive, was made by a rider who was going from the direction of the + school." + + "Or towards it?" + + "No, no, my dear Watson. The more deeply sunk impression is, of + course, the hind wheel, upon which the weight rests. You perceive + several places where it has passed across and obliterated the more + shallow mark of the front one. It was undoubtedly heading away from + the school. It may or may not be connected with our inquiry, but we + will follow it backwards before we go any farther." + + We did so, and at the end of a few hundred yards lost the tracks as + we emerged from the boggy portion of the moor. Following the path + backwards, we picked out another spot, where a spring trickled across + it. Here, once again, was the mark of the bicycle, though nearly + obliterated by the hoofs of cows. After that there was no sign, but + the path ran right on into Ragged Shaw, the wood which backed on to + the school. From this wood the cycle must have emerged. Holmes sat + down on a boulder and rested his chin in his hands. I had smoked two + cigarettes before he moved. + + "Well, well," said he, at last. "It is, of course, possible that a + cunning man might change the tyre of his bicycle in order to leave + unfamiliar tracks. A criminal who was capable of such a thought is a + man whom I should be proud to do business with. We will leave this + question undecided and hark back to our morass again, for we have + left a good deal unexplored." + + We continued our systematic survey of the edge of the sodden portion + of the moor, and soon our perseverance was gloriously rewarded. Right + across the lower part of the bog lay a miry path. Holmes gave a cry + of delight as he approached it. An impression like a fine bundle of + telegraph wires ran down the centre of it. It was the Palmer tyre. + + "Here is Herr Heidegger, sure enough!" cried Holmes, exultantly. "My + reasoning seems to have been pretty sound, Watson." + + "I congratulate you." + + "But we have a long way still to go. Kindly walk clear of the path. + Now let us follow the trail. I fear that it will not lead very far." + + We found, however, as we advanced that this portion of the moor is + intersected with soft patches, and, though we frequently lost sight + of the track, we always succeeded in picking it up once more. + + "Do you observe," said Holmes, "that the rider is now undoubtedly + forcing the pace? There can be no doubt of it. Look at this + impression, where you get both tyres clear. The one is as deep as the + other. That can only mean that the rider is throwing his weight on to + the handle-bar, as a man does when he is sprinting. By Jove! he has + had a fall." + + There was a broad, irregular smudge covering some yards of the track. + Then there were a few footmarks, and the tyre reappeared once more. + + "A side-slip," I suggested. + + Holmes held up a crumpled branch of flowering gorse. To my horror I + perceived that the yellow blossoms were all dabbled with crimson. On + the path, too, and among the heather were dark stains of clotted + blood. + + "Bad!" said Holmes. "Bad! Stand clear, Watson! Not an unnecessary + footstep! What do I read here? He fell wounded, he stood up, he + remounted, he proceeded. But there is no other track. Cattle on this + side path. He was surely not gored by a bull? Impossible! But I see + no traces of anyone else. We must push on, Watson. Surely with stains + as well as the track to guide us he cannot escape us now." + + Our search was not a very long one. The tracks of the tyre began to + curve fantastically upon the wet and shining path. Suddenly, as I + looked ahead, the gleam of metal caught my eye from amid the thick + gorse bushes. Out of them we dragged a bicycle, Palmer-tyred, one + pedal bent, and the whole front of it horribly smeared and slobbered + with blood. On the other side of the bushes a shoe was projecting. We + ran round, and there lay the unfortunate rider. He was a tall man, + full bearded, with spectacles, one glass of which had been knocked + out. The cause of his death was a frightful blow upon the head, which + had crushed in part of his skull. That he could have gone on after + receiving such an injury said much for the vitality and courage of + the man. He wore shoes, but no socks, and his open coat disclosed a + night-shirt beneath it. It was undoubtedly the German master. + + Holmes turned the body over reverently, and examined it with great + attention. He then sat in deep thought for a time, and I could see by + his ruffled brow that this grim discovery had not, in his opinion, + advanced us much in our inquiry. + + "It is a little difficult to know what to do, Watson," said he, at + last. "My own inclinations are to push this inquiry on, for we have + already lost so much time that we cannot afford to waste another + hour. On the other hand, we are bound to inform the police of the + discovery, and to see that this poor fellow's body is looked after." + + "I could take a note back." + + "But I need your company and assistance. Wait a bit! There is a + fellow cutting peat up yonder. Bring him over here, and he will guide + the police." + + I brought the peasant across, and Holmes dispatched the frightened + man with a note to Dr. Huxtable. + + "Now, Watson," said he, "we have picked up two clues this morning. + One is the bicycle with the Palmer tyre, and we see what that has led + to. The other is the bicycle with the patched Dunlop. Before we start + to investigate that, let us try to realize what we do know so as to + make the most of it, and to separate the essential from the + accidental." + + "First of all I wish to impress upon you that the boy certainly left + of his own free will. He got down from his window and he went off, + either alone or with someone. That is sure." + + I assented. + + "Well, now, let us turn to this unfortunate German master. The boy + was fully dressed when he fled. Therefore, he foresaw what he would + do. But the German went without his socks. He certainly acted on very + short notice." + + "Undoubtedly." + + "Why did he go? Because, from his bedroom window, he saw the flight + of the boy. Because he wished to overtake him and bring him back. He + seized his bicycle, pursued the lad, and in pursuing him met his + death." + + "So it would seem." + + "Now I come to the critical part of my argument. The natural action + of a man in pursuing a little boy would be to run after him. He would + know that he could overtake him. But the German does not do so. He + turns to his bicycle. I am told that he was an excellent cyclist. He + would not do this if he did not see that the boy had some swift means + of escape." + + "The other bicycle." + + "Let us continue our reconstruction. He meets his death five miles + from the school--not by a bullet, mark you, which even a lad might + conceivably discharge, but by a savage blow dealt by a vigorous arm. + The lad, then, had a companion in his flight. And the flight was a + swift one, since it took five miles before an expert cyclist could + overtake them. Yet we survey the ground round the scene of the + tragedy. What do we find? A few cattle tracks, nothing more. I took a + wide sweep round, and there is no path within fifty yards. Another + cyclist could have had nothing to do with the actual murder. Nor were + there any human footmarks." + + "Holmes," I cried, "this is impossible." + + "Admirable!" he said. "A most illuminating remark. It is impossible + as I state it, and therefore I must in some respect have stated it + wrong. Yet you saw for yourself. Can you suggest any fallacy?" + + "He could not have fractured his skull in a fall?" + + "In a morass, Watson?" + + "I am at my wit's end." + + "Tut, tut; we have solved some worse problems. At least we have + plenty of material, if we can only use it. Come, then, and, having + exhausted the Palmer, let us see what the Dunlop with the patched + cover has to offer us." + + We picked up the track and followed it onwards for some distance; but + soon the moor rose into a long, heather-tufted curve, and we left the + watercourse behind us. No further help from tracks could be hoped + for. At the spot where we saw the last of the Dunlop tyre it might + equally have led to Holdernesse Hall, the stately towers of which + rose some miles to our left, or to a low, grey village which lay in + front of us, and marked the position of the Chesterfield high road. + + As we approached the forbidding and squalid inn, with the sign of a + game-cock above the door, Holmes gave a sudden groan and clutched me + by the shoulder to save himself from falling. He had had one of those + violent strains of the ankle which leave a man helpless. With + difficulty he limped up to the door, where a squat, dark, elderly man + was smoking a black clay pipe. + + "How are you, Mr. Reuben Hayes?" said Holmes. + + "Who are you, and how do you get my name so pat?" the countryman + answered, with a suspicious flash of a pair of cunning eyes. + + "Well, it's printed on the board above your head. It's easy to see a + man who is master of his own house. I suppose you haven't such a + thing as a carriage in your stables?" + + "No; I have not." + + "I can hardly put my foot to the ground." + + "Don't put it to the ground." + + "But I can't walk." + + "Well, then, hop." + + Mr. Reuben Hayes's manner was far from gracious, but Holmes took it + with admirable good-humour. + + "Look here, my man," said he. "This is really rather an awkward fix + for me. I don't mind how I get on." + + "Neither do I," said the morose landlord. + + "The matter is very important. I would offer you a sovereign for the + use of a bicycle." + + The landlord pricked up his ears. + + "Where do you want to go?" + + "To Holdernesse Hall." + + "Pals of the Dook, I suppose?" said the landlord, surveying our + mud-stained garments with ironical eyes. + + Holmes laughed good-naturedly. + + "He'll be glad to see us, anyhow." + + "Why?" + + "Because we bring him news of his lost son." + + The landlord gave a very visible start. + + "What, you're on his track?" + + "He has been heard of in Liverpool. They expect to get him every + hour." + + Again a swift change passed over the heavy, unshaven face. His manner + was suddenly genial. + + "I've less reason to wish the Dook well than most men," said he, "for + I was his head coachman once, and cruel bad he treated me. It was him + that sacked me without a character on the word of a lying + corn-chandler. But I'm glad to hear that the young lord was heard of + in Liverpool, and I'll help you to take the news to the Hall." + + "Thank you," said Holmes. "We'll have some food first. Then you can + bring round the bicycle." + + "I haven't got a bicycle." + + Holmes held up a sovereign. + + "I tell you, man, that I haven't got one. I'll let you have two + horses as far as the Hall." + + "Well, well," said Holmes, "we'll talk about it when we've had + something to eat." + + When we were left alone in the stone-flagged kitchen it was + astonishing how rapidly that sprained ankle recovered. It was nearly + nightfall, and we had eaten nothing since early morning, so that we + spent some time over our meal. Holmes was lost in thought, and once + or twice he walked over to the window and stared earnestly out. It + opened on to a squalid courtyard. In the far corner was a smithy, + where a grimy lad was at work. On the other side were the stables. + Holmes had sat down again after one of these excursions, when he + suddenly sprang out of his chair with a loud exclamation. + + "By Heaven, Watson, I believe that I've got it!" he cried. "Yes, yes, + it must be so. Watson, do you remember seeing any cow-tracks to-day?" + + "Yes, several." + + "Where?" + + "Well, everywhere. They were at the morass, and again on the path, + and again near where poor Heidegger met his death." + + "Exactly. Well, now, Watson, how many cows did you see on the moor?" + + "I don't remember seeing any." + + "Strange, Watson, that we should see tracks all along our line, but + never a cow on the whole moor; very strange, Watson, eh?" + + "Yes, it is strange." + + "Now, Watson, make an effort; throw your mind back! Can you see those + tracks upon the path?" + + "Yes, I can." + + "Can you recall that the tracks were sometimes like that, Watson"--he + arranged a number of bread-crumbs in this fashion--: : : : :--"and + sometimes like this"--: ` : ` : ` : `--"and occasionally like + this"--. ` . ` . ` . "Can you remember that?" + + "No, I cannot." + + "But I can. I could swear to it. However, we will go back at our + leisure and verify it. What a blind beetle I have been not to draw my + conclusion!" + + "And what is your conclusion?" + + "Only that it is a remarkable cow which walks, canters, and gallops. + By George, Watson, it was no brain of a country publican that thought + out such a blind as that! The coast seems to be clear, save for that + lad in the smithy. Let us slip out and see what we can see." + + There were two rough-haired, unkempt horses in the tumble-down + stable. Holmes raised the hind leg of one of them and laughed aloud. + + "Old shoes, but newly shod--old shoes, but new nails. This case + deserves to be a classic. Let us go across to the smithy." + + The lad continued his work without regarding us. I saw Holmes's eye + darting to right and left among the litter of iron and wood which was + scattered about the floor. Suddenly, however, we heard a step behind + us, and there was the landlord, his heavy eyebrows drawn over his + savage eyes, his swarthy features convulsed with passion. He held a + short, metal-headed stick in his hand, and he advanced in so menacing + a fashion that I was right glad to feel the revolver in my pocket. + + "You infernal spies!" the man cried. "What are you doing there?" + + "Why, Mr. Reuben Hayes," said Holmes, coolly, "one might think that + you were afraid of our finding something out." + + The man mastered himself with a violent effort, and his grim mouth + loosened into a false laugh, which was more menacing than his frown. + + "You're welcome to all you can find out in my smithy," said he. "But + look here, mister, I don't care for folk poking about my place + without my leave, so the sooner you pay your score and get out of + this the better I shall be pleased." + + "All right, Mr. Hayes--no harm meant," said Holmes. "We have been + having a look at your horses, but I think I'll walk after all. It's + not far, I believe." + + "Not more than two miles to the Hall gates. That's the road to the + left." He watched us with sullen eyes until we had left his premises. + + We did not go very far along the road, for Holmes stopped the instant + that the curve hid us from the landlord's view. + + "We were warm, as the children say, at that inn," said he. "I seem to + grow colder every step that I take away from it. No, no; I can't + possibly leave it." + + "I am convinced," said I, "that this Reuben Hayes knows all about it. + A more self-evident villain I never saw." + + "Oh! he impressed you in that way, did he? There are the horses, + there is the smithy. Yes, it is an interesting place, this Fighting + Cock. I think we shall have another look at it in an unobtrusive + way." + + A long, sloping hillside, dotted with grey limestone boulders, + stretched behind us. We had turned off the road, and were making our + way up the hill, when, looking in the direction of Holdernesse Hall, + I saw a cyclist coming swiftly along. + + "Get down, Watson!" cried Holmes, with a heavy hand upon my shoulder. + We had hardly sunk from view when the man flew past us on the road. + Amid a rolling cloud of dust I caught a glimpse of a pale, agitated + face--a face with horror in every lineament, the mouth open, the eyes + staring wildly in front. It was like some strange caricature of the + dapper James Wilder whom we had seen the night before. + + "The Duke's secretary!" cried Holmes. "Come, Watson, let us see what + he does." + + We scrambled from rock to rock until in a few moments we had made our + way to a point from which we could see the front door of the inn. + Wilder's bicycle was leaning against the wall beside it. No one was + moving about the house, nor could we catch a glimpse of any faces at + the windows. Slowly the twilight crept down as the sun sank behind + the high towers of Holdernesse Hall. Then in the gloom we saw the two + side-lamps of a trap light up in the stable yard of the inn, and + shortly afterwards heard the rattle of hoofs, as it wheeled out into + the road and tore off at a furious pace in the direction of + Chesterfield. + + "What do you make of that, Watson?" Holmes whispered. + + "It looks like a flight." + + "A single man in a dog-cart, so far as I could see. Well, it + certainly was not Mr. James Wilder, for there he is at the door." + + A red square of light had sprung out of the darkness. In the middle + of it was the black figure of the secretary, his head advanced, + peering out into the night. It was evident that he was expecting + someone. Then at last there were steps in the road, a second figure + was visible for an instant against the light, the door shut, and all + was black once more. Five minutes later a lamp was lit in a room upon + the first floor. + + "It seems to be a curious class of custom that is done by the + Fighting Cock," said Holmes. + + "The bar is on the other side." + + "Quite so. These are what one may call the private guests. Now, what + in the world is Mr. James Wilder doing in that den at this hour of + night, and who is the companion who comes to meet him there? Come, + Watson, we must really take a risk and try to investigate this a + little more closely." + + Together we stole down to the road and crept across to the door of + the inn. The bicycle still leaned against the wall. Holmes struck a + match and held it to the back wheel, and I heard him chuckle as the + light fell upon a patched Dunlop tyre. Up above us was the lighted + window. + + "I must have a peep through that, Watson. If you bend your back and + support yourself upon the wall, I think that I can manage." + + An instant later his feet were on my shoulders. But he was hardly up + before he was down again. + + "Come, my friend," said he, "our day's work has been quite long + enough. I think that we have gathered all that we can. It's a long + walk to the school, and the sooner we get started the better." + + He hardly opened his lips during that weary trudge across the moor, + nor would he enter the school when he reached it, but went on to + Mackleton Station, whence he could send some telegrams. Late at night + I heard him consoling Dr. Huxtable, prostrated by the tragedy of his + master's death, and later still he entered my room as alert and + vigorous as he had been when he started in the morning. "All goes + well, my friend," said he. "I promise that before to-morrow evening + we shall have reached the solution of the mystery." + + At eleven o'clock next morning my friend and I were walking up the + famous yew avenue of Holdernesse Hall. We were ushered through the + magnificent Elizabethan doorway and into his Grace's study. There we + found Mr. James Wilder, demure and courtly, but with some trace of + that wild terror of the night before still lurking in his furtive + eyes and in his twitching features. + + "You have come to see his Grace? I am sorry; but the fact is that the + Duke is far from well. He has been very much upset by the tragic + news. We received a telegram from Dr. Huxtable yesterday afternoon, + which told us of your discovery." + + "I must see the Duke, Mr. Wilder." + + "But he is in his room." + + "Then I must go to his room." + + "I believe he is in his bed." + + "I will see him there." + + Holmes's cold and inexorable manner showed the secretary that it was + useless to argue with him. + + "Very good, Mr. Holmes; I will tell him that you are here." + + After half an hour's delay the great nobleman appeared. His face was + more cadaverous than ever, his shoulders had rounded, and he seemed + to me to be an altogether older man than he had been the morning + before. He greeted us with a stately courtesy and seated himself at + his desk, his red beard streaming down on to the table. + + "Well, Mr. Holmes?" said he. + + But my friend's eyes were fixed upon the secretary, who stood by his + master's chair. + + "I think, your Grace, that I could speak more freely in Mr. Wilder's + absence." + + The man turned a shade paler and cast a malignant glance at Holmes. + + "If your Grace wishes--" + + "Yes, yes; you had better go. Now, Mr. Holmes, what have you to say?" + + My friend waited until the door had closed behind the retreating + secretary. + + "The fact is, your Grace," said he, "that my colleague, Dr. Watson, + and myself had an assurance from Dr. Huxtable that a reward had been + offered in this case. I should like to have this confirmed from your + own lips." + + "Certainly, Mr. Holmes." + + "It amounted, if I am correctly informed, to five thousand pounds to + anyone who will tell you where your son is?" + + "Exactly." + + "And another thousand to the man who will name the person or persons + who keep him in custody?" + + "Exactly." + + "Under the latter heading is included, no doubt, not only those who + may have taken him away, but also those who conspire to keep him in + his present position?" + + "Yes, yes," cried the Duke, impatiently. "If you do your work well, + Mr. Sherlock Holmes, you will have no reason to complain of niggardly + treatment." + + My friend rubbed his thin hands together with an appearance of + avidity which was a surprise to me, who knew his frugal tastes. + + "I fancy that I see your Grace's cheque-book upon the table," said + he. "I should be glad if you would make me out a cheque for six + thousand pounds. It would be as well, perhaps, for you to cross it. + The Capital and Counties Bank, Oxford Street branch, are my agents." + + His Grace sat very stern and upright in his chair, and looked stonily + at my friend. + + "Is this a joke, Mr. Holmes? It is hardly a subject for pleasantry." + + "Not at all, your Grace. I was never more earnest in my life." + + "What do you mean, then?" + + "I mean that I have earned the reward. I know where your son is, and + I know some, at least, of those who are holding him." + + The Duke's beard had turned more aggressively red than ever against + his ghastly white face. + + "Where is he?" he gasped. + + "He is, or was last night, at the Fighting Cock Inn, about two miles + from your park gate." + + The Duke fell back in his chair. + + "And whom do you accuse?" + + Sherlock Holmes's answer was an astounding one. He stepped swiftly + forward and touched the Duke upon the shoulder. + + "I accuse you," said he. "And now, your Grace, I'll trouble you for + that cheque." + + Never shall I forget the Duke's appearance as he sprang up and clawed + with his hands like one who is sinking into an abyss. Then, with an + extraordinary effort of aristocratic self-command, he sat down and + sank his face in his hands. It was some minutes before he spoke. + + "How much do you know?" he asked at last, without raising his head. + + "I saw you together last night." + + "Does anyone else besides your friend know?" + + "I have spoken to no one." + + The Duke took a pen in his quivering fingers and opened his + cheque-book. + + "I shall be as good as my word, Mr. Holmes. I am about to write your + cheque, however unwelcome the information which you have gained may + be to me. When the offer was first made I little thought the turn + which events might take. But you and your friend are men of + discretion, Mr. Holmes?" + + "I hardly understand your Grace." + + "I must put it plainly, Mr. Holmes. If only you two know of this + incident, there is no reason why it should go any farther. I think + twelve thousand pounds is the sum that I owe you, is it not?" + + But Holmes smiled and shook his head. + + "I fear, your Grace, that matters can hardly be arranged so easily. + There is the death of this schoolmaster to be accounted for." + + "But James knew nothing of that. You cannot hold him responsible for + that. It was the work of this brutal ruffian whom he had the + misfortune to employ." + + "I must take the view, your Grace, that when a man embarks upon a + crime he is morally guilty of any other crime which may spring from + it." + + "Morally, Mr. Holmes. No doubt you are right. But surely not in the + eyes of the law. A man cannot be condemned for a murder at which he + was not present, and which he loathes and abhors as much as you do. + The instant that he heard of it he made a complete confession to me, + so filled was he with horror and remorse. He lost not an hour in + breaking entirely with the murderer. Oh, Mr. Holmes, you must save + him--you must save him! I tell you that you must save him!" The Duke + had dropped the last attempt at self-command, and was pacing the room + with a convulsed face and with his clenched hands raving in the air. + At last he mastered himself and sat down once more at his desk. "I + appreciate your conduct in coming here before you spoke to anyone + else," said he. "At least, we may take counsel how far we can + minimize this hideous scandal." + + "Exactly," said Holmes. "I think, your Grace, that this can only be + done by absolute and complete frankness between us. I am disposed to + help your Grace to the best of my ability; but in order to do so I + must understand to the last detail how the matter stands. I realize + that your words applied to Mr. James Wilder, and that he is not the + murderer." + + "No; the murderer has escaped." + + Sherlock Holmes smiled demurely. + + "Your Grace can hardly have heard of any small reputation which I + possess, or you would not imagine that it is so easy to escape me. + Mr. Reuben Hayes was arrested at Chesterfield on my information at + eleven o'clock last night. I had a telegram from the head of the + local police before I left the school this morning." + + The Duke leaned back in his chair and stared with amazement at my + friend. + + "You seem to have powers that are hardly human," said he. "So Reuben + Hayes is taken? I am right glad to hear it, if it will not react upon + the fate of James." + + "Your secretary?" + + "No, sir; my son." + + It was Holmes's turn to look astonished. + + "I confess that this is entirely new to me, your Grace. I must beg + you to be more explicit." + + "I will conceal nothing from you. I agree with you that complete + frankness, however painful it may be to me, is the best policy in + this desperate situation to which James's folly and jealousy have + reduced us. When I was a very young man, Mr. Holmes, I loved with + such a love as comes only once in a lifetime. I offered the lady + marriage, but she refused it on the grounds that such a match might + mar my career. Had she lived I would certainly never have married + anyone else. She died, and left this one child, whom for her sake I + have cherished and cared for. I could not acknowledge the paternity + to the world; but I gave him the best of educations, and since he + came to manhood I have kept him near my person. He surprised my + secret, and has presumed ever since upon the claim which he has upon + me and upon his power of provoking a scandal, which would be + abhorrent to me. His presence had something to do with the unhappy + issue of my marriage. Above all, he hated my young legitimate heir + from the first with a persistent hatred. You may well ask me why, + under these circumstances, I still kept James under my roof. I answer + that it was because I could see his mother's face in his, and that + for her dear sake there was no end to my long-suffering. All her + pretty ways, too--there was not one of them which he could not + suggest and bring back to my memory. I could not send him away. But I + feared so much lest he should do Arthur--that is, Lord Saltire--a + mischief that I dispatched him for safety to Dr. Huxtable's school. + + "James came into contact with this fellow Hayes because the man was a + tenant of mine, and James acted as agent. The fellow was a rascal + from the beginning; but in some extraordinary way James became + intimate with him. He had always a taste for low company. When James + determined to kidnap Lord Saltire it was of this man's service that + he availed himself. You remember that I wrote to Arthur upon that + last day. Well, James opened the letter and inserted a note asking + Arthur to meet him in a little wood called the Ragged Shaw, which is + near to the school. He used the Duchess's name, and in that way got + the boy to come. That evening James bicycled over--I am telling you + what he has himself confessed to me--and he told Arthur, whom he met + in the wood, that his mother longed to see him, that she was awaiting + him on the moor, and that if he would come back into the wood at + midnight he would find a man with a horse, who would take him to her. + Poor Arthur fell into the trap. He came to the appointment and found + this fellow Hayes with a led pony. Arthur mounted, and they set off + together. It appears--though this James only heard yesterday--that + they were pursued, that Hayes struck the pursuer with his stick, and + that the man died of his injuries. Hayes brought Arthur to his + public-house, the Fighting Cock, where he was confined in an upper + room, under the care of Mrs. Hayes, who is a kindly woman, but + entirely under the control of her brutal husband. + + "Well, Mr. Holmes, that was the state of affairs when I first saw you + two days ago. I had no more idea of the truth than you. You will ask + me what was James's motive in doing such a deed. I answer that there + was a great deal which was unreasoning and fanatical in the hatred + which he bore my heir. In his view he should himself have been heir + of all my estates, and he deeply resented those social laws which + made it impossible. At the same time he had a definite motive also. + He was eager that I should break the entail, and he was of opinion + that it lay in my power to do so. He intended to make a bargain with + me--to restore Arthur if I would break the entail, and so make it + possible for the estate to be left to him by will. He knew well that + I should never willingly invoke the aid of the police against him. I + say that he would have proposed such a bargain to me, but he did not + actually do so, for events moved too quickly for him, and he had not + time to put his plans into practice. + + "What brought all his wicked scheme to wreck was your discovery of + this man Heidegger's dead body. James was seized with horror at the + news. It came to us yesterday as we sat together in this study. Dr. + Huxtable had sent a telegram. James was so overwhelmed with grief and + agitation that my suspicions, which had never been entirely absent, + rose instantly to a certainty, and I taxed him with the deed. He made + a complete voluntary confession. Then he implored me to keep his + secret for three days longer, so as to give his wretched accomplice a + chance of saving his guilty life. I yielded--as I have always + yielded--to his prayers, and instantly James hurried off to the + Fighting Cock to warn Hayes and give him the means of flight. I could + not go there by daylight without provoking comment, but as soon as + night fell I hurried off to see my dear Arthur. I found him safe and + well, but horrified beyond expression by the dreadful deed he had + witnessed. In deference to my promise, and much against my will, I + consented to leave him there for three days under the charge of Mrs. + Hayes, since it was evident that it was impossible to inform the + police where he was without telling them also who was the murderer, + and I could not see how that murderer could be punished without ruin + to my unfortunate James. You asked for frankness, Mr. Holmes, and I + have taken you at your word, for I have now told you everything + without an attempt at circumlocution or concealment. Do you in turn + be as frank with me." + + "I will," said Holmes. "In the first place, your Grace, I am bound to + tell you that you have placed yourself in a most serious position in + the eyes of the law. You have condoned a felony and you have aided + the escape of a murderer; for I cannot doubt that any money which was + taken by James Wilder to aid his accomplice in his flight came from + your Grace's purse." + + The Duke bowed his assent. + + "This is indeed a most serious matter. Even more culpable in my + opinion, your Grace, is your attitude towards your younger son. You + leave him in this den for three days." + + "Under solemn promises--" + + "What are promises to such people as these? You have no guarantee + that he will not be spirited away again. To humour your guilty elder + son you have exposed your innocent younger son to imminent and + unnecessary danger. It was a most unjustifiable action." + + The proud lord of Holdernesse was not accustomed to be so rated in + his own ducal hall. The blood flushed into his high forehead, but his + conscience held him dumb. + + "I will help you, but on one condition only. It is that you ring for + the footman and let me give such orders as I like." + + Without a word the Duke pressed the electric bell. A servant entered. + + "You will be glad to hear," said Holmes, "that your young master is + found. It is the Duke's desire that the carriage shall go at once to + the Fighting Cock Inn to bring Lord Saltire home. + + "Now," said Holmes, when the rejoicing lackey had disappeared, + "having secured the future, we can afford to be more lenient with the + past. I am not in an official position, and there is no reason, so + long as the ends of justice are served, why I should disclose all + that I know. As to Hayes I say nothing. The gallows awaits him, and I + would do nothing to save him from it. What he will divulge I cannot + tell, but I have no doubt that your Grace could make him understand + that it is to his interest to be silent. From the police point of + view he will have kidnapped the boy for the purpose of ransom. If + they do not themselves find it out I see no reason why I should + prompt them to take a broader point of view. I would warn your Grace, + however, that the continued presence of Mr. James Wilder in your + household can only lead to misfortune." + + "I understand that, Mr. Holmes, and it is already settled that he + shall leave me for ever and go to seek his fortune in Australia." + + "In that case, your Grace, since you have yourself stated that any + unhappiness in your married life was caused by his presence, I would + suggest that you make such amends as you can to the Duchess, and that + you try to resume those relations which have been so unhappily + interrupted." + + "That also I have arranged, Mr. Holmes. I wrote to the Duchess this + morning." + + "In that case," said Holmes, rising, "I think that my friend and I + can congratulate ourselves upon several most happy results from our + little visit to the North. There is one other small point upon which + I desire some light. This fellow Hayes had shod his horses with shoes + which counterfeited the tracks of cows. Was it from Mr. Wilder that + he learned so extraordinary a device?" + + The Duke stood in thought for a moment, with a look of intense + surprise on his face. Then he opened a door and showed us into a + large room furnished as a museum. He led the way to a glass case in a + corner, and pointed to the inscription. + + "These shoes," it ran, "were dug up in the moat of Holdernesse Hall. + They are for the use of horses; but they are shaped below with a + cloven foot of iron, so as to throw pursuers off the track. They are + supposed to have belonged to some of the marauding Barons of + Holdernesse in the Middle Ages." + + Holmes opened the case, and moistening his finger he passed it along + the shoe. A thin film of recent mud was left upon his skin. + + "Thank you," said he, as he replaced the glass. "It is the second + most interesting object that I have seen in the North." + + "And the first?" + + Holmes folded up his cheque and placed it carefully in his note-book. + "I am a poor man," said he, as he patted it affectionately and thrust + it into the depths of his inner pocket. + + + + + + + THE ADVENTURE OF BLACK PETER + + I have never known my friend to be in better form, both mental and + physical, than in the year '95. His increasing fame had brought with + it an immense practice, and I should be guilty of an indiscretion if + I were even to hint at the identity of some of the illustrious + clients who crossed our humble threshold in Baker Street. Holmes, + however, like all great artists, lived for his art's sake, and, save + in the case of the Duke of Holdernesse, I have seldom known him claim + any large reward for his inestimable services. So unworldly was + he--or so capricious--that he frequently refused his help to the + powerful and wealthy where the problem made no appeal to his + sympathies, while he would devote weeks of most intense application + to the affairs of some humble client whose case presented those + strange and dramatic qualities which appealed to his imagination and + challenged his ingenuity. + + In this memorable year '95 a curious and incongruous succession of + cases had engaged his attention, ranging from his famous + investigation of the sudden death of Cardinal Tosca--an inquiry which + was carried out by him at the express desire of His Holiness the + Pope--down to his arrest of Wilson, the notorious canary-trainer, + which removed a plague-spot from the East-End of London. Close on the + heels of these two famous cases came the tragedy of Woodman's Lee, + and the very obscure circumstances which surrounded the death of + Captain Peter Carey. No record of the doings of Mr. Sherlock Holmes + would be complete which did not include some account of this very + unusual affair. + + During the first week of July my friend had been absent so often and + so long from our lodgings that I knew he had something on hand. The + fact that several rough-looking men called during that time and + inquired for Captain Basil made me understand that Holmes was working + somewhere under one of the numerous disguises and names with which he + concealed his own formidable identity. He had at least five small + refuges in different parts of London in which he was able to change + his personality. He said nothing of his business to me, and it was + not my habit to force a confidence. The first positive sign which he + gave me of the direction which his investigation was taking was an + extraordinary one. He had gone out before breakfast, and I had sat + down to mine, when he strode into the room, his hat upon his head and + a huge barbed-headed spear tucked like an umbrella under his arm. + + "Good gracious, Holmes!" I cried. "You don't mean to say that you + have been walking about London with that thing?" + + "I drove to the butcher's and back." + + "The butcher's?" + + "And I return with an excellent appetite. There can be no question, + my dear Watson, of the value of exercise before breakfast. But I am + prepared to bet that you will not guess the form that my exercise has + taken." + + "I will not attempt it." + + He chuckled as he poured out the coffee. + + "If you could have looked into Allardyce's back shop you would have + seen a dead pig swung from a hook in the ceiling, and a gentleman in + his shirt-sleeves furiously stabbing at it with this weapon. I was + that energetic person, and I have satisfied myself that by no + exertion of my strength can I transfix the pig with a single blow. + Perhaps you would care to try?" + + "Not for worlds. But why were you doing this?" + + "Because it seemed to me to have an indirect bearing upon the mystery + of Woodman's Lee. Ah, Hopkins, I got your wire last night, and I have + been expecting you. Come and join us." + + Our visitor was an exceedingly alert man, thirty years of age, + dressed in a quiet tweed suit, but retaining the erect bearing of one + who was accustomed to official uniform. I recognised him at once as + Stanley Hopkins, a young police inspector for whose future Holmes had + high hopes, while he in turn professed the admiration and respect of + a pupil for the scientific methods of the famous amateur. Hopkins's + brow was clouded, and he sat down with an air of deep dejection. + + "No, thank you, sir. I breakfasted before I came round. I spent the + night in town, for I came up yesterday to report." + + "And what had you to report?" + + "Failure, sir; absolute failure." + + "You have made no progress?" + + "None." + + "Dear me! I must have a look at the matter." + + "I wish to heavens that you would, Mr. Holmes. It's my first big + chance, and I am at my wit's end. For goodness' sake come down and + lend me a hand." + + "Well, well, it just happens that I have already read all the + available evidence, including the report of the inquest, with some + care. By the way, what do you make of that tobacco-pouch found on the + scene of the crime? Is there no clue there?" + + Hopkins looked surprised. + + "It was the man's own pouch, sir. His initials were inside it. And it + was of seal-skin--and he an old sealer." + + "But he had no pipe." + + "No, sir, we could find no pipe; indeed, he smoked very little. And + yet he might have kept some tobacco for his friends." + + "No doubt. I only mention it because if I had been handling the case + I should have been inclined to make that the starting-point of my + investigation. However, my friend Dr. Watson knows nothing of this + matter, and I should be none the worse for hearing the sequence of + events once more. Just give us some short sketch of the essentials." + + Stanley Hopkins drew a slip of paper from his pocket. + + "I have a few dates here which will give you the career of the dead + man, Captain Peter Carey. He was born in '45--fifty years of age. He + was a most daring and successful seal and whale fisher. In 1883 he + commanded the steam sealer Sea Unicorn, of Dundee. He had then had + several successful voyages in succession, and in the following year, + 1884, he retired. After that he travelled for some years, and finally + he bought a small place called Woodman's Lee, near Forest Row, in + Sussex. There he has lived for six years, and there he died just a + week ago to-day. + + "There were some most singular points about the man. In ordinary life + he was a strict Puritan--a silent, gloomy fellow. His household + consisted of his wife, his daughter, aged twenty, and two female + servants. These last were continually changing, for it was never a + very cheery situation, and sometimes it became past all bearing. The + man was an intermittent drunkard, and when he had the fit on him he + was a perfect fiend. He has been known to drive his wife and his + daughter out of doors in the middle of the night, and flog them + through the park until the whole village outside the gates was + aroused by their screams. + + "He was summoned once for a savage assault upon the old vicar, who + had called upon him to remonstrate with him upon his conduct. In + short, Mr. Holmes, you would go far before you found a more dangerous + man than Peter Carey, and I have heard that he bore the same + character when he commanded his ship. He was known in the trade as + Black Peter, and the name was given him, not only on account of his + swarthy features and the colour of his huge beard, but for the + humours which were the terror of all around him. I need not say that + he was loathed and avoided by every one of his neighbours, and that I + have not heard one single word of sorrow about his terrible end. + + "You must have read in the account of the inquest about the man's + cabin, Mr. Holmes; but perhaps your friend here has not heard of it. + He had built himself a wooden outhouse--he always called it 'the + cabin'--a few hundred yards from his house, and it was here that he + slept every night. It was a little, single-roomed hut, sixteen feet + by ten. He kept the key in his pocket, made his own bed, cleaned it + himself, and allowed no other foot to cross the threshold. There are + small windows on each side, which were covered by curtains and never + opened. One of these windows was turned towards the high road, and + when the light burned in it at night the folk used to point it out to + each other and wonder what Black Peter was doing in there. That's the + window, Mr. Holmes, which gave us one of the few bits of positive + evidence that came out at the inquest. + + "You remember that a stonemason, named Slater, walking from Forest + Row about one o'clock in the morning--two days before the + murder--stopped as he passed the grounds and looked at the square of + light still shining among the trees. He swears that the shadow of a + man's head turned sideways was clearly visible on the blind, and that + this shadow was certainly not that of Peter Carey, whom he knew well. + It was that of a bearded man, but the beard was short and bristled + forwards in a way very different from that of the captain. So he + says, but he had been two hours in the public-house, and it is some + distance from the road to the window. Besides, this refers to the + Monday, and the crime was done upon the Wednesday. + + "On the Tuesday Peter Carey was in one of his blackest moods, flushed + with drink and as savage as a dangerous wild beast. He roamed about + the house, and the women ran for it when they heard him coming. Late + in the evening he went down to his own hut. About two o'clock the + following morning his daughter, who slept with her window open, heard + a most fearful yell from that direction, but it was no unusual thing + for him to bawl and shout when he was in drink, so no notice was + taken. On rising at seven one of the maids noticed that the door of + the hut was open, but so great was the terror which the man caused + that it was midday before anyone would venture down to see what had + become of him. Peeping into the open door they saw a sight which sent + them flying with white faces into the village. Within an hour I was + on the spot and had taken over the case. + + "Well, I have fairly steady nerves, as you know, Mr. Holmes, but I + give you my word that I got a shake when I put my head into that + little house. It was droning like a harmonium with the flies and + bluebottles, and the floor and walls were like a slaughter-house. He + had called it a cabin, and a cabin it was sure enough, for you would + have thought that you were in a ship. There was a bunk at one end, a + sea-chest, maps and charts, a picture of the Sea Unicorn, a line of + log-books on a shelf, all exactly as one would expect to find it in a + captain's room. And there in the middle of it was the man himself, + his face twisted like a lost soul in torment, and his great brindled + beard stuck upwards in his agony. Right through his broad breast a + steel harpoon had been driven, and it had sunk deep into the wood of + the wall behind him. He was pinned like a beetle on a card. Of + course, he was quite dead, and had been so from the instant that he + had uttered that last yell of agony. + + "I know your methods, sir, and I applied them. Before I permitted + anything to be moved I examined most carefully the ground outside, + and also the floor of the room. There were no footmarks." + + "Meaning that you saw none?" + + "I assure you, sir, that there were none." + + "My good Hopkins, I have investigated many crimes, but I have never + yet seen one which was committed by a flying creature. As long as the + criminal remains upon two legs so long must there be some + indentation, some abrasion, some trifling displacement which can be + detected by the scientific searcher. It is incredible that this + blood-bespattered room contained no trace which could have aided us. + I understand, however, from the inquest that there were some objects + which you failed to overlook?" + + The young inspector winced at my companion's ironical comments. + + "I was a fool not to call you in at the time, Mr. Holmes. However, + that's past praying for now. Yes, there were several objects in the + room which called for special attention. One was the harpoon with + which the deed was committed. It had been snatched down from a rack + on the wall. Two others remained there, and there was a vacant place + for the third. On the stock was engraved 'S.S.. Sea Unicorn, Dundee.' + This seemed to establish that the crime had been done in a moment of + fury, and that the murderer had seized the first weapon which came in + his way. The fact that the crime was committed at two in the morning, + and yet Peter Carey was fully dressed, suggested that he had an + appointment with the murderer, which is borne out by the fact that a + bottle of rum and two dirty glasses stood upon the table." + + "Yes," said Holmes; "I think that both inferences are permissible. + Was there any other spirit but rum in the room?" + + "Yes; there was a tantalus containing brandy and whisky on the + sea-chest. It is of no importance to us, however, since the decanters + were full, and it had therefore not been used." + + "For all that its presence has some significance," said Holmes. + "However, let us hear some more about the objects which do seem to + you to bear upon the case." + + "There was this tobacco-pouch upon the table." + + "What part of the table?" + + "It lay in the middle. It was of coarse seal-skin--the + straight-haired skin, with a leather thong to bind it. Inside was + 'P.C.' on the flap. There was half an ounce of strong ship's tobacco + in it." + + "Excellent! What more?" + + Stanley Hopkins drew from his pocket a drab-covered note-book. The + outside was rough and worn, the leaves discoloured. On the first page + were written the initials "J.H.N." and the date "1883." Holmes laid + it on the table and examined it in his minute way, while Hopkins and + I gazed over each shoulder. On the second page were the printed + letters "C.P.R.," and then came several sheets of numbers. Another + heading was Argentine, another Costa Rica, and another San Paulo, + each with pages of signs and figures after it. + + "What do you make of these?" asked Holmes. + + "They appear to be lists of Stock Exchange securities. I thought that + 'J.H.N.' were the initials of a broker, and that 'C.P.R.' may have + been his client." + + "Try Canadian Pacific Railway," said Holmes. + + Stanley Hopkins swore between his teeth and struck his thigh with his + clenched hand. + + "What a fool I have been!" he cried. "Of course, it is as you say. + Then 'J.H.N.' are the only initials we have to solve. I have already + examined the old Stock Exchange lists, and I can find no one in 1883 + either in the House or among the outside brokers whose initials + correspond with these. Yet I feel that the clue is the most important + one that I hold. You will admit, Mr. Holmes, that there is a + possibility that these initials are those of the second person who + was present--in other words, of the murderer. I would also urge that + the introduction into the case of a document relating to large masses + of valuable securities gives us for the first time some indication of + a motive for the crime." + + Sherlock Holmes's face showed that he was thoroughly taken aback by + this new development. + + "I must admit both your points," said he. "I confess that this + note-book, which did not appear at the inquest, modifies any views + which I may have formed. I had come to a theory of the crime in which + I can find no place for this. Have you endeavoured to trace any of + the securities here mentioned?" + + "Inquiries are now being made at the offices, but I fear that the + complete register of the stockholders of these South American + concerns is in South America, and that some weeks must elapse before + we can trace the shares." + + Holmes had been examining the cover of the note-book with his + magnifying lens. + + "Surely there is some discolouration here," said he. + + "Yes, sir, it is a blood-stain. I told you that I picked the book off + the floor." + + "Was the blood-stain above or below?" + + "On the side next the boards." + + "Which proves, of course, that the book was dropped after the crime + was committed." + + "Exactly, Mr. Holmes. I appreciated that point, and I conjectured + that it was dropped by the murderer in his hurried flight. It lay + near the door." + + "I suppose that none of these securities have been found among the + property of the dead man?" + + "No, sir." + + "Have you any reason to suspect robbery?" + + "No, sir. Nothing seemed to have been touched." + + "Dear me, it is certainly a very interesting case. Then there was a + knife, was there not?" + + "A sheath-knife, still in its sheath. It lay at the feet of the dead + man. Mrs. Carey has identified it as being her husband's property." + + Holmes was lost in thought for some time. + + "Well," said he, at last, "I suppose I shall have to come out and + have a look at it." + + Stanley Hopkins gave a cry of joy. + + "Thank you, sir. That will indeed be a weight off my mind." + + Holmes shook his finger at the inspector. + + "It would have been an easier task a week ago," said he. "But even + now my visit may not be entirely fruitless. Watson, if you can spare + the time I should be very glad of your company. If you will call a + four-wheeler, Hopkins, we shall be ready to start for Forest Row in a + quarter of an hour." + + Alighting at the small wayside station, we drove for some miles + through the remains of widespread woods, which were once part of that + great forest which for so long held the Saxon invaders at bay--the + impenetrable "weald," for sixty years the bulwark of Britain. Vast + sections of it have been cleared, for this is the seat of the first + iron-works of the country, and the trees have been felled to smelt + the ore. Now the richer fields of the North have absorbed the trade, + and nothing save these ravaged groves and great scars in the earth + show the work of the past. Here in a clearing upon the green slope of + a hill stood a long, low stone house, approached by a curving drive + running through the fields. Nearer the road, and surrounded on three + sides by bushes, was a small outhouse, one window and the door facing + in our direction. It was the scene of the murder. + + Stanley Hopkins led us first to the house, where he introduced us to + a haggard, grey-haired woman, the widow of the murdered man, whose + gaunt and deep-lined face, with the furtive look of terror in the + depths of her red-rimmed eyes, told of the years of hardship and + ill-usage which she had endured. With her was her daughter, a pale, + fair-haired girl, whose eyes blazed defiantly at us as she told us + that she was glad that her father was dead, and that she blessed the + hand which had struck him down. It was a terrible household that + Black Peter Carey had made for himself, and it was with a sense of + relief that we found ourselves in the sunlight again and making our + way along a path which had been worn across the fields by the feet of + the dead man. + + The outhouse was the simplest of dwellings, wooden-walled, + shingle-roofed, one window beside the door and one on the farther + side. Stanley Hopkins drew the key from his pocket, and had stooped + to the lock, when he paused with a look of attention and surprise + upon his face. + + "Someone has been tampering with it," he said. + + There could be no doubt of the fact. The woodwork was cut and the + scratches showed white through the paint, as if they had been that + instant done. Holmes had been examining the window. + + "Someone has tried to force this also. Whoever it was has failed to + make his way in. He must have been a very poor burglar." + + "This is a most extraordinary thing," said the inspector; "I could + swear that these marks were not here yesterday evening." + + "Some curious person from the village, perhaps," I suggested. + + "Very unlikely. Few of them would dare to set foot in the grounds, + far less try to force their way into the cabin. What do you think of + it, Mr. Holmes?" + + "I think that fortune is very kind to us." + + "You mean that the person will come again?" + + "It is very probable. He came expecting to find the door open. He + tried to get in with the blade of a very small penknife. He could not + manage it. What would he do?" + + "Come again next night with a more useful tool." + + "So I should say. It will be our fault if we are not there to receive + him. Meanwhile, let me see the inside of the cabin." + + The traces of the tragedy had been removed, but the furniture within + the little room still stood as it had been on the night of the crime. + For two hours, with most intense concentration, Holmes examined every + object in turn, but his face showed that his quest was not a + successful one. Once only he paused in his patient investigation. + + "Have you taken anything off this shelf, Hopkins?" + + "No; I have moved nothing." + + "Something has been taken. There is less dust in this corner of the + shelf than elsewhere. It may have been a book lying on its side. It + may have been a box. Well, well, I can do nothing more. Let us walk + in these beautiful woods, Watson, and give a few hours to the birds + and the flowers. We shall meet you here later, Hopkins, and see if we + can come to closer quarters with the gentleman who has paid this + visit in the night." + + It was past eleven o'clock when we formed our little ambuscade. + Hopkins was for leaving the door of the hut open, but Holmes was of + the opinion that this would rouse the suspicions of the stranger. The + lock was a perfectly simple one, and only a strong blade was needed + to push it back. Holmes also suggested that we should wait, not + inside the hut, but outside it among the bushes which grew round the + farther window. In this way we should be able to watch our man if he + struck a light, and see what his object was in this stealthy + nocturnal visit. + + It was a long and melancholy vigil, and yet brought with it something + of the thrill which the hunter feels when he lies beside the water + pool and waits for the coming of the thirsty beast of prey. What + savage creature was it which might steal upon us out of the darkness? + Was it a fierce tiger of crime, which could only be taken fighting + hard with flashing fang and claw, or would it prove to be some + skulking jackal, dangerous only to the weak and unguarded? + + In absolute silence we crouched amongst the bushes, waiting for + whatever might come. At first the steps of a few belated villagers, + or the sound of voices from the village, lightened our vigil; but one + by one these interruptions died away and an absolute stillness fell + upon us, save for the chimes of the distant church, which told us of + the progress of the night, and for the rustle and whisper of a fine + rain falling amid the foliage which roofed us in. + + Half-past two had chimed, and it was the darkest hour which precedes + the dawn, when we all started as a low but sharp click came from the + direction of the gate. Someone had entered the drive. Again there was + a long silence, and I had begun to fear that it was a false alarm, + when a stealthy step was heard upon the other side of the hut, and a + moment later a metallic scraping and clinking. The man was trying to + force the lock! This time his skill was greater or his tool was + better, for there was a sudden snap and the creak of the hinges. Then + a match was struck, and next instant the steady light from a candle + filled the interior of the hut. Through the gauze curtain our eyes + were all riveted upon the scene within. + + The nocturnal visitor was a young man, frail and thin, with a black + moustache which intensified the deadly pallor of his face. He could + not have been much above twenty years of age. I have never seen any + human being who appeared to be in such a pitiable fright, for his + teeth were visibly chattering and he was shaking in every limb. He + was dressed like a gentleman, in Norfolk jacket and knickerbockers, + with a cloth cap upon his head. We watched him staring round with + frightened eyes. Then he laid the candle-end upon the table and + disappeared from our view into one of the corners. He returned with a + large book, one of the log-books which formed a line upon the + shelves. Leaning on the table he rapidly turned over the leaves of + this volume until he came to the entry which he sought. Then, with an + angry gesture of his clenched hand, he closed the book, replaced it + in the corner, and put out the light. He had hardly turned to leave + the hut when Hopkins's hand was on the fellow's collar, and I heard + his loud gasp of terror as he understood that he was taken. The + candle was re-lit, and there was our wretched captive shivering and + cowering in the grasp of the detective. He sank down upon the + sea-chest, and looked helplessly from one of us to the other. + + "Now, my fine fellow," said Stanley Hopkins, "who are you, and what + do you want here?" + + The man pulled himself together and faced us with an effort at + self-composure. + + "You are detectives, I suppose?" said he. "You imagine I am connected + with the death of Captain Peter Carey. I assure you that I am + innocent." + + "We'll see about that," said Hopkins. "First of all, what is your + name?" + + "It is John Hopley Neligan." + + I saw Holmes and Hopkins exchange a quick glance. + + "What are you doing here?" + + "Can I speak confidentially?" + + "No, certainly not." + + "Why should I tell you?" + + "If you have no answer it may go badly with you at the trial." + + The young man winced. + + "Well, I will tell you," he said. "Why should I not? And yet I hate + to think of this old scandal gaining a new lease of life. Did you + ever hear of Dawson and Neligan?" + + I could see from Hopkins's face that he never had; but Holmes was + keenly interested. + + "You mean the West-country bankers," said he. "They failed for a + million, ruined half the county families of Cornwall, and Neligan + disappeared." + + "Exactly. Neligan was my father." + + At last we were getting something positive, and yet it seemed a long + gap between an absconding banker and Captain Peter Carey pinned + against the wall with one of his own harpoons. We all listened + intently to the young man's words. + + "It was my father who was really concerned. Dawson had retired. I was + only ten years of age at the time, but I was old enough to feel the + shame and horror of it all. It has always been said that my father + stole all the securities and fled. It is not true. It was his belief + that if he were given time in which to realize them all would be well + and every creditor paid in full. He started in his little yacht for + Norway just before the warrant was issued for his arrest. I can + remember that last night when he bade farewell to my mother. He left + us a list of the securities he was taking, and he swore that he would + come back with his honour cleared, and that none who had trusted him + would suffer. Well, no word was ever heard from him again. Both the + yacht and he vanished utterly. We believed, my mother and I, that he + and it, with the securities that he had taken with him, were at the + bottom of the sea. We had a faithful friend, however, who is a + business man, and it was he who discovered some time ago that some of + the securities which my father had with him have reappeared on the + London market. You can imagine our amazement. I spent months in + trying to trace them, and at last, after many doublings and + difficulties, I discovered that the original seller had been Captain + Peter Carey, the owner of this hut. + + "Naturally, I made some inquiries about the man. I found that he had + been in command of a whaler which was due to return from the Arctic + seas at the very time when my father was crossing to Norway. The + autumn of that year was a stormy one, and there was a long succession + of southerly gales. My father's yacht may well have been blown to the + north, and there met by Captain Peter Carey's ship. If that were so, + what had become of my father? In any case, if I could prove from + Peter Carey's evidence how these securities came on the market it + would be a proof that my father had not sold them, and that he had no + view to personal profit when he took them. + + "I came down to Sussex with the intention of seeing the captain, but + it was at this moment that his terrible death occurred. I read at the + inquest a description of his cabin, in which it stated that the old + log-books of his vessel were preserved in it. It struck me that if I + could see what occurred in the month of August, 1883, on board the + Sea Unicorn, I might settle the mystery of my father's fate. I tried + last night to get at these log-books, but was unable to open the + door. To-night I tried again, and succeeded; but I find that the + pages which deal with that month have been torn from the book. It was + at that moment I found myself a prisoner in your hands." + + "Is that all?" asked Hopkins. + + "Yes, that is all." His eyes shifted as he said it. + + "You have nothing else to tell us?" + + He hesitated. + + "No; there is nothing." + + "You have not been here before last night?" + + "No." + + "Then how do you account for that?" cried Hopkins, as he held up the + damning note-book, with the initials of our prisoner on the first + leaf and the blood-stain on the cover. + + The wretched man collapsed. He sank his face in his hands and + trembled all over. + + "Where did you get it?" he groaned. "I did not know. I thought I had + lost it at the hotel." + + "That is enough," said Hopkins, sternly. "Whatever else you have to + say you must say in court. You will walk down with me now to the + police-station. Well, Mr. Holmes, I am very much obliged to you and + to your friend for coming down to help me. As it turns out your + presence was unnecessary, and I would have brought the case to this + successful issue without you; but none the less I am very grateful. + Rooms have been reserved for you at the Brambletye Hotel, so we can + all walk down to the village together." + + "Well, Watson, what do you think of it?" asked Holmes, as we + travelled back next morning. + + "I can see that you are not satisfied." + + "Oh, yes, my dear Watson, I am perfectly satisfied. At the same time + Stanley Hopkins's methods do not commend themselves to me. I am + disappointed in Stanley Hopkins. I had hoped for better things from + him. One should always look for a possible alternative and provide + against it. It is the first rule of criminal investigation." + + "What, then, is the alternative?" + + "The line of investigation which I have myself been pursuing. It may + give us nothing. I cannot tell. But at least I shall follow it to the + end." + + Several letters were waiting for Holmes at Baker Street. He snatched + one of them up, opened it, and burst out into a triumphant chuckle of + laughter. + + "Excellent, Watson. The alternative develops. Have you telegraph + forms? Just write a couple of messages for me: 'Sumner, Shipping + Agent, Ratcliff Highway. Send three men on, to arrive ten to-morrow + morning.--Basil.' That's my name in those parts. The other is: + 'Inspector Stanley Hopkins, 46, Lord Street, Brixton. Come breakfast + to-morrow at nine-thirty. Important. Wire if unable to + come.--Sherlock Holmes.' There, Watson, this infernal case has + haunted me for ten days. I hereby banish it completely from my + presence. To-morrow I trust that we shall hear the last of it for + ever." + + Sharp at the hour named Inspector Stanley Hopkins appeared, and we + sat down together to the excellent breakfast which Mrs. Hudson had + prepared. The young detective was in high spirits at his success. + + "You really think that your solution must be correct?" asked Holmes. + + "I could not imagine a more complete case." + + "It did not seem to me conclusive." + + "You astonish me, Mr. Holmes. What more could one ask for?" + + "Does your explanation cover every point?" + + "Undoubtedly. I find that young Neligan arrived at the Brambletye + Hotel on the very day of the crime. He came on the pretence of + playing golf. His room was on the ground-floor, and he could get out + when he liked. That very night he went down to Woodman's Lee, saw + Peter Carey at the hut, quarrelled with him, and killed him with the + harpoon. Then, horrified by what he had done, he fled out of the hut, + dropping the note-book which he had brought with him in order to + question Peter Carey about these different securities. You may have + observed that some of them were marked with ticks, and the + others--the great majority--were not. Those which are ticked have + been traced on the London market; but the others presumably were + still in the possession of Carey, and young Neligan, according to his + own account, was anxious to recover them in order to do the right + thing by his father's creditors. After his flight he did not dare to + approach the hut again for some time; but at last he forced himself + to do so in order to obtain the information which he needed. Surely + that is all simple and obvious?" + + Holmes smiled and shook his head. + + "It seems to me to have only one drawback, Hopkins, and that is that + it is intrinsically impossible. Have you tried to drive a harpoon + through a body? No? Tut, tut, my dear sir, you must really pay + attention to these details. My friend Watson could tell you that I + spent a whole morning in that exercise. It is no easy matter, and + requires a strong and practised arm. But this blow was delivered with + such violence that the head of the weapon sank deep into the wall. Do + you imagine that this anaemic youth was capable of so frightful an + assault? Is he the man who hobnobbed in rum and water with Black + Peter in the dead of the night? Was it his profile that was seen on + the blind two nights before? No, no, Hopkins; it is another and a + more formidable person for whom we must seek." + + The detective's face had grown longer and longer during Holmes's + speech. His hopes and his ambitions were all crumbling about him. But + he would not abandon his position without a struggle. + + "You can't deny that Neligan was present that night, Mr. Holmes. The + book will prove that. I fancy that I have evidence enough to satisfy + a jury, even if you are able to pick a hole in it. Besides, Mr. + Holmes, I have laid my hand upon my man. As to this terrible person + of yours, where is he?" + + "I rather fancy that he is on the stair," said Holmes, serenely. "I + think, Watson, that you would do well to put that revolver where you + can reach it." He rose, and laid a written paper upon a side-table. + "Now we are ready," said he. + + There had been some talking in gruff voices outside, and now Mrs. + Hudson opened the door to say that there were three men inquiring for + Captain Basil. + + "Show them in one by one," said Holmes. + + The first who entered was a little ribston-pippin of a man, with + ruddy cheeks and fluffy white side-whiskers. Holmes had drawn a + letter from his pocket. + + "What name?" he asked. + + "James Lancaster." + + "I am sorry, Lancaster, but the berth is full. Here is half a + sovereign for your trouble. Just step into this room and wait there + for a few minutes." + + The second man was a long, dried-up creature, with lank hair and + sallow cheeks. His name was Hugh Pattins. He also received his + dismissal, his half-sovereign, and the order to wait. + + The third applicant was a man of remarkable appearance. A fierce + bull-dog face was framed in a tangle of hair and beard, and two bold + dark eyes gleamed behind the cover of thick, tufted, overhung + eyebrows. He saluted and stood sailor-fashion, turning his cap round + in his hands. + + "Your name?" asked Holmes. + + "Patrick Cairns." + + "Harpooner?" + + "Yes, sir. Twenty-six voyages." + + "Dundee, I suppose?" + + "Yes, sir." + + "And ready to start with an exploring ship?" + + "Yes, sir." + + "What wages?" + + "Eight pounds a month." + + "Could you start at once?" + + "As soon as I get my kit." + + "Have you your papers?" + + "Yes, sir." He took a sheaf of worn and greasy forms from his pocket. + Holmes glanced over them and returned them. + + "You are just the man I want," said he. "Here's the agreement on the + side-table. If you sign it the whole matter will be settled." + + The seaman lurched across the room and took up the pen. + + "Shall I sign here?" he asked, stooping over the table. + + Holmes leaned over his shoulder and passed both hands over his neck. + + "This will do," said he. + + I heard a click of steel and a bellow like an enraged bull. The next + instant Holmes and the seaman were rolling on the ground together. He + was a man of such gigantic strength that, even with the handcuffs + which Holmes had so deftly fastened upon his wrists, he would have + very quickly overpowered my friend had Hopkins and I not rushed to + his rescue. Only when I pressed the cold muzzle of the revolver to + his temple did he at last understand that resistance was vain. We + lashed his ankles with cord and rose breathless from the struggle. + + "I must really apologize, Hopkins," said Sherlock Holmes; "I fear + that the scrambled eggs are cold. However, you will enjoy the rest of + your breakfast all the better, will you not, for the thought that you + have brought your case to a triumphant conclusion." + + Stanley Hopkins was speechless with amazement. + + "I don't know what to say, Mr. Holmes," he blurted out at last, with + a very red face. "It seems to me that I have been making a fool of + myself from the beginning. I understand now, what I should never have + forgotten, that I am the pupil and you are the master. Even now I see + what you have done, but I don't know how you did it, or what it + signifies." + + "Well, well," said Holmes, good-humouredly. "We all learn by + experience, and your lesson this time is that you should never lose + sight of the alternative. You were so absorbed in young Neligan that + you could not spare a thought to Patrick Cairns, the true murderer of + Peter Carey." + + The hoarse voice of the seaman broke in on our conversation. + + "See here, mister," said he, "I make no complaint of being + man-handled in this fashion, but I would have you call things by + their right names. You say I murdered Peter Carey; I say I killed + Peter Carey, and there's all the difference. Maybe you don't believe + what I say. Maybe you think I am just slinging you a yarn." + + "Not at all," said Holmes. "Let us hear what you have to say." + + "It's soon told, and, by the Lord, every word of it is truth. I knew + Black Peter, and when he pulled out his knife I whipped a harpoon + through him sharp, for I knew that it was him or me. That's how he + died. You can call it murder. Anyhow, I'd as soon die with a rope + round my neck as with Black Peter's knife in my heart." + + "How came you there?" asked Holmes. + + "I'll tell it you from the beginning. Just sit me up a little so as I + can speak easy. It was in '83 that it happened--August of that year. + Peter Carey was master of the Sea Unicorn, and I was spare harpooner. + We were coming out of the ice-pack on our way home, with head winds + and a week's southerly gale, when we picked up a little craft that + had been blown north. There was one man on her--a landsman. The crew + had thought she would founder, and had made for the Norwegian coast + in the dinghy. I guess they were all drowned. Well, we took him on + board, this man, and he and the skipper had some long talks in the + cabin. All the baggage we took off with him was one tin box. So far + as I know, the man's name was never mentioned, and on the second + night he disappeared as if he had never been. It was given out that + he had either thrown himself overboard or fallen overboard in the + heavy weather that we were having. Only one man knew what had + happened to him, and that was me, for with my own eyes I saw the + skipper tip up his heels and put him over the rail in the middle + watch of a dark night, two days before we sighted the Shetland + lights. + + "Well, I kept my knowledge to myself and waited to see what would + come of it. When we got back to Scotland it was easily hushed up, and + nobody asked any questions. A stranger died by an accident, and it + was nobody's business to inquire. Shortly after Peter Carey gave up + the sea, and it was long years before I could find where he was. I + guessed that he had done the deed for the sake of what was in that + tin box, and that he could afford now to pay me well for keeping my + mouth shut. + + "I found out where he was through a sailor man that had met him in + London, and down I went to squeeze him. The first night he was + reasonable enough, and was ready to give me what would make me free + of the sea for life. We were to fix it all two nights later. When I + came I found him three parts drunk and in a vile temper. We sat down + and we drank and we yarned about old times, but the more he drank the + less I liked the look on his face. I spotted that harpoon upon the + wall, and I thought I might need it before I was through. Then at + last he broke out at me, spitting and cursing, with murder in his + eyes and a great clasp-knife in his hand. He had not time to get it + from the sheath before I had the harpoon through him. Heavens! what a + yell he gave; and his face gets between me and my sleep! I stood + there, with his blood splashing round me, and I waited for a bit; but + all was quiet, so I took heart once more. I looked round, and there + was the tin box on a shelf. I had as much right to it as Peter Carey, + anyhow, so I took it with me and left the hut. Like a fool I left my + baccy-pouch upon the table. + + "Now I'll tell you the queerest part of the whole story. I had hardly + got outside the hut when I heard someone coming, and I hid among the + bushes. A man came slinking along, went into the hut, gave a cry as + if he had seen a ghost, and legged it as hard as he could run until + he was out of sight. Who he was or what he wanted is more than I can + tell. For my part I walked ten miles, got a train at Tunbridge Wells, + and so reached London, and no one the wiser. + + "Well, when I came to examine the box I found there was no money in + it, and nothing but papers that I would not dare to sell. I had lost + my hold on Black Peter, and was stranded in London without a + shilling. There was only my trade left. I saw these advertisements + about harpooners and high wages, so I went to the shipping agents, + and they sent me here. That's all I know, and I say again that if I + killed Black Peter the law should give me thanks, for I saved them + the price of a hempen rope." + + "A very clear statement," said Holmes, rising and lighting his pipe. + "I think, Hopkins, that you should lose no time in conveying your + prisoner to a place of safety. This room is not well adapted for a + cell, and Mr. Patrick Cairns occupies too large a proportion of our + carpet." + + "Mr. Holmes," said Hopkins, "I do not know how to express my + gratitude. Even now I do not understand how you attained this + result." + + "Simply by having the good fortune to get the right clue from the + beginning. It is very possible if I had known about this note-book it + might have led away my thoughts, as it did yours. But all I heard + pointed in the one direction. The amazing strength, the skill in the + use of the harpoon, the rum and water, the seal-skin tobacco-pouch, + with the coarse tobacco--all these pointed to a seaman, and one who + had been a whaler. I was convinced that the initials 'P.C.' upon the + pouch were a coincidence, and not those of Peter Carey, since he + seldom smoked, and no pipe was found in his cabin. You remember that + I asked whether whisky and brandy were in the cabin. You said they + were. How many landsmen are there who would drink rum when they could + get these other spirits? Yes, I was certain it was a seaman." + + "And how did you find him?" + + "My dear sir, the problem had become a very simple one. If it were a + seaman, it could only be a seaman who had been with him on the Sea + Unicorn. So far as I could learn he had sailed in no other ship. I + spent three days in wiring to Dundee, and at the end of that time I + had ascertained the names of the crew of the Sea Unicorn in 1883. + When I found Patrick Cairns among the harpooners my research was + nearing its end. I argued that the man was probably in London, and + that he would desire to leave the country for a time. I therefore + spent some days in the East-end, devised an Arctic expedition, put + forth tempting terms for harpooners who would serve under Captain + Basil--and behold the result!" + + "Wonderful!" cried Hopkins. "Wonderful!" + + "You must obtain the release of young Neligan as soon as possible," + said Holmes. "I confess that I think you owe him some apology. The + tin box must be returned to him, but, of course, the securities which + Peter Carey has sold are lost for ever. There's the cab, Hopkins, and + you can remove your man. If you want me for the trial, my address and + that of Watson will be somewhere in Norway--I'll send particulars + later." + + + + + + + THE ADVENTURE OF CHARLES AUGUSTUS MILVERTON + + It is years since the incidents of which I speak took place, and yet + it is with diffidence that I allude to them. For a long time, even + with the utmost discretion and reticence, it would have been + impossible to make the facts public; but now the principal person + concerned is beyond the reach of human law, and with due suppression + the story may be told in such fashion as to injure no one. It records + an absolutely unique experience in the career both of Mr. Sherlock + Holmes and of myself. The reader will excuse me if I conceal the date + or any other fact by which he might trace the actual occurrence. + + We had been out for one of our evening rambles, Holmes and I, and had + returned about six o'clock on a cold, frosty winter's evening. As + Holmes turned up the lamp the light fell upon a card on the table. He + glanced at it, and then, with an ejaculation of disgust, threw it on + the floor. I picked it up and read:-- + + + Charles Augustus Milverton, + + Appledore Towers, + + Hampstead. + + Agent. + + + "Who is he?" I asked. + + "The worst man in London," Holmes answered, as he sat down and + stretched his legs before the fire. "Is anything on the back of the + card?" + + I turned it over. + + "Will call at 6.30--C.A.M.," I read. + + "Hum! He's about due. Do you feel a creeping, shrinking sensation, + Watson, when you stand before the serpents in the Zoo and see the + slithery, gliding, venomous creatures, with their deadly eyes and + wicked, flattened faces? Well, that's how Milverton impresses me. + I've had to do with fifty murderers in my career, but the worst of + them never gave me the repulsion which I have for this fellow. And + yet I can't get out of doing business with him--indeed, he is here at + my invitation." + + "But who is he?" + + "I'll tell you, Watson. He is the king of all the blackmailers. + Heaven help the man, and still more the woman, whose secret and + reputation come into the power of Milverton. With a smiling face and + a heart of marble he will squeeze and squeeze until he has drained + them dry. The fellow is a genius in his way, and would have made his + mark in some more savoury trade. His method is as follows: He allows + it to be known that he is prepared to pay very high sums for letters + which compromise people of wealth or position. He receives these + wares not only from treacherous valets or maids, but frequently from + genteel ruffians who have gained the confidence and affection of + trusting women. He deals with no niggard hand. I happen to know that + he paid seven hundred pounds to a footman for a note two lines in + length, and that the ruin of a noble family was the result. + Everything which is in the market goes to Milverton, and there are + hundreds in this great city who turn white at his name. No one knows + where his grip may fall, for he is far too rich and far too cunning + to work from hand to mouth. He will hold a card back for years in + order to play it at the moment when the stake is best worth winning. + I have said that he is the worst man in London, and I would ask you + how could one compare the ruffian who in hot blood bludgeons his mate + with this man, who methodically and at his leisure tortures the soul + and wrings the nerves in order to add to his already swollen + money-bags?" + + I had seldom heard my friend speak with such intensity of feeling. + + "But surely," said I, "the fellow must be within the grasp of the + law?" + + "Technically, no doubt, but practically not. What would it profit a + woman, for example, to get him a few months' imprisonment if her own + ruin must immediately follow? His victims dare not hit back. If ever + he blackmailed an innocent person, then, indeed, we should have him; + but he is as cunning as the Evil One. No, no; we must find other ways + to fight him." + + "And why is he here?" + + "Because an illustrious client has placed her piteous case in my + hands. It is the Lady Eva Brackwell, the most beautiful debutante of + last season. She is to be married in a fortnight to the Earl of + Dovercourt. This fiend has several imprudent letters--imprudent, + Watson, nothing worse--which were written to an impecunious young + squire in the country. They would suffice to break off the match. + Milverton will send the letters to the Earl unless a large sum of + money is paid him. I have been commissioned to meet him, and--to make + the best terms I can." + + At that instant there was a clatter and a rattle in the street below. + Looking down I saw a stately carriage and pair, the brilliant lamps + gleaming on the glossy haunches of the noble chestnuts. A footman + opened the door, and a small, stout man in a shaggy astrachan + overcoat descended. A minute later he was in the room. + + Charles Augustus Milverton was a man of fifty, with a large, + intellectual head, a round, plump, hairless face, a perpetual frozen + smile, and two keen grey eyes, which gleamed brightly from behind + broad, golden-rimmed glasses. There was something of Mr. Pickwick's + benevolence in his appearance, marred only by the insincerity of the + fixed smile and by the hard glitter of those restless and penetrating + eyes. His voice was as smooth and suave as his countenance, as he + advanced with a plump little hand extended, murmuring his regret for + having missed us at his first visit. Holmes disregarded the + outstretched hand and looked at him with a face of granite. + Milverton's smile broadened; he shrugged his shoulders, removed his + overcoat, folded it with great deliberation over the back of a chair, + and then took a seat. + + "This gentleman?" said he, with a wave in my direction. "Is it + discreet? Is it right?" + + "Dr. Watson is my friend and partner." + + "Very good, Mr. Holmes. It is only in your client's interests that I + protested. The matter is so very delicate--" + + "Dr. Watson has already heard of it." + + "Then we can proceed to business. You say that you are acting for + Lady Eva. Has she empowered you to accept my terms?" + + "What are your terms?" + + "Seven thousand pounds." + + "And the alternative?" + + "My dear sir, it is painful for me to discuss it; but if the money is + not paid on the 14th there certainly will be no marriage on the + 18th." His insufferable smile was more complacent than ever. + + Holmes thought for a little. + + "You appear to me," he said, at last, "to be taking matters too much + for granted. I am, of course, familiar with the contents of these + letters. My client will certainly do what I may advise. I shall + counsel her to tell her future husband the whole story and to trust + to his generosity." + + Milverton chuckled. + + "You evidently do not know the Earl," said he. + + From the baffled look upon Holmes's face I could see clearly that he + did. + + "What harm is there in the letters?" he asked. + + "They are sprightly--very sprightly," Milverton answered. "The lady + was a charming correspondent. But I can assure you that the Earl of + Dovercourt would fail to appreciate them. However, since you think + otherwise, we will let it rest at that. It is purely a matter of + business. If you think that it is in the best interests of your + client that these letters should be placed in the hands of the Earl, + then you would indeed be foolish to pay so large a sum of money to + regain them." He rose and seized his astrachan coat. + + Holmes was grey with anger and mortification. + + "Wait a little," he said. "You go too fast. We would certainly make + every effort to avoid scandal in so delicate a matter." + + Milverton relapsed into his chair. + + "I was sure that you would see it in that light," he purred. + + "At the same time," Holmes continued, "Lady Eva is not a wealthy + woman. I assure you that two thousand pounds would be a drain upon + her resources, and that the sum you name is utterly beyond her power. + I beg, therefore, that you will moderate your demands, and that you + will return the letters at the price I indicate, which is, I assure + you, the highest that you can get." + + Milverton's smile broadened and his eyes twinkled humorously. + + "I am aware that what you say is true about the lady's resources," + said he. "At the same time, you must admit that the occasion of a + lady's marriage is a very suitable time for her friends and relatives + to make some little effort upon her behalf. They may hesitate as to + an acceptable wedding present. Let me assure them that this little + bundle of letters would give more joy than all the candelabra and + butter-dishes in London." + + "It is impossible," said Holmes. + + "Dear me, dear me, how unfortunate!" cried Milverton, taking out a + bulky pocket-book. "I cannot help thinking that ladies are + ill-advised in not making an effort. Look at this!" He held up a + little note with a coat-of-arms upon the envelope. "That belongs + to--well, perhaps it is hardly fair to tell the name until to-morrow + morning. But at that time it will be in the hands of the lady's + husband. And all because she will not find a beggarly sum which she + could get by turning her diamonds into paste. It is such a pity. Now, + you remember the sudden end of the engagement between the Honourable + Miss Miles and Colonel Dorking? Only two days before the wedding + there was a paragraph in the Morning Post to say that it was all off. + And why? It is almost incredible, but the absurd sum of twelve + hundred pounds would have settled the whole question. Is it not + pitiful? And here I find you, a man of sense, boggling about terms + when your client's future and honour are at stake. You surprise me, + Mr. Holmes." + + "What I say is true," Holmes answered. "The money cannot be found. + Surely it is better for you to take the substantial sum which I offer + than to ruin this woman's career, which can profit you in no way?" + + "There you make a mistake, Mr. Holmes. An exposure would profit me + indirectly to a considerable extent. I have eight or ten similar + cases maturing. If it was circulated among them that I had made a + severe example of the Lady Eva I should find all of them much more + open to reason. You see my point?" + + Holmes sprang from his chair. + + "Get behind him, Watson! Don't let him out! Now, sir, let us see the + contents of that note-book." + + Milverton had glided as quick as a rat to the side of the room, and + stood with his back against the wall. + + "Mr. Holmes, Mr. Holmes," he said, turning the front of his coat and + exhibiting the butt of a large revolver, which projected from the + inside pocket. "I have been expecting you to do something original. + This has been done so often, and what good has ever come from it? I + assure you that I am armed to the teeth, and I am perfectly prepared + to use my weapons, knowing that the law will support me. Besides, + your supposition that I would bring the letters here in a note-book + is entirely mistaken. I would do nothing so foolish. And now, + gentlemen, I have one or two little interviews this evening, and it + is a long drive to Hampstead." He stepped forward, took up his coat, + laid his hand on his revolver, and turned to the door. I picked up a + chair, but Holmes shook his head and I laid it down again. With bow, + a smile, and a twinkle Milverton was out of the room, and a few + moments after we heard the slam of the carriage door and the rattle + of the wheels as he drove away. + + Holmes sat motionless by the fire, his hands buried deep in his + trouser pockets, his chin sunk upon his breast, his eyes fixed upon + the glowing embers. For half an hour he was silent and still. Then, + with the gesture of a man who has taken his decision, he sprang to + his feet and passed into his bedroom. A little later a rakish young + workman with a goatee beard and a swagger lit his clay pipe at the + lamp before descending into the street. "I'll be back some time, + Watson," said he, and vanished into the night. I understood that he + had opened his campaign against Charles Augustus Milverton; but I + little dreamed the strange shape which that campaign was destined to + take. + + For some days Holmes came and went at all hours in this attire, but + beyond a remark that his time was spent at Hampstead, and that it was + not wasted, I knew nothing of what he was doing. At last, however, on + a wild, tempestuous evening, when the wind screamed and rattled + against the windows, he returned from his last expedition, and having + removed his disguise he sat before the fire and laughed heartily in + his silent inward fashion. + + "You would not call me a marrying man, Watson?" + + "No, indeed!" + + "You'll be interested to hear that I am engaged." + + "My dear fellow! I congrat--" + + "To Milverton's housemaid." + + "Good heavens, Holmes!" + + "I wanted information, Watson." + + "Surely you have gone too far?" + + "It was a most necessary step. I am a plumber with a rising business, + Escott by name. I have walked out with her each evening, and I have + talked with her. Good heavens, those talks! However, I have got all I + wanted. I know Milverton's house as I know the palm of my hand." + + "But the girl, Holmes?" + + He shrugged his shoulders. + + "You can't help it, my dear Watson. You must play your cards as best + you can when such a stake is on the table. However, I rejoice to say + that I have a hated rival who will certainly cut me out the instant + that my back is turned. What a splendid night it is!" + + "You like this weather?" + + "It suits my purpose. Watson, I mean to burgle Milverton's house + to-night." + + I had a catching of the breath, and my skin went cold at the words, + which were slowly uttered in a tone of concentrated resolution. As a + flash of lightning in the night shows up in an instant every detail + of a wide landscape, so at one glance I seemed to see every possible + result of such an action--the detection, the capture, the honoured + career ending in irreparable failure and disgrace, my friend himself + lying at the mercy of the odious Milverton. + + "For Heaven's sake, Holmes, think what you are doing," I cried. + + "My dear fellow, I have given it every consideration. I am never + precipitate in my actions, nor would I adopt so energetic and indeed + so dangerous a course if any other were possible. Let us look at the + matter clearly and fairly. I suppose that you will admit that the + action is morally justifiable, though technically criminal. To burgle + his house is no more than to forcibly take his pocket-book--an action + in which you were prepared to aid me." + + I turned it over in my mind. + + "Yes," I said; "it is morally justifiable so long as our object is to + take no articles save those which are used for an illegal purpose." + + "Exactly. Since it is morally justifiable I have only to consider the + question of personal risk. Surely a gentleman should not lay much + stress upon this when a lady is in most desperate need of his help?" + + "You will be in such a false position." + + "Well, that is part of the risk. There is no other possible way of + regaining these letters. The unfortunate lady has not the money, and + there are none of her people in whom she could confide. To-morrow is + the last day of grace, and unless we can get the letters to-night + this villain will be as good as his word and will bring about her + ruin. I must, therefore, abandon my client to her fate or I must play + this last card. Between ourselves, Watson, it's a sporting duel + between this fellow Milverton and me. He had, as you saw, the best of + the first exchanges; but my self-respect and my reputation are + concerned to fight it to a finish." + + "Well, I don't like it; but I suppose it must be," said I. "When do + we start?" + + "You are not coming." + + "Then you are not going," said I. "I give you my word of honour--and + I never broke it in my life--that I will take a cab straight to the + police-station and give you away unless you let me share this + adventure with you." + + "You can't help me." + + "How do you know that? You can't tell what may happen. Anyway, my + resolution is taken. Other people beside you have self-respect and + even reputations." + + Holmes had looked annoyed, but his brow cleared, and he clapped me on + the shoulder. + + "Well, well, my dear fellow, be it so. We have shared the same room + for some years, and it would be amusing if we ended by sharing the + same cell. You know, Watson, I don't mind confessing to you that I + have always had an idea that I would have made a highly efficient + criminal. This is the chance of my lifetime in that direction. See + here!" He took a neat little leather case out of a drawer, and + opening it he exhibited a number of shining instruments. "This is a + first-class, up-to-date burgling kit, with nickel-plated jemmy, + diamond-tipped glass-cutter, adaptable keys, and every modern + improvement which the march of civilization demands. Here, too, is my + dark lantern. Everything is in order. Have you a pair of silent + shoes?" + + "I have rubber-soled tennis shoes." + + "Excellent. And a mask?" + + "I can make a couple out of black silk." + + "I can see that you have a strong natural turn for this sort of + thing. Very good; do you make the masks. We shall have some cold + supper before we start. It is now nine-thirty. At eleven we shall + drive as far as Church Row. It is a quarter of an hour's walk from + there to Appledore Towers. We shall be at work before midnight. + Milverton is a heavy sleeper and retires punctually at ten-thirty. + With any luck we should be back here by two, with the Lady Eva's + letters in my pocket." + + Holmes and I put on our dress-clothes, so that we might appear to be + two theatre-goers homeward bound. In Oxford Street we picked up a + hansom and drove to an address in Hampstead. Here we paid off our + cab, and with our great-coats buttoned up, for it was bitterly cold + and the wind seemed to blow through us, we walked along the edge of + the Heath. + + "It's a business that needs delicate treatment," said Holmes. "These + documents are contained in a safe in the fellow's study, and the + study is the ante-room of his bed-chamber. On the other hand, like + all these stout, little men who do themselves well, he is a plethoric + sleeper. Agatha--that's my fiancee--says it is a joke in the + servants' hall that it's impossible to wake the master. He has a + secretary who is devoted to his interests and never budges from the + study all day. That's why we are going at night. Then he has a beast + of a dog which roams the garden. I met Agatha late the last two + evenings, and she locks the brute up so as to give me a clear run. + This is the house, this big one in its own grounds. Through the + gate--now to the right among the laurels. We might put on our masks + here, I think. You see, there is not a glimmer of light in any of the + windows, and everything is working splendidly." + + With our black silk face-coverings, which turned us into two of the + most truculent figures in London, we stole up to the silent, gloomy + house. A sort of tiled veranda extended along one side of it, lined + by several windows and two doors. + + "That's his bedroom," Holmes whispered. "This door opens straight + into the study. It would suit us best, but it is bolted as well as + locked, and we should make too much noise getting in. Come round + here. There's a greenhouse which opens into the drawing-room." + + The place was locked, but Holmes removed a circle of glass and turned + the key from the inside. An instant afterwards he had closed the door + behind us, and we had become felons in the eyes of the law. The + thick, warm air of the conservatory and the rich, choking fragrance + of exotic plants took us by the throat. He seized my hand in the + darkness and led me swiftly past banks of shrubs which brushed + against our faces. Holmes had remarkable powers, carefully + cultivated, of seeing in the dark. Still holding my hand in one of + his he opened a door, and I was vaguely conscious that we had entered + a large room in which a cigar had been smoked not long before. He + felt his way among the furniture, opened another door, and closed it + behind us. Putting out my hand I felt several coats hanging from the + wall, and I understood that I was in a passage. We passed along it, + and Holmes very gently opened a door upon the right-hand side. + Something rushed out at us and my heart sprang into my mouth, but I + could have laughed when I realized that it was the cat. A fire was + burning in this new room, and again the air was heavy with tobacco + smoke. Holmes entered on tiptoe, waited for me to follow, and then + very gently closed the door. We were in Milverton's study, and a + portiere at the farther side showed the entrance to his bedroom. + + It was a good fire, and the room was illuminated by it. Near the door + I saw the gleam of an electric switch, but it was unnecessary, even + if it had been safe, to turn it on. At one side of the fireplace was + a heavy curtain, which covered the bay window we had seen from + outside. On the other side was the door which communicated with the + veranda. A desk stood in the centre, with a turning chair of shining + red leather. Opposite was a large bookcase, with a marble bust of + Athene on the top. In the corner between the bookcase and the wall + there stood a tall green safe, the firelight flashing back from the + polished brass knobs upon its face. Holmes stole across and looked at + it. Then he crept to the door of the bedroom, and stood with slanting + head listening intently. No sound came from within. Meanwhile it had + struck me that it would be wise to secure our retreat through the + outer door, so I examined it. To my amazement it was neither locked + nor bolted! I touched Holmes on the arm, and he turned his masked + face in that direction. I saw him start, and he was evidently as + surprised as I. + + "I don't like it," he whispered, putting his lips to my very ear. "I + can't quite make it out. Anyhow, we have no time to lose." + + "Can I do anything?" + + "Yes; stand by the door. If you hear anyone come, bolt it on the + inside, and we can get away as we came. If they come the other way, + we can get through the door if our job is done, or hide behind these + window curtains if it is not. Do you understand?" + + I nodded and stood by the door. My first feeling of fear had passed + away, and I thrilled now with a keener zest than I had ever enjoyed + when we were the defenders of the law instead of its defiers. The + high object of our mission, the consciousness that it was unselfish + and chivalrous, the villainous character of our opponent, all added + to the sporting interest of the adventure. Far from feeling guilty, I + rejoiced and exulted in our dangers. With a glow of admiration I + watched Holmes unrolling his case of instruments and choosing his + tool with the calm, scientific accuracy of a surgeon who performs a + delicate operation. I knew that the opening of safes was a particular + hobby with him, and I understood the joy which it gave him to be + confronted with this green and gold monster, the dragon which held in + its maw the reputations of many fair ladies. Turning up the cuffs of + his dress-coat--he had placed his overcoat on a chair--Holmes laid + out two drills, a jemmy, and several skeleton keys. I stood at the + centre door with my eyes glancing at each of the others, ready for + any emergency; though, indeed, my plans were somewhat vague as to + what I should do if we were interrupted. For half an hour Holmes + worked with concentrated energy, laying down one tool, picking up + another, handling each with the strength and delicacy of the trained + mechanic. Finally I heard a click, the broad green door swung open, + and inside I had a glimpse of a number of paper packets, each tied, + sealed, and inscribed. Holmes picked one out, but it was hard to read + by the flickering fire, and he drew out his little dark lantern, for + it was too dangerous, with Milverton in the next room, to switch on + the electric light. Suddenly I saw him halt, listen intently, and + then in an instant he had swung the door of the safe to, picked up + his coat, stuffed his tools into the pockets, and darted behind the + window curtain, motioning me to do the same. + + It was only when I had joined him there that I heard what had alarmed + his quicker senses. There was a noise somewhere within the house. A + door slammed in the distance. Then a confused, dull murmur broke + itself into the measured thud of heavy footsteps rapidly approaching. + They were in the passage outside the room. They paused at the door. + The door opened. There was a sharp snick as the electric light was + turned on. The door closed once more, and the pungent reek of a + strong cigar was borne to our nostrils. Then the footsteps continued + backwards and forwards, backwards and forwards, within a few yards of + us. Finally, there was a creak from a chair, and the footsteps + ceased. Then a key clicked in a lock and I heard the rustle of + papers. + + So far I had not dared to look out, but now I gently parted the + division of the curtains in front of me and peeped through. From the + pressure of Holmes's shoulder against mine I knew that he was sharing + my observations. Right in front of us, and almost within our reach, + was the broad, rounded back of Milverton. It was evident that we had + entirely miscalculated his movements, that he had never been to his + bedroom, but that he had been sitting up in some smoking or billiard + room in the farther wing of the house, the windows of which we had + not seen. His broad, grizzled head, with its shining patch of + baldness, was in the immediate foreground of our vision. He was + leaning far back in the red leather chair, his legs outstretched, a + long black cigar projecting at an angle from his mouth. He wore a + semi-military smoking jacket, claret-coloured, with a black velvet + collar. In his hand he held a long legal document, which he was + reading in an indolent fashion, blowing rings of tobacco smoke from + his lips as he did so. There was no promise of a speedy departure in + his composed bearing and his comfortable attitude. + + I felt Holmes's hand steal into mine and give me a reassuring shake, + as if to say that the situation was within his powers and that he was + easy in his mind. I was not sure whether he had seen what was only + too obvious from my position, that the door of the safe was + imperfectly closed, and that Milverton might at any moment observe + it. In my own mind I had determined that if I were sure, from the + rigidity of his gaze, that it had caught his eye, I would at once + spring out, throw my great-coat over his head, pinion him, and leave + the rest to Holmes. But Milverton never looked up. He was languidly + interested by the papers in his hand, and page after page was turned + as he followed the argument of the lawyer. At least, I thought, when + he has finished the document and the cigar he will go to his room; + but before he had reached the end of either there came a remarkable + development which turned our thoughts into quite another channel. + + Several times I had observed that Milverton looked at his watch, and + once he had risen and sat down again, with a gesture of impatience. + The idea, however, that he might have an appointment at so strange an + hour never occurred to me until a faint sound reached my ears from + the veranda outside. Milverton dropped his papers and sat rigid in + his chair. The sound was repeated, and then there came a gentle tap + at the door. Milverton rose and opened it. + + "Well," said he, curtly, "you are nearly half an hour late." + + So this was the explanation of the unlocked door and of the nocturnal + vigil of Milverton. There was the gentle rustle of a woman's dress. I + had closed the slit between the curtains as Milverton's face had + turned in our direction, but now I ventured very carefully to open it + once more. He had resumed his seat, the cigar still projecting at an + insolent angle from the corner of his mouth. In front of him, in the + full glare of the electric light, there stood a tall, slim, dark + woman, a veil over her face, a mantle drawn round her chin. Her + breath came quick and fast, and every inch of the lithe figure was + quivering with strong emotion. + + "Well," said Milverton, "you've made me lose a good night's rest, my + dear. I hope you'll prove worth it. You couldn't come any other + time--eh?" + + The woman shook her head. + + "Well, if you couldn't you couldn't. If the Countess is a hard + mistress you have your chance to get level with her now. Bless the + girl, what are you shivering about? That's right! Pull yourself + together! Now, let us get down to business." He took a note from the + drawer of his desk. "You say that you have five letters which + compromise the Countess d'Albert. You want to sell them. I want to + buy them. So far so good. It only remains to fix a price. I should + want to inspect the letters, of course. If they are really good + specimens--Great heavens, is it you?" + + The woman without a word had raised her veil and dropped the mantle + from her chin. It was a dark, handsome, clear-cut face which + confronted Milverton, a face with a curved nose, strong, dark + eyebrows shading hard, glittering eyes, and a straight, thin-lipped + mouth set in a dangerous smile. + + "It is I," she said; "the woman whose life you have ruined." + + Milverton laughed, but fear vibrated in his voice. "You were so very + obstinate," said he. "Why did you drive me to such extremities? I + assure you I wouldn't hurt a fly of my own accord, but every man has + his business, and what was I to do? I put the price well within your + means. You would not pay." + + "So you sent the letters to my husband, and he--the noblest gentleman + that ever lived, a man whose boots I was never worthy to lace--he + broke his gallant heart and died. You remember that last night when I + came through that door I begged and prayed you for mercy, and you + laughed in my face as you are trying to laugh now, only your coward + heart cannot keep your lips from twitching? Yes, you never thought to + see me here again, but it was that night which taught me how I could + meet you face to face, and alone. Well, Charles Milverton, what have + you to say?" + + "Don't imagine that you can bully me," said he, rising to his feet. + "I have only to raise my voice, and I could call my servants and have + you arrested. But I will make allowance for your natural anger. Leave + the room at once as you came, and I will say no more." + + The woman stood with her hand buried in her bosom, and the same + deadly smile on her thin lips. + + "You will ruin no more lives as you ruined mine. You will wring no + more hearts as you wrung mine. I will free the world of a poisonous + thing. Take that, you hound, and that!--and that!--and that!" + + She had drawn a little, gleaming revolver, and emptied barrel after + barrel into Milverton's body, the muzzle within two feet of his shirt + front. He shrank away and then fell forward upon the table, coughing + furiously and clawing among the papers. Then he staggered to his + feet, received another shot, and rolled upon the floor. "You've done + me," he cried, and lay still. The woman looked at him intently and + ground her heel into his upturned face. She looked again, but there + was no sound or movement. I heard a sharp rustle, the night air blew + into the heated room, and the avenger was gone. + + No interference upon our part could have saved the man from his fate; + but as the woman poured bullet after bullet into Milverton's + shrinking body I was about to spring out, when I felt Holmes's cold, + strong grasp upon my wrist. I understood the whole argument of that + firm, restraining grip--that it was no affair of ours; that justice + had overtaken a villain; that we had our own duties and our own + objects which were not to be lost sight of. But hardly had the woman + rushed from the room when Holmes, with swift, silent steps, was over + at the other door. He turned the key in the lock. At the same instant + we heard voices in the house and the sound of hurrying feet. The + revolver shots had roused the household. With perfect coolness Holmes + slipped across to the safe, filled his two arms with bundles of + letters, and poured them all into the fire. Again and again he did + it, until the safe was empty. Someone turned the handle and beat upon + the outside of the door. Holmes looked swiftly round. The letter + which had been the messenger of death for Milverton lay, all mottled + with his blood, upon the table. Holmes tossed it in among the blazing + papers. Then he drew the key from the outer door, passed through + after me, and locked it on the outside. "This way, Watson," said he; + "we can scale the garden wall in this direction." + + I could not have believed that an alarm could have spread so swiftly. + Looking back, the huge house was one blaze of light. The front door + was open, and figures were rushing down the drive. The whole garden + was alive with people, and one fellow raised a view-halloa as we + emerged from the veranda and followed hard at our heels. Holmes + seemed to know the ground perfectly, and he threaded his way swiftly + among a plantation of small trees, I close at his heels, and our + foremost pursuer panting behind us. It was a six-foot wall which + barred our path, but he sprang to the top and over. As I did the same + I felt the hand of the man behind me grab at my ankle; but I kicked + myself free and scrambled over a glass-strewn coping. I fell upon my + face among some bushes; but Holmes had me on my feet in an instant, + and together we dashed away across the huge expanse of Hampstead + Heath. We had run two miles, I suppose, before Holmes at last halted + and listened intently. All was absolute silence behind us. We had + shaken off our pursuers and were safe. + + We had breakfasted and were smoking our morning pipe on the day after + the remarkable experience which I have recorded when Mr. Lestrade, of + Scotland Yard, very solemn and impressive, was ushered into our + modest sitting-room. + + "Good morning, Mr. Holmes," said he; "good morning. May I ask if you + are very busy just now?" + + "Not too busy to listen to you." + + "I thought that, perhaps, if you had nothing particular on hand, you + might care to assist us in a most remarkable case which occurred only + last night at Hampstead." + + "Dear me!" said Holmes. "What was that?" + + "A murder--a most dramatic and remarkable murder. I know how keen you + are upon these things, and I would take it as a great favour if you + would step down to Appledore Towers and give us the benefit of your + advice. It is no ordinary crime. We have had our eyes upon this Mr. + Milverton for some time, and, between ourselves, he was a bit of a + villain. He is known to have held papers which he used for + blackmailing purposes. These papers have all been burned by the + murderers. No article of value was taken, as it is probable that the + criminals were men of good position, whose sole object was to prevent + social exposure." + + "Criminals!" said Holmes. "Plural!" + + "Yes, there were two of them. They were, as nearly as possible, + captured red-handed. We have their foot-marks, we have their + description; it's ten to one that we trace them. The first fellow was + a bit too active, but the second was caught by the under-gardener and + only got away after a struggle. He was a middle-sized, strongly-built + man--square jaw, thick neck, moustache, a mask over his eyes." + + "That's rather vague," said Sherlock Holmes. "Why, it might be a + description of Watson!" + + "It's true," said the inspector, with much amusement. "It might be a + description of Watson." + + "Well, I am afraid I can't help you, Lestrade," said Holmes. "The + fact is that I knew this fellow Milverton, that I considered him one + of the most dangerous men in London, and that I think there are + certain crimes which the law cannot touch, and which therefore, to + some extent, justify private revenge. No, it's no use arguing. I have + made up my mind. My sympathies are with the criminals rather than + with the victim, and I will not handle this case." + + Holmes had not said one word to me about the tragedy which we had + witnessed, but I observed all the morning that he was in his most + thoughtful mood, and he gave me the impression, from his vacant eyes + and his abstracted manner, of a man who is striving to recall + something to his memory. We were in the middle of our lunch when he + suddenly sprang to his feet. "By Jove, Watson; I've got it!" he + cried. "Take your hat! Come with me!" He hurried at his top speed + down Baker Street and along Oxford Street, until we had almost + reached Regent Circus. Here on the left hand there stands a shop + window filled with photographs of the celebrities and beauties of the + day. Holmes's eyes fixed themselves upon one of them, and following + his gaze I saw the picture of a regal and stately lady in Court + dress, with a high diamond tiara upon her noble head. I looked at + that delicately-curved nose, at the marked eyebrows, at the straight + mouth, and the strong little chin beneath it. Then I caught my breath + as I read the time-honoured title of the great nobleman and statesman + whose wife she had been. My eyes met those of Holmes, and he put his + finger to his lips as we turned away from the window. + + + + + + + THE ADVENTURE OF THE SIX NAPOLEONS + + It was no very unusual thing for Mr. Lestrade, of Scotland Yard, to + look in upon us of an evening, and his visits were welcome to + Sherlock Holmes, for they enabled him to keep in touch with all that + was going on at the police head-quarters. In return for the news + which Lestrade would bring, Holmes was always ready to listen with + attention to the details of any case upon which the detective was + engaged, and was able occasionally, without any active interference, + to give some hint or suggestion drawn from his own vast knowledge and + experience. + + On this particular evening Lestrade had spoken of the weather and the + newspapers. Then he had fallen silent, puffing thoughtfully at his + cigar. Holmes looked keenly at him. + + "Anything remarkable on hand?" he asked. + + "Oh, no, Mr. Holmes, nothing very particular." + + "Then tell me about it." + + Lestrade laughed. + + "Well, Mr. Holmes, there is no use denying that there is something on + my mind. And yet it is such an absurd business that I hesitated to + bother you about it. On the other hand, although it is trivial, it is + undoubtedly queer, and I know that you have a taste for all that is + out of the common. But in my opinion it comes more in Dr. Watson's + line than ours." + + "Disease?" said I. + + "Madness, anyhow. And a queer madness too! You wouldn't think there + was anyone living at this time of day who had such a hatred of + Napoleon the First that he would break any image of him that he could + see." + + Holmes sank back in his chair. + + "That's no business of mine," said he. + + "Exactly. That's what I said. But then, when the man commits burglary + in order to break images which are not his own, that brings it away + from the doctor and on to the policeman." + + Holmes sat up again. + + "Burglary! This is more interesting. Let me hear the details." + + Lestrade took out his official note-book and refreshed his memory + from its pages. + + "The first case reported was four days ago," said he. "It was at the + shop of Morse Hudson, who has a place for the sale of pictures and + statues in the Kennington Road. The assistant had left the front shop + for an instant when he heard a crash, and hurrying in he found a + plaster bust of Napoleon, which stood with several other works of art + upon the counter, lying shivered into fragments. He rushed out into + the road, but, although several passers-by declared that they had + noticed a man run out of the shop, he could neither see anyone nor + could he find any means of identifying the rascal. It seemed to be + one of those senseless acts of Hooliganism which occur from time to + time, and it was reported to the constable on the beat as such. The + plaster cast was not worth more than a few shillings, and the whole + affair appeared to be too childish for any particular investigation. + + "The second case, however, was more serious and also more singular. + It occurred only last night. + + "In Kennington Road, and within a few hundred yards of Morse Hudson's + shop, there lives a well-known medical practitioner, named Dr. + Barnicot, who has one of the largest practices upon the south side of + the Thames. His residence and principal consulting-room is at + Kennington Road, but he has a branch surgery and dispensary at Lower + Brixton Road, two miles away. This Dr. Barnicot is an enthusiastic + admirer of Napoleon, and his house is full of books, pictures, and + relics of the French Emperor. Some little time ago he purchased from + Morse Hudson two duplicate plaster casts of the famous head of + Napoleon by the French sculptor, Devine. One of these he placed in + his hall in the house at Kennington Road, and the other on the + mantelpiece of the surgery at Lower Brixton. Well, when Dr. Barnicot + came down this morning he was astonished to find that his house had + been burgled during the night, but that nothing had been taken save + the plaster head from the hall. It had been carried out and had been + dashed savagely against the garden wall, under which its splintered + fragments were discovered." + + Holmes rubbed his hands. + + "This is certainly very novel," said he. + + "I thought it would please you. But I have not got to the end yet. + Dr. Barnicot was due at his surgery at twelve o'clock, and you can + imagine his amazement when, on arriving there, he found that the + window had been opened in the night, and that the broken pieces of + his second bust were strewn all over the room. It had been smashed to + atoms where it stood. In neither case were there any signs which + could give us a clue as to the criminal or lunatic who had done the + mischief. Now, Mr. Holmes, you have got the facts." + + "They are singular, not to say grotesque," said Holmes. "May I ask + whether the two busts smashed in Dr. Barnicot's rooms were the exact + duplicates of the one which was destroyed in Morse Hudson's shop?" + + "They were taken from the same mould." + + "Such a fact must tell against the theory that the man who breaks + them is influenced by any general hatred of Napoleon. Considering how + many hundreds of statues of the great Emperor must exist in London, + it is too much to suppose such a coincidence as that a promiscuous + iconoclast should chance to begin upon three specimens of the same + bust." + + "Well, I thought as you do," said Lestrade. "On the other hand, this + Morse Hudson is the purveyor of busts in that part of London, and + these three were the only ones which had been in his shop for years. + So, although, as you say, there are many hundreds of statues in + London, it is very probable that these three were the only ones in + that district. Therefore, a local fanatic would begin with them. What + do you think, Dr. Watson?" + + "There are no limits to the possibilities of monomania," I answered. + "There is the condition which the modern French psychologists have + called the 'idée fixe,' which may be trifling in character, and + accompanied by complete sanity in every other way. A man who had read + deeply about Napoleon, or who had possibly received some hereditary + family injury through the great war, might conceivably form such an + idée fixe and under its influence be capable of any fantastic + outrage." + + "That won't do, my dear Watson," said Holmes, shaking his head; "for + no amount of idée fixe would enable your interesting monomaniac to + find out where these busts were situated." + + "Well, how do you explain it?" + + "I don't attempt to do so. I would only observe that there is a + certain method in the gentleman's eccentric proceedings. For example, + in Dr. Barnicot's hall, where a sound might arouse the family, the + bust was taken outside before being broken, whereas in the surgery, + where there was less danger of an alarm, it was smashed where it + stood. The affair seems absurdly trifling, and yet I dare call + nothing trivial when I reflect that some of my most classic cases + have had the least promising commencement. You will remember, Watson, + how the dreadful business of the Abernetty family was first brought + to my notice by the depth which the parsley had sunk into the butter + upon a hot day. I can't afford, therefore, to smile at your three + broken busts, Lestrade, and I shall be very much obliged to you if + you will let me hear of any fresh developments of so singular a chain + of events." + + The development for which my friend had asked came in a quicker and + an infinitely more tragic form than he could have imagined. I was + still dressing in my bedroom next morning when there was a tap at the + door and Holmes entered, a telegram in his hand. He read it aloud: + + "Come instantly, 131, Pitt Street, Kensington. + "Lestrade." + + "What is it, then?" I asked. + + "Don't know--may be anything. But I suspect it is the sequel of the + story of the statues. In that case our friend, the image-breaker, has + begun operations in another quarter of London. There's coffee on the + table, Watson, and I have a cab at the door." + + In half an hour we had reached Pitt Street, a quiet little backwater + just beside one of the briskest currents of London life. No. 131 was + one of a row, all flat-chested, respectable, and most unromantic + dwellings. As we drove up we found the railings in front of the house + lined by a curious crowd. Holmes whistled. + + "By George! it's attempted murder at the least. Nothing less will + hold the London message-boy. There's a deed of violence indicated in + that fellow's round shoulders and outstretched neck. What's this, + Watson? The top steps swilled down and the other ones dry. Footsteps + enough, anyhow! Well, well, there's Lestrade at the front window, and + we shall soon know all about it." + + The official received us with a very grave face and showed us into a + sitting-room, where an exceedingly unkempt and agitated elderly man, + clad in a flannel dressing-gown, was pacing up and down. He was + introduced to us as the owner of the house--Mr. Horace Harker, of the + Central Press Syndicate. + + "It's the Napoleon bust business again," said Lestrade. "You seemed + interested last night, Mr. Holmes, so I thought perhaps you would be + glad to be present now that the affair has taken a very much graver + turn." + + "What has it turned to, then?" + + "To murder. Mr. Harker, will you tell these gentlemen exactly what + has occurred?" + + The man in the dressing-gown turned upon us with a most melancholy + face. + + "It's an extraordinary thing," said he, "that all my life I have been + collecting other people's news, and now that a real piece of news has + come my own way I am so confused and bothered that I can't put two + words together. If I had come in here as a journalist I should have + interviewed myself and had two columns in every evening paper. As it + is I am giving away valuable copy by telling my story over and over + to a string of different people, and I can make no use of it myself. + However, I've heard your name, Mr. Sherlock Holmes, and if you'll + only explain this queer business I shall be paid for my trouble in + telling you the story." + + Holmes sat down and listened. + + "It all seems to centre round that bust of Napoleon which I bought + for this very room about four months ago. I picked it up cheap from + Harding Brothers, two doors from the High Street Station. A great + deal of my journalistic work is done at night, and I often write + until the early morning. So it was to-day. I was sitting in my den, + which is at the back of the top of the house, about three o'clock, + when I was convinced that I heard some sounds downstairs. I listened, + but they were not repeated, and I concluded that they came from + outside. Then suddenly, about five minutes later, there came a most + horrible yell--the most dreadful sound, Mr. Holmes, that ever I + heard. It will ring in my ears as long as I live. I sat frozen with + horror for a minute or two. Then I seized the poker and went + downstairs. When I entered this room I found the window wide open, + and I at once observed that the bust was gone from the mantelpiece. + Why any burglar should take such a thing passes my understanding, for + it was only a plaster cast and of no real value whatever. + + "You can see for yourself that anyone going out through that open + window could reach the front doorstep by taking a long stride. This + was clearly what the burglar had done, so I went round and opened the + door. Stepping out into the dark I nearly fell over a dead man who + was lying there. I ran back for a light, and there was the poor + fellow, a great gash in his throat and the whole place swimming in + blood. He lay on his back, his knees drawn up, and his mouth horribly + open. I shall see him in my dreams. I had just time to blow on my + police-whistle, and then I must have fainted, for I knew nothing more + until I found the policeman standing over me in the hall." + + "Well, who was the murdered man?" asked Holmes. + + "There's nothing to show who he was," said Lestrade. "You shall see + the body at the mortuary, but we have made nothing of it up to now. + He is a tall man, sunburned, very powerful, not more than thirty. He + is poorly dressed, and yet does not appear to be a labourer. A + horn-handled clasp knife was lying in a pool of blood beside him. + Whether it was the weapon which did the deed, or whether it belonged + to the dead man, I do not know. There was no name on his clothing, + and nothing in his pockets save an apple, some string, a shilling map + of London, and a photograph. Here it is." + + It was evidently taken by a snap-shot from a small camera. It + represented an alert, sharp-featured simian man with thick eyebrows, + and a very peculiar projection of the lower part of the face like the + muzzle of a baboon. + + "And what became of the bust?" asked Holmes, after a careful study of + this picture. + + "We had news of it just before you came. It has been found in the + front garden of an empty house in Campden House Road. It was broken + into fragments. I am going round now to see it. Will you come?" + + "Certainly. I must just take one look round." He examined the carpet + and the window. "The fellow had either very long legs or was a most + active man," said he. "With an area beneath, it was no mean feat to + reach that window-ledge and open that window. Getting back was + comparatively simple. Are you coming with us to see the remains of + your bust, Mr. Harker?" + + The disconsolate journalist had seated himself at a writing-table. + + "I must try and make something of it," said he, "though I have no + doubt that the first editions of the evening papers are out already + with full details. It's like my luck! You remember when the stand + fell at Doncaster? Well, I was the only journalist in the stand, and + my journal the only one that had no account of it, for I was too + shaken to write it. And now I'll be too late with a murder done on my + own doorstep." + + As we left the room we heard his pen travelling shrilly over the + foolscap. + + The spot where the fragments of the bust had been found was only a + few hundred yards away. For the first time our eyes rested upon this + presentment of the great Emperor, which seemed to raise such frantic + and destructive hatred in the mind of the unknown. It lay scattered + in splintered shards upon the grass. Holmes picked up several of them + and examined them carefully. I was convinced from his intent face and + his purposeful manner that at last he was upon a clue. + + "Well?" asked Lestrade. + + Holmes shrugged his shoulders. + + "We have a long way to go yet," said he. "And yet--and yet--well, we + have some suggestive facts to act upon. The possession of this + trifling bust was worth more in the eyes of this strange criminal + than a human life. That is one point. Then there is the singular fact + that he did not break it in the house, or immediately outside the + house, if to break it was his sole object." + + "He was rattled and bustled by meeting this other fellow. He hardly + knew what he was doing." + + "Well, that's likely enough. But I wish to call your attention very + particularly to the position of this house in the garden of which the + bust was destroyed." + + Lestrade looked about him. + + "It was an empty house, and so he knew that he would not be disturbed + in the garden." + + "Yes, but there is another empty house farther up the street which he + must have passed before he came to this one. Why did he not break it + there, since it is evident that every yard that he carried it + increased the risk of someone meeting him?" + + "I give it up," said Lestrade. + + Holmes pointed to the street lamp above our heads. + + "He could see what he was doing here and he could not there. That was + his reason." + + "By Jove! that's true," said the detective. "Now that I come to think + of it, Dr. Barnicot's bust was broken not far from his red lamp. + Well, Mr. Holmes, what are we to do with that fact?" + + "To remember it--to docket it. We may come on something later which + will bear upon it. What steps do you propose to take now, Lestrade?" + + "The most practical way of getting at it, in my opinion, is to + identify the dead man. There should be no difficulty about that. When + we have found who he is and who his associates are, we should have a + good start in learning what he was doing in Pitt Street last night, + and who it was who met him and killed him on the doorstep of Mr. + Horace Harker. Don't you think so?" + + "No doubt; and yet it is not quite the way in which I should approach + the case." + + "What would you do, then?" + + "Oh, you must not let me influence you in any way! I suggest that you + go on your line and I on mine. We can compare notes afterwards, and + each will supplement the other." + + "Very good," said Lestrade. + + "If you are going back to Pitt Street you might see Mr. Horace + Harker. Tell him from me that I have quite made up my mind, and that + it is certain that a dangerous homicidal lunatic with Napoleonic + delusions was in his house last night. It will be useful for his + article." + + Lestrade stared. + + "You don't seriously believe that?" + + Holmes smiled. + + "Don't I? Well, perhaps I don't. But I am sure that it will interest + Mr. Horace Harker and the subscribers of the Central Press Syndicate. + Now, Watson, I think that we shall find that we have a long and + rather complex day's work before us. I should be glad, Lestrade, if + you could make it convenient to meet us at Baker Street at six + o'clock this evening. Until then I should like to keep this + photograph found in the dead man's pocket. It is possible that I may + have to ask your company and assistance upon a small expedition which + will have be undertaken to-night, if my chain of reasoning should + prove to be correct. Until then, good-bye and good luck!" + + Sherlock Holmes and I walked together to the High Street, where he + stopped at the shop of Harding Brothers, whence the bust had been + purchased. A young assistant informed us that Mr. Harding would be + absent until after noon, and that he was himself a newcomer who could + give us no information. Holmes's face showed his disappointment and + annoyance. + + "Well, well, we can't expect to have it all our own way, Watson," he + said, at last. "We must come back in the afternoon if Mr. Harding + will not be here until then. I am, as you have no doubt surmised, + endeavouring to trace these busts to their source, in order to find + if there is not something peculiar which may account for their + remarkable fate. Let us make for Mr. Morse Hudson, of the Kennington + Road, and see if he can throw any light upon the problem." + + A drive of an hour brought us to the picture-dealer's establishment. + He was a small, stout man with a red face and a peppery manner. + + "Yes, sir. On my very counter, sir," said he. "What we pay rates and + taxes for I don't know, when any ruffian can come in and break one's + goods. Yes, sir, it was I who sold Dr. Barnicot his two statues. + Disgraceful, sir! A Nihilist plot, that's what I make it. No one but + an Anarchist would go about breaking statues. Red republicans, that's + what I call 'em. Who did I get the statues from? I don't see what + that has to do with it. Well, if you really want to know, I got them + from Gelder & Co., in Church Street, Stepney. They are a well-known + house in the trade, and have been this twenty years. How many had I? + Three--two and one are three--two of Dr. Barnicot's and one smashed + in broad daylight on my own counter. Do I know that photograph? No, I + don't. Yes, I do, though. Why, it's Beppo. He was a kind of Italian + piece-work man, who made himself useful in the shop. He could carve a + bit and gild and frame, and do odd jobs. The fellow left me last + week, and I've heard nothing of him since. No, I don't know where he + came from nor where he went to. I have nothing against him while he + was here. He was gone two days before the bust was smashed." + + "Well, that's all we could reasonably expect to get from Morse + Hudson," said Holmes, as we emerged from the shop. "We have this + Beppo as a common factor, both in Kennington and in Kensington, so + that is worth a ten-mile drive. Now, Watson, let us make for Gelder & + Co., of Stepney, the source and origin of busts. I shall be surprised + if we don't get some help down there." + + In rapid succession we passed through the fringe of fashionable + London, hotel London, theatrical London, literary London, commercial + London, and, finally, maritime London, till we came to a riverside + city of a hundred thousand souls, where the tenement houses swelter + and reek with the outcasts of Europe. Here, in a broad thoroughfare, + once the abode of wealthy City merchants, we found the sculpture + works for which we searched. Outside was a considerable yard full of + monumental masonry. Inside was a large room in which fifty workers + were carving or moulding. The manager, a big blond German, received + us civilly, and gave a clear answer to all Holmes's questions. A + reference to his books showed that hundreds of casts had been taken + from a marble copy of Devine's head of Napoleon, but that the three + which had been sent to Morse Hudson a year or so before had been half + of a batch of six, the other three being sent to Harding Brothers, of + Kensington. There was no reason why those six should be different to + any of the other casts. He could suggest no possible cause why anyone + should wish to destroy them--in fact, he laughed at the idea. Their + wholesale price was six shillings, but the retailer would get twelve + or more. The cast was taken in two moulds from each side of the face, + and then these two profiles of plaster of Paris were joined together + to make the complete bust. The work was usually done by Italians in + the room we were in. When finished the busts were put on a table in + the passage to dry, and afterwards stored. That was all he could tell + us. + + But the production of the photograph had a remarkable effect upon the + manager. His face flushed with anger, and his brows knotted over his + blue Teutonic eyes. + + "Ah, the rascal!" he cried. "Yes, indeed, I know him very well. This + has always been a respectable establishment, and the only time that + we have ever had the police in it was over this very fellow. It was + more than a year ago now. He knifed another Italian in the street, + and then he came to the works with the police on his heels, and he + was taken here. Beppo was his name--his second name I never knew. + Serve me right for engaging a man with such a face. But he was a good + workman, one of the best." + + "What did he get?" + + "The man lived and he got off with a year. I have no doubt he is out + now; but he has not dared to show his nose here. We have a cousin of + his here, and I dare say he could tell you where he is." + + "No, no," cried Holmes, "not a word to the cousin--not a word, I beg + you. The matter is very important, and the farther I go with it the + more important it seems to grow. When you referred in your ledger to + the sale of those casts I observed that the date was June 3rd of last + year. Could you give me the date when Beppo was arrested?" + + "I could tell you roughly by the pay-list," the manager answered. + "Yes," he continued, after some turning over of pages, "he was paid + last on May 20th." + + "Thank you," said Holmes. "I don't think that I need intrude upon + your time and patience any more." With a last word of caution that he + should say nothing as to our researches we turned our faces westward + once more. + + The afternoon was far advanced before we were able to snatch a hasty + luncheon at a restaurant. A news-bill at the entrance announced + "Kensington Outrage. Murder by a Madman," and the contents of the + paper showed that Mr. Horace Harker had got his account into print + after all. Two columns were occupied with a highly sensational and + flowery rendering of the whole incident. Holmes propped it against + the cruet-stand and read it while he ate. Once or twice he chuckled. + + "This is all right, Watson," said he. "Listen to this: + + "It is satisfactory to know that there can be no difference of + opinion upon this case, since Mr. Lestrade, one of the most + experienced members of the official force, and Mr. Sherlock Holmes, + the well-known consulting expert, have each come to the conclusion + that the grotesque series of incidents, which have ended in so tragic + a fashion, arise from lunacy rather than from deliberate crime. No + explanation save mental aberration can cover the facts. + + "The Press, Watson, is a most valuable institution if you only know + how to use it. And now, if you have quite finished, we will hark back + to Kensington and see what the manager of Harding Brothers has to say + to the matter." + + The founder of that great emporium proved to be a brisk, crisp little + person, very dapper and quick, with a clear head and a ready tongue. + + "Yes, sir, I have already read the account in the evening papers. Mr. + Horace Harker is a customer of ours. We supplied him with the bust + some months ago. We ordered three busts of that sort from Gelder & + Co., of Stepney. They are all sold now. To whom? Oh, I dare say by + consulting our sales book we could very easily tell you. Yes, we have + the entries here. One to Mr. Harker, you see, and one to Mr. Josiah + Brown, of Laburnum Lodge, Laburnum Vale, Chiswick, and one to Mr. + Sandeford, of Lower Grove Road, Reading. No, I have never seen this + face which you show me in the photograph. You would hardly forget it, + would you, sir, for I've seldom seen an uglier. Have we any Italians + on the staff? Yes, sir, we have several among our workpeople and + cleaners. I dare say they might get a peep at that sales book if they + wanted to. There is no particular reason for keeping a watch upon + that book. Well, well, it's a very strange business, and I hope that + you'll let me know if anything comes of your inquiries." + + Holmes had taken several notes during Mr. Harding's evidence, and I + could see that he was thoroughly satisfied by the turn which affairs + were taking. He made no remark, however, save that, unless we + hurried, we should be late for our appointment with Lestrade. Sure + enough, when we reached Baker Street the detective was already there, + and we found him pacing up and down in a fever of impatience. His + look of importance showed that his day's work had not been in vain. + + "Well?" he asked. "What luck, Mr. Holmes?" + + "We have had a very busy day, and not entirely a wasted one," my + friend explained. "We have seen both the retailers and also the + wholesale manufacturers. I can trace each of the busts now from the + beginning." + + "The busts!" cried Lestrade. "Well, well, you have your own methods, + Mr. Sherlock Holmes, and it is not for me to say a word against them, + but I think I have done a better day's work than you. I have + identified the dead man." + + "You don't say so?" + + "And found a cause for the crime." + + "Splendid!" + + "We have an inspector who makes a specialty of Saffron Hill and the + Italian quarter. Well, this dead man had some Catholic emblem round + his neck, and that, along with his colour, made me think he was from + the South. Inspector Hill knew him the moment he caught sight of him. + His name is Pietro Venucci, from Naples, and he is one of the + greatest cut-throats in London. He is connected with the Mafia, + which, as you know, is a secret political society, enforcing its + decrees by murder. Now you see how the affair begins to clear up. The + other fellow is probably an Italian also, and a member of the Mafia. + He has broken the rules in some fashion. Pietro is set upon his + track. Probably the photograph we found in his pocket is the man + himself, so that he may not knife the wrong person. He dogs the + fellow, he sees him enter a house, he waits outside for him, and in + the scuffle he receives his own death-wound. How is that, Mr. + Sherlock Holmes?" + + Holmes clapped his hands approvingly. + + "Excellent, Lestrade, excellent!" he cried. "But I didn't quite + follow your explanation of the destruction of the busts." + + "The busts! You never can get those busts out of your head. After + all, that is nothing; petty larceny, six months at the most. It is + the murder that we are really investigating, and I tell you that I am + gathering all the threads into my hands." + + "And the next stage?" + + "Is a very simple one. I shall go down with Hill to the Italian + quarter, find the man whose photograph we have got, and arrest him on + the charge of murder. Will you come with us?" + + "I think not. I fancy we can attain our end in a simpler way. I can't + say for certain, because it all depends--well, it all depends upon a + factor which is completely outside our control. But I have great + hopes--in fact, the betting is exactly two to one--that if you will + come with us to-night I shall be able to help you to lay him by the + heels." + + "In the Italian quarter?" + + "No; I fancy Chiswick is an address which is more likely to find him. + If you will come with me to Chiswick to-night, Lestrade, I'll promise + to go to the Italian quarter with you to-morrow, and no harm will be + done by the delay. And now I think that a few hours' sleep would do + us all good, for I do not propose to leave before eleven o'clock, and + it is unlikely that we shall be back before morning. You'll dine with + us, Lestrade, and then you are welcome to the sofa until it is time + for us to start. In the meantime, Watson, I should be glad if you + would ring for an express messenger, for I have a letter to send, and + it is important that it should go at once." + + Holmes spent the evening in rummaging among the files of the old + daily papers with which one of our lumber-rooms was packed. When at + last he descended it was with triumph in his eyes, but he said + nothing to either of us as to the result of his researches. For my + own part, I had followed step by step the methods by which he had + traced the various windings of this complex case, and, though I could + not yet perceive the goal which we would reach, I understood clearly + that Holmes expected this grotesque criminal to make an attempt upon + the two remaining busts, one of which, I remembered, was at Chiswick. + No doubt the object of our journey was to catch him in the very act, + and I could not but admire the cunning with which my friend had + inserted a wrong clue in the evening paper, so as to give the fellow + the idea that he could continue his scheme with impunity. I was not + surprised when Holmes suggested that I should take my revolver with + me. He had himself picked up the loaded hunting-crop which was his + favourite weapon. + + A four-wheeler was at the door at eleven, and in it we drove to a + spot at the other side of Hammersmith Bridge. Here the cabman was + directed to wait. A short walk brought us to a secluded road fringed + with pleasant houses, each standing in its own grounds. In the light + of a street lamp we read "Laburnum Villa" upon the gate-post of one + of them. The occupants had evidently retired to rest, for all was + dark save for a fanlight over the hall door, which shed a single + blurred circle on to the garden path. The wooden fence which + separated the grounds from the road threw a dense black shadow upon + the inner side, and here it was that we crouched. + + "I fear that you'll have a long wait," Holmes whispered. "We may + thank our stars that it is not raining. I don't think we can even + venture to smoke to pass the time. However, it's a two to one chance + that we get something to pay us for our trouble." + + It proved, however, that our vigil was not to be so long as Holmes + had led us to fear, and it ended in a very sudden and singular + fashion. In an instant, without the least sound to warn us of his + coming, the garden gate swung open, and a lithe, dark figure, as + swift and active as an ape, rushed up the garden path. We saw it + whisk past the light thrown from over the door and disappear against + the black shadow of the house. There was a long pause, during which + we held our breath, and then a very gentle creaking sound came to our + ears. The window was being opened. The noise ceased, and again there + was a long silence. The fellow was making his way into the house. We + saw the sudden flash of a dark lantern inside the room. What he + sought was evidently not there, for again we saw the flash through + another blind, and then through another. + + "Let us get to the open window. We will nab him as he climbs out," + Lestrade whispered. + + But before we could move the man had emerged again. As he came out + into the glimmering patch of light we saw that he carried something + white under his arm. He looked stealthily all round him. The silence + of the deserted street reassured him. Turning his back upon us he + laid down his burden, and the next instant there was the sound of a + sharp tap, followed by a clatter and rattle. The man was so intent + upon what he was doing that he never heard our steps as we stole + across the grass plot. With the bound of a tiger Holmes was on his + back, and an instant later Lestrade and I had him by either wrist and + the handcuffs had been fastened. As we turned him over I saw a + hideous, sallow face, with writhing, furious features, glaring up at + us, and I knew that it was indeed the man of the photograph whom we + had secured. + + But it was not our prisoner to whom Holmes was giving his attention. + Squatted on the doorstep, he was engaged in most carefully examining + that which the man had brought from the house. It was a bust of + Napoleon like the one which we had seen that morning, and it had been + broken into similar fragments. Carefully Holmes held each separate + shard to the light, but in no way did it differ from any other + shattered piece of plaster. He had just completed his examination + when the hall lights flew up, the door opened, and the owner of the + house, a jovial, rotund figure in shirt and trousers, presented + himself. + + "Mr. Josiah Brown, I suppose?" said Holmes. + + "Yes, sir; and you, no doubt, are Mr. Sherlock Holmes? I had the note + which you sent by the express messenger, and I did exactly what you + told me. We locked every door on the inside and awaited developments. + Well, I'm very glad to see that you have got the rascal. I hope, + gentlemen, that you will come in and have some refreshment." + + However, Lestrade was anxious to get his man into safe quarters, so + within a few minutes our cab had been summoned and we were all four + upon our way to London. Not a word would our captive say; but he + glared at us from the shadow of his matted hair, and once, when my + hand seemed within his reach, he snapped at it like a hungry wolf. We + stayed long enough at the police-station to learn that a search of + his clothing revealed nothing save a few shillings and a long sheath + knife, the handle of which bore copious traces of recent blood. + + "That's all right," said Lestrade, as we parted. "Hill knows all + these gentry, and he will give a name to him. You'll find that my + theory of the Mafia will work out all right. But I'm sure I am + exceedingly obliged to you, Mr. Holmes, for the workmanlike way in + which you laid hands upon him. I don't quite understand it all yet." + + "I fear it is rather too late an hour for explanations," said Holmes. + "Besides, there are one or two details which are not finished off, + and it is one of those cases which are worth working out to the very + end. If you will come round once more to my rooms at six o'clock + to-morrow I think I shall be able to show you that even now you have + not grasped the entire meaning of this business, which presents some + features which make it absolutely original in the history of crime. + If ever I permit you to chronicle any more of my little problems, + Watson, I foresee that you will enliven your pages by an account of + the singular adventure of the Napoleonic busts." + + When we met again next evening Lestrade was furnished with much + information concerning our prisoner. His name, it appeared, was + Beppo, second name unknown. He was a well-known ne'er-do-well among + the Italian colony. He had once been a skilful sculptor and had + earned an honest living, but he had taken to evil courses and had + twice already been in jail--once for a petty theft and once, as we + had already heard, for stabbing a fellow-countryman. He could talk + English perfectly well. His reasons for destroying the busts were + still unknown, and he refused to answer any questions upon the + subject; but the police had discovered that these same busts might + very well have been made by his own hands, since he was engaged in + this class of work at the establishment of Gelder & Co. To all this + information, much of which we already knew, Holmes listened with + polite attention; but I, who knew him so well, could clearly see that + his thoughts were elsewhere, and I detected a mixture of mingled + uneasiness and expectation beneath that mask which he was wont to + assume. At last he started in his chair and his eyes brightened. + There had been a ring at the bell. A minute later we heard steps upon + the stairs, and an elderly, red-faced man with grizzled side-whiskers + was ushered in. In his right hand he carried an old-fashioned + carpet-bag, which he placed upon the table. + + "Is Mr. Sherlock Holmes here?" + + My friend bowed and smiled. "Mr. Sandeford, of Reading, I suppose?" + said he. + + "Yes, sir, I fear that I am a little late; but the trains were + awkward. You wrote to me about a bust that is in my possession." + + "Exactly." + + "I have your letter here. You said, 'I desire to possess a copy of + Devine's Napoleon, and am prepared to pay you ten pounds for the one + which is in your possession.' Is that right?" + + "Certainly." + + "I was very much surprised at your letter, for I could not imagine + how you knew that I owned such a thing." + + "Of course you must have been surprised, but the explanation is very + simple. Mr. Harding, of Harding Brothers, said that they had sold you + their last copy, and he gave me your address." + + "Oh, that was it, was it? Did he tell you what I paid for it?" + + "No, he did not." + + "Well, I am an honest man, though not a very rich one. I only gave + fifteen shillings for the bust, and I think you ought to know that + before I take ten pounds from you." + + "I am sure the scruple does you honour, Mr. Sandeford. But I have + named that price, so I intend to stick to it." + + "Well, it is very handsome of you, Mr. Holmes. I brought the bust up + with me, as you asked me to do. Here it is!" He opened his bag, and + at last we saw placed upon our table a complete specimen of that bust + which we had already seen more than once in fragments. + + Holmes took a paper from his pocket and laid a ten-pound note upon + the table. + + "You will kindly sign that paper, Mr. Sandeford, in the presence of + these witnesses. It is simply to say that you transfer every possible + right that you ever had in the bust to me. I am a methodical man, you + see, and you never know what turn events might take afterwards. Thank + you, Mr. Sandeford; here is your money, and I wish you a very good + evening." + + When our visitor had disappeared Sherlock Holmes's movements were + such as to rivet our attention. He began by taking a clean white + cloth from a drawer and laying it over the table. Then he placed his + newly-acquired bust in the centre of the cloth. Finally, he picked up + his hunting-crop and struck Napoleon a sharp blow on the top of the + head. The figure broke into fragments, and Holmes bent eagerly over + the shattered remains. Next instant, with a loud shout of triumph, he + held up one splinter, in which a round, dark object was fixed like a + plum in a pudding. + + "Gentlemen," he cried, "let me introduce you to the famous black + pearl of the Borgias." + + Lestrade and I sat silent for a moment, and then, with a spontaneous + impulse, we both broke out clapping as at the well-wrought crisis of + a play. A flush of colour sprang to Holmes's pale cheeks, and he + bowed to us like the master dramatist who receives the homage of his + audience. It was at such moments that for an instant he ceased to be + a reasoning machine, and betrayed his human love for admiration and + applause. The same singularly proud and reserved nature which turned + away with disdain from popular notoriety was capable of being moved + to its depths by spontaneous wonder and praise from a friend. + + "Yes, gentlemen," said he, "it is the most famous pearl now existing + in the world, and it has been my good fortune, by a connected chain + of inductive reasoning, to trace it from the Prince of Colonna's + bedroom at the Dacre Hotel, where it was lost, to the interior of + this, the last of the six busts of Napoleon which were manufactured + by Gelder & Co., of Stepney. You will remember, Lestrade, the + sensation caused by the disappearance of this valuable jewel, and the + vain efforts of the London police to recover it. I was myself + consulted upon the case; but I was unable to throw any light upon it. + Suspicion fell upon the maid of the Princess, who was an Italian, and + it was proved that she had a brother in London, but we failed to + trace any connection between them. The maid's name was Lucretia + Venucci, and there is no doubt in my mind that this Pietro who was + murdered two nights ago was the brother. I have been looking up the + dates in the old files of the paper, and I find that the + disappearance of the pearl was exactly two days before the arrest of + Beppo for some crime of violence, an event which took place in the + factory of Gelder & Co., at the very moment when these busts were + being made. Now you clearly see the sequence of events, though you + see them, of course, in the inverse order to the way in which they + presented themselves to me. Beppo had the pearl in his possession. He + may have stolen it from Pietro, he may have been Pietro's + confederate, he may have been the go-between of Pietro and his + sister. It is of no consequence to us which is the correct solution. + + "The main fact is that he had the pearl, and at that moment, when it + was on his person, he was pursued by the police. He made for the + factory in which he worked, and he knew that he had only a few + minutes in which to conceal this enormously valuable prize, which + would otherwise be found on him when he was searched. Six plaster + casts of Napoleon were drying in the passage. One of them was still + soft. In an instant Beppo, a skilful workman, made a small hole in + the wet plaster, dropped in the pearl, and with a few touches covered + over the aperture once more. It was an admirable hiding-place. No one + could possibly find it. But Beppo was condemned to a year's + imprisonment, and in the meanwhile his six busts were scattered over + London. He could not tell which contained his treasure. Only by + breaking them could he see. Even shaking would tell him nothing, for + as the plaster was wet it was probable that the pearl would adhere to + it--as, in fact, it has done. Beppo did not despair, and he conducted + his search with considerable ingenuity and perseverance. Through a + cousin who works with Gelder he found out the retail firms who had + bought the busts. He managed to find employment with Morse Hudson, + and in that way tracked down three of them. The pearl was not there. + Then, with the help of some Italian employe, he succeeded in finding + out where the other three busts had gone. The first was at Harker's. + There he was dogged by his confederate, who held Beppo responsible + for the loss of the pearl, and he stabbed him in the scuffle which + followed." + + "If he was his confederate why should he carry his photograph?" I + asked. + + "As a means of tracing him if he wished to inquire about him from any + third person. That was the obvious reason. Well, after the murder I + calculated that Beppo would probably hurry rather than delay his + movements. He would fear that the police would read his secret, and + so he hastened on before they should get ahead of him. Of course, I + could not say that he had not found the pearl in Harker's bust. I had + not even concluded for certain that it was the pearl; but it was + evident to me that he was looking for something, since he carried the + bust past the other houses in order to break it in the garden which + had a lamp overlooking it. Since Harker's bust was one in three the + chances were exactly as I told you, two to one against the pearl + being inside it. There remained two busts, and it was obvious that he + would go for the London one first. I warned the inmates of the house, + so as to avoid a second tragedy, and we went down with the happiest + results. By that time, of course, I knew for certain that it was the + Borgia pearl that we were after. The name of the murdered man linked + the one event with the other. There only remained a single bust--the + Reading one--and the pearl must be there. I bought it in your + presence from the owner--and there it lies." + + We sat in silence for a moment. + + "Well," said Lestrade, "I've seen you handle a good many cases, Mr. + Holmes, but I don't know that I ever knew a more workmanlike one than + that. We're not jealous of you at Scotland Yard. No, sir, we are very + proud of you, and if you come down to-morrow there's not a man, from + the oldest inspector to the youngest constable, who wouldn't be glad + to shake you by the hand." + + "Thank you!" said Holmes. "Thank you!" and as he turned away it + seemed to me that he was more nearly moved by the softer human + emotions than I had ever seen him. A moment later he was the cold and + practical thinker once more. "Put the pearl in the safe, Watson," + said he, "and get out the papers of the Conk-Singleton forgery case. + Good-bye, Lestrade. If any little problem comes your way I shall be + happy, if I can, to give you a hint or two as to its solution." + + + + + + + THE ADVENTURE OF THE THREE STUDENTS + + It was in the year '95 that a combination of events, into which I + need not enter, caused Mr. Sherlock Holmes and myself to spend some + weeks in one of our great University towns, and it was during this + time that the small but instructive adventure which I am about to + relate befell us. It will be obvious that any details which would + help the reader to exactly identify the college or the criminal would + be injudicious and offensive. So painful a scandal may well be + allowed to die out. With due discretion the incident itself may, + however, be described, since it serves to illustrate some of those + qualities for which my friend was remarkable. I will endeavour in my + statement to avoid such terms as would serve to limit the events to + any particular place, or give a clue as to the people concerned. + + We were residing at the time in furnished lodgings close to a library + where Sherlock Holmes was pursuing some laborious researches in early + English charters--researches which led to results so striking that + they may be the subject of one of my future narratives. Here it was + that one evening we received a visit from an acquaintance, Mr. Hilton + Soames, tutor and lecturer at the College of St. Luke's. Mr. Soames + was a tall, spare man, of a nervous and excitable temperament. I had + always known him to be restless in his manner, but on this particular + occasion he was in such a state of uncontrollable agitation that it + was clear something very unusual had occurred. + + "I trust, Mr. Holmes, that you can spare me a few hours of your + valuable time. We have had a very painful incident at St. Luke's, and + really, but for the happy chance of your being in the town, I should + have been at a loss what to do." + + "I am very busy just now, and I desire no distractions," my friend + answered. "I should much prefer that you called in the aid of the + police." + + "No, no, my dear sir; such a course is utterly impossible. When once + the law is evoked it cannot be stayed again, and this is just one of + those cases where, for the credit of the college, it is most + essential to avoid scandal. Your discretion is as well known as your + powers, and you are the one man in the world who can help me. I beg + you, Mr. Holmes, to do what you can." + + My friend's temper had not improved since he had been deprived of the + congenial surroundings of Baker Street. Without his scrap-books, his + chemicals, and his homely untidiness, he was an uncomfortable man. He + shrugged his shoulders in ungracious acquiescence, while our visitor + in hurried words and with much excitable gesticulation poured forth + his story. + + "I must explain to you, Mr. Holmes, that to-morrow is the first day + of the examination for the Fortescue Scholarship. I am one of the + examiners. My subject is Greek, and the first of the papers consists + of a large passage of Greek translation which the candidate has not + seen. This passage is printed on the examination paper, and it would + naturally be an immense advantage if the candidate could prepare it + in advance. For this reason great care is taken to keep the paper + secret. + + "To-day about three o'clock the proofs of this paper arrived from the + printers. The exercise consists of half a chapter of Thucydides. I + had to read it over carefully, as the text must be absolutely + correct. At four-thirty my task was not yet completed. I had, + however, promised to take tea in a friend's rooms, so I left the + proof upon my desk. I was absent rather more than an hour. + + "You are aware, Mr. Holmes, that our college doors are double--a + green baize one within and a heavy oak one without. As I approached + my outer door I was amazed to see a key in it. For an instant I + imagined that I had left my own there, but on feeling in my pocket I + found that it was all right. The only duplicate which existed, so far + as I knew, was that which belonged to my servant, Bannister, a man + who has looked after my room for ten years, and whose honesty is + absolutely above suspicion. I found that the key was indeed his, that + he had entered my room to know if I wanted tea, and that he had very + carelessly left the key in the door when he came out. His visit to my + room must have been within a very few minutes of my leaving it. His + forgetfulness about the key would have mattered little upon any other + occasion, but on this one day it has produced the most deplorable + consequences. + + "The moment I looked at my table I was aware that someone had + rummaged among my papers. The proof was in three long slips. I had + left them all together. Now, I found that one of them was lying on + the floor, one was on the side table near the window, and the third + was where I had left it." + + Holmes stirred for the first time. + + "The first page on the floor, the second in the window, the third + where you left it," said he. + + "Exactly, Mr. Holmes. You amaze me. How could you possibly know + that?" + + "Pray continue your very interesting statement." + + "For an instant I imagined that Bannister had taken the unpardonable + liberty of examining my papers. He denied it, however, with the + utmost earnestness, and I am convinced that he was speaking the + truth. The alternative was that someone passing had observed the key + in the door, had known that I was out, and had entered to look at the + papers. A large sum of money is at stake, for the scholarship is a + very valuable one, and an unscrupulous man might very well run a risk + in order to gain an advantage over his fellows. + + "Bannister was very much upset by the incident. He had nearly fainted + when we found that the papers had undoubtedly been tampered with. I + gave him a little brandy and left him collapsed in a chair while I + made a most careful examination of the room. I soon saw that the + intruder had left other traces of his presence besides the rumpled + papers. On the table in the window were several shreds from a pencil + which had been sharpened. A broken tip of lead was lying there also. + Evidently the rascal had copied the paper in a great hurry, had + broken his pencil, and had been compelled to put a fresh point to + it." + + "Excellent!" said Holmes, who was recovering his good-humour as his + attention became more engrossed by the case. "Fortune has been your + friend." + + "This was not all. I have a new writing-table with a fine surface of + red leather. I am prepared to swear, and so is Bannister, that it was + smooth and unstained. Now I found a clean cut in it about three + inches long--not a mere scratch, but a positive cut. Not only this, + but on the table I found a small ball of black dough, or clay, with + specks of something which looks like sawdust in it. I am convinced + that these marks were left by the man who rifled the papers. There + were no footmarks and no other evidence as to his identity. I was at + my wits' ends, when suddenly the happy thought occurred to me that + you were in the town, and I came straight round to put the matter + into your hands. Do help me, Mr. Holmes! You see my dilemma. Either I + must find the man or else the examination must be postponed until + fresh papers are prepared, and since this cannot be done without + explanation there will ensue a hideous scandal, which will throw a + cloud not only on the college, but on the University. Above all + things I desire to settle the matter quietly and discreetly." + + "I shall be happy to look into it and to give you such advice as I + can," said Holmes, rising and putting on his overcoat. "The case is + not entirely devoid of interest. Had anyone visited you in your room + after the papers came to you?" + + "Yes; young Daulat Ras, an Indian student who lives on the same + stair, came in to ask me some particulars about the examination." + + "For which he was entered?" + + "Yes." + + "And the papers were on your table?" + + "To the best of my belief they were rolled up." + + "But might be recognised as proofs?" + + "Possibly." + + "No one else in your room?" + + "No." + + "Did anyone know that these proofs would be there?" + + "No one save the printer." + + "Did this man Bannister know?" + + "No, certainly not. No one knew." + + "Where is Bannister now?" + + "He was very ill, poor fellow. I left him collapsed in the chair. I + was in such a hurry to come to you." + + "You left your door open?" + + "I locked up the papers first." + + "Then it amounts to this, Mr. Soames, that unless the Indian student + recognised the roll as being proofs, the man who tampered with them + came upon them accidentally without knowing that they were there." + + "So it seems to me." + + Holmes gave an enigmatic smile. + + "Well," said he, "let us go round. Not one of your cases, + Watson--mental, not physical. All right; come if you want to. Now, + Mr. Soames--at your disposal!" + + The sitting-room of our client opened by a long, low, latticed + window on to the ancient lichen-tinted court of the old college. A + Gothic arched door led to a worn stone staircase. On the ground floor + was the tutor's room. Above were three students, one on each story. + It was already twilight when we reached the scene of our problem. + Holmes halted and looked earnestly at the window. Then he approached + it, and, standing on tiptoe with his neck craned, he looked into the + room. + + "He must have entered through the door. There is no opening except + the one pane," said our learned guide. + + "Dear me!" said Holmes, and he smiled in a singular way as he glanced + at our companion. "Well, if there is nothing to be learned here we + had best go inside." + + The lecturer unlocked the outer door and ushered us into his room. We + stood at the entrance while Holmes made an examination of the carpet. + + "I am afraid there are no signs here," said he. "One could hardly + hope for any upon so dry a day. Your servant seems to have quite + recovered. You left him in a chair, you say; which chair?" + + "By the window there." + + "I see. Near this little table. You can come in now. I have finished + with the carpet. Let us take the little table first. Of course, what + has happened is very clear. The man entered and took the papers, + sheet by sheet, from the central table. He carried them over to the + window table, because from there he could see if you came across the + courtyard, and so could effect an escape." + + "As a matter of fact he could not," said Soames, "for I entered by + the side door." + + "Ah, that's good! Well, anyhow, that was in his mind. Let me see the + three strips. No finger impressions--no! Well, he carried over this + one first and he copied it. How long would it take him to do that, + using every possible contraction? A quarter of an hour, not less. + Then he tossed it down and seized the next. He was in the midst of + that when your return caused him to make a very hurried retreat--very + hurried, since he had not time to replace the papers which would tell + you that he had been there. You were not aware of any hurrying feet + on the stair as you entered the outer door?" + + "No, I can't say I was." + + "Well, he wrote so furiously that he broke his pencil, and had, as + you observe, to sharpen it again. This is of interest, Watson. The + pencil was not an ordinary one. It was above the usual size, with a + soft lead; the outer colour was dark blue, the maker's name was + printed in silver lettering, and the piece remaining is only about an + inch and a half long. Look for such a pencil, Mr. Soames, and you + have got your man. When I add that he possesses a large and very + blunt knife, you have an additional aid." + + Mr. Soames was somewhat overwhelmed by this flood of information. "I + can follow the other points," said he, "but really, in this matter of + the length--" + + Holmes held out a small chip with the letters NN and a space of clear + wood after them. + + "You see?" + + "No, I fear that even now--" + + "Watson, I have always done you an injustice. There are others. What + could this NN be? It is at the end of a word. You are aware that + Johann Faber is the most common maker's name. Is it not clear that + there is just as much of the pencil left as usually follows the + Johann?" He held the small table sideways to the electric light. "I + was hoping that if the paper on which he wrote was thin some trace of + it might come through upon this polished surface. No, I see nothing. + I don't think there is anything more to be learned here. Now for the + central table. This small pellet is, I presume, the black, doughy + mass you spoke of. Roughly pyramidal in shape and hollowed out, I + perceive. As you say, there appear to be grains of sawdust in it. + Dear me, this is very interesting. And the cut--a positive tear, I + see. It began with a thin scratch and ended in a jagged hole. I am + much indebted to you for directing my attention to this case, Mr. + Soames. Where does that door lead to?" + + "To my bedroom." + + "Have you been in it since your adventure?" + + "No; I came straight away for you." + + "I should like to have a glance round. What a charming, old-fashioned + room! Perhaps you will kindly wait a minute until I have examined the + floor. No, I see nothing. What about this curtain? You hang your + clothes behind it. If anyone were forced to conceal himself in this + room he must do it there, since the bed is too low and the wardrobe + too shallow. No one there, I suppose?" + + As Holmes drew the curtain I was aware, from some little rigidity and + alertness of his attitude, that he was prepared for an emergency. As + a matter of fact the drawn curtain disclosed nothing but three or + four suits of clothes hanging from a line of pegs. Holmes turned away + and stooped suddenly to the floor. + + "Halloa! What's this?" said he. + + It was a small pyramid of black, putty-like stuff, exactly like the + one upon the table of the study. Holmes held it out on his open palm + in the glare of the electric light. + + "Your visitor seems to have left traces in your bedroom as well as in + your sitting-room, Mr. Soames." + + "What could he have wanted there?" + + "I think it is clear enough. You came back by an unexpected way, and + so he had no warning until you were at the very door. What could he + do? He caught up everything which would betray him and he rushed into + your bedroom to conceal himself." + + "Good gracious, Mr. Holmes, do you mean to tell me that all the time + I was talking to Bannister in this room we had the man prisoner if we + had only known it?" + + "So I read it." + + "Surely there is another alternative, Mr. Holmes. I don't know + whether you observed my bedroom window?" + + "Lattice-paned, lead framework, three separate windows, one swinging + on hinge and large enough to admit a man." + + "Exactly. And it looks out on an angle of the courtyard so as to be + partly invisible. The man might have effected his entrance there, + left traces as he passed through the bedroom, and, finally, finding + the door open have escaped that way." + + Holmes shook his head impatiently. + + "Let us be practical," said he. "I understand you to say that there + are three students who use this stair and are in the habit of passing + your door?" + + "Yes, there are." + + "And they are all in for this examination?" + + "Yes." + + "Have you any reason to suspect any one of them more than the + others?" + + Soames hesitated. + + "It is a very delicate question," said he. "One hardly likes to throw + suspicion where there are no proofs." + + "Let us hear the suspicions. I will look after the proofs." + + "I will tell you, then, in a few words the character of the three men + who inhabit these rooms. The lower of the three is Gilchrist, a fine + scholar and athlete; plays in the Rugby team and the cricket team for + the college, and got his Blue for the hurdles and the long jump. He + is a fine, manly fellow. His father was the notorious Sir Jabez + Gilchrist, who ruined himself on the turf. My scholar has been left + very poor, but he is hard-working and industrious. He will do well. + + "The second floor is inhabited by Daulat Ras, the Indian. He is a + quiet, inscrutable fellow, as most of those Indians are. He is well + up in his work, though his Greek is his weak subject. He is steady + and methodical. + + "The top floor belongs to Miles McLaren. He is a brilliant fellow + when he chooses to work--one of the brightest intellects of the + University, but he is wayward, dissipated, and unprincipled. He was + nearly expelled over a card scandal in his first year. He has been + idling all this term, and he must look forward with dread to the + examination." + + "Then it is he whom you suspect?" + + "I dare not go so far as that. But of the three he is perhaps the + least unlikely." + + "Exactly. Now, Mr. Soames, let us have a look at your servant, + Bannister." + + He was a little, white-faced, clean-shaven, grizzly-haired fellow of + fifty. He was still suffering from this sudden disturbance of the + quiet routine of his life. His plump face was twitching with his + nervousness, and his fingers could not keep still. + + "We are investigating this unhappy business, Bannister," said his + master. + + "Yes, sir." + + "I understand," said Holmes, "that you left your key in the door?" + + "Yes, sir." + + "Was it not very extraordinary that you should do this on the very + day when there were these papers inside?" + + "It was most unfortunate, sir. But I have occasionally done the same + thing at other times." + + "When did you enter the room?" + + "It was about half-past four. That is Mr. Soames's tea time." + + "How long did you stay?" + + "When I saw that he was absent I withdrew at once." + + "Did you look at these papers on the table?" + + "No, sir; certainly not." + + "How came you to leave the key in the door?" + + "I had the tea-tray in my hand. I thought I would come back for the + key. Then I forgot." + + "Has the outer door a spring lock?" + + "No, sir." + + "Then it was open all the time?" + + "Yes, sir." + + "Anyone in the room could get out?" + + "Yes, sir." + + "When Mr. Soames returned and called for you, you were very much + disturbed?" + + "Yes, sir. Such a thing has never happened during the many years that + I have been here. I nearly fainted, sir." + + "So I understand. Where were you when you began to feel bad?" + + "Where was I, sir? Why, here, near the door." + + "That is singular, because you sat down in that chair over yonder + near the corner. Why did you pass these other chairs?" + + "I don't know, sir. It didn't matter to me where I sat." + + "I really don't think he knew much about it, Mr. Holmes. He was + looking very bad--quite ghastly." + + "You stayed here when your master left?" + + "Only for a minute or so. Then I locked the door and went to my + room." + + "Whom do you suspect?" + + "Oh, I would not venture to say, sir. I don't believe there is any + gentleman in this University who is capable of profiting by such an + action. No, sir, I'll not believe it." + + "Thank you; that will do," said Holmes. "Oh, one more word. You have + not mentioned to any of the three gentlemen whom you attend that + anything is amiss?" + + "No, sir; not a word." + + "You haven't seen any of them?" + + "No, sir." + + "Very good. Now, Mr. Soames, we will take a walk in the quadrangle, + if you please." + + Three yellow squares of light shone above us in the gathering gloom. + + "Your three birds are all in their nests," said Holmes, looking up. + "Halloa! What's that? One of them seems restless enough." + + It was the Indian, whose dark silhouette appeared suddenly upon his + blind. He was pacing swiftly up and down his room. + + "I should like to have a peep at each of them," said Holmes. "Is it + possible?" + + "No difficulty in the world," Soames answered. "This set of rooms is + quite the oldest in the college, and it is not unusual for visitors + to go over them. Come along, and I will personally conduct you." + + "No names, please!" said Holmes, as we knocked at Gilchrist's door. A + tall, flaxen-haired, slim young fellow opened it, and made us welcome + when he understood our errand. There were some really curious pieces + of mediaeval domestic architecture within. Holmes was so charmed with + one of them that he insisted on drawing it on his note-book, broke + his pencil, had to borrow one from our host, and finally borrowed a + knife to sharpen his own. The same curious accident happened to him + in the rooms of the Indian--a silent, little, hook-nosed fellow, who + eyed us askance and was obviously glad when Holmes's architectural + studies had come to an end. I could not see that in either case + Holmes had come upon the clue for which he was searching. Only at the + third did our visit prove abortive. The outer door would not open to + our knock, and nothing more substantial than a torrent of bad + language came from behind it. "I don't care who you are. You can go + to blazes!" roared the angry voice. "To-morrow's the exam, and I + won't be drawn by anyone." + + "A rude fellow," said our guide, flushing with anger as we withdrew + down the stair. "Of course, he did not realize that it was I who was + knocking, but none the less his conduct was very uncourteous, and, + indeed, under the circumstances rather suspicious." + + Holmes's response was a curious one. + + "Can you tell me his exact height?" he asked. + + "Really, Mr. Holmes, I cannot undertake to say. He is taller than the + Indian, not so tall as Gilchrist. I suppose five foot six would be + about it." + + "That is very important," said Holmes. "And now, Mr. Soames, I wish + you good-night." + + Our guide cried aloud in his astonishment and dismay. "Good gracious, + Mr. Holmes, you are surely not going to leave me in this abrupt + fashion! You don't seem to realize the position. To-morrow is the + examination. I must take some definite action to-night. I cannot + allow the examination to be held if one of the papers has been + tampered with. The situation must be faced." + + "You must leave it as it is. I shall drop round early to-morrow + morning and chat the matter over. It is possible that I may be in a + position then to indicate some course of action. Meanwhile you change + nothing--nothing at all." + + "Very good, Mr. Holmes." + + "You can be perfectly easy in your mind. We shall certainly find some + way out of your difficulties. I will take the black clay with me, + also the pencil cuttings. Good-bye." + + When we were out in the darkness of the quadrangle we again looked up + at the windows. The Indian still paced his room. The others were + invisible. + + "Well, Watson, what do you think of it?" Holmes asked, as we came out + into the main street. "Quite a little parlour game--sort of + three-card trick, is it not? There are your three men. It must be one + of them. You take your choice. Which is yours?" + + "The foul-mouthed fellow at the top. He is the one with the worst + record. And yet that Indian was a sly fellow also. Why should he be + pacing his room all the time?" + + "There is nothing in that. Many men do it when they are trying to + learn anything by heart." + + "He looked at us in a queer way." + + "So would you if a flock of strangers came in on you when you were + preparing for an examination next day, and every moment was of value. + No, I see nothing in that. Pencils, too, and knives--all was + satisfactory. But that fellow does puzzle me." + + "Who?" + + "Why, Bannister, the servant. What's his game in the matter?" + + "He impressed me as being a perfectly honest man." + + "So he did me. That's the puzzling part. Why should a perfectly + honest man--well, well, here's a large stationer's. We shall begin + our researches here." + + There were only four stationers of any consequence in the town, and + at each Holmes produced his pencil chips and bid high for a + duplicate. All were agreed that one could be ordered, but that it was + not a usual size of pencil and that it was seldom kept in stock. My + friend did not appear to be depressed by his failure, but shrugged + his shoulders in half-humorous resignation. + + "No good, my dear Watson. This, the best and only final clue, has run + to nothing. But, indeed, I have little doubt that we can build up a + sufficient case without it. By Jove! my dear fellow, it is nearly + nine, and the landlady babbled of green peas at seven-thirty. What + with your eternal tobacco, Watson, and your irregularity at meals, I + expect that you will get notice to quit and that I shall share your + downfall--not, however, before we have solved the problem of the + nervous tutor, the careless servant, and the three enterprising + students." + + Holmes made no further allusion to the matter that day, though he + sat lost in thought for a long time after our belated dinner. At + eight in the morning he came into my room just as I finished my + toilet. + + "Well, Watson," said he, "it is time we went down to St. Luke's. Can + you do without breakfast?" + + "Certainly." + + "Soames will be in a dreadful fidget until we are able to tell him + something positive." + + "Have you anything positive to tell him?" + + "I think so." + + "You have formed a conclusion?" + + "Yes, my dear Watson; I have solved the mystery." + + "But what fresh evidence could you have got?" + + "Aha! It is not for nothing that I have turned myself out of bed at + the untimely hour of six. I have put in two hours' hard work and + covered at least five miles, with something to show for it. Look at + that!" + + He held out his hand. On the palm were three little pyramids of + black, doughy clay. + + "Why, Holmes, you had only two yesterday!" + + "And one more this morning. It is a fair argument that wherever No. 3 + came from is also the source of Nos. 1 and 2. Eh, Watson? Well, come + along and put friend Soames out of his pain." + + The unfortunate tutor was certainly in a state of pitiable agitation + when we found him in his chambers. In a few hours the examination + would commence, and he was still in the dilemma between making the + facts public and allowing the culprit to compete for the valuable + scholarship. He could hardly stand still, so great was his mental + agitation, and he ran towards Holmes with two eager hands + outstretched. + + "Thank Heaven that you have come! I feared that you had given it up + in despair. What am I to do? Shall the examination proceed?" + + "Yes; let it proceed by all means." + + "But this rascal--?" + + "He shall not compete." + + "You know him?" + + "I think so. If this matter is not to become public we must give + ourselves certain powers, and resolve ourselves into a small private + court-martial. You there, if you please, Soames! Watson, you here! + I'll take the arm-chair in the middle. I think that we are now + sufficiently imposing to strike terror into a guilty breast. Kindly + ring the bell!" + + Bannister entered, and shrunk back in evident surprise and fear at + our judicial appearance. + + "You will kindly close the door," said Holmes. "Now, Bannister, will + you please tell us the truth about yesterday's incident?" + + The man turned white to the roots of his hair. + + "I have told you everything, sir." + + "Nothing to add?" + + "Nothing at all, sir." + + "Well, then, I must make some suggestions to you. When you sat down + on that chair yesterday, did you do so in order to conceal some + object which would have shown who had been in the room?" + + Bannister's face was ghastly. + + "No, sir; certainly not." + + "It is only a suggestion," said Holmes, suavely. "I frankly admit + that I am unable to prove it. But it seems probable enough, since the + moment that Mr. Soames's back was turned you released the man who was + hiding in that bedroom." + + Bannister licked his dry lips. + + "There was no man, sir." + + "Ah, that's a pity, Bannister. Up to now you may have spoken the + truth, but now I know that you have lied." + + The man's face set in sullen defiance. + + "There was no man, sir." + + "Come, come, Bannister!" + + "No, sir; there was no one." + + "In that case you can give us no further information. Would you + please remain in the room? Stand over there near the bedroom door. + Now, Soames, I am going to ask you to have the great kindness to go + up to the room of young Gilchrist, and to ask him to step down into + yours." + + An instant later the tutor returned, bringing with him the student. + He was a fine figure of a man, tall, lithe, and agile, with a springy + step and a pleasant, open face. His troubled blue eyes glanced at + each of us, and finally rested with an expression of blank dismay + upon Bannister in the farther corner. + + "Just close the door," said Holmes. "Now, Mr. Gilchrist, we are all + quite alone here, and no one need ever know one word of what passes + between us. We can be perfectly frank with each other. We want to + know, Mr. Gilchrist, how you, an honourable man, ever came to commit + such an action as that of yesterday?" + + The unfortunate young man staggered back and cast a look full of + horror and reproach at Bannister. + + "No, no, Mr. Gilchrist, sir; I never said a word--never one word!" + cried the servant. + + "No, but you have now," said Holmes. "Now, sir, you must see that + after Bannister's words your position is hopeless, and that your only + chance lies in a frank confession." + + For a moment Gilchrist, with upraised hand, tried to control his + writhing features. The next he had thrown himself on his knees beside + the table and, burying his face in his hands, he had burst into a + storm of passionate sobbing. + + "Come, come," said Holmes, kindly; "it is human to err, and at least + no one can accuse you of being a callous criminal. Perhaps it would + be easier for you if I were to tell Mr. Soames what occurred, and you + can check me where I am wrong. Shall I do so? Well, well, don't + trouble to answer. Listen, and see that I do you no injustice. + + "From the moment, Mr. Soames, that you said to me that no one, not + even Bannister, could have told that the papers were in your room, + the case began to take a definite shape in my mind. The printer one + could, of course, dismiss. He could examine the papers in his own + office. The Indian I also thought nothing of. If the proofs were in a + roll he could not possibly know what they were. On the other hand, it + seemed an unthinkable coincidence that a man should dare to enter the + room, and that by chance on that very day the papers were on the + table. I dismissed that. The man who entered knew that the papers + were there. How did he know? + + "When I approached your room I examined the window. You amused me by + supposing that I was contemplating the possibility of someone having + in broad daylight, under the eyes of all these opposite rooms, forced + himself through it. Such an idea was absurd. I was measuring how tall + a man would need to be in order to see as he passed what papers were + on the central table. I am six feet high, and I could do it with an + effort. No one less than that would have a chance. Already you see I + had reason to think that if one of your three students was a man of + unusual height he was the most worth watching of the three. + + "I entered and I took you into my confidence as to the suggestions of + the side table. Of the centre table I could make nothing, until in + your description of Gilchrist you mentioned that he was a + long-distance jumper. Then the whole thing came to me in an instant, + and I only needed certain corroborative proofs, which I speedily + obtained. + + "What happened was this. This young fellow had employed his afternoon + at the athletic grounds, where he had been practising the jump. He + returned carrying his jumping shoes, which are provided, as you are + aware, with several sharp spikes. As he passed your window he saw, by + means of his great height, these proofs upon your table, and + conjectured what they were. No harm would have been done had it not + been that as he passed your door he perceived the key which had been + left by the carelessness of your servant. A sudden impulse came over + him to enter and see if they were indeed the proofs. It was not a + dangerous exploit, for he could always pretend that he had simply + looked in to ask a question. + + "Well, when he saw that they were indeed the proofs, it was then that + he yielded to temptation. He put his shoes on the table. What was it + you put on that chair near the window?" + + "Gloves," said the young man. + + Holmes looked triumphantly at Bannister. "He put his gloves on the + chair, and he took the proofs, sheet by sheet, to copy them. He + thought the tutor must return by the main gate, and that he would see + him. As we know, he came back by the side gate. Suddenly he heard him + at the very door. There was no possible escape. He forgot his gloves, + but he caught up his shoes and darted into the bedroom. You observe + that the scratch on that table is slight at one side, but deepens in + the direction of the bedroom door. That in itself is enough to show + us that the shoe had been drawn in that direction and that the + culprit had taken refuge there. The earth round the spike had been + left on the table, and a second sample was loosened and fell in the + bedroom. I may add that I walked out to the athletic grounds this + morning, saw that tenacious black clay is used in the jumping-pit, + and carried away a specimen of it, together with some of the fine tan + or sawdust which is strewn over it to prevent the athlete from + slipping. Have I told the truth, Mr. Gilchrist?" + + The student had drawn himself erect. + + "Yes, sir, it is true," said he. + + "Good heavens, have you nothing to add?" cried Soames. + + "Yes, sir, I have, but the shock of this disgraceful exposure has + bewildered me. I have a letter here, Mr. Soames, which I wrote to you + early this morning in the middle of a restless night. It was before I + knew that my sin had found me out. Here it is, sir. You will see that + I have said, 'I have determined not to go in for the examination. I + have been offered a commission in the Rhodesian Police, and I am + going out to South Africa at once.'" + + "I am indeed pleased to hear that you did not intend to profit by + your unfair advantage," said Soames. "But why did you change your + purpose?" + + Gilchrist pointed to Bannister. + + "There is the man who set me in the right path," said he. + + "Come now, Bannister," said Holmes. "It will be clear to you from + what I have said that only you could have let this young man out, + since you were left in the room, and must have locked the door when + you went out. As to his escaping by that window, it was incredible. + Can you not clear up the last point in this mystery, and tell us the + reasons for your action?" + + "It was simple enough, sir, if you only had known; but with all your + cleverness it was impossible that you could know. Time was, sir, when + I was butler to old Sir Jabez Gilchrist, this young gentleman's + father. When he was ruined I came to the college as servant, but I + never forgot my old employer because he was down in the world. I + watched his son all I could for the sake of the old days. Well, sir, + when I came into this room yesterday when the alarm was given, the + very first thing I saw was Mr. Gilchrist's tan gloves a-lying in that + chair. I knew those gloves well, and I understood their message. If + Mr. Soames saw them the game was up. I flopped down into that chair, + and nothing would budge me until Mr. Soames he went for you. Then out + came my poor young master, whom I had dandled on my knee, and + confessed it all to me. Wasn't it natural, sir, that I should save + him, and wasn't it natural also that I should try to speak to him as + his dead father would have done, and make him understand that he + could not profit by such a deed? Could you blame me, sir?" + + "No, indeed," said Holmes, heartily, springing to his feet. "Well, + Soames, I think we have cleared your little problem up, and our + breakfast awaits us at home. Come, Watson! As to you, sir, I trust + that a bright future awaits you in Rhodesia. For once you have fallen + low. Let us see in the future how high you can rise." + + + + + + + THE ADVENTURE OF THE GOLDEN PINCE-NEZ + + When I look at the three massive manuscript volumes which contain our + work for the year 1894 I confess that it is very difficult for me, + out of such a wealth of material, to select the cases which are most + interesting in themselves and at the same time most conducive to a + display of those peculiar powers for which my friend was famous. As I + turn over the pages I see my notes upon the repulsive story of the + red leech and the terrible death of Crosby the banker. Here also I + find an account of the Addleton tragedy and the singular contents of + the ancient British barrow. The famous Smith-Mortimer succession case + comes also within this period, and so does the tracking and arrest of + Huret, the Boulevard assassin--an exploit which won for Holmes an + autograph letter of thanks from the French President and the Order of + the Legion of Honour. Each of these would furnish a narrative, but on + the whole I am of opinion that none of them unite so many singular + points of interest as the episode of Yoxley Old Place, which includes + not only the lamentable death of young Willoughby Smith, but also + those subsequent developments which threw so curious a light upon the + causes of the crime. + + It was a wild, tempestuous night towards the close of November. + Holmes and I sat together in silence all the evening, he engaged with + a powerful lens deciphering the remains of the original inscription + upon a palimpsest, I deep in a recent treatise upon surgery. Outside + the wind howled down Baker Street, while the rain beat fiercely + against the windows. It was strange there in the very depths of the + town, with ten miles of man's handiwork on every side of us, to feel + the iron grip of Nature, and to be conscious that to the huge + elemental forces all London was no more than the molehills that dot + the fields. I walked to the window and looked out on the deserted + street. The occasional lamps gleamed on the expanse of muddy road and + shining pavement. A single cab was splashing its way from the Oxford + Street end. + + "Well, Watson, it's as well we have not to turn out to-night," said + Holmes, laying aside his lens and rolling up the palimpsest. "I've + done enough for one sitting. It is trying work for the eyes. So far + as I can make out it is nothing more exciting than an Abbey's + accounts dating from the second half of the fifteenth century. + Halloa! halloa! halloa! What's this?" + + Amid the droning of the wind there had come the stamping of a horse's + hoofs and the long grind of a wheel as it rasped against the kerb. + The cab which I had seen had pulled up at our door. + + "What can he want?" I ejaculated, as a man stepped out of it. + + "Want! He wants us. And we, my poor Watson, want overcoats and + cravats and galoshes, and every aid that man ever invented to fight + the weather. Wait a bit, though! There's the cab off again! There's + hope yet. He'd have kept it if he had wanted us to come. Run down, my + dear fellow, and open the door, for all virtuous folk have been long + in bed." + + When the light of the hall lamp fell upon our midnight visitor I had + no difficulty in recognising him. It was young Stanley Hopkins, a + promising detective, in whose career Holmes had several times shown a + very practical interest. + + "Is he in?" he asked, eagerly. + + "Come up, my dear sir," said Holmes's voice from above. "I hope you + have no designs upon us on such a night as this." + + The detective mounted the stairs, and our lamp gleamed upon his + shining waterproof. I helped him out of it while Holmes knocked a + blaze out of the logs in the grate. + + "Now, my dear Hopkins, draw up and warm your toes," said he. "Here's + a cigar, and the doctor has a prescription containing hot water and a + lemon which is good medicine on a night like this. It must be + something important which has brought you out in such a gale." + + "It is indeed, Mr. Holmes. I've had a bustling afternoon, I promise + you. Did you see anything of the Yoxley case in the latest editions?" + + "I've seen nothing later than the fifteenth century to-day." + + "Well, it was only a paragraph, and all wrong at that, so you have + not missed anything. I haven't let the grass grow under my feet. It's + down in Kent, seven miles from Chatham and three from the railway + line. I was wired for at three-fifteen, reached Yoxley Old Place at + five, conducted my investigation, was back at Charing Cross by the + last train, and straight to you by cab." + + "Which means, I suppose, that you are not quite clear about your + case?" + + "It means that I can make neither head nor tail of it. So far as I + can see it is just as tangled a business as ever I handled, and yet + at first it seemed so simple that one couldn't go wrong. There's no + motive, Mr. Holmes. That's what bothers me--I can't put my hand on a + motive. Here's a man dead--there's no denying that--but, so far as I + can see, no reason on earth why anyone should wish him harm." + + Holmes lit his cigar and leaned back in his chair. + + "Let us hear about it," said he. + + "I've got my facts pretty clear," said Stanley Hopkins. "All I want + now is to know what they all mean. The story, so far as I can make it + out, is like this. Some years ago this country house, Yoxley Old + Place, was taken by an elderly man, who gave the name of Professor + Coram. He was an invalid, keeping his bed half the time, and the + other half hobbling round the house with a stick or being pushed + about the grounds by the gardener in a bath-chair. He was well liked + by the few neighbours who called upon him, and he has the reputation + down there of being a very learned man. His household used to consist + of an elderly housekeeper, Mrs. Marker, and of a maid, Susan Tarlton. + These have both been with him since his arrival, and they seem to be + women of excellent character. The Professor is writing a learned + book, and he found it necessary about a year ago to engage a + secretary. The first two that he tried were not successes; but the + third, Mr. Willoughby Smith, a very young man straight from the + University, seems to have been just what his employer wanted. His + work consisted in writing all the morning to the Professor's + dictation, and he usually spent the evening in hunting up references + and passages which bore upon the next day's work. This Willoughby + Smith has nothing against him either as a boy at Uppingham or as a + young man at Cambridge. I have seen his testimonials, and from the + first he was a decent, quiet, hardworking fellow, with no weak spot + in him at all. And yet this is the lad who has met his death this + morning in the Professor's study under circumstances which can point + only to murder." + + The wind howled and screamed at the windows. Holmes and I drew closer + to the fire while the young inspector slowly and point by point + developed his singular narrative. + + "If you were to search all England," said he, "I don't suppose you + could find a household more self-contained or free from outside + influences. Whole weeks would pass and not one of them go past the + garden gate. The Professor was buried in his work and existed for + nothing else. Young Smith knew nobody in the neighbourhood, and lived + very much as his employer did. The two women had nothing to take them + from the house. Mortimer the gardener, who wheels the bath-chair, is + an Army pensioner--an old Crimean man of excellent character. He does + not live in the house, but in a three-roomed cottage at the other end + of the garden. Those are the only people that you would find within + the grounds of Yoxley Old Place. At the same time, the gate of the + garden is a hundred yards from the main London to Chatham road. It + opens with a latch, and there is nothing to prevent anyone from + walking in. + + "Now I will give you the evidence of Susan Tarlton, who is the only + person who can say anything positive about the matter. It was in the + forenoon, between eleven and twelve. She was engaged at the moment in + hanging some curtains in the upstairs front bedroom. Professor Coram + was still in bed, for when the weather is bad he seldom rises before + midday. The housekeeper was busied with some work in the back of the + house. Willoughby Smith had been in his bedroom, which he uses as a + sitting-room; but the maid heard him at that moment pass along the + passage and descend to the study immediately below her. She did not + see him, but she says that she could not be mistaken in his quick, + firm tread. She did not hear the study door close, but a minute or so + later there was a dreadful cry in the room below. It was a wild, + hoarse scream, so strange and unnatural that it might have come + either from a man or a woman. At the same instant there was a heavy + thud, which shook the old house, and then all was silence. The maid + stood petrified for a moment, and then, recovering her courage, she + ran downstairs. The study door was shut, and she opened it. Inside + young Mr. Willoughby Smith was stretched upon the floor. At first she + could see no injury, but as she tried to raise him she saw that blood + was pouring from the underside of his neck. It was pierced by a very + small but very deep wound, which had divided the carotid artery. The + instrument with which the injury had been inflicted lay upon the + carpet beside him. It was one of those small sealing-wax knives to be + found on old-fashioned writing-tables, with an ivory handle and a + stiff blade. It was part of the fittings of the Professor's own desk. + + "At first the maid thought that young Smith was already dead, but on + pouring some water from the carafe over his forehead he opened his + eyes for an instant. 'The Professor,' he murmured--'it was she.' The + maid is prepared to swear that those were the exact words. He tried + desperately to say something else, and he held his right hand up in + the air. Then he fell back dead. + + "In the meantime the housekeeper had also arrived upon the scene, but + she was just too late to catch the young man's dying words. Leaving + Susan with the body, she hurried to the Professor's room. He was + sitting up in bed horribly agitated, for he had heard enough to + convince him that something terrible had occurred. Mrs. Marker is + prepared to swear that the Professor was still in his night-clothes, + and, indeed, it was impossible for him to dress without the help of + Mortimer, whose orders were to come at twelve o'clock. The Professor + declares that he heard the distant cry, but that he knows nothing + more. He can give no explanation of the young man's last words, 'The + Professor--it was she,' but imagines that they were the outcome of + delirium. He believes that Willoughby Smith had not an enemy in the + world, and can give no reason for the crime. His first action was to + send Mortimer the gardener for the local police. A little later the + chief constable sent for me. Nothing was moved before I got there, + and strict orders were given that no one should walk upon the paths + leading to the house. It was a splendid chance of putting your + theories into practice, Mr. Sherlock Holmes. There was really nothing + wanting." + + "Except Mr. Sherlock Holmes," said my companion, with a somewhat + bitter smile. "Well, let us hear about it. What sort of job did you + make of it?" + + "I must ask you first, Mr. Holmes, to glance at this rough plan, + which will give you a general idea of the position of the Professor's + study and the various points of the case. It will help you in + following my investigation." + + He unfolded the rough chart, which I here reproduce, and he laid it + across Holmes's knee. I rose, and, standing behind Holmes, I studied + it over his shoulder. + + [ Picture: Sketch of the building's room and corridors ] + + "It is very rough, of course, and it only deals with the points which + seem to me to be essential. All the rest you will see later for + yourself. Now, first of all, presuming that the assassin entered the + house, how did he or she come in? Undoubtedly by the garden path and + the back door, from which there is direct access to the study. Any + other way would have been exceedingly complicated. The escape must + have also been made along that line, for of the two other exits from + the room one was blocked by Susan as she ran downstairs and the other + leads straight to the Professor's bedroom. I therefore directed my + attention at once to the garden path, which was saturated with recent + rain and would certainly show any footmarks. + + "My examination showed me that I was dealing with a cautious and + expert criminal. No footmarks were to be found on the path. There + could be no question, however, that someone had passed along the + grass border which lines the path, and that he had done so in order + to avoid leaving a track. I could not find anything in the nature of + a distinct impression, but the grass was trodden down and someone had + undoubtedly passed. It could only have been the murderer, since + neither the gardener nor anyone else had been there that morning and + the rain had only begun during the night." + + "One moment," said Holmes. "Where does this path lead to?" + + "To the road." + + "How long is it?" + + "A hundred yards or so." + + "At the point where the path passes through the gate you could surely + pick up the tracks?" + + "Unfortunately, the path was tiled at that point." + + "Well, on the road itself?" + + "No; it was all trodden into mire." + + "Tut-tut! Well, then, these tracks upon the grass, were they coming + or going?" + + "It was impossible to say. There was never any outline." + + "A large foot or a small?" + + "You could not distinguish." + + Holmes gave an ejaculation of impatience. + + "It has been pouring rain and blowing a hurricane ever since," said + he. "It will be harder to read now than that palimpsest. Well, well, + it can't be helped. What did you do, Hopkins, after you had made + certain that you had made certain of nothing?" + + "I think I made certain of a good deal, Mr. Holmes. I knew that + someone had entered the house cautiously from without. I next + examined the corridor. It is lined with cocoanut matting and had + taken no impression of any kind. This brought me into the study + itself. It is a scantily-furnished room. The main article is a large + writing-table with a fixed bureau. This bureau consists of a double + column of drawers with a central small cupboard between them. The + drawers were open, the cupboard locked. The drawers, it seems, were + always open, and nothing of value was kept in them. There were some + papers of importance in the cupboard, but there were no signs that + this had been tampered with, and the Professor assures me that + nothing was missing. It is certain that no robbery has been + committed. + + "I come now to the body of the young man. It was found near the + bureau, and just to the left of it, as marked upon that chart. The + stab was on the right side of the neck and from behind forwards, so + that it is almost impossible that it could have been self-inflicted." + + "Unless he fell upon the knife," said Holmes. + + "Exactly. The idea crossed my mind. But we found the knife some feet + away from the body, so that seems impossible. Then, of course, there + are the man's own dying words. And, finally, there was this very + important piece of evidence which was found clasped in the dead man's + right hand." + + From his pocket Stanley Hopkins drew a small paper packet. He + unfolded it and disclosed a golden pince-nez, with two broken ends of + black silk cord dangling from the end of it. "Willoughby Smith had + excellent sight," he added. "There can be no question that this was + snatched from the face or the person of the assassin." + + Sherlock Holmes took the glasses into his hand and examined them with + the utmost attention and interest. He held them on his nose, + endeavoured to read through them, went to the window and stared up + the street with them, looked at them most minutely in the full light + of the lamp, and finally, with a chuckle, seated himself at the table + and wrote a few lines upon a sheet of paper, which he tossed across + to Stanley Hopkins. + + "That's the best I can do for you," said he. "It may prove to be of + some use." + + The astonished detective read the note aloud. It ran as follows: + + "Wanted, a woman of good address, attired like a lady. She has a + remarkably thick nose, with eyes which are set close upon either side + of it. She has a puckered forehead, a peering expression, and + probably rounded shoulders. There are indications that she has had + recourse to an optician at least twice during the last few months. As + her glasses are of remarkable strength and as opticians are not very + numerous, there should be no difficulty in tracing her." + + Holmes smiled at the astonishment of Hopkins, which must have been + reflected upon my features. + + "Surely my deductions are simplicity itself," said he. "It would be + difficult to name any articles which afford a finer field for + inference than a pair of glasses, especially so remarkable a pair as + these. That they belong to a woman I infer from their delicacy, and + also, of course, from the last words of the dying man. As to her + being a person of refinement and well dressed, they are, as you + perceive, handsomely mounted in solid gold, and it is inconceivable + that anyone who wore such glasses could be slatternly in other + respects. You will find that the clips are too wide for your nose, + showing that the lady's nose was very broad at the base. This sort of + nose is usually a short and coarse one, but there are a sufficient + number of exceptions to prevent me from being dogmatic or from + insisting upon this point in my description. My own face is a narrow + one, and yet I find that I cannot get my eyes into the centre, or + near the centre, of these glasses. Therefore the lady's eyes are set + very near to the sides of the nose. You will perceive, Watson, that + the glasses are concave and of unusual strength. A lady whose vision + has been so extremely contracted all her life is sure to have the + physical characteristics of such vision, which are seen in the + forehead, the eyelids, and the shoulders." + + "Yes," I said, "I can follow each of your arguments. I confess, + however, that I am unable to understand how you arrive at the double + visit to the optician." + + Holmes took the glasses in his hand. + + "You will perceive," he said, "that the clips are lined with tiny + bands of cork to soften the pressure upon the nose. One of these is + discoloured and worn to some slight extent, but the other is new. + Evidently one has fallen off and been replaced. I should judge that + the older of them has not been there more than a few months. They + exactly correspond, so I gather that the lady went back to the same + establishment for the second." + + "By George, it's marvellous!" cried Hopkins, in an ecstasy of + admiration. "To think that I had all that evidence in my hand and + never knew it! I had intended, however, to go the round of the London + opticians." + + "Of course you would. Meanwhile, have you anything more to tell us + about the case?" + + "Nothing, Mr. Holmes. I think that you know as much as I do + now--probably more. We have had inquiries made as to any stranger + seen on the country roads or at the railway station. We have heard of + none. What beats me is the utter want of all object in the crime. Not + a ghost of a motive can anyone suggest." + + "Ah! there I am not in a position to help you. But I suppose you want + us to come out to-morrow?" + + "If it is not asking too much, Mr. Holmes. There's a train from + Charing Cross to Chatham at six in the morning, and we should be at + Yoxley Old Place between eight and nine." + + "Then we shall take it. Your case has certainly some features of + great interest, and I shall be delighted to look into it. Well, it's + nearly one, and we had best get a few hours' sleep. I dare say you + can manage all right on the sofa in front of the fire. I'll light my + spirit-lamp and give you a cup of coffee before we start." + + The gale had blown itself out next day, but it was a bitter morning + when we started upon our journey. We saw the cold winter sun rise + over the dreary marshes of the Thames and the long, sullen reaches of + the river, which I shall ever associate with our pursuit of the + Andaman Islander in the earlier days of our career. After a long and + weary journey we alighted at a small station some miles from Chatham. + While a horse was being put into a trap at the local inn we snatched + a hurried breakfast, and so we were all ready for business when we at + last arrived at Yoxley Old Place. A constable met us at the garden + gate. + + "Well, Wilson, any news?" + + "No, sir, nothing." + + "No reports of any stranger seen?" + + "No, sir. Down at the station they are certain that no stranger + either came or went yesterday." + + "Have you had inquiries made at inns and lodgings?" + + "Yes, sir; there is no one that we cannot account for." + + "Well, it's only a reasonable walk to Chatham. Anyone might stay + there, or take a train without being observed. This is the garden + path of which I spoke, Mr. Holmes. I'll pledge my word there was no + mark on it yesterday." + + "On which side were the marks on the grass?" + + "This side, sir. This narrow margin of grass between the path and the + flower-bed. I can't see the traces now, but they were clear to me + then." + + "Yes, yes; someone has passed along," said Holmes, stooping over the + grass border. "Our lady must have picked her steps carefully, must + she not, since on the one side she would leave a track on the path, + and on the other an even clearer one on the soft bed?" + + "Yes, sir, she must have been a cool hand." + + I saw an intent look pass over Holmes's face. + + "You say that she must have come back this way?" + + "Yes, sir; there is no other." + + "On this strip of grass?" + + "Certainly, Mr. Holmes." + + "Hum! It was a very remarkable performance--very remarkable. Well, I + think we have exhausted the path. Let us go farther. This garden door + is usually kept open, I suppose? Then this visitor had nothing to do + but to walk in. The idea of murder was not in her mind, or she would + have provided herself with some sort of weapon, instead of having to + pick this knife off the writing-table. She advanced along this + corridor, leaving no traces upon the cocoanut matting. Then she found + herself in this study. How long was she there? We have no means of + judging." + + "Not more than a few minutes, sir. I forgot to tell you that Mrs. + Marker, the housekeeper, had been in there tidying not very long + before--about a quarter of an hour, she says." + + "Well, that gives us a limit. Our lady enters this room and what does + she do? She goes over to the writing-table. What for? Not for + anything in the drawers. If there had been anything worth her taking + it would surely have been locked up. No; it was for something in that + wooden bureau. Halloa! what is that scratch upon the face of it? Just + hold a match, Watson. Why did you not tell me of this, Hopkins?" + + The mark which he was examining began upon the brass work on the + right-hand side of the keyhole, and extended for about four inches, + where it had scratched the varnish from the surface. + + "I noticed it, Mr. Holmes. But you'll always find scratches round a + keyhole." + + "This is recent, quite recent. See how the brass shines where it is + cut. An old scratch would be the same colour as the surface. Look at + it through my lens. There's the varnish, too, like earth on each side + of a furrow. Is Mrs. Marker there?" + + A sad-faced, elderly woman came into the room. + + "Did you dust this bureau yesterday morning?" + + "Yes, sir." + + "Did you notice this scratch?" + + "No, sir, I did not." + + "I am sure you did not, for a duster would have swept away these + shreds of varnish. Who has the key of this bureau?" + + "The Professor keeps it on his watch-chain." + + "Is it a simple key?" + + "No, sir; it is a Chubb's key." + + "Very good. Mrs. Marker, you can go. Now we are making a little + progress. Our lady enters the room, advances to the bureau, and + either opens it or tries to do so. While she is thus engaged young + Willoughby Smith enters the room. In her hurry to withdraw the key + she makes this scratch upon the door. He seizes her, and she, + snatching up the nearest object, which happens to be this knife, + strikes at him in order to make him let go his hold. The blow is a + fatal one. He falls and she escapes, either with or without the + object for which she has come. Is Susan the maid there? Could anyone + have got away through that door after the time that you heard the + cry, Susan?" + + "No sir; it is impossible. Before I got down the stair I'd have seen + anyone in the passage. Besides, the door never opened, for I would + have heard it." + + "That settles this exit. Then no doubt the lady went out the way she + came. I understand that this other passage leads only to the + Professor's room. There is no exit that way?" + + "No, sir." + + "We shall go down it and make the acquaintance of the Professor. + Halloa, Hopkins! this is very important, very important indeed. The + Professor's corridor is also lined with cocoanut matting." + + "Well, sir, what of that?" + + "Don't you see any bearing upon the case? Well, well, I don't insist + upon it. No doubt I am wrong. And yet it seems to me to be + suggestive. Come with me and introduce me." + + We passed down the passage, which was of the same length as that + which led to the garden. At the end was a short flight of steps + ending in a door. Our guide knocked, and then ushered us into the + Professor's bedroom. + + It was a very large chamber, lined with innumerable volumes, which + had overflowed from the shelves and lay in piles in the corners, or + were stacked all round at the base of the cases. The bed was in the + centre of the room, and in it, propped up with pillows, was the owner + of the house. I have seldom seen a more remarkable-looking person. It + was a gaunt, aquiline face which was turned towards us, with piercing + dark eyes, which lurked in deep hollows under overhung and tufted + brows. His hair and beard were white, save that the latter was + curiously stained with yellow around his mouth. A cigarette glowed + amid the tangle of white hair, and the air of the room was fetid with + stale tobacco-smoke. As he held out his hand to Holmes I perceived + that it also was stained yellow with nicotine. + + "A smoker, Mr. Holmes?" said he, speaking well-chosen English with a + curious little mincing accent. "Pray take a cigarette. And you, sir? + I can recommend them, for I have them especially prepared by Ionides + of Alexandria. He sends me a thousand at a time, and I grieve to say + that I have to arrange for a fresh supply every fortnight. Bad, sir, + very bad, but an old man has few pleasures. Tobacco and my work--that + is all that is left to me." + + Holmes had lit a cigarette, and was shooting little darting glances + all over the room. + + "Tobacco and my work, but now only tobacco," the old man exclaimed. + "Alas! what a fatal interruption! Who could have foreseen such a + terrible catastrophe? So estimable a young man! I assure you that + after a few months' training he was an admirable assistant. What do + you think of the matter, Mr. Holmes?" + + "I have not yet made up my mind." + + "I shall indeed be indebted to you if you can throw a light where all + is so dark to us. To a poor bookworm and invalid like myself such a + blow is paralyzing. I seem to have lost the faculty of thought. But + you are a man of action--you are a man of affairs. It is part of the + everyday routine of your life. You can preserve your balance in every + emergency. We are fortunate indeed in having you at our side." + + Holmes was pacing up and down one side of the room whilst the old + Professor was talking. I observed that he was smoking with + extraordinary rapidity. It was evident that he shared our host's + liking for the fresh Alexandrian cigarettes. + + "Yes, sir, it is a crushing blow," said the old man. "That is my + magnum opus--the pile of papers on the side table yonder. It is my + analysis of the documents found in the Coptic monasteries of Syria + and Egypt, a work which will cut deep at the very foundations of + revealed religion. With my enfeebled health I do not know whether I + shall ever be able to complete it now that my assistant has been + taken from me. Dear me, Mr. Holmes; why, you are even a quicker + smoker than I am myself." + + Holmes smiled. + + "I am a connoisseur," said he, taking another cigarette from the + box--his fourth--and lighting it from the stub of that which he had + finished. "I will not trouble you with any lengthy cross-examination, + Professor Coram, since I gather that you were in bed at the time of + the crime and could know nothing about it. I would only ask this. + What do you imagine that this poor fellow meant by his last words: + 'The Professor--it was she'?" + + The Professor shook his head. + + "Susan is a country girl," said he, "and you know the incredible + stupidity of that class. I fancy that the poor fellow murmured some + incoherent delirious words, and that she twisted them into this + meaningless message." + + "I see. You have no explanation yourself of the tragedy?" + + "Possibly an accident; possibly--I only breathe it among ourselves--a + suicide. Young men have their hidden troubles--some affair of the + heart, perhaps, which we have never known. It is a more probable + supposition than murder." + + "But the eye-glasses?" + + "Ah! I am only a student--a man of dreams. I cannot explain the + practical things of life. But still, we are aware, my friend, that + love-gages may take strange shapes. By all means take another + cigarette. It is a pleasure to see anyone appreciate them so. A fan, + a glove, glasses--who knows what article may be carried as a token or + treasured when a man puts an end to his life? This gentleman speaks + of footsteps in the grass; but, after all, it is easy to be mistaken + on such a point. As to the knife, it might well be thrown far from + the unfortunate man as he fell. It is possible that I speak as a + child, but to me it seems that Willoughby Smith has met his fate by + his own hand." + + Holmes seemed struck by the theory thus put forward, and he continued + to walk up and down for some time, lost in thought and consuming + cigarette after cigarette. + + "Tell me, Professor Coram," he said, at last, "what is in that + cupboard in the bureau?" + + "Nothing that would help a thief. Family papers, letters from my poor + wife, diplomas of Universities which have done me honour. Here is the + key. You can look for yourself." + + Holmes picked up the key and looked at it for an instant; then he + handed it back. + + "No; I hardly think that it would help me," said he. "I should prefer + to go quietly down to your garden and turn the whole matter over in + my head. There is something to be said for the theory of suicide + which you have put forward. We must apologize for having intruded + upon you, Professor Coram, and I promise that we won't disturb you + until after lunch. At two o'clock we will come again and report to + you anything which may have happened in the interval." + + Holmes was curiously distrait, and we walked up and down the garden + path for some time in silence. + + "Have you a clue?" I asked, at last. + + "It depends upon those cigarettes that I smoked," said he. "It is + possible that I am utterly mistaken. The cigarettes will show me." + + "My dear Holmes," I exclaimed, "how on earth--" + + "Well, well, you may see for yourself. If not, there's no harm done. + Of course, we always have the optician clue to fall back upon, but I + take a short cut when I can get it. Ah, here is the good Mrs. Marker! + Let us enjoy five minutes of instructive conversation with her." + + I may have remarked before that Holmes had, when he liked, a + peculiarly ingratiating way with women, and that he very readily + established terms of confidence with them. In half the time which he + had named he had captured the housekeeper's goodwill, and was + chatting with her as if he had known her for years. + + "Yes, Mr. Holmes, it is as you say, sir. He does smoke something + terrible. All day and sometimes all night, sir. I've seen that room + of a morning--well, sir, you'd have thought it was a London fog. Poor + young Mr. Smith, he was a smoker also, but not as bad as the + Professor. His health--well, I don't know that it's better nor worse + for the smoking." + + "Ah!" said Holmes, "but it kills the appetite." + + "Well, I don't know about that, sir." + + "I suppose the Professor eats hardly anything?" + + "Well, he is variable. I'll say that for him." + + "I'll wager he took no breakfast this morning, and won't face his + lunch after all the cigarettes I saw him consume." + + "Well, you're out there, sir, as it happens, for he ate a remarkable + big breakfast this morning. I don't know when I've known him make a + better one, and he's ordered a good dish of cutlets for his lunch. + I'm surprised myself, for since I came into that room yesterday and + saw young Mr. Smith lying there on the floor I couldn't bear to look + at food. Well, it takes all sorts to make a world, and the Professor + hasn't let it take his appetite away." + + We loitered the morning away in the garden. Stanley Hopkins had gone + down to the village to look into some rumours of a strange woman who + had been seen by some children on the Chatham Road the previous + morning. As to my friend, all his usual energy seemed to have + deserted him. I had never known him handle a case in such a + half-hearted fashion. Even the news brought back by Hopkins that he + had found the children and that they had undoubtedly seen a woman + exactly corresponding with Holmes's description, and wearing either + spectacles or eye-glasses, failed to rouse any sign of keen interest. + He was more attentive when Susan, who waited upon us at lunch, + volunteered the information that she believed Mr. Smith had been out + for a walk yesterday morning, and that he had only returned half an + hour before the tragedy occurred. I could not myself see the bearing + of this incident, but I clearly perceived that Holmes was weaving it + into the general scheme which he had formed in his brain. Suddenly he + sprang from his chair and glanced at his watch. "Two o'clock, + gentlemen," said he. "We must go up and have it out with our friend + the Professor." + + The old man had just finished his lunch, and certainly his empty dish + bore evidence to the good appetite with which his housekeeper had + credited him. He was, indeed, a weird figure as he turned his white + mane and his glowing eyes towards us. The eternal cigarette + smouldered in his mouth. He had been dressed and was seated in an + arm-chair by the fire. + + "Well, Mr. Holmes, have you solved this mystery yet?" He shoved the + large tin of cigarettes which stood on a table beside him towards my + companion. Holmes stretched out his hand at the same moment, and + between them they tipped the box over the edge. For a minute or two + we were all on our knees retrieving stray cigarettes from impossible + places. When we rose again I observed that Holmes's eyes were shining + and his cheeks tinged with colour. Only at a crisis have I seen those + battle-signals flying. + + "Yes," said he, "I have solved it." + + Stanley Hopkins and I stared in amazement. Something like a sneer + quivered over the gaunt features of the old Professor. + + "Indeed! In the garden?" + + "No, here." + + "Here! When?" + + "This instant." + + "You are surely joking, Mr. Sherlock Holmes. You compel me to tell + you that this is too serious a matter to be treated in such a + fashion." + + "I have forged and tested every link of my chain, Professor Coram, + and I am sure that it is sound. What your motives are or what exact + part you play in this strange business I am not yet able to say. In a + few minutes I shall probably hear it from your own lips. Meanwhile I + will reconstruct what is past for your benefit, so that you may know + the information which I still require. + + "A lady yesterday entered your study. She came with the intention of + possessing herself of certain documents which were in your bureau. + She had a key of her own. I have had an opportunity of examining + yours, and I do not find that slight discolouration which the scratch + made upon the varnish would have produced. You were not an accessory, + therefore, and she came, so far as I can read the evidence, without + your knowledge to rob you." + + The Professor blew a cloud from his lips. "This is most interesting + and instructive," said he. "Have you no more to add? Surely, having + traced this lady so far, you can also say what has become of her." + + "I will endeavour to do so. In the first place she was seized by your + secretary, and stabbed him in order to escape. This catastrophe I am + inclined to regard as an unhappy accident, for I am convinced that + the lady had no intention of inflicting so grievous an injury. An + assassin does not come unarmed. Horrified by what she had done she + rushed wildly away from the scene of the tragedy. Unfortunately for + her she had lost her glasses in the scuffle, and as she was extremely + short-sighted she was really helpless without them. She ran down a + corridor, which she imagined to be that by which she had come--both + were lined with cocoanut matting--and it was only when it was too + late that she understood that she had taken the wrong passage and + that her retreat was cut off behind her. What was she to do? She + could not go back. She could not remain where she was. She must go + on. She went on. She mounted a stair, pushed open a door, and found + herself in your room." + + The old man sat with his mouth open staring wildly at Holmes. + Amazement and fear were stamped upon his expressive features. Now, + with an effort, he shrugged his shoulders and burst into insincere + laughter. + + "All very fine, Mr. Holmes," said he. "But there is one little flaw + in your splendid theory. I was myself in my room, and I never left it + during the day." + + "I am aware of that, Professor Coram." + + "And you mean to say that I could lie upon that bed and not be aware + that a woman had entered my room?" + + "I never said so. You were aware of it. You spoke with her. You + recognised her. You aided her to escape." + + Again the Professor burst into high-keyed laughter. He had risen to + his feet and his eyes glowed like embers. + + "You are mad!" he cried. "You are talking insanely. I helped her to + escape? Where is she now?" + + "She is there," said Holmes, and he pointed to a high bookcase in the + corner of the room. + + I saw the old man throw up his arms, a terrible convulsion passed + over his grim face, and he fell back in his chair. At the same + instant the bookcase at which Holmes pointed swung round upon a + hinge, and a woman rushed out into the room. "You are right!" she + cried, in a strange foreign voice. "You are right! I am here." + + She was brown with the dust and draped with the cobwebs which had + come from the walls of her hiding-place. Her face, too, was streaked + with grime, and at the best she could never have been handsome, for + she had the exact physical characteristics which Holmes had divined, + with, in addition, a long and obstinate chin. What with her natural + blindness, and what with the change from dark to light, she stood as + one dazed, blinking about her to see where and who we were. And yet, + in spite of all these disadvantages, there was a certain nobility in + the woman's bearing, a gallantry in the defiant chin and in the + upraised head, which compelled something of respect and admiration. + Stanley Hopkins had laid his hand upon her arm and claimed her as his + prisoner, but she waved him aside gently, and yet with an + overmastering dignity which compelled obedience. The old man lay back + in his chair, with a twitching face, and stared at her with brooding + eyes. + + "Yes, sir, I am your prisoner," she said. "From where I stood I could + hear everything, and I know that you have learned the truth. I + confess it all. It was I who killed the young man. But you are right, + you who say it was an accident. I did not even know that it was a + knife which I held in my hand, for in my despair I snatched anything + from the table and struck at him to make him let me go. It is the + truth that I tell." + + "Madam," said Holmes, "I am sure that it is the truth. I fear that + you are far from well." + + She had turned a dreadful colour, the more ghastly under the dark + dust-streaks upon her face. She seated herself on the side of the + bed; then she resumed. + + "I have only a little time here," she said, "but I would have you to + know the whole truth. I am this man's wife. He is not an Englishman. + He is a Russian. His name I will not tell." + + For the first time the old man stirred. "God bless you, Anna!" he + cried. "God bless you!" + + She cast a look of the deepest disdain in his direction. "Why should + you cling so hard to that wretched life of yours, Sergius?" said she. + "It has done harm to many and good to none--not even to yourself. + However, it is not for me to cause the frail thread to be snapped + before God's time. I have enough already upon my soul since I crossed + the threshold of this cursed house. But I must speak or I shall be + too late. + + "I have said, gentlemen, that I am this man's wife. He was fifty and + I a foolish girl of twenty when we married. It was in a city of + Russia, a University--I will not name the place." + + "God bless you, Anna!" murmured the old man again. + + "We were reformers--revolutionists--Nihilists, you understand. He and + I and many more. Then there came a time of trouble, a police officer + was killed, many were arrested, evidence was wanted, and in order to + save his own life and to earn a great reward my husband betrayed his + own wife and his companions. Yes, we were all arrested upon his + confession. Some of us found our way to the gallows and some to + Siberia. I was among these last, but my term was not for life. My + husband came to England with his ill-gotten gains, and has lived in + quiet ever since, knowing well that if the Brotherhood knew where he + was not a week would pass before justice would be done." + + The old man reached out a trembling hand and helped himself to a + cigarette. "I am in your hands, Anna," said he. "You were always good + to me." + + "I have not yet told you the height of his villainy," said she. + "Among our comrades of the Order there was one who was the friend of + my heart. He was noble, unselfish, loving--all that my husband was + not. He hated violence. We were all guilty--if that is guilt--but he + was not. He wrote for ever dissuading us from such a course. These + letters would have saved him. So would my diary, in which from day to + day I had entered both my feelings towards him and the view which + each of us had taken. My husband found and kept both diary and + letters. He hid them, and he tried hard to swear away the young man's + life. In this he failed, but Alexis was sent a convict to Siberia, + where now, at this moment, he works in a salt mine. Think of that, + you villain, you villain; now, now, at this very moment, Alexis, a + man whose name you are not worthy to speak, works and lives like a + slave, and yet I have your life in my hands and I let you go." + + "You were always a noble woman, Anna," said the old man, puffing at + his cigarette. + + She had risen, but she fell back again with a little cry of pain. + + "I must finish," she said. "When my term was over I set myself to get + the diary and letters which, if sent to the Russian Government, would + procure my friend's release. I knew that my husband had come to + England. After months of searching I discovered where he was. I knew + that he still had the diary, for when I was in Siberia I had a letter + from him once reproaching me and quoting some passages from its + pages. Yet I was sure that with his revengeful nature he would never + give it to me of his own free will. I must get it for myself. With + this object I engaged an agent from a private detective firm, who + entered my husband's house as secretary--it was your second + secretary, Sergius, the one who left you so hurriedly. He found that + papers were kept in the cupboard, and he got an impression of the + key. He would not go farther. He furnished me with a plan of the + house, and he told me that in the forenoon the study was always + empty, as the secretary was employed up here. So at last I took my + courage in both hands and I came down to get the papers for myself. I + succeeded, but at what a cost! + + "I had just taken the papers and was locking the cupboard when the + young man seized me. I had seen him already that morning. He had met + me in the road and I had asked him to tell me where Professor Coram + lived, not knowing that he was in his employ." + + "Exactly! exactly!" said Holmes. "The secretary came back and told + his employer of the woman he had met. Then in his last breath he + tried to send a message that it was she--the she whom he had just + discussed with him." + + "You must let me speak," said the woman, in an imperative voice, and + her face contracted as if in pain. "When he had fallen I rushed from + the room, chose the wrong door, and found myself in my husband's + room. He spoke of giving me up. I showed him that if he did so his + life was in my hands. If he gave me to the law I could give him to + the Brotherhood. It was not that I wished to live for my own sake, + but it was that I desired to accomplish my purpose. He knew that I + would do what I said--that his own fate was involved in mine. For + that reason and for no other he shielded me. He thrust me into that + dark hiding-place, a relic of old days, known only to himself. He + took his meals in his own room, and so was able to give me part of + his food. It was agreed that when the police left the house I should + slip away by night and come back no more. But in some way you have + read our plans." She tore from the bosom of her dress a small packet. + "These are my last words," said she; "here is the packet which will + save Alexis. I confide it to your honour and to your love of justice. + Take it! You will deliver it at the Russian Embassy. Now I have done + my duty, and--" + + "Stop her!" cried Holmes. He had bounded across the room and had + wrenched a small phial from her hand. + + "Too late!" she said, sinking back on the bed. "Too late! I took the + poison before I left my hiding-place. My head swims! I am going! I + charge you, sir, to remember the packet." + + "A simple case, and yet in some ways an instructive one," Holmes + remarked, as we travelled back to town. "It hinged from the outset + upon the pince-nez. But for the fortunate chance of the dying man + having seized these I am not sure that we could ever have reached our + solution. It was clear to me from the strength of the glasses that + the wearer must have been very blind and helpless when deprived of + them. When you asked me to believe that she walked along a narrow + strip of grass without once making a false step I remarked, as you + may remember, that it was a noteworthy performance. In my mind I set + it down as an impossible performance, save in the unlikely case that + she had a second pair of glasses. I was forced, therefore, to + seriously consider the hypothesis that she had remained within the + house. On perceiving the similarity of the two corridors it became + clear that she might very easily have made such a mistake, and in + that case it was evident that she must have entered the Professor's + room. I was keenly on the alert, therefore, for whatever would bear + out this supposition, and I examined the room narrowly for anything + in the shape of a hiding-place. The carpet seemed continuous and + firmly nailed, so I dismissed the idea of a trap-door. There might + well be a recess behind the books. As you are aware, such devices are + common in old libraries. I observed that books were piled on the + floor at all other points, but that one bookcase was left clear. + This, then, might be the door. I could see no marks to guide me, but + the carpet was of a dun colour, which lends itself very well to + examination. I therefore smoked a great number of those excellent + cigarettes, and I dropped the ash all over the space in front of the + suspected bookcase. It was a simple trick, but exceedingly effective. + I then went downstairs and I ascertained, in your presence, Watson, + without your perceiving the drift of my remarks, that Professor + Coram's consumption of food had increased--as one would expect when + he is supplying a second person. We then ascended to the room again, + when, by upsetting the cigarette-box, I obtained a very excellent + view of the floor, and was able to see quite clearly, from the traces + upon the cigarette ash, that the prisoner had, in our absence, come + out from her retreat. Well, Hopkins, here we are at Charing Cross, + and I congratulate you on having brought your case to a successful + conclusion. You are going to head-quarters, no doubt. I think, + Watson, you and I will drive together to the Russian Embassy." + + + + + + + THE ADVENTURE OF THE MISSING THREE-QUARTER + + We were fairly accustomed to receive weird telegrams at Baker Street, + but I have a particular recollection of one which reached us on a + gloomy February morning some seven or eight years ago and gave Mr. + Sherlock Holmes a puzzled quarter of an hour. It was addressed to + him, and ran thus: + + "Please await me. Terrible misfortune. Right wing three-quarter + missing; indispensable to-morrow. + Overton." + + "Strand post-mark and dispatched ten-thirty-six," said Holmes, + reading it over and over. "Mr. Overton was evidently considerably + excited when he sent it, and somewhat incoherent in consequence. + Well, well, he will be here, I dare say, by the time I have looked + through the times, and then we shall know all about it. Even the most + insignificant problem would be welcome in these stagnant days." + + Things had indeed been very slow with us, and I had learned to dread + such periods of inaction, for I knew by experience that my + companion's brain was so abnormally active that it was dangerous to + leave it without material upon which to work. For years I had + gradually weaned him from that drug mania which had threatened once + to check his remarkable career. Now I knew that under ordinary + conditions he no longer craved for this artificial stimulus, but I + was well aware that the fiend was not dead, but sleeping; and I have + known that the sleep was a light one and the waking near when in + periods of idleness I have seen the drawn look upon Holmes's ascetic + face, and the brooding of his deep-set and inscrutable eyes. + Therefore I blessed this Mr. Overton, whoever he might be, since he + had come with his enigmatic message to break that dangerous calm + which brought more peril to my friend than all the storms of his + tempestuous life. + + As we had expected, the telegram was soon followed by its sender, and + the card of Mr. Cyril Overton, of Trinity College, Cambridge, + announced the arrival of an enormous young man, sixteen stone of + solid bone and muscle, who spanned the doorway with his broad + shoulders and looked from one of us to the other with a comely face + which was haggard with anxiety. + + "Mr. Sherlock Holmes?" + + My companion bowed. + + "I've been down to Scotland Yard, Mr. Holmes. I saw Inspector Stanley + Hopkins. He advised me to come to you. He said the case, so far as he + could see, was more in your line than in that of the regular police." + + "Pray sit down and tell me what is the matter." + + "It's awful, Mr. Holmes, simply awful! I wonder my hair isn't grey. + Godfrey Staunton--you've heard of him, of course? He's simply the + hinge that the whole team turns on. I'd rather spare two from the + pack and have Godfrey for my three-quarter line. Whether it's + passing, or tackling, or dribbling, there's no one to touch him; and + then, he's got the head and can hold us all together. What am I to + do? That's what I ask you, Mr. Holmes. There's Moorhouse, first + reserve, but he is trained as a half, and he always edges right in on + to the scrum instead of keeping out on the touch-line. He's a fine + place-kick, it's true, but, then, he has no judgment, and he can't + sprint for nuts. Why, Morton or Johnson, the Oxford fliers, could + romp round him. Stevenson is fast enough, but he couldn't drop from + the twenty-five line, and a three-quarter who can't either punt or + drop isn't worth a place for pace alone. No, Mr. Holmes, we are done + unless you can help me to find Godfrey Staunton." + + My friend had listened with amused surprise to this long speech, + which was poured forth with extraordinary vigour and earnestness, + every point being driven home by the slapping of a brawny hand upon + the speaker's knee. When our visitor was silent Holmes stretched out + his hand and took down letter "S" of his commonplace book. For once + he dug in vain into that mine of varied information. + + "There is Arthur H. Staunton, the rising young forger," said he, "and + there was Henry Staunton, whom I helped to hang, but Godfrey Staunton + is a new name to me." + + It was our visitor's turn to look surprised. + + "Why, Mr. Holmes, I thought you knew things," said he. "I suppose, + then, if you have never heard of Godfrey Staunton you don't know + Cyril Overton either?" + + Holmes shook his head good-humouredly. + + "Great Scot!" cried the athlete. "Why, I was first reserve for + England against Wales, and I've skippered the 'Varsity all this year. + But that's nothing! I didn't think there was a soul in England who + didn't know Godfrey Staunton, the crack three-quarter, Cambridge, + Blackheath, and five Internationals. Good Lord! Mr. Holmes, where + have you lived?" + + Holmes laughed at the young giant's naive astonishment. + + "You live in a different world to me, Mr. Overton, a sweeter and + healthier one. My ramifications stretch out into many sections of + society, but never, I am happy to say, into amateur sport, which is + the best and soundest thing in England. However, your unexpected + visit this morning shows me that even in that world of fresh air and + fair play there may be work for me to do; so now, my good sir, I beg + you to sit down and to tell me slowly and quietly exactly what it is + that has occurred, and how you desire that I should help you." + + Young Overton's face assumed the bothered look of the man who is more + accustomed to using his muscles than his wits; but by degrees, with + many repetitions and obscurities which I may omit from his narrative, + he laid his strange story before us. + + "It's this way, Mr. Holmes. As I have said, I am the skipper of the + Rugger team of Cambridge 'Varsity, and Godfrey Staunton is my best + man. To-morrow we play Oxford. Yesterday we all came up and we + settled at Bentley's private hotel. At ten o'clock I went round and + saw that all the fellows had gone to roost, for I believe in strict + training and plenty of sleep to keep a team fit. I had a word or two + with Godfrey before he turned in. He seemed to me to be pale and + bothered. I asked him what was the matter. He said he was all + right--just a touch of headache. I bade him good-night and left him. + Half an hour later the porter tells me that a rough-looking man with + a beard called with a note for Godfrey. He had not gone to bed and + the note was taken to his room. Godfrey read it and fell back in a + chair as if he had been pole-axed. The porter was so scared that he + was going to fetch me, but Godfrey stopped him, had a drink of water, + and pulled himself together. Then he went downstairs, said a few + words to the man who was waiting in the hall, and the two of them + went off together. The last that the porter saw of them, they were + almost running down the street in the direction of the Strand. This + morning Godfrey's room was empty, his bed had never been slept in, + and his things were all just as I had seen them the night before. He + had gone off at a moment's notice with this stranger, and no word has + come from him since. I don't believe he will ever come back. He was a + sportsman, was Godfrey, down to his marrow, and he wouldn't have + stopped his training and let in his skipper if it were not for some + cause that was too strong for him. No; I feel as if he were gone for + good and we should never see him again." + + Sherlock Holmes listened with the deepest attention to this singular + narrative. + + "What did you do?" he asked. + + "I wired to Cambridge to learn if anything had been heard of him + there. I have had an answer. No one has seen him." + + "Could he have got back to Cambridge?" + + "Yes, there is a late train--quarter-past eleven." + + "But so far as you can ascertain he did not take it?" + + "No, he has not been seen." + + "What did you do next?" + + "I wired to Lord Mount-James." + + "Why to Lord Mount-James?" + + "Godfrey is an orphan, and Lord Mount-James is his nearest + relative--his uncle, I believe." + + "Indeed. This throws new light upon the matter. Lord Mount-James is + one of the richest men in England." + + "So I've heard Godfrey say." + + "And your friend was closely related?" + + "Yes, he was his heir, and the old boy is nearly eighty--cram full of + gout, too. They say he could chalk his billiard-cue with his + knuckles. He never allowed Godfrey a shilling in his life, for he is + an absolute miser, but it will all come to him right enough." + + "Have you heard from Lord Mount-James?" + + "No." + + "What motive could your friend have in going to Lord Mount-James?" + + "Well, something was worrying him the night before, and if it was to + do with money it is possible that he would make for his nearest + relative who had so much of it, though from all I have heard he would + not have much chance of getting it. Godfrey was not fond of the old + man. He would not go if he could help it." + + "Well, we can soon determine that. If your friend was going to his + relative, Lord Mount-James, you have then to explain the visit of + this rough-looking fellow at so late an hour, and the agitation that + was caused by his coming." + + Cyril Overton pressed his hands to his head. "I can make nothing of + it," said he. + + "Well, well, I have a clear day, and I shall be happy to look into + the matter," said Holmes. "I should strongly recommend you to make + your preparations for your match without reference to this young + gentleman. It must, as you say, have been an overpowering necessity + which tore him away in such a fashion, and the same necessity is + likely to hold him away. Let us step round together to this hotel, + and see if the porter can throw any fresh light upon the matter." + + Sherlock Holmes was a past-master in the art of putting a humble + witness at his ease, and very soon, in the privacy of Godfrey + Staunton's abandoned room, he had extracted all that the porter had + to tell. The visitor of the night before was not a gentleman, neither + was he a working man. He was simply what the porter described as a + "medium-looking chap"; a man of fifty, beard grizzled, pale face, + quietly dressed. He seemed himself to be agitated. The porter had + observed his hand trembling when he had held out the note. Godfrey + Staunton had crammed the note into his pocket. Staunton had not + shaken hands with the man in the hall. They had exchanged a few + sentences, of which the porter had only distinguished the one word + "time." Then they had hurried off in the manner described. It was + just half-past ten by the hall clock. + + "Let me see," said Holmes, seating himself on Staunton's bed. "You + are the day porter, are you not?" + + "Yes, sir; I go off duty at eleven." + + "The night porter saw nothing, I suppose?" + + "No, sir; one theatre party came in late. No one else." + + "Were you on duty all day yesterday?" + + "Yes, sir." + + "Did you take any messages to Mr. Staunton?" + + "Yes, sir; one telegram." + + "Ah! that's interesting. What o'clock was this?" + + "About six." + + "Where was Mr. Staunton when he received it?" + + "Here in his room." + + "Were you present when he opened it?" + + "Yes, sir; I waited to see if there was an answer." + + "Well, was there?" + + "Yes, sir. He wrote an answer." + + "Did you take it?" + + "No; he took it himself." + + "But he wrote it in your presence?" + + "Yes, sir. I was standing by the door, and he with his back turned at + that table. When he had written it he said, 'All right, porter, I + will take this myself.'" + + "What did he write it with?" + + "A pen, sir." + + "Was the telegraphic form one of these on the table?" + + "Yes, sir; it was the top one." + + Holmes rose. Taking the forms he carried them over to the window and + carefully examined that which was uppermost. + + "It is a pity he did not write in pencil," said he, throwing them + down again with a shrug of disappointment. "As you have no doubt + frequently observed, Watson, the impression usually goes through--a + fact which has dissolved many a happy marriage. However, I can find + no trace here. I rejoice, however, to perceive that he wrote with a + broad-pointed quill pen, and I can hardly doubt that we will find + some impression upon this blotting-pad. Ah, yes, surely this is the + very thing!" + + He tore off a strip of the blotting-paper and turned towards us the + following hieroglyphic: + + [ Picture: Several unreadable scrawls on paper ] + + Cyril Overton was much excited. "Hold it to the glass!" he cried. + + "That is unnecessary," said Holmes. "The paper is thin, and the + reverse will give the message. Here it is." He turned it over and we + read: + + [ Picture: Stand by us for God’s sake! ] + + "So that is the tail end of the telegram which Godfrey Staunton + dispatched within a few hours of his disappearance. There are at + least six words of the message which have escaped us; but what + remains--'Stand by us for God's sake!'--proves that this young man + saw a formidable danger which approached him, and from which someone + else could protect him. 'Us,' mark you! Another person was involved. + Who should it be but the pale-faced, bearded man, who seemed himself + in so nervous a state? What, then, is the connection between Godfrey + Staunton and the bearded man? And what is the third source from which + each of them sought for help against pressing danger? Our inquiry has + already narrowed down to that." + + "We have only to find to whom that telegram is addressed," I + suggested. + + "Exactly, my dear Watson. Your reflection, though profound, had + already crossed my mind. But I dare say it may have come to your + notice that if you walk into a post-office and demand to see the + counterfoil of another man's message there may be some disinclination + on the part of the officials to oblige you. There is so much red tape + in these matters! However, I have no doubt that with a little + delicacy and finesse the end may be attained. Meanwhile, I should + like in your presence, Mr. Overton, to go through these papers which + have been left upon the table." + + There were a number of letters, bills, and note-books, which Holmes + turned over and examined with quick, nervous fingers and darting, + penetrating eyes. "Nothing here," he said, at last. "By the way, I + suppose your friend was a healthy young fellow--nothing amiss with + him?" + + "Sound as a bell." + + "Have you ever known him ill?" + + "Not a day. He has been laid up with a hack, and once he slipped his + knee-cap, but that was nothing." + + "Perhaps he was not so strong as you suppose. I should think he may + have had some secret trouble. With your assent I will put one or two + of these papers in my pocket, in case they should bear upon our + future inquiry." + + "One moment! one moment!" cried a querulous voice, and we looked up + to find a queer little old man, jerking and twitching in the doorway. + He was dressed in rusty black, with a very broad brimmed top-hat and + a loose white necktie--the whole effect being that of a very rustic + parson or of an undertaker's mute. Yet, in spite of his shabby and + even absurd appearance, his voice had a sharp crackle, and his manner + a quick intensity which commanded attention. + + "Who are you, sir, and by what right do you touch this gentleman's + papers?" he asked. + + "I am a private detective, and I am endeavouring to explain his + disappearance." + + "Oh, you are, are you? And who instructed you, eh?" + + "This gentleman, Mr. Staunton's friend, was referred to me by + Scotland Yard." + + "Who are you, sir?" + + "I am Cyril Overton." + + "Then it is you who sent me a telegram. My name is Lord Mount-James. + I came round as quickly as the Bayswater 'bus would bring me. So you + have instructed a detective?" + + "Yes, sir." + + "And are you prepared to meet the cost?" + + "I have no doubt, sir, that my friend Godfrey, when we find him, will + be prepared to do that." + + "But if he is never found, eh? Answer me that!" + + "In that case no doubt his family--" + + "Nothing of the sort, sir!" screamed the little man. "Don't look to + me for a penny--not a penny! You understand that, Mr. Detective! I am + all the family that this young man has got, and I tell you that I am + not responsible. If he has any expectations it is due to the fact + that I have never wasted money, and I do not propose to begin to do + so now. As to those papers with which you are making so free, I may + tell you that in case there should be anything of any value among + them you will be held strictly to account for what you do with them." + + "Very good, sir," said Sherlock Holmes. "May I ask in the meanwhile + whether you have yourself any theory to account for this young man's + disappearance?" + + "No, sir, I have not. He is big enough and old enough to look after + himself, and if he is so foolish as to lose himself I entirely refuse + to accept the responsibility of hunting for him." + + "I quite understand your position," said Holmes, with a mischievous + twinkle in his eyes. "Perhaps you don't quite understand mine. + Godfrey Staunton appears to have been a poor man. If he has been + kidnapped it could not have been for anything which he himself + possesses. The fame of your wealth has gone abroad, Lord Mount-James, + and it is entirely possible that a gang of thieves have secured your + nephew in order to gain from him some information as to your house, + your habits, and your treasure." + + The face of our unpleasant little visitor turned as white as his + neckcloth. + + "Heavens, sir, what an idea! I never thought of such villainy! What + inhuman rogues there are in the world! But Godfrey is a fine lad--a + staunch lad. Nothing would induce him to give his old uncle away. + I'll have the plate moved over to the bank this evening. In the + meantime spare no pains, Mr. Detective! I beg you to leave no stone + unturned to bring him safely back. As to money, well, so far as a + fiver, or even a tenner, goes, you can always look to me." + + Even in his chastened frame of mind the noble miser could give us no + information which could help us, for he knew little of the private + life of his nephew. Our only clue lay in the truncated telegram, and + with a copy of this in his hand Holmes set forth to find a second + link for his chain. We had shaken off Lord Mount-James, and Overton + had gone to consult with the other members of his team over the + misfortune which had befallen them. + + There was a telegraph-office at a short distance from the hotel. We + halted outside it. + + "It's worth trying, Watson," said Holmes. "Of course, with a warrant + we could demand to see the counterfoils, but we have not reached that + stage yet. I don't suppose they remember faces in so busy a place. + Let us venture it." + + "I am sorry to trouble you," said he, in his blandest manner, to the + young woman behind the grating; "there is some small mistake about a + telegram I sent yesterday. I have had no answer, and I very much fear + that I must have omitted to put my name at the end. Could you tell me + if this was so?" + + The young woman turned over a sheaf of counterfoils. + + "What o'clock was it?" she asked. + + "A little after six." + + "Whom was it to?" + + Holmes put his finger to his lips and glanced at me. "The last words + in it were 'for God's sake,'" he whispered, confidentially; "I am + very anxious at getting no answer." + + The young woman separated one of the forms. + + "This is it. There is no name," said she, smoothing it out upon the + counter. + + "Then that, of course, accounts for my getting no answer," said + Holmes. "Dear me, how very stupid of me, to be sure! Good morning, + miss, and many thanks for having relieved my mind." He chuckled and + rubbed his hands when we found ourselves in the street once more. + + "Well?" I asked. + + "We progress, my dear Watson, we progress. I had seven different + schemes for getting a glimpse of that telegram, but I could hardly + hope to succeed the very first time." + + "And what have you gained?" + + "A starting-point for our investigation." He hailed a cab. "King's + Cross Station," said he. + + "We have a journey, then?" + + "Yes; I think we must run down to Cambridge together. All the + indications seem to me to point in that direction." + + "Tell me," I asked, as we rattled up Gray's Inn Road, "have you any + suspicion yet as to the cause of the disappearance? I don't think + that among all our cases I have known one where the motives are more + obscure. Surely you don't really imagine that he may be kidnapped in + order to give information against his wealthy uncle?" + + "I confess, my dear Watson, that that does not appeal to me as a very + probable explanation. It struck me, however, as being the one which + was most likely to interest that exceedingly unpleasant old person." + + "It certainly did that. But what are your alternatives?" + + "I could mention several. You must admit that it is curious and + suggestive that this incident should occur on the eve of this + important match, and should involve the only man whose presence seems + essential to the success of the side. It may, of course, be + coincidence, but it is interesting. Amateur sport is free from + betting, but a good deal of outside betting goes on among the public, + and it is possible that it might be worth someone's while to get at a + player as the ruffians of the turf get at a race-horse. There is one + explanation. A second very obvious one is that this young man really + is the heir of a great property, however modest his means may at + present be, and it is not impossible that a plot to hold him for + ransom might be concocted." + + "These theories take no account of the telegram." + + "Quite true, Watson. The telegram still remains the only solid thing + with which we have to deal, and we must not permit our attention to + wander away from it. It is to gain light upon the purpose of this + telegram that we are now upon our way to Cambridge. The path of our + investigation is at present obscure, but I shall be very much + surprised if before evening we have not cleared it up or made a + considerable advance along it." + + It was already dark when we reached the old University city. Holmes + took a cab at the station, and ordered the man to drive to the house + of Dr. Leslie Armstrong. A few minutes later we had stopped at a + large mansion in the busiest thoroughfare. We were shown in, and + after a long wait were at last admitted into the consulting-room, + where we found the doctor seated behind his table. + + It argues the degree in which I had lost touch with my profession + that the name of Leslie Armstrong was unknown to me. Now I am aware + that he is not only one of the heads of the medical school of the + University, but a thinker of European reputation in more than one + branch of science. Yet even without knowing his brilliant record one + could not fail to be impressed by a mere glance at the man, the + square, massive face, the brooding eyes under the thatched brows, and + the granite moulding of the inflexible jaw. A man of deep character, + a man with an alert mind, grim, ascetic, self-contained, + formidable--so I read Dr. Leslie Armstrong. He held my friend's card + in his hand, and he looked up with no very pleased expression upon + his dour features. + + "I have heard your name, Mr. Sherlock Holmes, and I am aware of your + profession, one of which I by no means approve." + + "In that, doctor, you will find yourself in agreement with every + criminal in the country," said my friend, quietly. + + "So far as your efforts are directed towards the suppression of + crime, sir, they must have the support of every reasonable member of + the community, though I cannot doubt that the official machinery is + amply sufficient for the purpose. Where your calling is more open to + criticism is when you pry into the secrets of private individuals, + when you rake up family matters which are better hidden, and when you + incidentally waste the time of men who are more busy than yourself. + At the present moment, for example, I should be writing a treatise + instead of conversing with you." + + "No doubt, doctor; and yet the conversation may prove more important + than the treatise. Incidentally I may tell you that we are doing the + reverse of what you very justly blame, and that we are endeavouring + to prevent anything like public exposure of private matters which + must necessarily follow when once the case is fairly in the hands of + the official police. You may look upon me simply as an irregular + pioneer who goes in front of the regular forces of the country. I + have come to ask you about Mr. Godfrey Staunton." + + "What about him?" + + "You know him, do you not?" + + "He is an intimate friend of mine." + + "You are aware that he has disappeared?" + + "Ah, indeed!" There was no change of expression in the rugged + features of the doctor. + + "He left his hotel last night. He has not been heard of." + + "No doubt he will return." + + "To-morrow is the 'Varsity football match." + + "I have no sympathy with these childish games. The young man's fate + interests me deeply, since I know him and like him. The football + match does not come within my horizon at all." + + "I claim your sympathy, then, in my investigation of Mr. Staunton's + fate. Do you know where he is?" + + "Certainly not." + + "You have not seen him since yesterday?" + + "No, I have not." + + "Was Mr. Staunton a healthy man?" + + "Absolutely." + + "Did you ever know him ill?" + + "Never." + + Holmes popped a sheet of paper before the doctor's eyes. "Then + perhaps you will explain this receipted bill for thirteen guineas, + paid by Mr. Godfrey Staunton last month to Dr. Leslie Armstrong of + Cambridge. I picked it out from among the papers upon his desk." + + The doctor flushed with anger. + + "I do not feel that there is any reason why I should render an + explanation to you, Mr. Holmes." + + Holmes replaced the bill in his note-book. "If you prefer a public + explanation it must come sooner or later," said he. "I have already + told you that I can hush up that which others will be bound to + publish, and you would really be wiser to take me into your complete + confidence." + + "I know nothing about it." + + "Did you hear from Mr. Staunton in London?" + + "Certainly not." + + "Dear me, dear me; the post-office again!" Holmes sighed, wearily. "A + most urgent telegram was dispatched to you from London by Godfrey + Staunton at six-fifteen yesterday evening--a telegram which is + undoubtedly associated with his disappearance--and yet you have not + had it. It is most culpable. I shall certainly go down to the office + here and register a complaint." + + Dr. Leslie Armstrong sprang up from behind his desk, and his dark + face was crimson with fury. + + "I'll trouble you to walk out of my house, sir," said he. "You can + tell your employer, Lord Mount-James, that I do not wish to have + anything to do either with him or with his agents. No, sir, not + another word!" He rang the bell furiously. "John, show these + gentlemen out!" A pompous butler ushered us severely to the door, and + we found ourselves in the street. Holmes burst out laughing. + + "Dr. Leslie Armstrong is certainly a man of energy and character," + said he. "I have not seen a man who, if he turned his talents that + way, was more calculated to fill the gap left by the illustrious + Moriarty. And now, my poor Watson, here we are, stranded and + friendless in this inhospitable town, which we cannot leave without + abandoning our case. This little inn just opposite Armstrong's house + is singularly adapted to our needs. If you would engage a front room + and purchase the necessaries for the night, I may have time to make a + few inquiries." + + These few inquiries proved, however, to be a more lengthy proceeding + than Holmes had imagined, for he did not return to the inn until + nearly nine o'clock. He was pale and dejected, stained with dust, and + exhausted with hunger and fatigue. A cold supper was ready upon the + table, and when his needs were satisfied and his pipe alight he was + ready to take that half comic and wholly philosophic view which was + natural to him when his affairs were going awry. The sound of + carriage wheels caused him to rise and glance out of the window. A + brougham and pair of greys under the glare of a gas-lamp stood before + the doctor's door. + + "It's been out three hours," said Holmes; "started at half-past six, + and here it is back again. That gives a radius of ten or twelve + miles, and he does it once, or sometimes twice, a day." + + "No unusual thing for a doctor in practice." + + "But Armstrong is not really a doctor in practice. He is a lecturer + and a consultant, but he does not care for general practice, which + distracts him from his literary work. Why, then, does he make these + long journeys, which must be exceedingly irksome to him, and who is + it that he visits?" + + "His coachman--" + + "My dear Watson, can you doubt that it was to him that I first + applied? I do not know whether it came from his own innate depravity + or from the promptings of his master, but he was rude enough to set a + dog at me. Neither dog nor man liked the look of my stick, however, + and the matter fell through. Relations were strained after that, and + further inquiries out of the question. All that I have learned I got + from a friendly native in the yard of our own inn. It was he who told + me of the doctor's habits and of his daily journey. At that instant, + to give point to his words, the carriage came round to the door." + + "Could you not follow it?" + + "Excellent, Watson! You are scintillating this evening. The idea did + cross my mind. There is, as you may have observed, a bicycle shop + next to our inn. Into this I rushed, engaged a bicycle, and was able + to get started before the carriage was quite out of sight. I rapidly + overtook it, and then, keeping at a discreet distance of a hundred + yards or so, I followed its lights until we were clear of the town. + We had got well out on the country road when a somewhat mortifying + incident occurred. The carriage stopped, the doctor alighted, walked + swiftly back to where I had also halted, and told me in an excellent + sardonic fashion that he feared the road was narrow, and that he + hoped his carriage did not impede the passage of my bicycle. Nothing + could have been more admirable than his way of putting it. I at once + rode past the carriage, and, keeping to the main road, I went on for + a few miles, and then halted in a convenient place to see if the + carriage passed. There was no sign of it, however, and so it became + evident that it had turned down one of several side roads which I had + observed. I rode back, but again saw nothing of the carriage, and + now, as you perceive, it has returned after me. Of course, I had at + the outset no particular reason to connect these journeys with the + disappearance of Godfrey Staunton, and was only inclined to + investigate them on the general grounds that everything which + concerns Dr. Armstrong is at present of interest to us; but, now that + I find he keeps so keen a look-out upon anyone who may follow him on + these excursions, the affair appears more important, and I shall not + be satisfied until I have made the matter clear." + + "We can follow him to-morrow." + + "Can we? It is not so easy as you seem to think. You are not familiar + with Cambridgeshire scenery, are you? It does not lend itself to + concealment. All this country that I passed over to-night is as flat + and clean as the palm of your hand, and the man we are following is + no fool, as he very clearly showed to-night. I have wired to Overton + to let us know any fresh London developments at this address, and in + the meantime we can only concentrate our attention upon Dr. + Armstrong, whose name the obliging young lady at the office allowed + me to read upon the counterfoil of Staunton's urgent message. He + knows where the young man is--to that I'll swear--and if he knows, + then it must be our own fault if we cannot manage to know also. At + present it must be admitted that the odd trick is in his possession, + and, as you are aware, Watson, it is not my habit to leave the game + in that condition." + + And yet the next day brought us no nearer to the solution of the + mystery. A note was handed in after breakfast, which Holmes passed + across to me with a smile. + + Sir [it ran]: + I can assure you that you are wasting your time in dogging my + movements. I have, as you discovered last night, a window at the back + of my brougham, and if you desire a twenty-mile ride which will lead + you to the spot from which you started, you have only to follow me. + Meanwhile, I can inform you that no spying upon me can in any way + help Mr. Godfrey Staunton, and I am convinced that the best service + you can do to that gentleman is to return at once to London and to + report to your employer that you are unable to trace him. Your time + in Cambridge will certainly be wasted. + Yours faithfully, + Leslie Armstrong. + + "An outspoken, honest antagonist is the doctor," said Holmes. "Well, + well, he excites my curiosity, and I must really know more before I + leave him." + + "His carriage is at his door now," said I. "There he is stepping into + it. I saw him glance up at our window as he did so. Suppose I try my + luck upon the bicycle?" + + "No, no, my dear Watson! With all respect for your natural acumen I + do not think that you are quite a match for the worthy doctor. I + think that possibly I can attain our end by some independent + explorations of my own. I am afraid that I must leave you to your own + devices, as the appearance of two inquiring strangers upon a sleepy + countryside might excite more gossip than I care for. No doubt you + will find some sights to amuse you in this venerable city, and I hope + to bring back a more favourable report to you before evening." + + Once more, however, my friend was destined to be disappointed. He + came back at night weary and unsuccessful. + + "I have had a blank day, Watson. Having got the doctor's general + direction, I spent the day in visiting all the villages upon that + side of Cambridge, and comparing notes with publicans and other local + news agencies. I have covered some ground: Chesterton, Histon, + Waterbeach, and Oakington have each been explored and have each + proved disappointing. The daily appearance of a brougham and pair + could hardly have been overlooked in such Sleepy Hollows. The doctor + has scored once more. Is there a telegram for me?" + + "Yes; I opened it. Here it is: + + "'Ask for Pompey from Jeremy Dixon, Trinity College.' + "I don't understand it." + + "Oh, it is clear enough. It is from our friend Overton, and is in + answer to a question from me. I'll just send round a note to Mr. + Jeremy Dixon, and then I have no doubt that our luck will turn. By + the way, is there any news of the match?" + + "Yes, the local evening paper has an excellent account in its last + edition. Oxford won by a goal and two tries. The last sentences of + the description say: + + "'The defeat of the Light Blues may be entirely attributed to the + unfortunate absence of the crack International, Godfrey Staunton, + whose want was felt at every instant of the game. The lack of + combination in the three-quarter line and their weakness both in + attack and defence more than neutralized the efforts of a heavy and + hard-working pack.'" + + "Then our friend Overton's forebodings have been justified," said + Holmes. "Personally I am in agreement with Dr. Armstrong, and + football does not come within my horizon. Early to bed to-night, + Watson, for I foresee that to-morrow may be an eventful day." + + I was horrified by my first glimpse of Holmes next morning, for he + sat by the fire holding his tiny hypodermic syringe. I associated + that instrument with the single weakness of his nature, and I feared + the worst when I saw it glittering in his hand. He laughed at my + expression of dismay, and laid it upon the table. + + "No, no, my dear fellow, there is no cause for alarm. It is not upon + this occasion the instrument of evil, but it will rather prove to be + the key which will unlock our mystery. On this syringe I base all my + hopes. I have just returned from a small scouting expedition and + everything is favourable. Eat a good breakfast, Watson, for I propose + to get upon Dr. Armstrong's trail to-day, and once on it I will not + stop for rest or food until I run him to his burrow." + + "In that case," said I, "we had best carry our breakfast with us, for + he is making an early start. His carriage is at the door." + + "Never mind. Let him go. He will be clever if he can drive where I + cannot follow him. When you have finished come downstairs with me, + and I will introduce you to a detective who is a very eminent + specialist in the work that lies before us." + + When we descended I followed Holmes into the stable yard, where he + opened the door of a loose-box and led out a squat, lop-eared, + white-and-tan dog, something between a beagle and a foxhound. + + "Let me introduce you to Pompey," said he. "Pompey is the pride of + the local draghounds, no very great flier, as his build will show, + but a staunch hound on a scent. Well, Pompey, you may not be fast, + but I expect you will be too fast for a couple of middle-aged London + gentlemen, so I will take the liberty of fastening this leather leash + to your collar. Now, boy, come along, and show what you can do." He + led him across to the doctor's door. The dog sniffed round for an + instant, and then with a shrill whine of excitement started off down + the street, tugging at his leash in his efforts to go faster. In half + an hour, we were clear of the town and hastening down a country road. + + "What have you done, Holmes?" I asked. + + "A threadbare and venerable device, but useful upon occasion. I + walked into the doctor's yard this morning and shot my syringe full + of aniseed over the hind wheel. A draghound will follow aniseed from + here to John o' Groat's, and our friend Armstrong would have to drive + through the Cam before he would shake Pompey off his trail. Oh, the + cunning rascal! This is how he gave me the slip the other night." + + The dog had suddenly turned out of the main road into a grass-grown + lane. Half a mile farther this opened into another broad road, and + the trail turned hard to the right in the direction of the town, + which we had just quitted. The road took a sweep to the south of the + town and continued in the opposite direction to that in which we + started. + + "This détour has been entirely for our benefit, then?" said Holmes. + "No wonder that my inquiries among those villages led to nothing. The + doctor has certainly played the game for all it is worth, and one + would like to know the reason for such elaborate deception. This + should be the village of Trumpington to the right of us. And, by + Jove! here is the brougham coming round the corner. Quick, Watson, + quick, or we are done!" + + He sprang through a gate into a field, dragging the reluctant Pompey + after him. We had hardly got under the shelter of the hedge when the + carriage rattled past. I caught a glimpse of Dr. Armstrong within, + his shoulders bowed, his head sunk on his hands, the very image of + distress. I could tell by my companion's graver face that he also had + seen. + + "I fear there is some dark ending to our quest," said he. "It cannot + be long before we know it. Come, Pompey! Ah, it is the cottage in the + field!" + + There could be no doubt that we had reached the end of our journey. + Pompey ran about and whined eagerly outside the gate where the marks + of the brougham's wheels were still to be seen. A footpath led across + to the lonely cottage. Holmes tied the dog to the hedge, and we + hastened onwards. My friend knocked at the little rustic door, and + knocked again without response. And yet the cottage was not deserted, + for a low sound came to our ears--a kind of drone of misery and + despair, which was indescribably melancholy. Holmes paused + irresolute, and then he glanced back at the road which we had just + traversed. A brougham was coming down it, and there could be no + mistaking those grey horses. + + "By Jove, the doctor is coming back!" cried Holmes. "That settles it. + We are bound to see what it means before he comes." + + He opened the door and we stepped into the hall. The droning sound + swelled louder upon our ears until it became one long, deep wail of + distress. It came from upstairs. Holmes darted up and I followed him. + He pushed open a half-closed door and we both stood appalled at the + sight before us. + + A woman, young and beautiful, was lying dead upon the bed. Her calm, + pale face, with dim, wide-opened blue eyes, looked upward from amid a + great tangle of golden hair. At the foot of the bed, half sitting, + half kneeling, his face buried in the clothes, was a young man, whose + frame was racked by his sobs. So absorbed was he by his bitter grief + that he never looked up until Holmes's hand was on his shoulder. + + "Are you Mr. Godfrey Staunton?" + + "Yes, yes; I am--but you are too late. She is dead." + + The man was so dazed that he could not be made to understand that we + were anything but doctors who had been sent to his assistance. Holmes + was endeavouring to utter a few words of consolation, and to explain + the alarm which had been caused to his friends by his sudden + disappearance, when there was a step upon the stairs, and there was + the heavy, stern, questioning face of Dr. Armstrong at the door. + + "So, gentlemen," said he, "you have attained your end, and have + certainly chosen a particularly delicate moment for your intrusion. I + would not brawl in the presence of death, but I can assure you that + if I were a younger man your monstrous conduct would not pass with + impunity." + + "Excuse me, Dr. Armstrong, I think we are a little at + cross-purposes," said my friend, with dignity. "If you could step + downstairs with us we may each be able to give some light to the + other upon this miserable affair." + + A minute later the grim doctor and ourselves were in the sitting-room + below. + + "Well, sir?" said he. + + "I wish you to understand, in the first place, that I am not employed + by Lord Mount-James, and that my sympathies in this matter are + entirely against that nobleman. When a man is lost it is my duty to + ascertain his fate, but having done so the matter ends so far as I am + concerned; and so long as there is nothing criminal, I am much more + anxious to hush up private scandals than to give them publicity. If, + as I imagine, there is no breach of the law in this matter, you can + absolutely depend upon my discretion and my co-operation in keeping + the facts out of the papers." + + Dr. Armstrong took a quick step forward and wrung Holmes by the hand. + + "You are a good fellow," said he. "I had misjudged you. I thank + Heaven that my compunction at leaving poor Staunton all alone in this + plight caused me to turn my carriage back, and so to make your + acquaintance. Knowing as much as you do, the situation is very easily + explained. A year ago Godfrey Staunton lodged in London for a time, + and became passionately attached to his landlady's daughter, whom he + married. She was as good as she was beautiful, and as intelligent as + she was good. No man need be ashamed of such a wife. But Godfrey was + the heir to this crabbed old nobleman, and it was quite certain that + the news of his marriage would have been the end of his inheritance. + I knew the lad well, and I loved him for his many excellent + qualities. I did all I could to help him to keep things straight. We + did our very best to keep the thing from everyone, for when once such + a whisper gets about it is not long before everyone has heard it. + Thanks to this lonely cottage and his own discretion, Godfrey has up + to now succeeded. Their secret was known to no one save to me and to + one excellent servant who has at present gone for assistance to + Trumpington. But at last there came a terrible blow in the shape of + dangerous illness to his wife. It was consumption of the most + virulent kind. The poor boy was half crazed with grief, and yet he + had to go to London to play this match, for he could not get out of + it without explanations which would expose his secret. I tried to + cheer him up by a wire, and he sent me one in reply imploring me to + do all I could. This was the telegram which you appear in some + inexplicable way to have seen. I did not tell him how urgent the + danger was, for I knew that he could do no good here, but I sent the + truth to the girl's father, and he very injudiciously communicated it + to Godfrey. The result was that he came straight away in a state + bordering on frenzy, and has remained in the same state, kneeling at + the end of her bed, until this morning death put an end to her + sufferings. That is all, Mr. Holmes, and I am sure that I can rely + upon your discretion and that of your friend." + + Holmes grasped the doctor's hand. + + "Come, Watson," said he, and we passed from that house of grief into + the pale sunlight of the winter day. + + + + + + + THE ADVENTURE OF THE ABBEY GRANGE + + It was on a bitterly cold and frosty morning during the winter of '97 + that I was awakened by a tugging at my shoulder. It was Holmes. The + candle in his hand shone upon his eager, stooping face and told me at + a glance that something was amiss. + + "Come, Watson, come!" he cried. "The game is afoot. Not a word! Into + your clothes and come!" + + Ten minutes later we were both in a cab and rattling through the + silent streets on our way to Charing Cross Station. The first faint + winter's dawn was beginning to appear, and we could dimly see the + occasional figure of an early workman as he passed us, blurred and + indistinct in the opalescent London reek. Holmes nestled in silence + into his heavy coat, and I was glad to do the same, for the air was + most bitter and neither of us had broken our fast. It was not until + we had consumed some hot tea at the station, and taken our places in + the Kentish train, that we were sufficiently thawed, he to speak and + I to listen. Holmes drew a note from his pocket and read it aloud: + + "Abbey Grange, Marsham, Kent, + "3.30 a.m. + "My dear Mr. Holmes: + "I should be very glad of your immediate assistance in what promises + to be a most remarkable case. It is something quite in your line. + Except for releasing the lady I will see that everything is kept + exactly as I have found it, but I beg you not to lose an instant, as + it is difficult to leave Sir Eustace there. + "Yours faithfully, + "Stanley Hopkins." + + "Hopkins has called me in seven times, and on each occasion his + summons has been entirely justified," said Holmes. "I fancy that + every one of his cases has found its way into your collection, and I + must admit, Watson, that you have some power of selection which + atones for much which I deplore in your narratives. Your fatal habit + of looking at everything from the point of view of a story instead of + as a scientific exercise has ruined what might have been an + instructive and even classical series of demonstrations. You slur + over work of the utmost finesse and delicacy in order to dwell upon + sensational details which may excite, but cannot possibly instruct, + the reader." + + "Why do you not write them yourself?" I said, with some bitterness. + + "I will, my dear Watson, I will. At present I am, as you know, fairly + busy, but I propose to devote my declining years to the composition + of a text-book which shall focus the whole art of detection into one + volume. Our present research appears to be a case of murder." + + "You think this Sir Eustace is dead, then?" + + "I should say so. Hopkins's writing shows considerable agitation, and + he is not an emotional man. Yes, I gather there has been violence, + and that the body is left for our inspection. A mere suicide would + not have caused him to send for me. As to the release of the lady, it + would appear that she has been locked in her room during the tragedy. + We are moving in high life, Watson; crackling paper, 'E.B.' monogram, + coat-of-arms, picturesque address. I think that friend Hopkins will + live up to his reputation and that we shall have an interesting + morning. The crime was committed before twelve last night." + + "How can you possibly tell?" + + "By an inspection of the trains and by reckoning the time. The local + police had to be called in, they had to communicate with Scotland + Yard, Hopkins had to go out, and he in turn had to send for me. All + that makes a fair night's work. Well, here we are at Chislehurst + Station, and we shall soon set our doubts at rest." + + A drive of a couple of miles through narrow country lanes brought us + to a park gate, which was opened for us by an old lodge-keeper, whose + haggard face bore the reflection of some great disaster. The avenue + ran through a noble park, between lines of ancient elms, and ended in + a low, widespread house, pillared in front after the fashion of + Palladio. The central part was evidently of a great age and shrouded + in ivy, but the large windows showed that modern changes had been + carried out, and one wing of the house appeared to be entirely new. + The youthful figure and alert, eager face of Inspector Stanley + Hopkins confronted us in the open doorway. + + "I'm very glad you have come, Mr. Holmes. And you too, Dr. Watson! + But, indeed, if I had my time over again I should not have troubled + you, for since the lady has come to herself she has given so clear an + account of the affair that there is not much left for us to do. You + remember that Lewisham gang of burglars?" + + "What, the three Randalls?" + + "Exactly; the father and two sons. It's their work. I have not a + doubt of it. They did a job at Sydenham a fortnight ago, and were + seen and described. Rather cool to do another so soon and so near, + but it is they, beyond all doubt. It's a hanging matter this time." + + "Sir Eustace is dead, then?" + + "Yes; his head was knocked in with his own poker." + + "Sir Eustace Brackenstall, the driver tells me." + + "Exactly--one of the richest men in Kent. Lady Brackenstall is in the + morning-room. Poor lady, she has had a most dreadful experience. She + seemed half dead when I saw her first. I think you had best see her + and hear her account of the facts. Then we will examine the + dining-room together." + + Lady Brackenstall was no ordinary person. Seldom have I seen so + graceful a figure, so womanly a presence, and so beautiful a face. + She was a blonde, golden-haired, blue-eyed, and would, no doubt, have + had the perfect complexion which goes with such colouring had not her + recent experience left her drawn and haggard. Her sufferings were + physical as well as mental, for over one eye rose a hideous, + plum-coloured swelling, which her maid, a tall, austere woman, was + bathing assiduously with vinegar and water. The lady lay back + exhausted upon a couch, but her quick, observant gaze as we entered + the room, and the alert expression of her beautiful features, showed + that neither her wits nor her courage had been shaken by her terrible + experience. She was enveloped in a loose dressing-gown of blue and + silver, but a black sequin-covered dinner-dress was hung upon the + couch beside her. + + "I have told you all that happened, Mr. Hopkins," she said, wearily; + "could you not repeat it for me? Well, if you think it necessary, I + will tell these gentlemen what occurred. Have they been in the + dining-room yet?" + + "I thought they had better hear your ladyship's story first." + + "I shall be glad when you can arrange matters. It is horrible to me + to think of him still lying there." She shuddered and buried her face + in her hands. As she did so the loose gown fell back from her + forearms. Holmes uttered an exclamation. + + "You have other injuries, madam! What is this?" Two vivid red spots + stood out on one of the white, round limbs. She hastily covered it. + + "It is nothing. It has no connection with the hideous business of + last night. If you and your friend will sit down I will tell you all + I can. + + "I am the wife of Sir Eustace Brackenstall. I have been married about + a year. I suppose that it is no use my attempting to conceal that our + marriage has not been a happy one. I fear that all our neighbours + would tell you that, even if I were to attempt to deny it. Perhaps + the fault may be partly mine. I was brought up in the freer, less + conventional atmosphere of South Australia, and this English life, + with its proprieties and its primness, is not congenial to me. But + the main reason lies in the one fact which is notorious to everyone, + and that is that Sir Eustace was a confirmed drunkard. To be with + such a man for an hour is unpleasant. Can you imagine what it means + for a sensitive and high-spirited woman to be tied to him for day and + night? It is a sacrilege, a crime, a villainy to hold that such a + marriage is binding. I say that these monstrous laws of yours will + bring a curse upon the land--Heaven will not let such wickedness + endure." For an instant she sat up, her cheeks flushed, and her eyes + blazing from under the terrible mark upon her brow. Then the strong, + soothing hand of the austere maid drew her head down on to the + cushion, and the wild anger died away into passionate sobbing. At + last she continued:-- + + "I will tell you about last night. You are aware, perhaps, that in + this house all servants sleep in the modern wing. This central block + is made up of the dwelling-rooms, with the kitchen behind and our + bedroom above. My maid Theresa sleeps above my room. There is no one + else, and no sound could alarm those who are in the farther wing. + This must have been well known to the robbers, or they would not have + acted as they did. + + "Sir Eustace retired about half-past ten. The servants had already + gone to their quarters. Only my maid was up, and she had remained in + her room at the top of the house until I needed her services. I sat + until after eleven in this room, absorbed in a book. Then I walked + round to see that all was right before I went upstairs. It was my + custom to do this myself, for, as I have explained, Sir Eustace was + not always to be trusted. I went into the kitchen, the butler's + pantry, the gun-room, the billiard-room, the drawing-room, and + finally the dining-room. As I approached the window, which is covered + with thick curtains, I suddenly felt the wind blow upon my face and + realized that it was open. I flung the curtain aside and found myself + face to face with a broad-shouldered, elderly man who had just + stepped into the room. The window is a long French one, which really + forms a door leading to the lawn. I held my bedroom candle lit in my + hand, and, by its light, behind the first man I saw two others, who + were in the act of entering. I stepped back, but the fellow was on me + in an instant. He caught me first by the wrist and then by the + throat. I opened my mouth to scream, but he struck me a savage blow + with his fist over the eye, and felled me to the ground. I must have + been unconscious for a few minutes, for when I came to myself I found + that they had torn down the bell-rope and had secured me tightly to + the oaken chair which stands at the head of the dining-room table. I + was so firmly bound that I could not move, and a handkerchief round + my mouth prevented me from uttering any sound. It was at this instant + that my unfortunate husband entered the room. He had evidently heard + some suspicious sounds, and he came prepared for such a scene as he + found. He was dressed in his shirt and trousers, with his favourite + blackthorn cudgel in his hand. He rushed at one of the burglars, but + another--it was the elderly man--stooped, picked the poker out of the + grate, and struck him a horrible blow as he passed. He fell without a + groan, and never moved again. I fainted once more, but again it could + only have been a very few minutes during which I was insensible. When + I opened my eyes I found that they had collected the silver from the + sideboard, and they had drawn a bottle of wine which stood there. + Each of them had a glass in his hand. I have already told you, have I + not, that one was elderly, with a beard, and the others young, + hairless lads. They might have been a father with his two sons. They + talked together in whispers. Then they came over and made sure that I + was still securely bound. Finally they withdrew, closing the window + after them. It was quite a quarter of an hour before I got my mouth + free. When I did so my screams brought the maid to my assistance. The + other servants were soon alarmed, and we sent for the local police, + who instantly communicated with London. That is really all that I can + tell you, gentlemen, and I trust that it will not be necessary for me + to go over so painful a story again." + + "Any questions, Mr. Holmes?" asked Hopkins. + + "I will not impose any further tax upon Lady Brackenstall's patience + and time," said Holmes. "Before I go into the dining-room I should + like to hear your experience." He looked at the maid. + + "I saw the men before ever they came into the house," said she. "As I + sat by my bedroom window I saw three men in the moonlight down by the + lodge gate yonder, but I thought nothing of it at the time. It was + more than an hour after that I heard my mistress scream, and down I + ran, to find her, poor lamb, just as she says, and him on the floor + with his blood and brains over the room. It was enough to drive a + woman out of her wits, tied there, and her very dress spotted with + him; but she never wanted courage, did Miss Mary Fraser of Adelaide, + and Lady Brackenstall of Abbey Grange hasn't learned new ways. You've + questioned her long enough, you gentlemen, and now she is coming to + her own room, just with her old Theresa, to get the rest that she + badly needs." + + With a motherly tenderness the gaunt woman put her arm round her + mistress and led her from the room. + + "She has been with her all her life," said Hopkins. "Nursed her as a + baby, and came with her to England when they first left Australia + eighteen months ago. Theresa Wright is her name, and the kind of maid + you don't pick up nowadays. This way, Mr. Holmes, if you please!" + + The keen interest had passed out of Holmes's expressive face, and I + knew that with the mystery all the charm of the case had departed. + There still remained an arrest to be effected, but what were these + commonplace rogues that he should soil his hands with them? An + abstruse and learned specialist who finds that he has been called in + for a case of measles would experience something of the annoyance + which I read in my friend's eyes. Yet the scene in the dining-room of + the Abbey Grange was sufficiently strange to arrest his attention and + to recall his waning interest. + + It was a very large and high chamber, with carved oak ceiling, oaken + panelling, and a fine array of deer's heads and ancient weapons + around the walls. At the farther end from the door was the high + French window of which we had heard. Three smaller windows on the + right-hand side filled the apartment with cold winter sunshine. On + the left was a large, deep fireplace, with a massive, over-hanging + oak mantelpiece. Beside the fireplace was a heavy oaken chair with + arms and cross-bars at the bottom. In and out through the open + woodwork was woven a crimson cord, which was secured at each side to + the crosspiece below. In releasing the lady the cord had been slipped + off her, but the knots with which it had been secured still remained. + These details only struck our attention afterwards, for our thoughts + were entirely absorbed by the terrible object which lay upon the + tiger-skin hearthrug in front of the fire. + + It was the body of a tall, well-made man, about forty years of age. + He lay upon his back, his face upturned, with his white teeth + grinning through his short black beard. His two clenched hands were + raised above his head, and a heavy blackthorn stick lay across them. + His dark, handsome, aquiline features were convulsed into a spasm of + vindictive hatred, which had set his dead face in a terribly fiendish + expression. He had evidently been in his bed when the alarm had + broken out, for he wore a foppish embroidered night-shirt, and his + bare feet projected from his trousers. His head was horribly injured, + and the whole room bore witness to the savage ferocity of the blow + which had struck him down. Beside him lay the heavy poker, bent into + a curve by the concussion. Holmes examined both it and the + indescribable wreck which it had wrought. + + "He must be a powerful man, this elder Randall," he remarked. + + "Yes," said Hopkins. "I have some record of the fellow, and he is a + rough customer." + + "You should have no difficulty in getting him." + + "Not the slightest. We have been on the look-out for him, and there + was some idea that he had got away to America. Now that we know the + gang are here I don't see how they can escape. We have the news at + every seaport already, and a reward will be offered before evening. + What beats me is how they could have done so mad a thing, knowing + that the lady could describe them, and that we could not fail to + recognise the description." + + "Exactly. One would have expected that they would have silenced Lady + Brackenstall as well." + + "They may not have realized," I suggested, "that she had recovered + from her faint." + + "That is likely enough. If she seemed to be senseless they would not + take her life. What about this poor fellow, Hopkins? I seem to have + heard some queer stories about him." + + "He was a good-hearted man when he was sober, but a perfect fiend + when he was drunk, or rather when he was half drunk, for he seldom + really went the whole way. The devil seemed to be in him at such + times, and he was capable of anything. From what I hear, in spite of + all his wealth and his title, he very nearly came our way once or + twice. There was a scandal about his drenching a dog with petroleum + and setting it on fire--her ladyship's dog, to make the matter + worse--and that was only hushed up with difficulty. Then he threw a + decanter at that maid, Theresa Wright; there was trouble about that. + On the whole, and between ourselves, it will be a brighter house + without him. What are you looking at now?" + + Holmes was down on his knees examining with great attention the knots + upon the red cord with which the lady had been secured. Then he + carefully scrutinized the broken and frayed end where it had snapped + off when the burglar had dragged it down. + + "When this was pulled down the bell in the kitchen must have rung + loudly," he remarked. + + "No one could hear it. The kitchen stands right at the back of the + house." + + "How did the burglar know no one would hear it? How dared he pull at + a bell-rope in that reckless fashion?" + + "Exactly, Mr. Holmes, exactly. You put the very question which I have + asked myself again and again. There can be no doubt that this fellow + must have known the house and its habits. He must have perfectly + understood that the servants would all be in bed at that + comparatively early hour, and that no one could possibly hear a bell + ring in the kitchen. Therefore he must have been in close league with + one of the servants. Surely that is evident. But there are eight + servants, and all of good character." + + "Other things being equal," said Holmes, "one would suspect the one + at whose head the master threw a decanter. And yet that would involve + treachery towards the mistress to whom this woman seems devoted. + Well, well, the point is a minor one, and when you have Randall you + will probably find no difficulty in securing his accomplice. The + lady's story certainly seems to be corroborated, if it needed + corroboration, by every detail which we see before us." He walked to + the French window and threw it open. "There are no signs here, but + the ground is iron hard, and one would not expect them. I see that + these candles on the mantelpiece have been lighted." + + "Yes; it was by their light and that of the lady's bedroom candle + that the burglars saw their way about." + + "And what did they take?" + + "Well, they did not take much--only half-a-dozen articles of plate + off the sideboard. Lady Brackenstall thinks that they were themselves + so disturbed by the death of Sir Eustace that they did not ransack + the house as they would otherwise have done." + + "No doubt that is true. And yet they drank some wine, I understand." + + "To steady their own nerves." + + "Exactly. These three glasses upon the sideboard have been untouched, + I suppose?" + + "Yes; and the bottle stands as they left it." + + "Let us look at it. Halloa! halloa! what is this?" + + The three glasses were grouped together, all of them tinged with + wine, and one of them containing some dregs of bees-wing. The bottle + stood near them, two-thirds full, and beside it lay a long, + deeply-stained cork. Its appearance and the dust upon the bottle + showed that it was no common vintage which the murderers had enjoyed. + + A change had come over Holmes's manner. He had lost his listless + expression, and again I saw an alert light of interest in his keen, + deep-set eyes. He raised the cork and examined it minutely. + + "How did they draw it?" he asked. + + Hopkins pointed to a half-opened drawer. In it lay some table linen + and a large cork-screw. + + "Did Lady Brackenstall say that screw was used?" + + "No; you remember that she was senseless at the moment when the + bottle was opened." + + "Quite so. As a matter of fact that screw was not used. This bottle + was opened by a pocket-screw, probably contained in a knife, and not + more than an inch and a half long. If you examine the top of the cork + you will observe that the screw was driven in three times before the + cork was extracted. It has never been transfixed. This long screw + would have transfixed it and drawn it with a single pull. When you + catch this fellow you will find that he has one of these multiplex + knives in his possession." + + "Excellent!" said Hopkins. + + "But these glasses do puzzle me, I confess. Lady Brackenstall + actually saw the three men drinking, did she not?" + + "Yes; she was clear about that." + + "Then there is an end of it. What more is to be said? And yet you + must admit that the three glasses are very remarkable, Hopkins. What, + you see nothing remarkable! Well, well, let it pass. Perhaps when a + man has special knowledge and special powers like my own it rather + encourages him to seek a complex explanation when a simpler one is at + hand. Of course, it must be a mere chance about the glasses. Well, + good morning, Hopkins. I don't see that I can be of any use to you, + and you appear to have your case very clear. You will let me know + when Randall is arrested, and any further developments which may + occur. I trust that I shall soon have to congratulate you upon a + successful conclusion. Come, Watson, I fancy that we may employ + ourselves more profitably at home." + + During our return journey I could see by Holmes's face that he was + much puzzled by something which he had observed. Every now and then, + by an effort, he would throw off the impression and talk as if the + matter were clear, but then his doubts would settle down upon him + again, and his knitted brows and abstracted eyes would show that his + thoughts had gone back once more to the great dining-room of the + Abbey Grange in which this midnight tragedy had been enacted. At + last, by a sudden impulse, just as our train was crawling out of a + suburban station, he sprang on to the platform and pulled me out + after him. + + "Excuse me, my dear fellow," said he, as we watched the rear + carriages of our train disappearing round a curve; "I am sorry to + make you the victim of what may seem a mere whim, but on my life, + Watson, I simply can't leave that case in this condition. Every + instinct that I possess cries out against it. It's wrong--it's all + wrong--I'll swear that it's wrong. And yet the lady's story was + complete, the maid's corroboration was sufficient, the detail was + fairly exact. What have I to put against that? Three wine-glasses, + that is all. But if I had not taken things for granted, if I had + examined everything with care which I would have shown had we + approached the case de novo and had no cut-and-dried story to warp my + mind, would I not then have found something more definite to go upon? + Of course I should. Sit down on this bench, Watson, until a train for + Chislehurst arrives, and allow me to lay the evidence before you, + imploring you in the first instance to dismiss from your mind the + idea that anything which the maid or her mistress may have said must + necessarily be true. The lady's charming personality must not be + permitted to warp our judgment. + + "Surely there are details in her story which, if we looked at it in + cold blood, would excite our suspicion. These burglars made a + considerable haul at Sydenham a fortnight ago. Some account of them + and of their appearance was in the papers, and would naturally occur + to anyone who wished to invent a story in which imaginary robbers + should play a part. As a matter of fact, burglars who have done a + good stroke of business are, as a rule, only too glad to enjoy the + proceeds in peace and quiet without embarking on another perilous + undertaking. Again, it is unusual for burglars to operate at so early + an hour; it is unusual for burglars to strike a lady to prevent her + screaming, since one would imagine that was the sure way to make her + scream; it is unusual for them to commit murder when their numbers + are sufficient to overpower one man; it is unusual for them to be + content with a limited plunder when there is much more within their + reach; and finally I should say that it was very unusual for such men + to leave a bottle half empty. How do all these unusuals strike you, + Watson?" + + "Their cumulative effect is certainly considerable, and yet each of + them is quite possible in itself. The most unusual thing of all, as + it seems to me, is that the lady should be tied to the chair." + + "Well, I am not so clear about that, Watson; for it is evident that + they must either kill her or else secure her in such a way that she + could not give immediate notice of their escape. But at any rate I + have shown, have I not, that there is a certain element of + improbability about the lady's story? And now on the top of this + comes the incident of the wine-glasses." + + "What about the wine-glasses?" + + "Can you see them in your mind's eye?" + + "I see them clearly." + + "We are told that three men drank from them. Does that strike you as + likely?" + + "Why not? There was wine in each glass." + + "Exactly; but there was bees-wing only in one glass. You must have + noticed that fact. What does that suggest to your mind?" + + "The last glass filled would be most likely to contain bees-wing." + + "Not at all. The bottle was full of it, and it is inconceivable that + the first two glasses were clear and the third heavily charged with + it. There are two possible explanations, and only two. One is that + after the second glass was filled the bottle was violently agitated, + and so the third glass received the bees-wing. That does not appear + probable. No, no; I am sure that I am right." + + "What, then, do you suppose?" + + "That only two glasses were used, and that the dregs of both were + poured into a third glass, so as to give the false impression that + three people had been here. In that way all the bees-wing would be in + the last glass, would it not? Yes, I am convinced that this is so. + But if I have hit upon the true explanation of this one small + phenomenon, then in an instant the case rises from the commonplace to + the exceedingly remarkable, for it can only mean that Lady + Brackenstall and her maid have deliberately lied to us, that not one + word of their story is to be believed, that they have some very + strong reason for covering the real criminal, and that we must + construct our case for ourselves without any help from them. That is + the mission which now lies before us, and here, Watson, is the + Chislehurst train." + + The household of the Abbey Grange were much surprised at our return, + but Sherlock Holmes, finding that Stanley Hopkins had gone off to + report to head-quarters, took possession of the dining-room, locked + the door upon the inside, and devoted himself for two hours to one of + those minute and laborious investigations which formed the solid + basis on which his brilliant edifices of deduction were reared. + Seated in a corner like an interested student who observes the + demonstration of his professor, I followed every step of that + remarkable research. The window, the curtains, the carpet, the chair, + the rope--each in turn was minutely examined and duly pondered. The + body of the unfortunate baronet had been removed, but all else + remained as we had seen it in the morning. Then, to my astonishment, + Holmes climbed up on to the massive mantelpiece. Far above his head + hung the few inches of red cord which were still attached to the + wire. For a long time he gazed upward at it, and then in an attempt + to get nearer to it he rested his knee upon a wooden bracket on the + wall. This brought his hand within a few inches of the broken end of + the rope, but it was not this so much as the bracket itself which + seemed to engage his attention. Finally he sprang down with an + ejaculation of satisfaction. + + "It's all right, Watson," said he. "We have got our case--one of the + most remarkable in our collection. But, dear me, how slow-witted I + have been, and how nearly I have committed the blunder of my + lifetime! Now, I think that with a few missing links my chain is + almost complete." + + "You have got your men?" + + "Man, Watson, man. Only one, but a very formidable person. Strong as + a lion--witness the blow that bent that poker. Six foot three in + height, active as a squirrel, dexterous with his fingers; finally, + remarkably quick-witted, for this whole ingenious story is of his + concoction. Yes, Watson, we have come upon the handiwork of a very + remarkable individual. And yet in that bell-rope he has given us a + clue which should not have left us a doubt." + + "Where was the clue?" + + "Well, if you were to pull down a bell-rope, Watson, where would you + expect it to break? Surely at the spot where it is attached to the + wire. Why should it break three inches from the top as this one has + done?" + + "Because it is frayed there?" + + "Exactly. This end, which we can examine, is frayed. He was cunning + enough to do that with his knife. But the other end is not frayed. + You could not observe that from here, but if you were on the + mantelpiece you would see that it is cut clean off without any mark + of fraying whatever. You can reconstruct what occurred. The man + needed the rope. He would not tear it down for fear of giving the + alarm by ringing the bell. What did he do? He sprang up on the + mantelpiece, could not quite reach it, put his knee on the + bracket--you will see the impression in the dust--and so got his + knife to bear upon the cord. I could not reach the place by at least + three inches, from which I infer that he is at least three inches a + bigger man than I. Look at that mark upon the seat of the oaken + chair! What is it?" + + "Blood." + + "Undoubtedly it is blood. This alone puts the lady's story out of + court. If she were seated on the chair when the crime was done, how + comes that mark? No, no; she was placed in the chair after the death + of her husband. I'll wager that the black dress shows a corresponding + mark to this. We have not yet met our Waterloo, Watson, but this is + our Marengo, for it begins in defeat and ends in victory. I should + like now to have a few words with the nurse Theresa. We must be wary + for awhile, if we are to get the information which we want." + + She was an interesting person, this stern Australian nurse. Taciturn, + suspicious, ungracious, it took some time before Holmes's pleasant + manner and frank acceptance of all that she said thawed her into a + corresponding amiability. She did not attempt to conceal her hatred + for her late employer. + + "Yes, sir, it is true that he threw the decanter at me. I heard him + call my mistress a name, and I told him that he would not dare to + speak so if her brother had been there. Then it was that he threw it + at me. He might have thrown a dozen if he had but left my bonny bird + alone. He was for ever illtreating her, and she too proud to + complain. She will not even tell me all that he has done to her. She + never told me of those marks on her arm that you saw this morning, + but I know very well that they come from a stab with a hat-pin. The + sly fiend--Heaven forgive me that I should speak of him so, now that + he is dead, but a fiend he was if ever one walked the earth. He was + all honey when first we met him, only eighteen months ago, and we + both feel as if it were eighteen years. She had only just arrived in + London. Yes, it was her first voyage--she had never been from home + before. He won her with his title and his money and his false London + ways. If she made a mistake she has paid for it, if ever a woman did. + What month did we meet him? Well, I tell you it was just after we + arrived. We arrived in June, and it was July. They were married in + January of last year. Yes, she is down in the morning-room again, and + I have no doubt she will see you, but you must not ask too much of + her, for she has gone through all that flesh and blood will stand." + + Lady Brackenstall was reclining on the same couch, but looked + brighter than before. The maid had entered with us, and began once + more to foment the bruise upon her mistress's brow. + + "I hope," said the lady, "that you have not come to cross-examine me + again?" + + "No," Holmes answered, in his gentlest voice, "I will not cause you + any unnecessary trouble, Lady Brackenstall, and my whole desire is to + make things easy for you, for I am convinced that you are a + much-tried woman. If you will treat me as a friend and trust me you + may find that I will justify your trust." + + "What do you want me to do?" + + "To tell me the truth." + + "Mr. Holmes!" + + "No, no, Lady Brackenstall, it is no use. You may have heard of any + little reputation which I possess. I will stake it all on the fact + that your story is an absolute fabrication." + + Mistress and maid were both staring at Holmes with pale faces and + frightened eyes. + + "You are an impudent fellow!" cried Theresa. "Do you mean to say that + my mistress has told a lie?" + + Holmes rose from his chair. + + "Have you nothing to tell me?" + + "I have told you everything." + + "Think once more, Lady Brackenstall. Would it not be better to be + frank?" + + For an instant there was hesitation in her beautiful face. Then some + new strong thought caused it to set like a mask. + + "I have told you all I know." + + Holmes took his hat and shrugged his shoulders. "I am sorry," he + said, and without another word we left the room and the house. There + was a pond in the park, and to this my friend led the way. It was + frozen over, but a single hole was left for the convenience of a + solitary swan. Holmes gazed at it and then passed on to the lodge + gate. There he scribbled a short note for Stanley Hopkins and left it + with the lodge-keeper. + + "It may be a hit or it may be a miss, but we are bound to do + something for friend Hopkins, just to justify this second visit," + said he. "I will not quite take him into my confidence yet. I think + our next scene of operations must be the shipping office of the + Adelaide-Southampton line, which stands at the end of Pall Mall, if I + remember right. There is a second line of steamers which connect + South Australia with England, but we will draw the larger cover + first." + + Holmes's card sent in to the manager ensured instant attention, and + he was not long in acquiring all the information which he needed. In + June of '95 only one of their line had reached a home port. It was + the Rock of Gibraltar, their largest and best boat. A reference to + the passenger list showed that Miss Fraser of Adelaide, with her + maid, had made the voyage in her. The boat was now on her way to + Australia, somewhere to the south of the Suez Canal. Her officers + were the same as in '95, with one exception. The first officer, Mr. + Jack Croker, had been made a captain and was to take charge of their + new ship, the Bass Rock, sailing in two days' time from Southampton. + He lived at Sydenham, but he was likely to be in that morning for + instructions, if we cared to wait for him. + + No; Mr. Holmes had no desire to see him, but would be glad to know + more about his record and character. + + His record was magnificent. There was not an officer in the fleet to + touch him. As to his character, he was reliable on duty, but a wild, + desperate fellow off the deck of his ship, hot-headed, excitable, but + loyal, honest, and kind-hearted. That was the pith of the information + with which Holmes left the office of the Adelaide-Southampton + company. Thence he drove to Scotland Yard, but instead of entering he + sat in his cab with his brows drawn down, lost in profound thought. + Finally he drove round to the Charing Cross telegraph office, sent + off a message, and then, at last, we made for Baker Street once more. + + "No, I couldn't do it, Watson," said he, as we re-entered our room. + "Once that warrant was made out nothing on earth would save him. Once + or twice in my career I feel that I have done more real harm by my + discovery of the criminal than ever he had done by his crime. I have + learned caution now, and I had rather play tricks with the law of + England than with my own conscience. Let us know a little more before + we act." + + Before evening we had a visit from Inspector Stanley Hopkins. Things + were not going very well with him. + + "I believe that you are a wizard, Mr. Holmes. I really do sometimes + think that you have powers that are not human. Now, how on earth + could you know that the stolen silver was at the bottom of that + pond?" + + "I didn't know it." + + "But you told me to examine it." + + "You got it, then?" + + "Yes, I got it." + + "I am very glad if I have helped you." + + "But you haven't helped me. You have made the affair far more + difficult. What sort of burglars are they who steal silver and then + throw it into the nearest pond?" + + "It was certainly rather eccentric behaviour. I was merely going on + the idea that if the silver had been taken by persons who did not + want it, who merely took it for a blind as it were, then they would + naturally be anxious to get rid of it." + + "But why should such an idea cross your mind?" + + "Well, I thought it was possible. When they came out through the + French window there was the pond, with one tempting little hole in + the ice, right in front of their noses. Could there be a better + hiding-place?" + + "Ah, a hiding-place--that is better!" cried Stanley Hopkins. "Yes, + yes, I see it all now! It was early, there were folk upon the roads, + they were afraid of being seen with the silver, so they sank it in + the pond, intending to return for it when the coast was clear. + Excellent, Mr. Holmes--that is better than your idea of a blind." + + "Quite so; you have got an admirable theory. I have no doubt that my + own ideas were quite wild, but you must admit that they have ended in + discovering the silver." + + "Yes, sir, yes. It was all your doing. But I have had a bad + set-back." + + "A set-back?" + + "Yes, Mr. Holmes. The Randall gang were arrested in New York this + morning." + + "Dear me, Hopkins! That is certainly rather against your theory that + they committed a murder in Kent last night." + + "It is fatal, Mr. Holmes, absolutely fatal. Still, there are other + gangs of three besides the Randalls, or it may be some new gang of + which the police have never heard." + + "Quite so; it is perfectly possible. What, are you off?" + + "Yes, Mr. Holmes; there is no rest for me until I have got to the + bottom of the business. I suppose you have no hint to give me?" + + "I have given you one." + + "Which?" + + "Well, I suggested a blind." + + "But why, Mr. Holmes, why?" + + "Ah, that's the question, of course. But I commend the idea to your + mind. You might possibly find that there was something in it. You + won't stop for dinner? Well, good-bye, and let us know how you get + on." + + Dinner was over and the table cleared before Holmes alluded to the + matter again. He had lit his pipe and held his slippered feet to the + cheerful blaze of the fire. Suddenly he looked at his watch. + + "I expect developments, Watson." + + "When?" + + "Now--within a few minutes. I dare say you thought I acted rather + badly to Stanley Hopkins just now?" + + "I trust your judgment." + + "A very sensible reply, Watson. You must look at it this way: what I + know is unofficial; what he knows is official. I have the right to + private judgment, but he has none. He must disclose all, or he is a + traitor to his service. In a doubtful case I would not put him in so + painful a position, and so I reserve my information until my own mind + is clear upon the matter." + + "But when will that be?" + + "The time has come. You will now be present at the last scene of a + remarkable little drama." + + There was a sound upon the stairs, and our door was opened to admit + as fine a specimen of manhood as ever passed through it. He was a + very tall young man, golden-moustached, blue-eyed, with a skin which + had been burned by tropical suns, and a springy step which showed + that the huge frame was as active as it was strong. He closed the + door behind him, and then he stood with clenched hands and heaving + breast, choking down some overmastering emotion. + + "Sit down, Captain Croker. You got my telegram?" + + Our visitor sank into an arm-chair and looked from one to the other + of us with questioning eyes. + + "I got your telegram, and I came at the hour you said. I heard that + you had been down to the office. There was no getting away from you. + Let's hear the worst. What are you going to do with me? Arrest me? + Speak out, man! You can't sit there and play with me like a cat with + a mouse." + + "Give him a cigar," said Holmes. "Bite on that, Captain Croker, and + don't let your nerves run away with you. I should not sit here + smoking with you if I thought that you were a common criminal, you + may be sure of that. Be frank with me, and we may do some good. Play + tricks with me, and I'll crush you." + + "What do you wish me to do?" + + "To give me a true account of all that happened at the Abbey Grange + last night--a true account, mind you, with nothing added and nothing + taken off. I know so much already that if you go one inch off the + straight I'll blow this police whistle from my window and the affair + goes out of my hands for ever." + + The sailor thought for a little. Then he struck his leg with his + great, sun-burned hand. + + "I'll chance it," he cried. "I believe you are a man of your word, + and a white man, and I'll tell you the whole story. But one thing I + will say first. So far as I am concerned I regret nothing and I fear + nothing, and I would do it all again and be proud of the job. Curse + the beast, if he had as many lives as a cat he would owe them all to + me! But it's the lady, Mary--Mary Fraser--for never will I call her + by that accursed name. When I think of getting her into trouble, I + who would give my life just to bring one smile to her dear face, it's + that that turns my soul into water. And yet--and yet--what less could + I do? I'll tell you my story, gentlemen, and then I'll ask you as man + to man what less could I do. + + "I must go back a bit. You seem to know everything, so I expect that + you know that I met her when she was a passenger and I was first + officer of the Rock of Gibraltar. From the first day I met her she + was the only woman to me. Every day of that voyage I loved her more, + and many a time since have I kneeled down in the darkness of the + night watch and kissed the deck of that ship because I knew her dear + feet had trod it. She was never engaged to me. She treated me as + fairly as ever a woman treated a man. I have no complaint to make. It + was all love on my side, and all good comradeship and friendship on + hers. When we parted she was a free woman, but I could never again be + a free man. + + "Next time I came back from sea I heard of her marriage. Well, why + shouldn't she marry whom she liked? Title and money--who could carry + them better than she? She was born for all that is beautiful and + dainty. I didn't grieve over her marriage. I was not such a selfish + hound as that. I just rejoiced that good luck had come her way, and + that she had not thrown herself away on a penniless sailor. That's + how I loved Mary Fraser. + + "Well, I never thought to see her again; but last voyage I was + promoted, and the new boat was not yet launched, so I had to wait for + a couple of months with my people at Sydenham. One day out in a + country lane I met Theresa Wright, her old maid. She told me about + her, about him, about everything. I tell you, gentlemen, it nearly + drove me mad. This drunken hound, that he should dare to raise his + hand to her whose boots he was not worthy to lick! I met Theresa + again. Then I met Mary herself--and met her again. Then she would + meet me no more. But the other day I had a notice that I was to start + on my voyage within a week, and I determined that I would see her + once before I left. Theresa was always my friend, for she loved Mary + and hated this villain almost as much as I did. From her I learned + the ways of the house. Mary used to sit up reading in her own little + room downstairs. I crept round there last night and scratched at the + window. At first she would not open to me, but in her heart I know + that now she loves me, and she could not leave me in the frosty + night. She whispered to me to come round to the big front window, and + I found it open before me so as to let me into the dining-room. Again + I heard from her own lips things that made my blood boil, and again I + cursed this brute who mishandled the woman that I loved. Well, + gentlemen, I was standing with her just inside the window, in all + innocence, as Heaven is my judge, when he rushed like a madman into + the room, called her the vilest name that a man could use to a woman, + and welted her across the face with the stick he had in his hand. I + had sprung for the poker, and it was a fair fight between us. See + here on my arm where his first blow fell. Then it was my turn, and I + went through him as if he had been a rotten pumpkin. Do you think I + was sorry? Not I! It was his life or mine, but far more than that it + was his life or hers, for how could I leave her in the power of this + madman? That was how I killed him. Was I wrong? Well, then, what + would either of you gentlemen have done if you had been in my + position? + + "She had screamed when he struck her, and that brought old Theresa + down from the room above. There was a bottle of wine on the + sideboard, and I opened it and poured a little between Mary's lips, + for she was half dead with the shock. Then I took a drop myself. + Theresa was as cool as ice, and it was her plot as much as mine. We + must make it appear that burglars had done the thing. Theresa kept on + repeating our story to her mistress, while I swarmed up and cut the + rope of the bell. Then I lashed her in her chair, and frayed out the + end of the rope to make it look natural, else they would wonder how + in the world a burglar could have got up there to cut it. Then I + gathered up a few plates and pots of silver, to carry out the idea of + a robbery, and there I left them with orders to give the alarm when I + had a quarter of an hour's start. I dropped the silver into the pond + and made off for Sydenham, feeling that for once in my life I had + done a real good night's work. And that's the truth and the whole + truth, Mr. Holmes, if it costs me my neck." + + Holmes smoked for some time in silence. Then he crossed the room and + shook our visitor by the hand. + + "That's what I think," said he. "I know that every word is true, for + you have hardly said a word which I did not know. No one but an + acrobat or a sailor could have got up to that bell-rope from the + bracket, and no one but a sailor could have made the knots with which + the cord was fastened to the chair. Only once had this lady been + brought into contact with sailors, and that was on her voyage, and it + was someone of her own class of life, since she was trying hard to + shield him and so showing that she loved him. You see how easy it was + for me to lay my hands upon you when once I had started upon the + right trail." + + "I thought the police never could have seen through our dodge." + + "And the police haven't; nor will they, to the best of my belief. + Now, look here, Captain Croker, this is a very serious matter, though + I am willing to admit that you acted under the most extreme + provocation to which any man could be subjected. I am not sure that + in defence of your own life your action will not be pronounced + legitimate. However, that is for a British jury to decide. Meanwhile + I have so much sympathy for you that if you choose to disappear in + the next twenty-four hours I will promise you that no one will hinder + you." + + "And then it will all come out?" + + "Certainly it will come out." + + The sailor flushed with anger. + + "What sort of proposal is that to make a man? I know enough of law to + understand that Mary would be had as accomplice. Do you think I would + leave her alone to face the music while I slunk away? No, sir; let + them do their worst upon me, but for Heaven's sake, Mr. Holmes, find + some way of keeping my poor Mary out of the courts." + + Holmes for a second time held out his hand to the sailor. + + "I was only testing you, and you ring true every time. Well, it is a + great responsibility that I take upon myself, but I have given + Hopkins an excellent hint, and if he can't avail himself of it I can + do no more. See here, Captain Croker, we'll do this in due form of + law. You are the prisoner. Watson, you are a British jury, and I + never met a man who was more eminently fitted to represent one. I am + the judge. Now, gentleman of the jury, you have heard the evidence. + Do you find the prisoner guilty or not guilty?" + + "Not guilty, my lord," said I. + + "Vox populi, vox Dei. You are acquitted, Captain Croker. So long as + the law does not find some other victim you are safe from me. Come + back to this lady in a year, and may her future and yours justify us + in the judgment which we have pronounced this night." + + + + + + + THE ADVENTURE OF THE SECOND STAIN + + I had intended "The Adventure of the Abbey Grange" to be the last of + those exploits of my friend, Mr. Sherlock Holmes, which I should ever + communicate to the public. This resolution of mine was not due to any + lack of material, since I have notes of many hundreds of cases to + which I have never alluded, nor was it caused by any waning interest + on the part of my readers in the singular personality and unique + methods of this remarkable man. The real reason lay in the reluctance + which Mr. Holmes has shown to the continued publication of his + experiences. So long as he was in actual professional practice the + records of his successes were of some practical value to him; but + since he has definitely retired from London and betaken himself to + study and bee-farming on the Sussex Downs, notoriety has become + hateful to him, and he has peremptorily requested that his wishes in + this matter should be strictly observed. It was only upon my + representing to him that I had given a promise that "The Adventure of + the Second Stain" should be published when the times were ripe, and + pointing out to him that it is only appropriate that this long series + of episodes should culminate in the most important international case + which he has ever been called upon to handle, that I at last + succeeded in obtaining his consent that a carefully-guarded account + of the incident should at last be laid before the public. If in + telling the story I seem to be somewhat vague in certain details the + public will readily understand that there is an excellent reason for + my reticence. + + It was, then, in a year, and even in a decade, that shall be + nameless, that upon one Tuesday morning in autumn we found two + visitors of European fame within the walls of our humble room in + Baker Street. The one, austere, high-nosed, eagle-eyed, and dominant, + was none other than the illustrious Lord Bellinger, twice Premier of + Britain. The other, dark, clear-cut, and elegant, hardly yet of + middle age, and endowed with every beauty of body and of mind, was + the Right Honourable Trelawney Hope, Secretary for European Affairs, + and the most rising statesman in the country. They sat side by side + upon our paper-littered settee, and it was easy to see from their + worn and anxious faces that it was business of the most pressing + importance which had brought them. The Premier's thin, blue-veined + hands were clasped tightly over the ivory head of his umbrella, and + his gaunt, ascetic face looked gloomily from Holmes to me. The + European Secretary pulled nervously at his moustache and fidgeted + with the seals of his watch-chain. + + "When I discovered my loss, Mr. Holmes, which was at eight o'clock + this morning, I at once informed the Prime Minister. It was at his + suggestion that we have both come to you." + + "Have you informed the police?" + + "No, sir," said the Prime Minister, with the quick, decisive manner + for which he was famous. "We have not done so, nor is it possible + that we should do so. To inform the police must, in the long run, + mean to inform the public. This is what we particularly desire to + avoid." + + "And why, sir?" + + "Because the document in question is of such immense importance that + its publication might very easily--I might almost say probably--lead + to European complications of the utmost moment. It is not too much to + say that peace or war may hang upon the issue. Unless its recovery + can be attended with the utmost secrecy, then it may as well not be + recovered at all, for all that is aimed at by those who have taken it + is that its contents should be generally known." + + "I understand. Now, Mr. Trelawney Hope, I should be much obliged if + you would tell me exactly the circumstances under which this document + disappeared." + + "That can be done in a very few words, Mr. Holmes. The letter--for it + was a letter from a foreign potentate--was received six days ago. It + was of such importance that I have never left it in my safe, but I + have taken it across each evening to my house in Whitehall Terrace, + and kept it in my bedroom in a locked despatch-box. It was there last + night. Of that I am certain. I actually opened the box while I was + dressing for dinner, and saw the document inside. This morning it was + gone. The despatch-box had stood beside the glass upon my + dressing-table all night. I am a light sleeper, and so is my wife. We + are both prepared to swear that no one could have entered the room + during the night. And yet I repeat that the paper is gone." + + "What time did you dine?" + + "Half-past seven." + + "How long was it before you went to bed?" + + "My wife had gone to the theatre. I waited up for her. It was + half-past eleven before we went to our room." + + "Then for four hours the despatch-box had lain unguarded?" + + "No one is ever permitted to enter that room save the housemaid in + the morning, and my valet, or my wife's maid, during the rest of the + day. They are both trusty servants who have been with us for some + time. Besides, neither of them could possibly have known that there + was anything more valuable than the ordinary departmental papers in + my despatch-box." + + "Who did know of the existence of that letter?" + + "No one in the house." + + "Surely your wife knew?" + + "No, sir; I had said nothing to my wife until I missed the paper this + morning." + + The Premier nodded approvingly. + + "I have long known, sir, how high is your sense of public duty," said + he. "I am convinced that in the case of a secret of this importance + it would rise superior to the most intimate domestic ties." + + The European Secretary bowed. + + "You do me no more than justice, sir. Until this morning I have never + breathed one word to my wife upon this matter." + + "Could she have guessed?" + + "No, Mr. Holmes, she could not have guessed--nor could anyone have + guessed." + + "Have you lost any documents before?" + + "No, sir." + + "Who is there in England who did know of the existence of this + letter?" + + "Each member of the Cabinet was informed of it yesterday; but the + pledge of secrecy which attends every Cabinet meeting was increased + by the solemn warning which was given by the Prime Minister. Good + heavens, to think that within a few hours I should myself have lost + it!" His handsome face was distorted with a spasm of despair, and his + hands tore at his hair. For a moment we caught a glimpse of the + natural man, impulsive, ardent, keenly sensitive. The next the + aristocratic mask was replaced, and the gentle voice had returned. + "Besides the members of the Cabinet there are two, or possibly three, + departmental officials who know of the letter. No one else in + England, Mr. Holmes, I assure you." + + "But abroad?" + + "I believe that no one abroad has seen it save the man who wrote it. + I am well convinced that his Ministers--that the usual official + channels have not been employed." + + Holmes considered for some little time. + + "Now, sir, I must ask you more particularly what this document is, + and why its disappearance should have such momentous consequences?" + + The two statesmen exchanged a quick glance and the Premier's shaggy + eyebrows gathered in a frown. + + "Mr. Holmes, the envelope is a long, thin one of pale blue colour. + There is a seal of red wax stamped with a crouching lion. It is + addressed in large, bold handwriting to--" + + "I fear, sir," said Holmes, "that, interesting and indeed essential + as these details are, my inquiries must go more to the root of + things. What was the letter?" + + "That is a State secret of the utmost importance, and I fear that I + cannot tell you, nor do I see that it is necessary. If by the aid of + the powers which you are said to possess you can find such an + envelope as I describe with its enclosure, you will have deserved + well of your country, and earned any reward which it lies in our + power to bestow." + + Sherlock Holmes rose with a smile. + + "You are two of the most busy men in the country," said he, "and in + my own small way I have also a good many calls upon me. I regret + exceedingly that I cannot help you in this matter, and any + continuation of this interview would be a waste of time." + + The Premier sprang to his feet with that quick, fierce gleam of his + deep-set eyes before which a Cabinet has cowered. "I am not + accustomed, sir--" he began, but mastered his anger and resumed his + seat. For a minute or more we all sat in silence. Then the old + statesman shrugged his shoulders. + + "We must accept your terms, Mr. Holmes. No doubt you are right, and + it is unreasonable for us to expect you to act unless we give you our + entire confidence." + + "I agree with you, sir," said the younger statesman. + + "Then I will tell you, relying entirely upon your honour and that of + your colleague, Dr. Watson. I may appeal to your patriotism also, for + I could not imagine a greater misfortune for the country than that + this affair should come out." + + "You may safely trust us." + + "The letter, then, is from a certain foreign potentate who has been + ruffled by some recent Colonial developments of this country. It has + been written hurriedly and upon his own responsibility entirely. + Inquiries have shown that his Ministers know nothing of the matter. + At the same time it is couched in so unfortunate a manner, and + certain phrases in it are of so provocative a character, that its + publication would undoubtedly lead to a most dangerous state of + feeling in this country. There would be such a ferment, sir, that I + do not hesitate to say that within a week of the publication of that + letter this country would be involved in a great war." + + Holmes wrote a name upon a slip of paper and handed it to the + Premier. + + "Exactly. It was he. And it is this letter--this letter which may + well mean the expenditure of a thousand millions and the lives of a + hundred thousand men--which has become lost in this unaccountable + fashion." + + "Have you informed the sender?" + + "Yes, sir, a cipher telegram has been despatched." + + "Perhaps he desires the publication of the letter." + + "No, sir, we have strong reason to believe that he already + understands that he has acted in an indiscreet and hot-headed manner. + It would be a greater blow to him and to his country than to us if + this letter were to come out." + + "If this is so, whose interest is it that the letter should come out? + Why should anyone desire to steal it or to publish it?" + + "There, Mr. Holmes, you take me into regions of high international + politics. But if you consider the European situation you will have no + difficulty in perceiving the motive. The whole of Europe is an armed + camp. There is a double league which makes a fair balance of military + power. Great Britain holds the scales. If Britain were driven into + war with one confederacy, it would assure the supremacy of the other + confederacy, whether they joined in the war or not. Do you follow?" + + "Very clearly. It is then the interest of the enemies of this + potentate to secure and publish this letter, so as to make a breach + between his country and ours?" + + "Yes, sir." + + "And to whom would this document be sent if it fell into the hands of + an enemy?" + + "To any of the great Chancelleries of Europe. It is probably speeding + on its way thither at the present instant as fast as steam can take + it." + + Mr. Trelawney Hope dropped his head on his chest and groaned aloud. + The Premier placed his hand kindly upon his shoulder. + + "It is your misfortune, my dear fellow. No one can blame you. There + is no precaution which you have neglected. Now, Mr. Holmes, you are + in full possession of the facts. What course do you recommend?" + + Holmes shook his head mournfully. + + "You think, sir, that unless this document is recovered there will be + war?" + + "I think it is very probable." + + "Then, sir, prepare for war." + + "That is a hard saying, Mr. Holmes." + + "Consider the facts, sir. It is inconceivable that it was taken after + eleven-thirty at night, since I understand that Mr. Hope and his wife + were both in the room from that hour until the loss was found out. It + was taken, then, yesterday evening between seven-thirty and + eleven-thirty, probably near the earlier hour, since whoever took it + evidently knew that it was there and would naturally secure it as + early as possible. Now, sir, if a document of this importance were + taken at that hour, where can it be now? No one has any reason to + retain it. It has been passed rapidly on to those who need it. What + chance have we now to overtake or even to trace it? It is beyond our + reach." + + The Prime Minister rose from the settee. + + "What you say is perfectly logical, Mr. Holmes. I feel that the + matter is indeed out of our hands." + + "Let us presume, for argument's sake, that the document was taken by + the maid or by the valet--" + + "They are both old and tried servants." + + "I understand you to say that your room is on the second floor, that + there is no entrance from without, and that from within no one could + go up unobserved. It must, then, be somebody in the house who has + taken it. To whom would the thief take it? To one of several + international spies and secret agents, whose names are tolerably + familiar to me. There are three who may be said to be the heads of + their profession. I will begin my research by going round and finding + if each of them is at his post. If one is missing--especially if he + has disappeared since last night--we will have some indication as to + where the document has gone." + + "Why should he be missing?" asked the European Secretary. "He would + take the letter to an Embassy in London, as likely as not." + + "I fancy not. These agents work independently, and their relations + with the Embassies are often strained." + + The Prime Minister nodded his acquiescence. + + "I believe you are right, Mr. Holmes. He would take so valuable a + prize to head-quarters with his own hands. I think that your course + of action is an excellent one. Meanwhile, Hope, we cannot neglect all + our other duties on account of this one misfortune. Should there be + any fresh developments during the day we shall communicate with you, + and you will no doubt let us know the results of your own inquiries." + + The two statesmen bowed and walked gravely from the room. + + When our illustrious visitors had departed Holmes lit his pipe in + silence, and sat for some time lost in the deepest thought. I had + opened the morning paper and was immersed in a sensational crime + which had occurred in London the night before, when my friend gave an + exclamation, sprang to his feet, and laid his pipe down upon the + mantelpiece. + + "Yes," said he, "there is no better way of approaching it. The + situation is desperate, but not hopeless. Even now, if we could be + sure which of them has taken it, it is just possible that it has not + yet passed out of his hands. After all, it is a question of money + with these fellows, and I have the British Treasury behind me. If + it's on the market I'll buy it--if it means another penny on the + income-tax. It is conceivable that the fellow might hold it back to + see what bids come from this side before he tries his luck on the + other. There are only those three capable of playing so bold a game; + there are Oberstein, La Rothiere, and Eduardo Lucas. I will see each + of them." + + I glanced at my morning paper. + + "Is that Eduardo Lucas of Godolphin Street?" + + "Yes." + + "You will not see him." + + "Why not?" + + "He was murdered in his house last night." + + My friend has so often astonished me in the course of our adventures + that it was with a sense of exultation that I realized how completely + I had astonished him. He stared in amazement, and then snatched the + paper from my hands. This was the paragraph which I had been engaged + in reading when he rose from his chair: + + Murder in Westminster + A crime of mysterious character was committed last night at 16, + Godolphin Street, one of the old-fashioned and secluded rows of + eighteenth-century houses which lie between the river and the Abbey, + almost in the shadow of the great Tower of the Houses of Parliament. + This small but select mansion has been inhabited for some years by + Mr. Eduardo Lucas, well known in society circles both on account of + his charming personality and because he has the well-deserved + reputation of being one of the best amateur tenors in the country. + Mr. Lucas is an unmarried man, thirty-four years of age, and his + establishment consists of Mrs. Pringle, an elderly housekeeper, and + of Mitton, his valet. The former retires early and sleeps at the top + of the house. The valet was out for the evening, visiting a friend at + Hammersmith. From ten o'clock onwards Mr. Lucas had the house to + himself. What occurred during that time has not yet transpired, but + at a quarter to twelve Police-constable Barrett, passing along + Godolphin Street, observed that the door of No. 16 was ajar. He + knocked, but received no answer. Perceiving a light in the front room + he advanced into the passage and again knocked, but without reply. He + then pushed open the door and entered. The room was in a state of + wild disorder, the furniture being all swept to one side, and one + chair lying on its back in the centre. Beside this chair, and still + grasping one of its legs, lay the unfortunate tenant of the house. He + had been stabbed to the heart and must have died instantly. The knife + with which the crime had been committed was a curved Indian dagger, + plucked down from a trophy of Oriental arms which adorned one of the + walls. Robbery does not appear to have been the motive of the crime, + for there had been no attempt to remove the valuable contents of the + room. Mr. Eduardo Lucas was so well known and popular that his + violent and mysterious fate will arouse painful interest and intense + sympathy in a wide-spread circle of friends. + + "Well, Watson, what do you make of this?" asked Holmes, after a long + pause. + + "It is an amazing coincidence." + + "A coincidence! Here is one of the three men whom we had named as + possible actors in this drama, and he meets a violent death during + the very hours when we know that that drama was being enacted. The + odds are enormous against its being coincidence. No figures could + express them. No, my dear Watson, the two events are connected--must + be connected. It is for us to find the connection." + + "But now the official police must know all." + + "Not at all. They know all they see at Godolphin Street. They + know--and shall know--nothing of Whitehall Terrace. Only we know of + both events, and can trace the relation between them. There is one + obvious point which would, in any case, have turned my suspicions + against Lucas. Godolphin Street, Westminster, is only a few minutes' + walk from Whitehall Terrace. The other secret agents whom I have + named live in the extreme West-end. It was easier, therefore, for + Lucas than for the others to establish a connection or receive a + message from the European Secretary's household--a small thing, and + yet where events are compressed into a few hours it may prove + essential. Halloa! what have we here?" + + Mrs. Hudson had appeared with a lady's card upon her salver. Holmes + glanced at it, raised his eyebrows, and handed it over to me. + + "Ask Lady Hilda Trelawney Hope if she will be kind enough to step + up," said he. + + A moment later our modest apartment, already so distinguished that + morning, was further honoured by the entrance of the most lovely + woman in London. I had often heard of the beauty of the youngest + daughter of the Duke of Belminster, but no description of it, and no + contemplation of colourless photographs, had prepared me for the + subtle, delicate charm and the beautiful colouring of that exquisite + head. And yet as we saw it that autumn morning, it was not its beauty + which would be the first thing to impress the observer. The cheek was + lovely, but it was paled with emotion; the eyes were bright, but it + was the brightness of fever; the sensitive mouth was tight and drawn + in an effort after self-command. Terror--not beauty--was what sprang + first to the eye as our fair visitor stood framed for an instant in + the open door. + + "Has my husband been here, Mr. Holmes?" + + "Yes, madam, he has been here." + + "Mr. Holmes, I implore you not to tell him that I came here." Holmes + bowed coldly, and motioned the lady to a chair. + + "Your ladyship places me in a very delicate position. I beg that you + will sit down and tell me what you desire; but I fear that I cannot + make any unconditional promise." + + She swept across the room and seated herself with her back to the + window. It was a queenly presence--tall, graceful, and intensely + womanly. + + "Mr. Holmes," she said, and her white-gloved hands clasped and + unclasped as she spoke--"I will speak frankly to you in the hope that + it may induce you to speak frankly in return. There is complete + confidence between my husband and me on all matters save one. That + one is politics. On this his lips are sealed. He tells me nothing. + Now, I am aware that there was a most deplorable occurrence in our + house last night. I know that a paper has disappeared. But because + the matter is political my husband refuses to take me into his + complete confidence. Now it is essential--essential, I say--that I + should thoroughly understand it. You are the only other person, save + only these politicians, who knows the true facts. I beg you, then, + Mr. Holmes, to tell me exactly what has happened and what it will + lead to. Tell me all, Mr. Holmes. Let no regard for your client's + interests keep you silent, for I assure you that his interests, if he + would only see it, would be best served by taking me into his + complete confidence. What was this paper which was stolen?" + + "Madam, what you ask me is really impossible." + + She groaned and sank her face in her hands. + + "You must see that this is so, madam. If your husband thinks fit to + keep you in the dark over this matter, is it for me, who has only + learned the true facts under the pledge of professional secrecy, to + tell what he has withheld? It is not fair to ask it. It is him whom + you must ask." + + "I have asked him. I come to you as a last resource. But without your + telling me anything definite, Mr. Holmes, you may do a great service + if you would enlighten me on one point." + + "What is it, madam?" + + "Is my husband's political career likely to suffer through this + incident?" + + "Well, madam, unless it is set right it may certainly have a very + unfortunate effect." + + "Ah!" She drew in her breath sharply as one whose doubts are + resolved. + + "One more question, Mr. Holmes. From an expression which my husband + dropped in the first shock of this disaster I understood that + terrible public consequences might arise from the loss of this + document." + + "If he said so, I certainly cannot deny it." + + "Of what nature are they?" + + "Nay, madam, there again you ask me more than I can possibly answer." + + "Then I will take up no more of your time. I cannot blame you, Mr. + Holmes, for having refused to speak more freely, and you on your side + will not, I am sure, think the worse of me because I desire, even + against his will, to share my husband's anxieties. Once more I beg + that you will say nothing of my visit." She looked back at us from + the door, and I had a last impression of that beautiful haunted face, + the startled eyes, and the drawn mouth. Then she was gone. + + "Now, Watson, the fair sex is your department," said Holmes, with a + smile, when the dwindling frou-frou of skirts had ended in the slam + of the front door. "What was the fair lady's game? What did she + really want?" + + "Surely her own statement is clear and her anxiety very natural." + + "Hum! Think of her appearance, Watson--her manner, her suppressed + excitement, her restlessness, her tenacity in asking questions. + Remember that she comes of a caste who do not lightly show emotion." + + "She was certainly much moved." + + "Remember also the curious earnestness with which she assured us that + it was best for her husband that she should know all. What did she + mean by that? And you must have observed, Watson, how she manoeuvred + to have the light at her back. She did not wish us to read her + expression." + + "Yes; she chose the one chair in the room." + + "And yet the motives of women are so inscrutable. You remember the + woman at Margate whom I suspected for the same reason. No powder on + her nose--that proved to be the correct solution. How can you build + on such a quicksand? Their most trivial action may mean volumes, or + their most extraordinary conduct may depend upon a hairpin or a + curling-tongs. Good morning, Watson." + + "You are off?" + + "Yes; I will wile away the morning at Godolphin Street with our + friends of the regular establishment. With Eduardo Lucas lies the + solution of our problem, though I must admit that I have not an + inkling as to what form it may take. It is a capital mistake to + theorize in advance of the facts. Do you stay on guard, my good + Watson, and receive any fresh visitors. I'll join you at lunch if I + am able." + + All that day and the next and the next Holmes was in a mood which his + friends would call taciturn, and others morose. He ran out and ran + in, smoked incessantly, played snatches on his violin, sank into + reveries, devoured sandwiches at irregular hours, and hardly answered + the casual questions which I put to him. It was evident to me that + things were not going well with him or his quest. He would say + nothing of the case, and it was from the papers that I learned the + particulars of the inquest, and the arrest with the subsequent + release of John Mitton, the valet of the deceased. The coroner's jury + brought in the obvious "Wilful Murder," but the parties remained as + unknown as ever. No motive was suggested. The room was full of + articles of value, but none had been taken. The dead man's papers had + not been tampered with. They were carefully examined, and showed that + he was a keen student of international politics, an indefatigable + gossip, a remarkable linguist, and an untiring letter-writer. He had + been on intimate terms with the leading politicians of several + countries. But nothing sensational was discovered among the documents + which filled his drawers. As to his relations with women, they + appeared to have been promiscuous but superficial. He had many + acquaintances among them, but few friends, and no one whom he loved. + His habits were regular, his conduct inoffensive. His death was an + absolute mystery, and likely to remain so. + + As to the arrest of John Mitton, the valet, it was a counsel of + despair as an alternative to absolute inaction. But no case could be + sustained against him. He had visited friends in Hammersmith that + night. The alibi was complete. It is true that he started home at an + hour which should have brought him to Westminster before the time + when the crime was discovered, but his own explanation that he had + walked part of the way seemed probable enough in view of the fineness + of the night. He had actually arrived at twelve o'clock, and appeared + to be overwhelmed by the unexpected tragedy. He had always been on + good terms with his master. Several of the dead man's + possessions--notably a small case of razors--had been found in the + valet's boxes, but he explained that they had been presents from the + deceased, and the housekeeper was able to corroborate the story. + Mitton had been in Lucas's employment for three years. It was + noticeable that Lucas did not take Mitton on the Continent with him. + Sometimes he visited Paris for three months on end, but Mitton was + left in charge of the Godolphin Street house. As to the housekeeper, + she had heard nothing on the night of the crime. If her master had a + visitor he had himself admitted him. + + So for three mornings the mystery remained, so far as I could follow + it in the papers. If Holmes knew more he kept his own counsel, but, + as he told me that Inspector Lestrade had taken him into his + confidence in the case, I knew that he was in close touch with every + development. Upon the fourth day there appeared a long telegram from + Paris which seemed to solve the whole question. + + A discovery has just been made by the Parisian police [said the Daily + Telegraph] which raises the veil which hung round the tragic fate of + Mr. Eduardo Lucas, who met his death by violence last Monday night at + Godolphin Street, Westminster. Our readers will remember that the + deceased gentleman was found stabbed in his room, and that some + suspicion attached to his valet, but that the case broke down on an + alibi. Yesterday a lady, who has been known as Mme. Henri Fournaye, + occupying a small villa in the Rue Austerlitz, was reported to the + authorities by her servants as being insane. An examination showed + that she had indeed developed mania of a dangerous and permanent + form. On inquiry the police have discovered that Mme. Henri Fournaye + only returned from a journey to London on Tuesday last, and there is + evidence to connect her with the crime at Westminster. A comparison + of photographs has proved conclusively that M. Henri Fournaye and + Eduardo Lucas were really one and the same person, and that the + deceased had for some reason lived a double life in London and Paris. + Mme. Fournaye, who is of Creole origin, is of an extremely excitable + nature, and has suffered in the past from attacks of jealousy which + have amounted to frenzy. It is conjectured that it was in one of + these that she committed the terrible crime which has caused such a + sensation in London. Her movements upon the Monday night have not yet + been traced, but it is undoubted that a woman answering to her + description attracted much attention at Charing Cross Station on + Tuesday morning by the wildness of her appearance and the violence of + her gestures. It is probable, therefore, that the crime was either + committed when insane, or that its immediate effect was to drive the + unhappy woman out of her mind. At present she is unable to give any + coherent account of the past, and the doctors hold out no hopes of + the re-establishment of her reason. There is evidence that a woman, + who might have been Mme. Fournaye, was seen for some hours on Monday + night watching the house in Godolphin Street. + + "What do you think of that, Holmes?" I had read the account aloud to + him, while he finished his breakfast. + + "My dear Watson," said he, as he rose from the table and paced up and + down the room, "you are most long-suffering, but if I have told you + nothing in the last three days it is because there is nothing to + tell. Even now this report from Paris does not help us much." + + "Surely it is final as regards the man's death." + + "The man's death is a mere incident--a trivial episode--in comparison + with our real task, which is to trace this document and save a + European catastrophe. Only one important thing has happened in the + last three days, and that is that nothing has happened. I get reports + almost hourly from the Government, and it is certain that nowhere in + Europe is there any sign of trouble. Now, if this letter were + loose--no, it can't be loose--but if it isn't loose, where can it be? + Who has it? Why is it held back? That's the question that beats in my + brain like a hammer. Was it, indeed, a coincidence that Lucas should + meet his death on the night when the letter disappeared? Did the + letter ever reach him? If so, why is it not among his papers? Did + this mad wife of his carry it off with her? If so, is it in her house + in Paris? How could I search for it without the French police having + their suspicions aroused? It is a case, my dear Watson, where the law + is as dangerous to us as the criminals are. Every man's hand is + against us, and yet the interests at stake are colossal. Should I + bring it to a successful conclusion it will certainly represent the + crowning glory of my career. Ah, here is my latest from the front!" + He glanced hurriedly at the note which had been handed in. "Halloa! + Lestrade seems to have observed something of interest. Put on your + hat, Watson, and we will stroll down together to Westminster." + + It was my first visit to the scene of the crime--a high, dingy, + narrow-chested house, prim, formal, and solid, like the century which + gave it birth. Lestrade's bulldog features gazed out at us from the + front window, and he greeted us warmly when a big constable had + opened the door and let us in. The room into which we were shown was + that in which the crime had been committed, but no trace of it now + remained, save an ugly, irregular stain upon the carpet. This carpet + was a small square drugget in the centre of the room, surrounded by a + broad expanse of beautiful, old-fashioned wood-flooring in square + blocks highly polished. Over the fireplace was a magnificent trophy + of weapons, one of which had been used on that tragic night. In the + window was a sumptuous writing-desk, and every detail of the + apartment, the pictures, the rugs, and the hangings, all pointed to a + taste which was luxurious to the verge of effeminacy. + + "Seen the Paris news?" asked Lestrade. + + Holmes nodded. + + "Our French friends seem to have touched the spot this time. No doubt + it's just as they say. She knocked at the door--surprise visit, I + guess, for he kept his life in water-tight compartments. He let her + in--couldn't keep her in the street. She told him how she had traced + him, reproached him, one thing led to another, and then with that + dagger so handy the end soon came. It wasn't all done in an instant, + though, for these chairs were all swept over yonder, and he had one + in his hand as if he had tried to hold her off with it. We've got it + all clear as if we had seen it." + + Holmes raised his eyebrows. + + "And yet you have sent for me?" + + "Ah, yes, that's another matter--a mere trifle, but the sort of thing + you take an interest in--queer, you know, and what you might call + freakish. It has nothing to do with the main fact--can't have, on the + face of it." + + "What is it, then?" + + "Well, you know, after a crime of this sort we are very careful to + keep things in their position. Nothing has been moved. Officer in + charge here day and night. This morning, as the man was buried and + the investigation over--so far as this room is concerned--we thought + we could tidy up a bit. This carpet. You see, it is not fastened + down; only just laid there. We had occasion to raise it. We found--" + + "Yes? You found--" + + Holmes's face grew tense with anxiety. + + "Well, I'm sure you would never guess in a hundred years what we did + find. You see that stain on the carpet? Well, a great deal must have + soaked through, must it not?" + + "Undoubtedly it must." + + "Well, you will be surprised to hear that there is no stain on the + white woodwork to correspond." + + "No stain! But there must--" + + "Yes; so you would say. But the fact remains that there isn't." + + He took the corner of the carpet in his hand and, turning it over, he + showed that it was indeed as he said. + + "But the underside is as stained as the upper. It must have left a + mark." + + Lestrade chuckled with delight at having puzzled the famous expert. + + "Now I'll show you the explanation. There is a second stain, but it + does not correspond with the other. See for yourself." As he spoke he + turned over another portion of the carpet, and there, sure enough, + was a great crimson spill upon the square white facing of the + old-fashioned floor. "What do you make of that, Mr. Holmes?" + + "Why, it is simple enough. The two stains did correspond, but the + carpet has been turned round. As it was square and unfastened it was + easily done." + + "The official police don't need you, Mr. Holmes, to tell them that + the carpet must have been turned round. That's clear enough, for the + stains lie above each other--if you lay it over this way. But what I + want to know is, who shifted the carpet, and why?" + + I could see from Holmes's rigid face that he was vibrating with + inward excitement. + + "Look here, Lestrade," said he, "has that constable in the passage + been in charge of the place all the time?" + + "Yes, he has." + + "Well, take my advice. Examine him carefully. Don't do it before us. + We'll wait here. You take him into the back room. You'll be more + likely to get a confession out of him alone. Ask him how he dared to + admit people and leave them alone in this room. Don't ask him if he + has done it. Take it for granted. Tell him you know someone has been + here. Press him. Tell him that a full confession is his only chance + of forgiveness. Do exactly what I tell you!" + + "By George, if he knows I'll have it out of him!" cried Lestrade. He + darted into the hall, and a few moments later his bullying voice + sounded from the back room. + + "Now, Watson, now!" cried Holmes, with frenzied eagerness. All the + demoniacal force of the man masked behind that listless manner burst + out in a paroxysm of energy. He tore the drugget from the floor, and + in an instant was down on his hands and knees clawing at each of the + squares of wood beneath it. One turned sideways as he dug his nails + into the edge of it. It hinged back like the lid of a box. A small + black cavity opened beneath it. Holmes plunged his eager hand into + it, and drew it out with a bitter snarl of anger and disappointment. + It was empty. + + "Quick, Watson, quick! Get it back again!" The wooden lid was + replaced, and the drugget had only just been drawn straight when + Lestrade's voice was heard in the passage. He found Holmes leaning + languidly against the mantelpiece, resigned and patient, endeavouring + to conceal his irrepressible yawns. + + "Sorry to keep you waiting, Mr. Holmes. I can see that you are bored + to death with the whole affair. Well, he has confessed, all right. + Come in here, MacPherson. Let these gentlemen hear of your most + inexcusable conduct." + + The big constable, very hot and penitent, sidled into the room. + + "I meant no harm, sir, I'm sure. The young woman came to the door + last evening--mistook the house, she did. And then we got talking. + It's lonesome, when you're on duty here all day." + + "Well, what happened then?" + + "She wanted to see where the crime was done--had read about it in the + papers, she said. She was a very respectable, well-spoken young + woman, sir, and I saw no harm in letting her have a peep. When she + saw that mark on the carpet, down she dropped on the floor, and lay + as if she were dead. I ran to the back and got some water, but I + could not bring her to. Then I went round the corner to the Ivy Plant + for some brandy, and by the time I had brought it back the young + woman had recovered and was off--ashamed of herself, I dare say, and + dared not face me." + + "How about moving that drugget?" + + "Well, sir, it was a bit rumpled, certainly, when I came back. You + see, she fell on it, and it lies on a polished floor with nothing to + keep it in place. I straightened it out afterwards." + + "It's a lesson to you that you can't deceive me, Constable + MacPherson," said Lestrade, with dignity. "No doubt you thought that + your breach of duty could never be discovered, and yet a mere glance + at that drugget was enough to convince me that someone had been + admitted to the room. It's lucky for you, my man, that nothing is + missing, or you would find yourself in Queer Street. I'm sorry to + have called you down over such a petty business, Mr. Holmes, but I + thought the point of the second stain not corresponding with the + first would interest you." + + "Certainly, it was most interesting. Has this woman only been here + once, constable?" + + "Yes, sir, only once." + + "Who was she?" + + "Don't know the name, sir. Was answering an advertisement about + type-writing, and came to the wrong number--very pleasant, genteel + young woman, sir." + + "Tall? Handsome?" + + "Yes, sir; she was a well-grown young woman. I suppose you might say + she was handsome. Perhaps some would say she was very handsome. 'Oh, + officer, do let me have a peep!' says she. She had pretty, coaxing + ways, as you might say, and I thought there was no harm in letting + her just put her head through the door." + + "How was she dressed?" + + "Quiet, sir--a long mantle down to her feet." + + "What time was it?" + + "It was just growing dusk at the time. They were lighting the lamps + as I came back with the brandy." + + "Very good," said Holmes. "Come, Watson, I think that we have more + important work elsewhere." + + As we left the house Lestrade remained in the front room, while the + repentant constable opened the door to let us out. Holmes turned on + the step and held up something in his hand. The constable stared + intently. + + "Good Lord, sir!" he cried, with amazement on his face. Holmes put + his finger on his lips, replaced his hand in his breast-pocket, and + burst out laughing as we turned down the street. "Excellent!" said + he. "Come, friend Watson, the curtain rings up for the last act. You + will be relieved to hear that there will be no war, that the Right + Honourable Trelawney Hope will suffer no set-back in his brilliant + career, that the indiscreet Sovereign will receive no punishment for + his indiscretion, that the Prime Minister will have no European + complication to deal with, and that with a little tact and management + upon our part nobody will be a penny the worse for what might have + been a very ugly incident." + + My mind filled with admiration for this extraordinary man. + + "You have solved it!" I cried. + + "Hardly that, Watson. There are some points which are as dark as + ever. But we have so much that it will be our own fault if we cannot + get the rest. We will go straight to Whitehall Terrace and bring the + matter to a head." + + When we arrived at the residence of the European Secretary it was for + Lady Hilda Trelawney Hope that Sherlock Holmes inquired. We were + shown into the morning-room. + + "Mr. Holmes!" said the lady, and her face was pink with her + indignation, "this is surely most unfair and ungenerous upon your + part. I desired, as I have explained, to keep my visit to you a + secret, lest my husband should think that I was intruding into his + affairs. And yet you compromise me by coming here and so showing that + there are business relations between us." + + "Unfortunately, madam, I had no possible alternative. I have been + commissioned to recover this immensely important paper. I must + therefore ask you, madam, to be kind enough to place it in my hands." + + The lady sprang to her feet, with the colour all dashed in an instant + from her beautiful face. Her eyes glazed--she tottered--I thought + that she would faint. Then with a grand effort she rallied from the + shock, and a supreme astonishment and indignation chased every other + expression from her features. + + "You--you insult me, Mr. Holmes." + + "Come, come, madam, it is useless. Give up the letter." + + She darted to the bell. + + "The butler shall show you out." + + "Do not ring, Lady Hilda. If you do, then all my earnest efforts to + avoid a scandal will be frustrated. Give up the letter and all will + be set right. If you will work with me I can arrange everything. If + you work against me I must expose you." + + She stood grandly defiant, a queenly figure, her eyes fixed upon his + as if she would read his very soul. Her hand was on the bell, but she + had forborne to ring it. + + "You are trying to frighten me. It is not a very manly thing, Mr. + Holmes, to come here and browbeat a woman. You say that you know + something. What is it that you know?" + + "Pray sit down, madam. You will hurt yourself there if you fall. I + will not speak until you sit down. Thank you." + + "I give you five minutes, Mr. Holmes." + + "One is enough, Lady Hilda. I know of your visit to Eduardo Lucas, of + your giving him this document, of your ingenious return to the room + last night, and of the manner in which you took the letter from the + hiding-place under the carpet." + + She stared at him with an ashen face and gulped twice before she + could speak. + + "You are mad, Mr. Holmes--you are mad!" she cried, at last. + + He drew a small piece of cardboard from his pocket. It was the face + of a woman cut out of a portrait. + + "I have carried this because I thought it might be useful," said he. + "The policeman has recognised it." + + She gave a gasp and her head dropped back in the chair. + + "Come, Lady Hilda. You have the letter. The matter may still be + adjusted. I have no desire to bring trouble to you. My duty ends when + I have returned the lost letter to your husband. Take my advice and + be frank with me; it is your only chance." + + Her courage was admirable. Even now she would not own defeat. + + "I tell you again, Mr. Holmes, that you are under some absurd + illusion." + + Holmes rose from his chair. + + "I am sorry for you, Lady Hilda. I have done my best for you; I can + see that it is all in vain." + + He rang the bell. The butler entered. + + "Is Mr. Trelawney Hope at home?" + + "He will be home, sir, at a quarter to one." + + Holmes glanced at his watch. + + "Still a quarter of an hour," said he. "Very good, I shall wait." + + The butler had hardly closed the door behind him when Lady Hilda was + down on her knees at Holmes's feet, her hands out-stretched, her + beautiful face upturned and wet with her tears. + + "Oh, spare me, Mr. Holmes! Spare me!" she pleaded, in a frenzy of + supplication. "For Heaven's sake, don't tell him! I love him so! I + would not bring one shadow on his life, and this I know would break + his noble heart." + + Holmes raised the lady. "I am thankful, madam, that you have come to + your senses even at this last moment! There is not an instant to + lose. Where is the letter?" + + She darted across to a writing-desk, unlocked it, and drew out a long + blue envelope. + + "Here it is, Mr. Holmes. Would to Heaven I had never seen it!" + + "How can we return it?" Holmes muttered. "Quick, quick, we must think + of some way! Where is the despatch-box?" + + "Still in his bedroom." + + "What a stroke of luck! Quick, madam, bring it here!" + + A moment later she had appeared with a red flat box in her hand. + + "How did you open it before? You have a duplicate key? Yes, of course + you have. Open it!" + + From out of her bosom Lady Hilda had drawn a small key. The box flew + open. It was stuffed with papers. Holmes thrust the blue envelope + deep down into the heart of them, between the leaves of some other + document. The box was shut, locked, and returned to the bedroom. + + "Now we are ready for him," said Holmes; "we have still ten minutes. + I am going far to screen you, Lady Hilda. In return you will spend + the time in telling me frankly the real meaning of this extraordinary + affair." + + "Mr. Holmes, I will tell you everything," cried the lady. "Oh, Mr. + Holmes, I would cut off my right hand before I gave him a moment of + sorrow! There is no woman in all London who loves her husband as I + do, and yet if he knew how I have acted--how I have been compelled to + act--he would never forgive me. For his own honour stands so high + that he could not forget or pardon a lapse in another. Help me, Mr. + Holmes! My happiness, his happiness, our very lives are at stake!" + + "Quick, madam, the time grows short!" + + "It was a letter of mine, Mr. Holmes, an indiscreet letter written + before my marriage--a foolish letter, a letter of an impulsive, + loving girl. I meant no harm, and yet he would have thought it + criminal. Had he read that letter his confidence would have been for + ever destroyed. It is years since I wrote it. I had thought that the + whole matter was forgotten. Then at last I heard from this man, + Lucas, that it had passed into his hands, and that he would lay it + before my husband. I implored his mercy. He said that he would return + my letter if I would bring him a certain document which he described + in my husband's despatch-box. He had some spy in the office who had + told him of its existence. He assured me that no harm could come to + my husband. Put yourself in my position, Mr. Holmes! What was I to + do?" + + "Take your husband into your confidence." + + "I could not, Mr. Holmes, I could not! On the one side seemed certain + ruin; on the other, terrible as it seemed to take my husband's paper, + still in a matter of politics I could not understand the + consequences, while in a matter of love and trust they were only too + clear to me. I did it, Mr. Holmes! I took an impression of his key; + this man Lucas furnished a duplicate. I opened his despatch-box, took + the paper, and conveyed it to Godolphin Street." + + "What happened there, madam?" + + "I tapped at the door as agreed. Lucas opened it. I followed him into + his room, leaving the hall door ajar behind me, for I feared to be + alone with the man. I remember that there was a woman outside as I + entered. Our business was soon done. He had my letter on his desk; I + handed him the document. He gave me the letter. At this instant there + was a sound at the door. There were steps in the passage. Lucas + quickly turned back the drugget, thrust the document into some + hiding-place there, and covered it over. + + "What happened after that is like some fearful dream. I have a vision + of a dark, frantic face, of a woman's voice, which screamed in + French, 'My waiting is not in vain. At last, at last I have found you + with her!' There was a savage struggle. I saw him with a chair in his + hand, a knife gleamed in hers. I rushed from the horrible scene, ran + from the house, and only next morning in the paper did I learn the + dreadful result. That night I was happy, for I had my letter, and I + had not seen yet what the future would bring. + + "It was the next morning that I realized that I had only exchanged + one trouble for another. My husband's anguish at the loss of his + paper went to my heart. I could hardly prevent myself from there and + then kneeling down at his feet and telling him what I had done. But + that again would mean a confession of the past. I came to you that + morning in order to understand the full enormity of my offence. From + the instant that I grasped it my whole mind was turned to the one + thought of getting back my husband's paper. It must still be where + Lucas had placed it, for it was concealed before this dreadful woman + entered the room. If it had not been for her coming, I should not + have known where his hiding-place was. How was I to get into the + room? For two days I watched the place, but the door was never left + open. Last night I made a last attempt. What I did and how I + succeeded, you have already learned. I brought the paper back with + me, and thought of destroying it since I could see no way of + returning it, without confessing my guilt to my husband. Heavens, I + hear his step upon the stair!" + + The European Secretary burst excitedly into the room. + + "Any news, Mr. Holmes, any news?" he cried. + + "I have some hopes." + + "Ah, thank heaven!" His face became radiant. "The Prime Minister is + lunching with me. May he share your hopes? He has nerves of steel, + and yet I know that he has hardly slept since this terrible event. + Jacobs, will you ask the Prime Minister to come up? As to you, dear, + I fear that this is a matter of politics. We will join you in a few + minutes in the dining-room." + + The Prime Minister's manner was subdued, but I could see by the gleam + of his eyes and the twitchings of his bony hands that he shared the + excitement of his young colleague. + + "I understand that you have something to report, Mr. Holmes?" + + "Purely negative as yet," my friend answered. "I have inquired at + every point where it might be, and I am sure that there is no danger + to be apprehended." + + "But that is not enough, Mr. Holmes. We cannot live for ever on such + a volcano. We must have something definite." + + "I am in hopes of getting it. That is why I am here. The more I think + of the matter the more convinced I am that the letter has never left + this house." + + "Mr. Holmes!" + + "If it had it would certainly have been public by now." + + "But why should anyone take it in order to keep it in his house?" + + "I am not convinced that anyone did take it." + + "Then how could it leave the despatch-box?" + + "I am not convinced that it ever did leave the despatch-box." + + "Mr. Holmes, this joking is very ill-timed. You have my assurance + that it left the box." + + "Have you examined the box since Tuesday morning?" + + "No; it was not necessary." + + "You may conceivably have overlooked it." + + "Impossible, I say." + + "But I am not convinced of it; I have known such things to happen. I + presume there are other papers there. Well, it may have got mixed + with them." + + "It was on the top." + + "Someone may have shaken the box and displaced it." + + "No, no; I had everything out." + + "Surely it is easily decided, Hope," said the Premier. "Let us have + the despatch-box brought in." + + The Secretary rang the bell. + + "Jacobs, bring down my despatch-box. This is a farcical waste of + time, but still, if nothing else will satisfy you, it shall be done. + Thank you, Jacobs; put it here. I have always had the key on my + watch-chain. Here are the papers, you see. Letter from Lord Merrow, + report from Sir Charles Hardy, memorandum from Belgrade, note on the + Russo-German grain taxes, letter from Madrid, note from Lord + Flowers--good heavens! what is this? Lord Bellinger! Lord Bellinger!" + + The Premier snatched the blue envelope from his hand. + + "Yes, it is it--and the letter is intact. Hope, I congratulate you." + + "Thank you! Thank you! What a weight from my heart. But this is + inconceivable--impossible. Mr. Holmes, you are a wizard, a sorcerer! + How did you know it was there?" + + "Because I knew it was nowhere else." + + "I cannot believe my eyes!" He ran wildly to the door. "Where is my + wife? I must tell her that all is well. Hilda! Hilda!" we heard his + voice on the stairs. + + The Premier looked at Holmes with twinkling eyes. + + "Come, sir," said he. "There is more in this than meets the eye. How + came the letter back in the box?" + + Holmes turned away smiling from the keen scrutiny of those wonderful + eyes. + + "We also have our diplomatic secrets," said he, and picking up his + hat he turned to the door. + + + + + + + THE HOUND OF THE BASKERVILLES + + + + + + Table of contents + Mr. Sherlock Holmes + The Curse of the Baskervilles + The Problem + Sir Henry Baskerville + Three Broken Threads + Baskerville Hall + The Stapletons of Merripit House + First Report of Dr. Watson + Second Report of Dr. Watson + Extract from the Diary of Dr. Watson + The Man on the Tor + Death on the Moor + Fixing the Nets + The Hound of the Baskervilles + A Retrospection + + + + + + + + + + + + + + + + CHAPTER I + Mr. Sherlock Holmes + + + Mr. Sherlock Holmes, who was usually very late in the mornings, save + upon those not infrequent occasions when he was up all night, was + seated at the breakfast table. I stood upon the hearth-rug and picked + up the stick which our visitor had left behind him the night before. + It was a fine, thick piece of wood, bulbous-headed, of the sort which + is known as a "Penang lawyer." Just under the head was a broad silver + band nearly an inch across. "To James Mortimer, M.R.C.S., from his + friends of the C.C.H.," was engraved upon it, with the date "1884." + It was just such a stick as the old-fashioned family practitioner + used to carry--dignified, solid, and reassuring. + + "Well, Watson, what do you make of it?" + + Holmes was sitting with his back to me, and I had given him no sign + of my occupation. + + "How did you know what I was doing? I believe you have eyes in the + back of your head." + + "I have, at least, a well-polished, silver-plated coffee-pot in front + of me," said he. "But, tell me, Watson, what do you make of our + visitor's stick? Since we have been so unfortunate as to miss him and + have no notion of his errand, this accidental souvenir becomes of + importance. Let me hear you reconstruct the man by an examination of + it." + + "I think," said I, following as far as I could the methods of my + companion, "that Dr. Mortimer is a successful, elderly medical man, + well-esteemed since those who know him give him this mark of their + appreciation." + + "Good!" said Holmes. "Excellent!" + + "I think also that the probability is in favour of his being a + country practitioner who does a great deal of his visiting on foot." + + "Why so?" + + "Because this stick, though originally a very handsome one has been + so knocked about that I can hardly imagine a town practitioner + carrying it. The thick-iron ferrule is worn down, so it is evident + that he has done a great amount of walking with it." + + "Perfectly sound!" said Holmes. + + "And then again, there is the 'friends of the C.C.H.' I should guess + that to be the Something Hunt, the local hunt to whose members he has + possibly given some surgical assistance, and which has made him a + small presentation in return." + + "Really, Watson, you excel yourself," said Holmes, pushing back his + chair and lighting a cigarette. "I am bound to say that in all the + accounts which you have been so good as to give of my own small + achievements you have habitually underrated your own abilities. It + may be that you are not yourself luminous, but you are a conductor of + light. Some people without possessing genius have a remarkable power + of stimulating it. I confess, my dear fellow, that I am very much in + your debt." + + He had never said as much before, and I must admit that his words + gave me keen pleasure, for I had often been piqued by his + indifference to my admiration and to the attempts which I had made to + give publicity to his methods. I was proud, too, to think that I had + so far mastered his system as to apply it in a way which earned his + approval. He now took the stick from my hands and examined it for a + few minutes with his naked eyes. Then with an expression of interest + he laid down his cigarette, and carrying the cane to the window, he + looked over it again with a convex lens. + + "Interesting, though elementary," said he as he returned to his + favourite corner of the settee. "There are certainly one or two + indications upon the stick. It gives us the basis for several + deductions." + + "Has anything escaped me?" I asked with some self-importance. "I + trust that there is nothing of consequence which I have overlooked?" + + "I am afraid, my dear Watson, that most of your conclusions were + erroneous. When I said that you stimulated me I meant, to be frank, + that in noting your fallacies I was occasionally guided towards the + truth. Not that you are entirely wrong in this instance. The man is + certainly a country practitioner. And he walks a good deal." + + "Then I was right." + + "To that extent." + + "But that was all." + + "No, no, my dear Watson, not all--by no means all. I would suggest, + for example, that a presentation to a doctor is more likely to come + from a hospital than from a hunt, and that when the initials 'C.C.' + are placed before that hospital the words 'Charing Cross' very + naturally suggest themselves." + + "You may be right." + + "The probability lies in that direction. And if we take this as a + working hypothesis we have a fresh basis from which to start our + construction of this unknown visitor." + + "Well, then, supposing that 'C.C.H.' does stand for 'Charing Cross + Hospital,' what further inferences may we draw?" + + "Do none suggest themselves? You know my methods. Apply them!" + + "I can only think of the obvious conclusion that the man has + practised in town before going to the country." + + "I think that we might venture a little farther than this. Look at it + in this light. On what occasion would it be most probable that such a + presentation would be made? When would his friends unite to give him + a pledge of their good will? Obviously at the moment when Dr. + Mortimer withdrew from the service of the hospital in order to start + in practice for himself. We know there has been a presentation. We + believe there has been a change from a town hospital to a country + practice. Is it, then, stretching our inference too far to say that + the presentation was on the occasion of the change?" + + "It certainly seems probable." + + "Now, you will observe that he could not have been on the staff of + the hospital, since only a man well-established in a London practice + could hold such a position, and such a one would not drift into the + country. What was he, then? If he was in the hospital and yet not on + the staff he could only have been a house-surgeon or a + house-physician--little more than a senior student. And he left five + years ago--the date is on the stick. So your grave, middle-aged + family practitioner vanishes into thin air, my dear Watson, and there + emerges a young fellow under thirty, amiable, unambitious, + absent-minded, and the possessor of a favourite dog, which I should + describe roughly as being larger than a terrier and smaller than a + mastiff." + + I laughed incredulously as Sherlock Holmes leaned back in his settee + and blew little wavering rings of smoke up to the ceiling. + + "As to the latter part, I have no means of checking you," said I, + "but at least it is not difficult to find out a few particulars about + the man's age and professional career." From my small medical shelf I + took down the Medical Directory and turned up the name. There were + several Mortimers, but only one who could be our visitor. I read his + record aloud. + + "Mortimer, James, M.R.C.S., 1882, Grimpen, Dartmoor, Devon. + House-surgeon, from 1882 to 1884, at Charing Cross Hospital. Winner + of the Jackson prize for Comparative Pathology, with essay entitled + 'Is Disease a Reversion?' Corresponding member of the Swedish + Pathological Society. Author of 'Some Freaks of Atavism' (Lancet + 1882). 'Do We Progress?' (Journal of Psychology, March, 1883). + Medical Officer for the parishes of Grimpen, Thorsley, and High + Barrow." + + "No mention of that local hunt, Watson," said Holmes with a + mischievous smile, "but a country doctor, as you very astutely + observed. I think that I am fairly justified in my inferences. As to + the adjectives, I said, if I remember right, amiable, unambitious, + and absent-minded. It is my experience that it is only an amiable man + in this world who receives testimonials, only an unambitious one who + abandons a London career for the country, and only an absent-minded + one who leaves his stick and not his visiting-card after waiting an + hour in your room." + + "And the dog?" + + "Has been in the habit of carrying this stick behind his master. + Being a heavy stick the dog has held it tightly by the middle, and + the marks of his teeth are very plainly visible. The dog's jaw, as + shown in the space between these marks, is too broad in my opinion + for a terrier and not broad enough for a mastiff. It may have + been--yes, by Jove, it is a curly-haired spaniel." + + He had risen and paced the room as he spoke. Now he halted in the + recess of the window. There was such a ring of conviction in his + voice that I glanced up in surprise. + + "My dear fellow, how can you possibly be so sure of that?" + + "For the very simple reason that I see the dog himself on our very + door-step, and there is the ring of its owner. Don't move, I beg you, + Watson. He is a professional brother of yours, and your presence may + be of assistance to me. Now is the dramatic moment of fate, Watson, + when you hear a step upon the stair which is walking into your life, + and you know not whether for good or ill. What does Dr. James + Mortimer, the man of science, ask of Sherlock Holmes, the specialist + in crime? Come in!" + + The appearance of our visitor was a surprise to me, since I had + expected a typical country practitioner. He was a very tall, thin + man, with a long nose like a beak, which jutted out between two keen, + gray eyes, set closely together and sparkling brightly from behind a + pair of gold-rimmed glasses. He was clad in a professional but rather + slovenly fashion, for his frock-coat was dingy and his trousers + frayed. Though young, his long back was already bowed, and he walked + with a forward thrust of his head and a general air of peering + benevolence. As he entered his eyes fell upon the stick in Holmes's + hand, and he ran towards it with an exclamation of joy. "I am so very + glad," said he. "I was not sure whether I had left it here or in the + Shipping Office. I would not lose that stick for the world." + + "A presentation, I see," said Holmes. + + "Yes, sir." + + "From Charing Cross Hospital?" + + "From one or two friends there on the occasion of my marriage." + + "Dear, dear, that's bad!" said Holmes, shaking his head. + + Dr. Mortimer blinked through his glasses in mild astonishment. + + "Why was it bad?" + + "Only that you have disarranged our little deductions. Your marriage, + you say?" + + "Yes, sir. I married, and so left the hospital, and with it all hopes + of a consulting practice. It was necessary to make a home of my own." + + "Come, come, we are not so far wrong, after all," said Holmes. "And + now, Dr. James Mortimer--" + + "Mister, sir, Mister--a humble M.R.C.S." + + "And a man of precise mind, evidently." + + "A dabbler in science, Mr. Holmes, a picker up of shells on the + shores of the great unknown ocean. I presume that it is Mr. Sherlock + Holmes whom I am addressing and not--" + + "No, this is my friend Dr. Watson." + + "Glad to meet you, sir. I have heard your name mentioned in + connection with that of your friend. You interest me very much, Mr. + Holmes. I had hardly expected so dolichocephalic a skull or such + well-marked supra-orbital development. Would you have any objection + to my running my finger along your parietal fissure? A cast of your + skull, sir, until the original is available, would be an ornament to + any anthropological museum. It is not my intention to be fulsome, but + I confess that I covet your skull." + + Sherlock Holmes waved our strange visitor into a chair. "You are an + enthusiast in your line of thought, I perceive, sir, as I am in + mine," said he. "I observe from your forefinger that you make your + own cigarettes. Have no hesitation in lighting one." + + The man drew out paper and tobacco and twirled the one up in the + other with surprising dexterity. He had long, quivering fingers as + agile and restless as the antennae of an insect. + + Holmes was silent, but his little darting glances showed me the + interest which he took in our curious companion. + + "I presume, sir," said he at last, "that it was not merely for the + purpose of examining my skull that you have done me the honour to + call here last night and again to-day?" + + "No, sir, no; though I am happy to have had the opportunity of doing + that as well. I came to you, Mr. Holmes, because I recognized that I + am myself an unpractical man and because I am suddenly confronted + with a most serious and extraordinary problem. Recognizing, as I do, + that you are the second highest expert in Europe--" + + "Indeed, sir! May I inquire who has the honour to be the first?" + asked Holmes with some asperity. + + "To the man of precisely scientific mind the work of Monsieur + Bertillon must always appeal strongly." + + "Then had you not better consult him?" + + "I said, sir, to the precisely scientific mind. But as a practical + man of affairs it is acknowledged that you stand alone. I trust, sir, + that I have not inadvertently--" + + "Just a little," said Holmes. "I think, Dr. Mortimer, you would do + wisely if without more ado you would kindly tell me plainly what the + exact nature of the problem is in which you demand my assistance." + + + + + + CHAPTER II + The Curse of the Baskervilles + + + "I have in my pocket a manuscript," said Dr. James Mortimer. + + "I observed it as you entered the room," said Holmes. + + "It is an old manuscript." + + "Early eighteenth century, unless it is a forgery." + + "How can you say that, sir?" + + "You have presented an inch or two of it to my examination all the + time that you have been talking. It would be a poor expert who could + not give the date of a document within a decade or so. You may + possibly have read my little monograph upon the subject. I put that + at 1730." + + "The exact date is 1742." Dr. Mortimer drew it from his + breast-pocket. "This family paper was committed to my care by Sir + Charles Baskerville, whose sudden and tragic death some three months + ago created so much excitement in Devonshire. I may say that I was + his personal friend as well as his medical attendant. He was a + strong-minded man, sir, shrewd, practical, and as unimaginative as I + am myself. Yet he took this document very seriously, and his mind was + prepared for just such an end as did eventually overtake him." + + Holmes stretched out his hand for the manuscript and flattened it + upon his knee. + + "You will observe, Watson, the alternative use of the long s and the + short. It is one of several indications which enabled me to fix the + date." + + I looked over his shoulder at the yellow paper and the faded script. + At the head was written: "Baskerville Hall," and below in large, + scrawling figures: "1742." + + "It appears to be a statement of some sort." + + "Yes, it is a statement of a certain legend which runs in the + Baskerville family." + + "But I understand that it is something more modern and practical upon + which you wish to consult me?" + + "Most modern. A most practical, pressing matter, which must be + decided within twenty-four hours. But the manuscript is short and is + intimately connected with the affair. With your permission I will + read it to you." + + Holmes leaned back in his chair, placed his finger-tips together, and + closed his eyes, with an air of resignation. Dr. Mortimer turned the + manuscript to the light and read in a high, cracking voice the + following curious, old-world narrative:-- + + "Of the origin of the Hound of the Baskervilles there have been many + statements, yet as I come in a direct line from Hugo Baskerville, and + as I had the story from my father, who also had it from his, I have + set it down with all belief that it occurred even as is here set + forth. And I would have you believe, my sons, that the same Justice + which punishes sin may also most graciously forgive it, and that no + ban is so heavy but that by prayer and repentance it may be removed. + Learn then from this story not to fear the fruits of the past, but + rather to be circumspect in the future, that those foul passions + whereby our family has suffered so grievously may not again be loosed + to our undoing. + + "Know then that in the time of the Great Rebellion (the history of + which by the learned Lord Clarendon I most earnestly commend to your + attention) this Manor of Baskerville was held by Hugo of that name, + nor can it be gainsaid that he was a most wild, profane, and godless + man. This, in truth, his neighbours might have pardoned, seeing that + saints have never flourished in those parts, but there was in him a + certain wanton and cruel humour which made his name a byword through + the West. It chanced that this Hugo came to love (if, indeed, so dark + a passion may be known under so bright a name) the daughter of a + yeoman who held lands near the Baskerville estate. But the young + maiden, being discreet and of good repute, would ever avoid him, for + she feared his evil name. So it came to pass that one Michaelmas this + Hugo, with five or six of his idle and wicked companions, stole down + upon the farm and carried off the maiden, her father and brothers + being from home, as he well knew. When they had brought her to the + Hall the maiden was placed in an upper chamber, while Hugo and his + friends sat down to a long carouse, as was their nightly custom. Now, + the poor lass upstairs was like to have her wits turned at the + singing and shouting and terrible oaths which came up to her from + below, for they say that the words used by Hugo Baskerville, when he + was in wine, were such as might blast the man who said them. At last + in the stress of her fear she did that which might have daunted the + bravest or most active man, for by the aid of the growth of ivy which + covered (and still covers) the south wall she came down from under + the eaves, and so homeward across the moor, there being three leagues + betwixt the Hall and her father's farm. + + "It chanced that some little time later Hugo left his guests to carry + food and drink--with other worse things, perchance--to his captive, + and so found the cage empty and the bird escaped. Then, as it would + seem, he became as one that hath a devil, for, rushing down the + stairs into the dining-hall, he sprang upon the great table, flagons + and trenchers flying before him, and he cried aloud before all the + company that he would that very night render his body and soul to the + Powers of Evil if he might but overtake the wench. And while the + revellers stood aghast at the fury of the man, one more wicked or, it + may be, more drunken than the rest, cried out that they should put + the hounds upon her. Whereat Hugo ran from the house, crying to his + grooms that they should saddle his mare and unkennel the pack, and + giving the hounds a kerchief of the maid's, he swung them to the + line, and so off full cry in the moonlight over the moor. + + "Now, for some space the revellers stood agape, unable to understand + all that had been done in such haste. But anon their bemused wits + awoke to the nature of the deed which was like to be done upon the + moorlands. Everything was now in an uproar, some calling for their + pistols, some for their horses, and some for another flask of wine. + But at length some sense came back to their crazed minds, and the + whole of them, thirteen in number, took horse and started in pursuit. + The moon shone clear above them, and they rode swiftly abreast, + taking that course which the maid must needs have taken if she were + to reach her own home. + + "They had gone a mile or two when they passed one of the night + shepherds upon the moorlands, and they cried to him to know if he had + seen the hunt. And the man, as the story goes, was so crazed with + fear that he could scarce speak, but at last he said that he had + indeed seen the unhappy maiden, with the hounds upon her track. 'But + I have seen more than that,' said he, 'for Hugo Baskerville passed me + upon his black mare, and there ran mute behind him such a hound of + hell as God forbid should ever be at my heels.' So the drunken + squires cursed the shepherd and rode onward. But soon their skins + turned cold, for there came a galloping across the moor, and the + black mare, dabbled with white froth, went past with trailing bridle + and empty saddle. Then the revellers rode close together, for a great + fear was on them, but they still followed over the moor, though each, + had he been alone, would have been right glad to have turned his + horse's head. Riding slowly in this fashion they came at last upon + the hounds. These, though known for their valour and their breed, + were whimpering in a cluster at the head of a deep dip or goyal, as + we call it, upon the moor, some slinking away and some, with starting + hackles and staring eyes, gazing down the narrow valley before them. + + "The company had come to a halt, more sober men, as you may guess, + than when they started. The most of them would by no means advance, + but three of them, the boldest, or it may be the most drunken, rode + forward down the goyal. Now, it opened into a broad space in which + stood two of those great stones, still to be seen there, which were + set by certain forgotten peoples in the days of old. The moon was + shining bright upon the clearing, and there in the centre lay the + unhappy maid where she had fallen, dead of fear and of fatigue. But + it was not the sight of her body, nor yet was it that of the body of + Hugo Baskerville lying near her, which raised the hair upon the heads + of these three daredevil roysterers, but it was that, standing over + Hugo, and plucking at his throat, there stood a foul thing, a great, + black beast, shaped like a hound, yet larger than any hound that ever + mortal eye has rested upon. And even as they looked the thing tore + the throat out of Hugo Baskerville, on which, as it turned its + blazing eyes and dripping jaws upon them, the three shrieked with + fear and rode for dear life, still screaming, across the moor. One, + it is said, died that very night of what he had seen, and the other + twain were but broken men for the rest of their days. + + "Such is the tale, my sons, of the coming of the hound which is said + to have plagued the family so sorely ever since. If I have set it + down it is because that which is clearly known hath less terror than + that which is but hinted at and guessed. Nor can it be denied that + many of the family have been unhappy in their deaths, which have been + sudden, bloody, and mysterious. Yet may we shelter ourselves in the + infinite goodness of Providence, which would not forever punish the + innocent beyond that third or fourth generation which is threatened + in Holy Writ. To that Providence, my sons, I hereby commend you, and + I counsel you by way of caution to forbear from crossing the moor in + those dark hours when the powers of evil are exalted. + + "[This from Hugo Baskerville to his sons Rodger and John, with + instructions that they say nothing thereof to their sister + Elizabeth.]" + + When Dr. Mortimer had finished reading this singular narrative he + pushed his spectacles up on his forehead and stared across at Mr. + Sherlock Holmes. The latter yawned and tossed the end of his + cigarette into the fire. + + "Well?" said he. + + "Do you not find it interesting?" + + "To a collector of fairy tales." + + Dr. Mortimer drew a folded newspaper out of his pocket. + + "Now, Mr. Holmes, we will give you something a little more recent. + This is the Devon County Chronicle of May 14th of this year. It is a + short account of the facts elicited at the death of Sir Charles + Baskerville which occurred a few days before that date." + + My friend leaned a little forward and his expression became intent. + Our visitor readjusted his glasses and began:-- + + "The recent sudden death of Sir Charles Baskerville, whose name has + been mentioned as the probable Liberal candidate for Mid-Devon at the + next election, has cast a gloom over the county. Though Sir Charles + had resided at Baskerville Hall for a comparatively short period his + amiability of character and extreme generosity had won the affection + and respect of all who had been brought into contact with him. In + these days of nouveaux riches it is refreshing to find a case where + the scion of an old county family which has fallen upon evil days is + able to make his own fortune and to bring it back with him to restore + the fallen grandeur of his line. Sir Charles, as is well known, made + large sums of money in South African speculation. More wise than + those who go on until the wheel turns against them, he realized his + gains and returned to England with them. It is only two years since + he took up his residence at Baskerville Hall, and it is common talk + how large were those schemes of reconstruction and improvement which + have been interrupted by his death. Being himself childless, it was + his openly expressed desire that the whole country-side should, + within his own lifetime, profit by his good fortune, and many will + have personal reasons for bewailing his untimely end. His generous + donations to local and county charities have been frequently + chronicled in these columns. + + "The circumstances connected with the death of Sir Charles cannot be + said to have been entirely cleared up by the inquest, but at least + enough has been done to dispose of those rumours to which local + superstition has given rise. There is no reason whatever to suspect + foul play, or to imagine that death could be from any but natural + causes. Sir Charles was a widower, and a man who may be said to have + been in some ways of an eccentric habit of mind. In spite of his + considerable wealth he was simple in his personal tastes, and his + indoor servants at Baskerville Hall consisted of a married couple + named Barrymore, the husband acting as butler and the wife as + housekeeper. Their evidence, corroborated by that of several friends, + tends to show that Sir Charles's health has for some time been + impaired, and points especially to some affection of the heart, + manifesting itself in changes of colour, breathlessness, and acute + attacks of nervous depression. Dr. James Mortimer, the friend and + medical attendant of the deceased, has given evidence to the same + effect. + + "The facts of the case are simple. Sir Charles Baskerville was in the + habit every night before going to bed of walking down the famous Yew + Alley of Baskerville Hall. The evidence of the Barrymores shows that + this had been his custom. On the 4th of May Sir Charles had declared + his intention of starting next day for London, and had ordered + Barrymore to prepare his luggage. That night he went out as usual for + his nocturnal walk, in the course of which he was in the habit of + smoking a cigar. He never returned. At twelve o'clock Barrymore, + finding the hall door still open, became alarmed, and, lighting a + lantern, went in search of his master. The day had been wet, and Sir + Charles's footmarks were easily traced down the Alley. Half-way down + this walk there is a gate which leads out on to the moor. There were + indications that Sir Charles had stood for some little time here. He + then proceeded down the Alley, and it was at the far end of it that + his body was discovered. One fact which has not been explained is the + statement of Barrymore that his master's footprints altered their + character from the time that he passed the moor-gate, and that he + appeared from thence onward to have been walking upon his toes. One + Murphy, a gipsy horse-dealer, was on the moor at no great distance at + the time, but he appears by his own confession to have been the worse + for drink. He declares that he heard cries, but is unable to state + from what direction they came. No signs of violence were to be + discovered upon Sir Charles's person, and though the doctor's + evidence pointed to an almost incredible facial distortion--so great + that Dr. Mortimer refused at first to believe that it was indeed his + friend and patient who lay before him--it was explained that that is + a symptom which is not unusual in cases of dyspnoea and death from + cardiac exhaustion. This explanation was borne out by the post-mortem + examination, which showed long-standing organic disease, and the + coroner's jury returned a verdict in accordance with the medical + evidence. It is well that this is so, for it is obviously of the + utmost importance that Sir Charles's heir should settle at the Hall + and continue the good work which has been so sadly interrupted. Had + the prosaic finding of the coroner not finally put an end to the + romantic stories which have been whispered in connection with the + affair, it might have been difficult to find a tenant for Baskerville + Hall. It is understood that the next of kin is Mr. Henry Baskerville, + if he be still alive, the son of Sir Charles Baskerville's younger + brother. The young man when last heard of was in America, and + inquiries are being instituted with a view to informing him of his + good fortune." + + Dr. Mortimer refolded his paper and replaced it in his pocket. + + "Those are the public facts, Mr. Holmes, in connection with the death + of Sir Charles Baskerville." + + "I must thank you," said Sherlock Holmes, "for calling my attention + to a case which certainly presents some features of interest. I had + observed some newspaper comment at the time, but I was exceedingly + preoccupied by that little affair of the Vatican cameos, and in my + anxiety to oblige the Pope I lost touch with several interesting + English cases. This article, you say, contains all the public facts?" + + "It does." + + "Then let me have the private ones." He leaned back, put his + finger-tips together, and assumed his most impassive and judicial + expression. + + "In doing so," said Dr. Mortimer, who had begun to show signs of some + strong emotion, "I am telling that which I have not confided to + anyone. My motive for withholding it from the coroner's inquiry is + that a man of science shrinks from placing himself in the public + position of seeming to indorse a popular superstition. I had the + further motive that Baskerville Hall, as the paper says, would + certainly remain untenanted if anything were done to increase its + already rather grim reputation. For both these reasons I thought that + I was justified in telling rather less than I knew, since no + practical good could result from it, but with you there is no reason + why I should not be perfectly frank. + + "The moor is very sparsely inhabited, and those who live near each + other are thrown very much together. For this reason I saw a good + deal of Sir Charles Baskerville. With the exception of Mr. Frankland, + of Lafter Hall, and Mr. Stapleton, the naturalist, there are no other + men of education within many miles. Sir Charles was a retiring man, + but the chance of his illness brought us together, and a community of + interests in science kept us so. He had brought back much scientific + information from South Africa, and many a charming evening we have + spent together discussing the comparative anatomy of the Bushman and + the Hottentot. + + "Within the last few months it became increasingly plain to me that + Sir Charles's nervous system was strained to the breaking point. He + had taken this legend which I have read you exceedingly to heart--so + much so that, although he would walk in his own grounds, nothing + would induce him to go out upon the moor at night. Incredible as it + may appear to you, Mr. Holmes, he was honestly convinced that a + dreadful fate overhung his family, and certainly the records which he + was able to give of his ancestors were not encouraging. The idea of + some ghastly presence constantly haunted him, and on more than one + occasion he has asked me whether I had on my medical journeys at + night ever seen any strange creature or heard the baying of a hound. + The latter question he put to me several times, and always with a + voice which vibrated with excitement. + + "I can well remember driving up to his house in the evening some + three weeks before the fatal event. He chanced to be at his hall + door. I had descended from my gig and was standing in front of him, + when I saw his eyes fix themselves over my shoulder, and stare past + me with an expression of the most dreadful horror. I whisked round + and had just time to catch a glimpse of something which I took to be + a large black calf passing at the head of the drive. So excited and + alarmed was he that I was compelled to go down to the spot where the + animal had been and look around for it. It was gone, however, and the + incident appeared to make the worst impression upon his mind. I + stayed with him all the evening, and it was on that occasion, to + explain the emotion which he had shown, that he confided to my + keeping that narrative which I read to you when first I came. I + mention this small episode because it assumes some importance in view + of the tragedy which followed, but I was convinced at the time that + the matter was entirely trivial and that his excitement had no + justification. + + "It was at my advice that Sir Charles was about to go to London. His + heart was, I knew, affected, and the constant anxiety in which he + lived, however chimerical the cause of it might be, was evidently + having a serious effect upon his health. I thought that a few months + among the distractions of town would send him back a new man. Mr. + Stapleton, a mutual friend who was much concerned at his state of + health, was of the same opinion. At the last instant came this + terrible catastrophe. + + "On the night of Sir Charles's death Barrymore the butler, who made + the discovery, sent Perkins the groom on horseback to me, and as I + was sitting up late I was able to reach Baskerville Hall within an + hour of the event. I checked and corroborated all the facts which + were mentioned at the inquest. I followed the footsteps down the Yew + Alley, I saw the spot at the moor-gate where he seemed to have + waited, I remarked the change in the shape of the prints after that + point, I noted that there were no other footsteps save those of + Barrymore on the soft gravel, and finally I carefully examined the + body, which had not been touched until my arrival. Sir Charles lay on + his face, his arms out, his fingers dug into the ground, and his + features convulsed with some strong emotion to such an extent that I + could hardly have sworn to his identity. There was certainly no + physical injury of any kind. But one false statement was made by + Barrymore at the inquest. He said that there were no traces upon the + ground round the body. He did not observe any. But I did--some little + distance off, but fresh and clear." + + "Footprints?" + + "Footprints." + + "A man's or a woman's?" + + Dr. Mortimer looked strangely at us for an instant, and his voice + sank almost to a whisper as he answered:-- + + "Mr. Holmes, they were the footprints of a gigantic hound!" + + + + + + CHAPTER III + The Problem + + + I confess at these words a shudder passed through me. There was a + thrill in the doctor's voice which showed that he was himself deeply + moved by that which he told us. Holmes leaned forward in his + excitement and his eyes had the hard, dry glitter which shot from + them when he was keenly interested. + + "You saw this?" + + "As clearly as I see you." + + "And you said nothing?" + + "What was the use?" + + "How was it that no one else saw it?" + + "The marks were some twenty yards from the body and no one gave them + a thought. I don't suppose I should have done so had I not known this + legend." + + "There are many sheep-dogs on the moor?" + + "No doubt, but this was no sheep-dog." + + "You say it was large?" + + "Enormous." + + "But it had not approached the body?" + + "No." + + "What sort of night was it?" + + "Damp and raw." + + "But not actually raining?" + + "No." + + "What is the Alley like?" + + "There are two lines of old yew hedge, twelve feet high and + impenetrable. The walk in the centre is about eight feet across." + + "Is there anything between the hedges and the walk?" + + "Yes, there is a strip of grass about six feet broad on either side." + + "I understand that the yew hedge is penetrated at one point by a + gate?" + + "Yes, the wicket-gate which leads on to the moor." + + "Is there any other opening?" + + "None." + + "So that to reach the Yew Alley one either has to come down it from + the house or else to enter it by the moor-gate?" + + "There is an exit through a summer-house at the far end." + + "Had Sir Charles reached this?" + + "No; he lay about fifty yards from it." + + "Now, tell me, Dr. Mortimer--and this is important--the marks which + you saw were on the path and not on the grass?" + + "No marks could show on the grass." + + "Were they on the same side of the path as the moor-gate?" + + "Yes; they were on the edge of the path on the same side as the + moor-gate." + + "You interest me exceedingly. Another point. Was the wicket-gate + closed?" + + "Closed and padlocked." + + "How high was it?" + + "About four feet high." + + "Then anyone could have got over it?" + + "Yes." + + "And what marks did you see by the wicket-gate?" + + "None in particular." + + "Good heaven! Did no one examine?" + + "Yes, I examined myself." + + "And found nothing?" + + "It was all very confused. Sir Charles had evidently stood there for + five or ten minutes." + + "How do you know that?" + + "Because the ash had twice dropped from his cigar." + + "Excellent! This is a colleague, Watson, after our own heart. But the + marks?" + + "He had left his own marks all over that small patch of gravel. I + could discern no others." + + Sherlock Holmes struck his hand against his knee with an impatient + gesture. + + "If I had only been there!" he cried. "It is evidently a case of + extraordinary interest, and one which presented immense opportunities + to the scientific expert. That gravel page upon which I might have + read so much has been long ere this smudged by the rain and defaced + by the clogs of curious peasants. Oh, Dr. Mortimer, Dr. Mortimer, to + think that you should not have called me in! You have indeed much to + answer for." + + "I could not call you in, Mr. Holmes, without disclosing these facts + to the world, and I have already given my reasons for not wishing to + do so. Besides, besides--" + + "Why do you hesitate?" + + "There is a realm in which the most acute and most experienced of + detectives is helpless." + + "You mean that the thing is supernatural?" + + "I did not positively say so." + + "No, but you evidently think it." + + "Since the tragedy, Mr. Holmes, there have come to my ears several + incidents which are hard to reconcile with the settled order of + Nature." + + "For example?" + + "I find that before the terrible event occurred several people had + seen a creature upon the moor which corresponds with this Baskerville + demon, and which could not possibly be any animal known to science. + They all agreed that it was a huge creature, luminous, ghastly, and + spectral. I have cross-examined these men, one of them a hard-headed + countryman, one a farrier, and one a moorland farmer, who all tell + the same story of this dreadful apparition, exactly corresponding to + the hell-hound of the legend. I assure you that there is a reign of + terror in the district, and that it is a hardy man who will cross the + moor at night." + + "And you, a trained man of science, believe it to be supernatural?" + + "I do not know what to believe." + + Holmes shrugged his shoulders. + + "I have hitherto confined my investigations to this world," said he. + "In a modest way I have combated evil, but to take on the Father of + Evil himself would, perhaps, be too ambitious a task. Yet you must + admit that the footmark is material." + + "The original hound was material enough to tug a man's throat out, + and yet he was diabolical as well." + + "I see that you have quite gone over to the supernaturalists. But + now, Dr. Mortimer, tell me this. If you hold these views, why have + you come to consult me at all? You tell me in the same breath that it + is useless to investigate Sir Charles's death, and that you desire me + to do it." + + "I did not say that I desired you to do it." + + "Then, how can I assist you?" + + "By advising me as to what I should do with Sir Henry Baskerville, + who arrives at Waterloo Station"--Dr. Mortimer looked at his + watch--"in exactly one hour and a quarter." + + "He being the heir?" + + "Yes. On the death of Sir Charles we inquired for this young + gentleman and found that he had been farming in Canada. From the + accounts which have reached us he is an excellent fellow in every + way. I speak not as a medical man but as a trustee and executor of + Sir Charles's will." + + "There is no other claimant, I presume?" + + "None. The only other kinsman whom we have been able to trace was + Rodger Baskerville, the youngest of three brothers of whom poor Sir + Charles was the elder. The second brother, who died young, is the + father of this lad Henry. The third, Rodger, was the black sheep of + the family. He came of the old masterful Baskerville strain, and was + the very image, they tell me, of the family picture of old Hugo. He + made England too hot to hold him, fled to Central America, and died + there in 1876 of yellow fever. Henry is the last of the Baskervilles. + In one hour and five minutes I meet him at Waterloo Station. I have + had a wire that he arrived at Southampton this morning. Now, Mr. + Holmes, what would you advise me to do with him?" + + "Why should he not go to the home of his fathers?" + + "It seems natural, does it not? And yet, consider that every + Baskerville who goes there meets with an evil fate. I feel sure that + if Sir Charles could have spoken with me before his death he would + have warned me against bringing this, the last of the old race, and + the heir to great wealth, to that deadly place. And yet it cannot be + denied that the prosperity of the whole poor, bleak country-side + depends upon his presence. All the good work which has been done by + Sir Charles will crash to the ground if there is no tenant of the + Hall. I fear lest I should be swayed too much by my own obvious + interest in the matter, and that is why I bring the case before you + and ask for your advice." + + Holmes considered for a little time. + + "Put into plain words, the matter is this," said he. "In your opinion + there is a diabolical agency which makes Dartmoor an unsafe abode for + a Baskerville--that is your opinion?" + + "At least I might go the length of saying that there is some evidence + that this may be so." + + "Exactly. But surely, if your supernatural theory be correct, it + could work the young man evil in London as easily as in Devonshire. A + devil with merely local powers like a parish vestry would be too + inconceivable a thing." + + "You put the matter more flippantly, Mr. Holmes, than you would + probably do if you were brought into personal contact with these + things. Your advice, then, as I understand it, is that the young man + will be as safe in Devonshire as in London. He comes in fifty + minutes. What would you recommend?" + + "I recommend, sir, that you take a cab, call off your spaniel who is + scratching at my front door, and proceed to Waterloo to meet Sir + Henry Baskerville." + + "And then?" + + "And then you will say nothing to him at all until I have made up my + mind about the matter." + + "How long will it take you to make up your mind?" + + "Twenty-four hours. At ten o'clock to-morrow, Dr. Mortimer, I will be + much obliged to you if you will call upon me here, and it will be of + help to me in my plans for the future if you will bring Sir Henry + Baskerville with you." + + "I will do so, Mr. Holmes." He scribbled the appointment on his + shirtcuff and hurried off in his strange, peering, absent-minded + fashion. Holmes stopped him at the head of the stair. + + "Only one more question, Dr. Mortimer. You say that before Sir + Charles Baskerville's death several people saw this apparition upon + the moor?" + + "Three people did." + + "Did any see it after?" + + "I have not heard of any." + + "Thank you. Good morning." + + Holmes returned to his seat with that quiet look of inward + satisfaction which meant that he had a congenial task before him. + + "Going out, Watson?" + + "Unless I can help you." + + "No, my dear fellow, it is at the hour of action that I turn to you + for aid. But this is splendid, really unique from some points of + view. When you pass Bradley's, would you ask him to send up a pound + of the strongest shag tobacco? Thank you. It would be as well if you + could make it convenient not to return before evening. Then I should + be very glad to compare impressions as to this most interesting + problem which has been submitted to us this morning." + + I knew that seclusion and solitude were very necessary for my friend + in those hours of intense mental concentration during which he + weighed every particle of evidence, constructed alternative theories, + balanced one against the other, and made up his mind as to which + points were essential and which immaterial. I therefore spent the day + at my club and did not return to Baker Street until evening. It was + nearly nine o'clock when I found myself in the sitting-room once + more. + + My first impression as I opened the door was that a fire had broken + out, for the room was so filled with smoke that the light of the lamp + upon the table was blurred by it. As I entered, however, my fears + were set at rest, for it was the acrid fumes of strong coarse tobacco + which took me by the throat and set me coughing. Through the haze I + had a vague vision of Holmes in his dressing-gown coiled up in an + armchair with his black clay pipe between his lips. Several rolls of + paper lay around him. + + "Caught cold, Watson?" said he. + + "No, it's this poisonous atmosphere." + + "I suppose it is pretty thick, now that you mention it." + + "Thick! It is intolerable." + + "Open the window, then! You have been at your club all day, I + perceive." + + "My dear Holmes!" + + "Am I right?" + + "Certainly, but how?" + + He laughed at my bewildered expression. + + "There is a delightful freshness about you, Watson, which makes it a + pleasure to exercise any small powers which I possess at your + expense. A gentleman goes forth on a showery and miry day. He returns + immaculate in the evening with the gloss still on his hat and his + boots. He has been a fixture therefore all day. He is not a man with + intimate friends. Where, then, could he have been? Is it not + obvious?" + + "Well, it is rather obvious." + + "The world is full of obvious things which nobody by any chance ever + observes. Where do you think that I have been?" + + "A fixture also." + + "On the contrary, I have been to Devonshire." + + "In spirit?" + + "Exactly. My body has remained in this arm-chair and has, I regret to + observe, consumed in my absence two large pots of coffee and an + incredible amount of tobacco. After you left I sent down to + Stamford's for the Ordnance map of this portion of the moor, and my + spirit has hovered over it all day. I flatter myself that I could + find my way about." + + "A large scale map, I presume?" + + "Very large." He unrolled one section and held it over his knee. + "Here you have the particular district which concerns us. That is + Baskerville Hall in the middle." + + "With a wood round it?" + + "Exactly. I fancy the Yew Alley, though not marked under that name, + must stretch along this line, with the moor, as you perceive, upon + the right of it. This small clump of buildings here is the hamlet of + Grimpen, where our friend Dr. Mortimer has his headquarters. Within a + radius of five miles there are, as you see, only a very few scattered + dwellings. Here is Lafter Hall, which was mentioned in the narrative. + There is a house indicated here which may be the residence of the + naturalist--Stapleton, if I remember right, was his name. Here are + two moorland farm-houses, High Tor and Foulmire. Then fourteen miles + away the great convict prison of Princetown. Between and around these + scattered points extends the desolate, lifeless moor. This, then, is + the stage upon which tragedy has been played, and upon which we may + help to play it again." + + "It must be a wild place." + + "Yes, the setting is a worthy one. If the devil did desire to have a + hand in the affairs of men--" + + "Then you are yourself inclining to the supernatural explanation." + + "The devil's agents may be of flesh and blood, may they not? There + are two questions waiting for us at the outset. The one is whether + any crime has been committed at all; the second is, what is the crime + and how was it committed? Of course, if Dr. Mortimer's surmise should + be correct, and we are dealing with forces outside the ordinary laws + of Nature, there is an end of our investigation. But we are bound to + exhaust all other hypotheses before falling back upon this one. I + think we'll shut that window again, if you don't mind. It is a + singular thing, but I find that a concentrated atmosphere helps a + concentration of thought. I have not pushed it to the length of + getting into a box to think, but that is the logical outcome of my + convictions. Have you turned the case over in your mind?" + + "Yes, I have thought a good deal of it in the course of the day." + + "What do you make of it?" + + "It is very bewildering." + + "It has certainly a character of its own. There are points of + distinction about it. That change in the footprints, for example. + What do you make of that?" + + "Mortimer said that the man had walked on tiptoe down that portion of + the alley." + + "He only repeated what some fool had said at the inquest. Why should + a man walk on tiptoe down the alley?" + + "What then?" + + "He was running, Watson--running desperately, running for his life, + running until he burst his heart and fell dead upon his face." + + "Running from what?" + + "There lies our problem. There are indications that the man was + crazed with fear before ever he began to run." + + "How can you say that?" + + "I am presuming that the cause of his fears came to him across the + moor. If that were so, and it seems most probable, only a man who had + lost his wits would have run from the house instead of towards it. If + the gipsy's evidence may be taken as true, he ran with cries for help + in the direction where help was least likely to be. Then, again, whom + was he waiting for that night, and why was he waiting for him in the + Yew Alley rather than in his own house?" + + "You think that he was waiting for someone?" + + "The man was elderly and infirm. We can understand his taking an + evening stroll, but the ground was damp and the night inclement. Is + it natural that he should stand for five or ten minutes, as Dr. + Mortimer, with more practical sense than I should have given him + credit for, deduced from the cigar ash?" + + "But he went out every evening." + + "I think it unlikely that he waited at the moor-gate every evening. + On the contrary, the evidence is that he avoided the moor. That night + he waited there. It was the night before he made his departure for + London. The thing takes shape, Watson. It becomes coherent. Might I + ask you to hand me my violin, and we will postpone all further + thought upon this business until we have had the advantage of meeting + Dr. Mortimer and Sir Henry Baskerville in the morning." + + + + + + CHAPTER IV + Sir Henry Baskerville + + + Our breakfast-table was cleared early, and Holmes waited in his + dressing-gown for the promised interview. Our clients were punctual + to their appointment, for the clock had just struck ten when Dr. + Mortimer was shown up, followed by the young baronet. The latter was + a small, alert, dark-eyed man about thirty years of age, very + sturdily built, with thick black eyebrows and a strong, pugnacious + face. He wore a ruddy-tinted tweed suit and had the weather-beaten + appearance of one who has spent most of his time in the open air, and + yet there was something in his steady eye and the quiet assurance of + his bearing which indicated the gentleman. + + "This is Sir Henry Baskerville," said Dr. Mortimer. + + "Why, yes," said he, "and the strange thing is, Mr. Sherlock Holmes, + that if my friend here had not proposed coming round to you this + morning I should have come on my own account. I understand that you + think out little puzzles, and I've had one this morning which wants + more thinking out than I am able to give it." + + "Pray take a seat, Sir Henry. Do I understand you to say that you + have yourself had some remarkable experience since you arrived in + London?" + + "Nothing of much importance, Mr. Holmes. Only a joke, as like as not. + It was this letter, if you can call it a letter, which reached me + this morning." + + He laid an envelope upon the table, and we all bent over it. It was + of common quality, grayish in colour. The address, "Sir Henry + Baskerville, Northumberland Hotel," was printed in rough characters; + the postmark "Charing Cross," and the date of posting the preceding + evening. + + "Who knew that you were going to the Northumberland Hotel?" asked + Holmes, glancing keenly across at our visitor. + + "No one could have known. We only decided after I met Dr. Mortimer." + + "But Dr. Mortimer was no doubt already stopping there?" + + "No, I had been staying with a friend," said the doctor. "There was + no possible indication that we intended to go to this hotel." + + "Hum! Someone seems to be very deeply interested in your movements." + Out of the envelope he took a half-sheet of foolscap paper folded + into four. This he opened and spread flat upon the table. Across the + middle of it a single sentence had been formed by the expedient of + pasting printed words upon it. It ran: + + As you value your life or your reason keep away from the moor. + + The word "moor" only was printed in ink. + + "Now," said Sir Henry Baskerville, "perhaps you will tell me, Mr. + Holmes, what in thunder is the meaning of that, and who it is that + takes so much interest in my affairs?" + + "What do you make of it, Dr. Mortimer? You must allow that there is + nothing supernatural about this, at any rate?" + + "No, sir, but it might very well come from someone who was convinced + that the business is supernatural." + + "What business?" asked Sir Henry sharply. "It seems to me that all + you gentlemen know a great deal more than I do about my own affairs." + + "You shall share our knowledge before you leave this room, Sir Henry. + I promise you that," said Sherlock Holmes. "We will confine ourselves + for the present with your permission to this very interesting + document, which must have been put together and posted yesterday + evening. Have you yesterday's Times, Watson?" + + "It is here in the corner." + + "Might I trouble you for it--the inside page, please, with the + leading articles?" He glanced swiftly over it, running his eyes up + and down the columns. "Capital article this on free trade. Permit me + to give you an extract from it. + + "'You may be cajoled into imagining that your own special trade or + your own industry will be encouraged by a protective tariff, but it + stands to reason that such legislation must in the long run keep away + wealth from the country, diminish the value of our imports, and lower + the general conditions of life in this island.' + + "What do you think of that, Watson?" cried Holmes in high glee, + rubbing his hands together with satisfaction. "Don't you think that + is an admirable sentiment?" + + Dr. Mortimer looked at Holmes with an air of professional interest, + and Sir Henry Baskerville turned a pair of puzzled dark eyes upon me. + + "I don't know much about the tariff and things of that kind," said + he; "but it seems to me we've got a bit off the trail so far as that + note is concerned." + + "On the contrary, I think we are particularly hot upon the trail, Sir + Henry. Watson here knows more about my methods than you do, but I + fear that even he has not quite grasped the significance of this + sentence." + + "No, I confess that I see no connection." + + "And yet, my dear Watson, there is so very close a connection that + the one is extracted out of the other. 'You,' 'your,' 'your,' 'life,' + 'reason,' 'value,' 'keep away,' 'from the.' Don't you see now whence + these words have been taken?" + + "By thunder, you're right! Well, if that isn't smart!" cried Sir + Henry. + + "If any possible doubt remained it is settled by the fact that 'keep + away' and 'from the' are cut out in one piece." + + "Well, now--so it is!" + + "Really, Mr. Holmes, this exceeds anything which I could have + imagined," said Dr. Mortimer, gazing at my friend in amazement. "I + could understand anyone saying that the words were from a newspaper; + but that you should name which, and add that it came from the leading + article, is really one of the most remarkable things which I have + ever known. How did you do it?" + + "I presume, Doctor, that you could tell the skull of a negro from + that of an Esquimau?" + + "Most certainly." + + "But how?" + + "Because that is my special hobby. The differences are obvious. The + supra-orbital crest, the facial angle, the maxillary curve, the--" + + "But this is my special hobby, and the differences are equally + obvious. There is as much difference to my eyes between the leaded + bourgeois type of a Times article and the slovenly print of an + evening half-penny paper as there could be between your negro and + your Esquimau. The detection of types is one of the most elementary + branches of knowledge to the special expert in crime, though I + confess that once when I was very young I confused the Leeds Mercury + with the Western Morning News. But a Times leader is entirely + distinctive, and these words could have been taken from nothing else. + As it was done yesterday the strong probability was that we should + find the words in yesterday's issue." + + "So far as I can follow you, then, Mr. Holmes," said Sir Henry + Baskerville, "someone cut out this message with a scissors--" + + "Nail-scissors," said Holmes. "You can see that it was a very + short-bladed scissors, since the cutter had to take two snips over + 'keep away.'" + + "That is so. Someone, then, cut out the message with a pair of + short-bladed scissors, pasted it with paste--" + + "Gum," said Holmes. + + "With gum on to the paper. But I want to know why the word 'moor' + should have been written?" + + "Because he could not find it in print. The other words were all + simple and might be found in any issue, but 'moor' would be less + common." + + "Why, of course, that would explain it. Have you read anything else + in this message, Mr. Holmes?" + + "There are one or two indications, and yet the utmost pains have been + taken to remove all clues. The address, you observe is printed in + rough characters. But the Times is a paper which is seldom found in + any hands but those of the highly educated. We may take it, + therefore, that the letter was composed by an educated man who wished + to pose as an uneducated one, and his effort to conceal his own + writing suggests that that writing might be known, or come to be + known, by you. Again, you will observe that the words are not gummed + on in an accurate line, but that some are much higher than others. + 'Life,' for example is quite out of its proper place. That may point + to carelessness or it may point to agitation and hurry upon the part + of the cutter. On the whole I incline to the latter view, since the + matter was evidently important, and it is unlikely that the composer + of such a letter would be careless. If he were in a hurry it opens up + the interesting question why he should be in a hurry, since any + letter posted up to early morning would reach Sir Henry before he + would leave his hotel. Did the composer fear an interruption--and + from whom?" + + "We are coming now rather into the region of guesswork," said Dr. + Mortimer. + + "Say, rather, into the region where we balance probabilities and + choose the most likely. It is the scientific use of the imagination, + but we have always some material basis on which to start our + speculation. Now, you would call it a guess, no doubt, but I am + almost certain that this address has been written in a hotel." + + "How in the world can you say that?" + + "If you examine it carefully you will see that both the pen and the + ink have given the writer trouble. The pen has spluttered twice in a + single word, and has run dry three times in a short address, showing + that there was very little ink in the bottle. Now, a private pen or + ink-bottle is seldom allowed to be in such a state, and the + combination of the two must be quite rare. But you know the hotel ink + and the hotel pen, where it is rare to get anything else. Yes, I have + very little hesitation in saying that could we examine the + waste-paper baskets of the hotels around Charing Cross until we found + the remains of the mutilated Times leader we could lay our hands + straight upon the person who sent this singular message. Halloa! + Halloa! What's this?" + + He was carefully examining the foolscap, upon which the words were + pasted, holding it only an inch or two from his eyes. + + "Well?" + + "Nothing," said he, throwing it down. "It is a blank half-sheet of + paper, without even a water-mark upon it. I think we have drawn as + much as we can from this curious letter; and now, Sir Henry, has + anything else of interest happened to you since you have been in + London?" + + "Why, no, Mr. Holmes. I think not." + + "You have not observed anyone follow or watch you?" + + "I seem to have walked right into the thick of a dime novel," said + our visitor. "Why in thunder should anyone follow or watch me?" + + "We are coming to that. You have nothing else to report to us before + we go into this matter?" + + "Well, it depends upon what you think worth reporting." + + "I think anything out of the ordinary routine of life well worth + reporting." + + Sir Henry smiled. + + "I don't know much of British life yet, for I have spent nearly all + my time in the States and in Canada. But I hope that to lose one of + your boots is not part of the ordinary routine of life over here." + + "You have lost one of your boots?" + + "My dear sir," cried Dr. Mortimer, "it is only mislaid. You will find + it when you return to the hotel. What is the use of troubling Mr. + Holmes with trifles of this kind?" + + "Well, he asked me for anything outside the ordinary routine." + + "Exactly," said Holmes, "however foolish the incident may seem. You + have lost one of your boots, you say?" + + "Well, mislaid it, anyhow. I put them both outside my door last + night, and there was only one in the morning. I could get no sense + out of the chap who cleans them. The worst of it is that I only + bought the pair last night in the Strand, and I have never had them + on." + + "If you have never worn them, why did you put them out to be + cleaned?" + + "They were tan boots and had never been varnished. That was why I put + them out." + + "Then I understand that on your arrival in London yesterday you went + out at once and bought a pair of boots?" + + "I did a good deal of shopping. Dr. Mortimer here went round with me. + You see, if I am to be squire down there I must dress the part, and + it may be that I have got a little careless in my ways out West. + Among other things I bought these brown boots--gave six dollars for + them--and had one stolen before ever I had them on my feet." + + "It seems a singularly useless thing to steal," said Sherlock Holmes. + "I confess that I share Dr. Mortimer's belief that it will not be + long before the missing boot is found." + + "And, now, gentlemen," said the baronet with decision, "it seems to + me that I have spoken quite enough about the little that I know. It + is time that you kept your promise and gave me a full account of what + we are all driving at." + + "Your request is a very reasonable one," Holmes answered. "Dr. + Mortimer, I think you could not do better than to tell your story as + you told it to us." + + Thus encouraged, our scientific friend drew his papers from his + pocket, and presented the whole case as he had done upon the morning + before. Sir Henry Baskerville listened with the deepest attention, + and with an occasional exclamation of surprise. + + "Well, I seem to have come into an inheritance with a vengeance," + said he when the long narrative was finished. "Of course, I've heard + of the hound ever since I was in the nursery. It's the pet story of + the family, though I never thought of taking it seriously before. But + as to my uncle's death--well, it all seems boiling up in my head, and + I can't get it clear yet. You don't seem quite to have made up your + mind whether it's a case for a policeman or a clergyman." + + "Precisely." + + "And now there's this affair of the letter to me at the hotel. I + suppose that fits into its place." + + "It seems to show that someone knows more than we do about what goes + on upon the moor," said Dr. Mortimer. + + "And also," said Holmes, "that someone is not ill-disposed towards + you, since they warn you of danger." + + "Or it may be that they wish, for their own purposes, to scare me + away." + + "Well, of course, that is possible also. I am very much indebted to + you, Dr. Mortimer, for introducing me to a problem which presents + several interesting alternatives. But the practical point which we + now have to decide, Sir Henry, is whether it is or is not advisable + for you to go to Baskerville Hall." + + "Why should I not go?" + + "There seems to be danger." + + "Do you mean danger from this family fiend or do you mean danger from + human beings?" + + "Well, that is what we have to find out." + + "Whichever it is, my answer is fixed. There is no devil in hell, Mr. + Holmes, and there is no man upon earth who can prevent me from going + to the home of my own people, and you may take that to be my final + answer." His dark brows knitted and his face flushed to a dusky red + as he spoke. It was evident that the fiery temper of the Baskervilles + was not extinct in this their last representative. "Meanwhile," said + he, "I have hardly had time to think over all that you have told me. + It's a big thing for a man to have to understand and to decide at one + sitting. I should like to have a quiet hour by myself to make up my + mind. Now, look here, Mr. Holmes, it's half-past eleven now and I am + going back right away to my hotel. Suppose you and your friend, Dr. + Watson, come round and lunch with us at two. I'll be able to tell you + more clearly then how this thing strikes me." + + "Is that convenient to you, Watson?" + + "Perfectly." + + "Then you may expect us. Shall I have a cab called?" + + "I'd prefer to walk, for this affair has flurried me rather." + + "I'll join you in a walk, with pleasure," said his companion. + + "Then we meet again at two o'clock. Au revoir, and good-morning!" + + We heard the steps of our visitors descend the stair and the bang of + the front door. In an instant Holmes had changed from the languid + dreamer to the man of action. + + "Your hat and boots, Watson, quick! Not a moment to lose!" He rushed + into his room in his dressing-gown and was back again in a few + seconds in a frock-coat. We hurried together down the stairs and into + the street. Dr. Mortimer and Baskerville were still visible about two + hundred yards ahead of us in the direction of Oxford Street. + + "Shall I run on and stop them?" + + "Not for the world, my dear Watson. I am perfectly satisfied with + your company if you will tolerate mine. Our friends are wise, for it + is certainly a very fine morning for a walk." + + He quickened his pace until we had decreased the distance which + divided us by about half. Then, still keeping a hundred yards behind, + we followed into Oxford Street and so down Regent Street. Once our + friends stopped and stared into a shop window, upon which Holmes did + the same. An instant afterwards he gave a little cry of satisfaction, + and, following the direction of his eager eyes, I saw that a hansom + cab with a man inside which had halted on the other side of the + street was now proceeding slowly onward again. + + "There's our man, Watson! Come along! We'll have a good look at him, + if we can do no more." + + At that instant I was aware of a bushy black beard and a pair of + piercing eyes turned upon us through the side window of the cab. + Instantly the trapdoor at the top flew up, something was screamed to + the driver, and the cab flew madly off down Regent Street. Holmes + looked eagerly round for another, but no empty one was in sight. Then + he dashed in wild pursuit amid the stream of the traffic, but the + start was too great, and already the cab was out of sight. + + "There now!" said Holmes bitterly as he emerged panting and white + with vexation from the tide of vehicles. "Was ever such bad luck and + such bad management, too? Watson, Watson, if you are an honest man + you will record this also and set it against my successes!" + + "Who was the man?" + + "I have not an idea." + + "A spy?" + + "Well, it was evident from what we have heard that Baskerville has + been very closely shadowed by someone since he has been in town. How + else could it be known so quickly that it was the Northumberland + Hotel which he had chosen? If they had followed him the first day I + argued that they would follow him also the second. You may have + observed that I twice strolled over to the window while Dr. Mortimer + was reading his legend." + + "Yes, I remember." + + "I was looking out for loiterers in the street, but I saw none. We + are dealing with a clever man, Watson. This matter cuts very deep, + and though I have not finally made up my mind whether it is a + benevolent or a malevolent agency which is in touch with us, I am + conscious always of power and design. When our friends left I at once + followed them in the hopes of marking down their invisible attendant. + So wily was he that he had not trusted himself upon foot, but he had + availed himself of a cab so that he could loiter behind or dash past + them and so escape their notice. His method had the additional + advantage that if they were to take a cab he was all ready to follow + them. It has, however, one obvious disadvantage." + + "It puts him in the power of the cabman." + + "Exactly." + + "What a pity we did not get the number!" + + "My dear Watson, clumsy as I have been, you surely do not seriously + imagine that I neglected to get the number? No. 2704 is our man. But + that is no use to us for the moment." + + "I fail to see how you could have done more." + + "On observing the cab I should have instantly turned and walked in + the other direction. I should then at my leisure have hired a second + cab and followed the first at a respectful distance, or, better + still, have driven to the Northumberland Hotel and waited there. When + our unknown had followed Baskerville home we should have had the + opportunity of playing his own game upon himself and seeing where he + made for. As it is, by an indiscreet eagerness, which was taken + advantage of with extraordinary quickness and energy by our opponent, + we have betrayed ourselves and lost our man." + + We had been sauntering slowly down Regent Street during this + conversation, and Dr. Mortimer, with his companion, had long vanished + in front of us. + + "There is no object in our following them," said Holmes. "The shadow + has departed and will not return. We must see what further cards we + have in our hands and play them with decision. Could you swear to + that man's face within the cab?" + + "I could swear only to the beard." + + "And so could I--from which I gather that in all probability it was a + false one. A clever man upon so delicate an errand has no use for a + beard save to conceal his features. Come in here, Watson!" + + He turned into one of the district messenger offices, where he was + warmly greeted by the manager. + + "Ah, Wilson, I see you have not forgotten the little case in which I + had the good fortune to help you?" + + "No, sir, indeed I have not. You saved my good name, and perhaps my + life." + + "My dear fellow, you exaggerate. I have some recollection, Wilson, + that you had among your boys a lad named Cartwright, who showed some + ability during the investigation." + + "Yes, sir, he is still with us." + + "Could you ring him up?--thank you! And I should be glad to have + change of this five-pound note." + + A lad of fourteen, with a bright, keen face, had obeyed the summons + of the manager. He stood now gazing with great reverence at the + famous detective. + + "Let me have the Hotel Directory," said Holmes. "Thank you! Now, + Cartwright, there are the names of twenty-three hotels here, all in + the immediate neighbourhood of Charing Cross. Do you see?" + + "Yes, sir." + + "You will visit each of these in turn." + + "Yes, sir." + + "You will begin in each case by giving the outside porter one + shilling. Here are twenty-three shillings." + + "Yes, sir." + + "You will tell him that you want to see the waste-paper of yesterday. + You will say that an important telegram has miscarried and that you + are looking for it. You understand?" + + "Yes, sir." + + "But what you are really looking for is the centre page of the Times + with some holes cut in it with scissors. Here is a copy of the Times. + It is this page. You could easily recognize it, could you not?" + + "Yes, sir." + + "In each case the outside porter will send for the hall porter, to + whom also you will give a shilling. Here are twenty-three shillings. + You will then learn in possibly twenty cases out of the twenty-three + that the waste of the day before has been burned or removed. In the + three other cases you will be shown a heap of paper and you will look + for this page of the Times among it. The odds are enormously against + your finding it. There are ten shillings over in case of emergencies. + Let me have a report by wire at Baker Street before evening. And now, + Watson, it only remains for us to find out by wire the identity of + the cabman, No. 2704, and then we will drop into one of the Bond + Street picture galleries and fill in the time until we are due at the + hotel." + + + + + + CHAPTER V + Three Broken Threads + + + Sherlock Holmes had, in a very remarkable degree, the power of + detaching his mind at will. For two hours the strange business in + which we had been involved appeared to be forgotten, and he was + entirely absorbed in the pictures of the modern Belgian masters. He + would talk of nothing but art, of which he had the crudest ideas, + from our leaving the gallery until we found ourselves at the + Northumberland Hotel. + + "Sir Henry Baskerville is upstairs expecting you," said the clerk. + "He asked me to show you up at once when you came." + + "Have you any objection to my looking at your register?" said Holmes. + + "Not in the least." + + The book showed that two names had been added after that of + Baskerville. One was Theophilus Johnson and family, of Newcastle; the + other Mrs. Oldmore and maid, of High Lodge, Alton. + + "Surely that must be the same Johnson whom I used to know," said + Holmes to the porter. "A lawyer, is he not, gray-headed, and walks + with a limp?" + + "No, sir; this is Mr. Johnson, the coal-owner, a very active + gentleman, not older than yourself." + + "Surely you are mistaken about his trade?" + + "No, sir! he has used this hotel for many years, and he is very well + known to us." + + "Ah, that settles it. Mrs. Oldmore, too; I seem to remember the name. + Excuse my curiosity, but often in calling upon one friend one finds + another." + + "She is an invalid lady, sir. Her husband was once mayor of + Gloucester. She always comes to us when she is in town." + + "Thank you; I am afraid I cannot claim her acquaintance. We have + established a most important fact by these questions, Watson," he + continued in a low voice as we went upstairs together. "We know now + that the people who are so interested in our friend have not settled + down in his own hotel. That means that while they are, as we have + seen, very anxious to watch him, they are equally anxious that he + should not see them. Now, this is a most suggestive fact." + + "What does it suggest?" + + "It suggests--halloa, my dear fellow, what on earth is the matter?" + + As we came round the top of the stairs we had run up against Sir + Henry Baskerville himself. His face was flushed with anger, and he + held an old and dusty boot in one of his hands. So furious was he + that he was hardly articulate, and when he did speak it was in a much + broader and more Western dialect than any which we had heard from him + in the morning. + + "Seems to me they are playing me for a sucker in this hotel," he + cried. "They'll find they've started in to monkey with the wrong man + unless they are careful. By thunder, if that chap can't find my + missing boot there will be trouble. I can take a joke with the best, + Mr. Holmes, but they've got a bit over the mark this time." + + "Still looking for your boot?" + + "Yes, sir, and mean to find it." + + "But, surely, you said that it was a new brown boot?" + + "So it was, sir. And now it's an old black one." + + "What! you don't mean to say--?" + + "That's just what I do mean to say. I only had three pairs in the + world--the new brown, the old black, and the patent leathers, which I + am wearing. Last night they took one of my brown ones, and to-day + they have sneaked one of the black. Well, have you got it? Speak out, + man, and don't stand staring!" + + An agitated German waiter had appeared upon the scene. + + "No, sir; I have made inquiry all over the hotel, but I can hear no + word of it." + + "Well, either that boot comes back before sundown or I'll see the + manager and tell him that I go right straight out of this hotel." + + "It shall be found, sir--I promise you that if you will have a little + patience it will be found." + + "Mind it is, for it's the last thing of mine that I'll lose in this + den of thieves. Well, well, Mr. Holmes, you'll excuse my troubling + you about such a trifle--" + + "I think it's well worth troubling about." + + "Why, you look very serious over it." + + "How do you explain it?" + + "I just don't attempt to explain it. It seems the very maddest, + queerest thing that ever happened to me." + + "The queerest perhaps--" said Holmes, thoughtfully. + + "What do you make of it yourself?" + + "Well, I don't profess to understand it yet. This case of yours is + very complex, Sir Henry. When taken in conjunction with your uncle's + death I am not sure that of all the five hundred cases of capital + importance which I have handled there is one which cuts so deep. But + we hold several threads in our hands, and the odds are that one or + other of them guides us to the truth. We may waste time in following + the wrong one, but sooner or later we must come upon the right." + + We had a pleasant luncheon in which little was said of the business + which had brought us together. It was in the private sitting-room to + which we afterwards repaired that Holmes asked Baskerville what were + his intentions. + + "To go to Baskerville Hall." + + "And when?" + + "At the end of the week." + + "On the whole," said Holmes, "I think that your decision is a wise + one. I have ample evidence that you are being dogged in London, and + amid the millions of this great city it is difficult to discover who + these people are or what their object can be. If their intentions are + evil they might do you a mischief, and we should be powerless to + prevent it. You did not know, Dr. Mortimer, that you were followed + this morning from my house?" + + Dr. Mortimer started violently. + + "Followed! By whom?" + + "That, unfortunately, is what I cannot tell you. Have you among your + neighbours or acquaintances on Dartmoor any man with a black, full + beard?" + + "No--or, let me see--why, yes. Barrymore, Sir Charles's butler, is a + man with a full, black beard." + + "Ha! Where is Barrymore?" + + "He is in charge of the Hall." + + "We had best ascertain if he is really there, or if by any + possibility he might be in London." + + "How can you do that?" + + "Give me a telegraph form. 'Is all ready for Sir Henry?' That will + do. Address to Mr. Barrymore, Baskerville Hall. What is the nearest + telegraph-office? Grimpen. Very good, we will send a second wire to + the postmaster, Grimpen: 'Telegram to Mr. Barrymore to be delivered + into his own hand. If absent, please return wire to Sir Henry + Baskerville, Northumberland Hotel.' That should let us know before + evening whether Barrymore is at his post in Devonshire or not." + + "That's so," said Baskerville. "By the way, Dr. Mortimer, who is this + Barrymore, anyhow?" + + "He is the son of the old caretaker, who is dead. They have looked + after the Hall for four generations now. So far as I know, he and his + wife are as respectable a couple as any in the county." + + "At the same time," said Baskerville, "it's clear enough that so long + as there are none of the family at the Hall these people have a + mighty fine home and nothing to do." + + "That is true." + + "Did Barrymore profit at all by Sir Charles's will?" asked Holmes. + + "He and his wife had five hundred pounds each." + + "Ha! Did they know that they would receive this?" + + "Yes; Sir Charles was very fond of talking about the provisions of + his will." + + "That is very interesting." + + "I hope," said Dr. Mortimer, "that you do not look with suspicious + eyes upon everyone who received a legacy from Sir Charles, for I also + had a thousand pounds left to me." + + "Indeed! And anyone else?" + + "There were many insignificant sums to individuals, and a large + number of public charities. The residue all went to Sir Henry." + + "And how much was the residue?" + + "Seven hundred and forty thousand pounds." + + Holmes raised his eyebrows in surprise. "I had no idea that so + gigantic a sum was involved," said he. + + "Sir Charles had the reputation of being rich, but we did not know + how very rich he was until we came to examine his securities. The + total value of the estate was close on to a million." + + "Dear me! It is a stake for which a man might well play a desperate + game. And one more question, Dr. Mortimer. Supposing that anything + happened to our young friend here--you will forgive the unpleasant + hypothesis!--who would inherit the estate?" + + "Since Rodger Baskerville, Sir Charles's younger brother died + unmarried, the estate would descend to the Desmonds, who are distant + cousins. James Desmond is an elderly clergyman in Westmoreland." + + "Thank you. These details are all of great interest. Have you met Mr. + James Desmond?" + + "Yes; he once came down to visit Sir Charles. He is a man of + venerable appearance and of saintly life. I remember that he refused + to accept any settlement from Sir Charles, though he pressed it upon + him." + + "And this man of simple tastes would be the heir to Sir Charles's + thousands." + + "He would be the heir to the estate because that is entailed. He + would also be the heir to the money unless it were willed otherwise + by the present owner, who can, of course, do what he likes with it." + + "And have you made your will, Sir Henry?" + + "No, Mr. Holmes, I have not. I've had no time, for it was only + yesterday that I learned how matters stood. But in any case I feel + that the money should go with the title and estate. That was my poor + uncle's idea. How is the owner going to restore the glories of the + Baskervilles if he has not money enough to keep up the property? + House, land, and dollars must go together." + + "Quite so. Well, Sir Henry, I am of one mind with you as to the + advisability of your going down to Devonshire without delay. There is + only one provision which I must make. You certainly must not go + alone." + + "Dr. Mortimer returns with me." + + "But Dr. Mortimer has his practice to attend to, and his house is + miles away from yours. With all the good will in the world he may be + unable to help you. No, Sir Henry, you must take with you someone, a + trusty man, who will be always by your side." + + "Is it possible that you could come yourself, Mr. Holmes?" + + "If matters came to a crisis I should endeavour to be present in + person; but you can understand that, with my extensive consulting + practice and with the constant appeals which reach me from many + quarters, it is impossible for me to be absent from London for an + indefinite time. At the present instant one of the most revered names + in England is being besmirched by a blackmailer, and only I can stop + a disastrous scandal. You will see how impossible it is for me to go + to Dartmoor." + + "Whom would you recommend, then?" + + Holmes laid his hand upon my arm. + + "If my friend would undertake it there is no man who is better worth + having at your side when you are in a tight place. No one can say so + more confidently than I." + + The proposition took me completely by surprise, but before I had time + to answer, Baskerville seized me by the hand and wrung it heartily. + + "Well, now, that is real kind of you, Dr. Watson," said he. "You see + how it is with me, and you know just as much about the matter as I + do. If you will come down to Baskerville Hall and see me through I'll + never forget it." + + The promise of adventure had always a fascination for me, and I was + complimented by the words of Holmes and by the eagerness with which + the baronet hailed me as a companion. + + "I will come, with pleasure," said I. "I do not know how I could + employ my time better." + + "And you will report very carefully to me," said Holmes. "When a + crisis comes, as it will do, I will direct how you shall act. I + suppose that by Saturday all might be ready?" + + "Would that suit Dr. Watson?" + + "Perfectly." + + "Then on Saturday, unless you hear to the contrary, we shall meet at + the 10.30 train from Paddington." + + We had risen to depart when Baskerville gave a cry, of triumph, and + diving into one of the corners of the room he drew a brown boot from + under a cabinet. + + "My missing boot!" he cried. + + "May all our difficulties vanish as easily!" said Sherlock Holmes. + + "But it is a very singular thing," Dr. Mortimer remarked. "I searched + this room carefully before lunch." + + "And so did I," said Baskerville. "Every inch of it." + + "There was certainly no boot in it then." + + "In that case the waiter must have placed it there while we were + lunching." + + The German was sent for but professed to know nothing of the matter, + nor could any inquiry clear it up. Another item had been added to + that constant and apparently purposeless series of small mysteries + which had succeeded each other so rapidly. Setting aside the whole + grim story of Sir Charles's death, we had a line of inexplicable + incidents all within the limits of two days, which included the + receipt of the printed letter, the black-bearded spy in the hansom, + the loss of the new brown boot, the loss of the old black boot, and + now the return of the new brown boot. Holmes sat in silence in the + cab as we drove back to Baker Street, and I knew from his drawn brows + and keen face that his mind, like my own, was busy in endeavouring to + frame some scheme into which all these strange and apparently + disconnected episodes could be fitted. All afternoon and late into + the evening he sat lost in tobacco and thought. + + Just before dinner two telegrams were handed in. The first ran: + + Have just heard that Barrymore is at the Hall. + Baskerville. + + The second: + + Visited twenty-three hotels as directed, but sorry to report unable + to trace cut sheet of Times. + Cartwright. + + "There go two of my threads, Watson. There is nothing more + stimulating than a case where everything goes against you. We must + cast round for another scent." + + "We have still the cabman who drove the spy." + + "Exactly. I have wired to get his name and address from the Official + Registry. I should not be surprised if this were an answer to my + question." + + The ring at the bell proved to be something even more satisfactory + than an answer, however, for the door opened and a rough-looking + fellow entered who was evidently the man himself. + + "I got a message from the head office that a gent at this address had + been inquiring for 2704," said he. "I've driven my cab this seven + years and never a word of complaint. I came here straight from the + Yard to ask you to your face what you had against me." + + "I have nothing in the world against you, my good man," said Holmes. + "On the contrary, I have half a sovereign for you if you will give me + a clear answer to my questions." + + "Well, I've had a good day and no mistake," said the cabman, with a + grin. "What was it you wanted to ask, sir?" + + "First of all your name and address, in case I want you again." + + "John Clayton, 3 Turpey Street, the Borough. My cab is out of + Shipley's Yard, near Waterloo Station." + + Sherlock Holmes made a note of it. + + "Now, Clayton, tell me all about the fare who came and watched this + house at ten o'clock this morning and afterwards followed the two + gentlemen down Regent Street." + + The man looked surprised and a little embarrassed. "Why, there's no + good my telling you things, for you seem to know as much as I do + already," said he. "The truth is that the gentleman told me that he + was a detective and that I was to say nothing about him to anyone." + + "My good fellow, this is a very serious business, and you may find + yourself in a pretty bad position if you try to hide anything from + me. You say that your fare told you that he was a detective?" + + "Yes, he did." + + "When did he say this?" + + "When he left me." + + "Did he say anything more?" + + "He mentioned his name." + + Holmes cast a swift glance of triumph at me. "Oh, he mentioned his + name, did he? That was imprudent. What was the name that he + mentioned?" + + "His name," said the cabman, "was Mr. Sherlock Holmes." + + Never have I seen my friend more completely taken aback than by the + cabman's reply. For an instant he sat in silent amazement. Then he + burst into a hearty laugh. + + "A touch, Watson--an undeniable touch!" said he. "I feel a foil as + quick and supple as my own. He got home upon me very prettily that + time. So his name was Sherlock Holmes, was it?" + + "Yes, sir, that was the gentleman's name." + + "Excellent! Tell me where you picked him up and all that occurred." + + "He hailed me at half-past nine in Trafalgar Square. He said that he + was a detective, and he offered me two guineas if I would do exactly + what he wanted all day and ask no questions. I was glad enough to + agree. First we drove down to the Northumberland Hotel and waited + there until two gentlemen came out and took a cab from the rank. We + followed their cab until it pulled up somewhere near here." + + "This very door," said Holmes. + + "Well, I couldn't be sure of that, but I dare say my fare knew all + about it. We pulled up half-way down the street and waited an hour + and a half. Then the two gentlemen passed us, walking, and we + followed down Baker Street and along--" + + "I know," said Holmes. + + "Until we got three-quarters down Regent Street. Then my gentleman + threw up the trap, and he cried that I should drive right away to + Waterloo Station as hard as I could go. I whipped up the mare and we + were there under the ten minutes. Then he paid up his two guineas, + like a good one, and away he went into the station. Only just as he + was leaving he turned round and he said: 'It might interest you to + know that you have been driving Mr. Sherlock Holmes.' That's how I + come to know the name." + + "I see. And you saw no more of him?" + + "Not after he went into the station." + + "And how would you describe Mr. Sherlock Holmes?" + + The cabman scratched his head. "Well, he wasn't altogether such an + easy gentleman to describe. I'd put him at forty years of age, and he + was of a middle height, two or three inches shorter than you, sir. He + was dressed like a toff, and he had a black beard, cut square at the + end, and a pale face. I don't know as I could say more than that." + + "Colour of his eyes?" + + "No, I can't say that." + + "Nothing more that you can remember?" + + "No, sir; nothing." + + "Well, then, here is your half-sovereign. There's another one waiting + for you if you can bring any more information. Good night!" + + "Good night, sir, and thank you!" + + John Clayton departed chuckling, and Holmes turned to me with a shrug + of his shoulders and a rueful smile. + + "Snap goes our third thread, and we end where we began," said he. + "The cunning rascal! He knew our number, knew that Sir Henry + Baskerville had consulted me, spotted who I was in Regent Street, + conjectured that I had got the number of the cab and would lay my + hands on the driver, and so sent back this audacious message. I tell + you, Watson, this time we have got a foeman who is worthy of our + steel. I've been checkmated in London. I can only wish you better + luck in Devonshire. But I'm not easy in my mind about it." + + "About what?" + + "About sending you. It's an ugly business, Watson, an ugly dangerous + business, and the more I see of it the less I like it. Yes, my dear + fellow, you may laugh, but I give you my word that I shall be very + glad to have you back safe and sound in Baker Street once more." + + + + + + CHAPTER VI + Baskerville Hall + + + Sir Henry Baskerville and Dr. Mortimer were ready upon the appointed + day, and we started as arranged for Devonshire. Mr. Sherlock Holmes + drove with me to the station and gave me his last parting injunctions + and advice. + + "I will not bias your mind by suggesting theories or suspicions, + Watson," said he; "I wish you simply to report facts in the fullest + possible manner to me, and you can leave me to do the theorizing." + + "What sort of facts?" I asked. + + "Anything which may seem to have a bearing however indirect upon the + case, and especially the relations between young Baskerville and his + neighbours or any fresh particulars concerning the death of Sir + Charles. I have made some inquiries myself in the last few days, but + the results have, I fear, been negative. One thing only appears to be + certain, and that is that Mr. James Desmond, who is the next heir, is + an elderly gentleman of a very amiable disposition, so that this + persecution does not arise from him. I really think that we may + eliminate him entirely from our calculations. There remain the people + who will actually surround Sir Henry Baskerville upon the moor." + + "Would it not be well in the first place to get rid of this Barrymore + couple?" + + "By no means. You could not make a greater mistake. If they are + innocent it would be a cruel injustice, and if they are guilty we + should be giving up all chance of bringing it home to them. No, no, + we will preserve them upon our list of suspects. Then there is a + groom at the Hall, if I remember right. There are two moorland + farmers. There is our friend Dr. Mortimer, whom I believe to be + entirely honest, and there is his wife, of whom we know nothing. + There is this naturalist, Stapleton, and there is his sister, who is + said to be a young lady of attractions. There is Mr. Frankland, of + Lafter Hall, who is also an unknown factor, and there are one or two + other neighbours. These are the folk who must be your very special + study." + + "I will do my best." + + "You have arms, I suppose?" + + "Yes, I thought it as well to take them." + + "Most certainly. Keep your revolver near you night and day, and never + relax your precautions." + + Our friends had already secured a first-class carriage and were + waiting for us upon the platform. + + "No, we have no news of any kind," said Dr. Mortimer in answer to my + friend's questions. "I can swear to one thing, and that is that we + have not been shadowed during the last two days. We have never gone + out without keeping a sharp watch, and no one could have escaped our + notice." + + "You have always kept together, I presume?" + + "Except yesterday afternoon. I usually give up one day to pure + amusement when I come to town, so I spent it at the Museum of the + College of Surgeons." + + "And I went to look at the folk in the park," said Baskerville. "But + we had no trouble of any kind." + + "It was imprudent, all the same," said Holmes, shaking his head and + looking very grave. "I beg, Sir Henry, that you will not go about + alone. Some great misfortune will befall you if you do. Did you get + your other boot?" + + "No, sir, it is gone forever." + + "Indeed. That is very interesting. Well, good-bye," he added as the + train began to glide down the platform. "Bear in mind, Sir Henry, one + of the phrases in that queer old legend which Dr. Mortimer has read + to us, and avoid the moor in those hours of darkness when the powers + of evil are exalted." + + I looked back at the platform when we had left it far behind, and saw + the tall, austere figure of Holmes standing motionless and gazing + after us. + + The journey was a swift and pleasant one, and I spent it in making + the more intimate acquaintance of my two companions and in playing + with Dr. Mortimer's spaniel. In a very few hours the brown earth had + become ruddy, the brick had changed to granite, and red cows grazed + in well-hedged fields where the lush grasses and more luxuriant + vegetation spoke of a richer, if a damper, climate. Young Baskerville + stared eagerly out of the window, and cried aloud with delight as he + recognized the familiar features of the Devon scenery. + + "I've been over a good part of the world since I left it, Dr. + Watson," said he; "but I have never seen a place to compare with it." + + "I never saw a Devonshire man who did not swear by his county," I + remarked. + + "It depends upon the breed of men quite as much as on the county," + said Dr. Mortimer. "A glance at our friend here reveals the rounded + head of the Celt, which carries inside it the Celtic enthusiasm and + power of attachment. Poor Sir Charles's head was of a very rare type, + half Gaelic, half Ivernian in its characteristics. But you were very + young when you last saw Baskerville Hall, were you not?" + + "I was a boy in my 'teens at the time of my father's death, and had + never seen the Hall, for he lived in a little cottage on the South + Coast. Thence I went straight to a friend in America. I tell you it + is all as new to me as it is to Dr. Watson, and I'm as keen as + possible to see the moor." + + "Are you? Then your wish is easily granted, for there is your first + sight of the moor," said Dr. Mortimer, pointing out of the carriage + window. + + Over the green squares of the fields and the low curve of a wood + there rose in the distance a gray, melancholy hill, with a strange + jagged summit, dim and vague in the distance, like some fantastic + landscape in a dream. Baskerville sat for a long time, his eyes fixed + upon it, and I read upon his eager face how much it meant to him, + this first sight of that strange spot where the men of his blood had + held sway so long and left their mark so deep. There he sat, with his + tweed suit and his American accent, in the corner of a prosaic + railway-carriage, and yet as I looked at his dark and expressive face + I felt more than ever how true a descendant he was of that long line + of high-blooded, fiery, and masterful men. There were pride, valour, + and strength in his thick brows, his sensitive nostrils, and his + large hazel eyes. If on that forbidding moor a difficult and + dangerous quest should lie before us, this was at least a comrade for + whom one might venture to take a risk with the certainty that he + would bravely share it. + + The train pulled up at a small wayside station and we all descended. + Outside, beyond the low, white fence, a wagonette with a pair of cobs + was waiting. Our coming was evidently a great event, for + station-master and porters clustered round us to carry out our + luggage. It was a sweet, simple country spot, but I was surprised to + observe that by the gate there stood two soldierly men in dark + uniforms, who leaned upon their short rifles and glanced keenly at us + as we passed. The coachman, a hard-faced, gnarled little fellow, + saluted Sir Henry Baskerville, and in a few minutes we were flying + swiftly down the broad, white road. Rolling pasture lands curved + upward on either side of us, and old gabled houses peeped out from + amid the thick green foliage, but behind the peaceful and sunlit + country-side there rose ever, dark against the evening sky, the long, + gloomy curve of the moor, broken by the jagged and sinister hills. + + The wagonette swung round into a side road, and we curved upward + through deep lanes worn by centuries of wheels, high banks on either + side, heavy with dripping moss and fleshy hart's-tongue ferns. + Bronzing bracken and mottled bramble gleamed in the light of the + sinking sun. Still steadily rising, we passed over a narrow granite + bridge, and skirted a noisy stream which gushed swiftly down, foaming + and roaring amid the gray boulders. Both road and stream wound up + through a valley dense with scrub oak and fir. At every turn + Baskerville gave an exclamation of delight, looking eagerly about him + and asking countless questions. To his eyes all seemed beautiful, but + to me a tinge of melancholy lay upon the country-side, which bore so + clearly the mark of the waning year. Yellow leaves carpeted the lanes + and fluttered down upon us as we passed. The rattle of our wheels + died away as we drove through drifts of rotting vegetation--sad + gifts, as it seemed to me, for Nature to throw before the carriage of + the returning heir of the Baskervilles. + + "Halloa!" cried Dr. Mortimer, "what is this?" + + A steep curve of heath-clad land, an outlying spur of the moor, lay + in front of us. On the summit, hard and clear like an equestrian + statue upon its pedestal, was a mounted soldier, dark and stern, his + rifle poised ready over his forearm. He was watching the road along + which we travelled. + + "What is this, Perkins?" asked Dr. Mortimer. + + Our driver half turned in his seat. + + "There's a convict escaped from Princetown, sir. He's been out three + days now, and the warders watch every road and every station, but + they've had no sight of him yet. The farmers about here don't like + it, sir, and that's a fact." + + "Well, I understand that they get five pounds if they can give + information." + + "Yes, sir, but the chance of five pounds is but a poor thing compared + to the chance of having your throat cut. You see, it isn't like any + ordinary convict. This is a man that would stick at nothing." + + "Who is he, then?" + + "It is Selden, the Notting Hill murderer." + + I remembered the case well, for it was one in which Holmes had taken + an interest on account of the peculiar ferocity of the crime and the + wanton brutality which had marked all the actions of the assassin. + The commutation of his death sentence had been due to some doubts as + to his complete sanity, so atrocious was his conduct. Our wagonette + had topped a rise and in front of us rose the huge expanse of the + moor, mottled with gnarled and craggy cairns and tors. A cold wind + swept down from it and set us shivering. Somewhere there, on that + desolate plain, was lurking this fiendish man, hiding in a burrow + like a wild beast, his heart full of malignancy against the whole + race which had cast him out. It needed but this to complete the grim + suggestiveness of the barren waste, the chilling wind, and the + darkling sky. Even Baskerville fell silent and pulled his overcoat + more closely around him. + + We had left the fertile country behind and beneath us. We looked back + on it now, the slanting rays of a low sun turning the streams to + threads of gold and glowing on the red earth new turned by the plough + and the broad tangle of the woodlands. The road in front of us grew + bleaker and wilder over huge russet and olive slopes, sprinkled with + giant boulders. Now and then we passed a moorland cottage, walled and + roofed with stone, with no creeper to break its harsh outline. + Suddenly we looked down into a cup-like depression, patched with + stunted oaks and firs which had been twisted and bent by the fury of + years of storm. Two high, narrow towers rose over the trees. The + driver pointed with his whip. + + "Baskerville Hall," said he. + + Its master had risen and was staring with flushed cheeks and shining + eyes. A few minutes later we had reached the lodge-gates, a maze of + fantastic tracery in wrought iron, with weather-bitten pillars on + either side, blotched with lichens, and surmounted by the boars' + heads of the Baskervilles. The lodge was a ruin of black granite and + bared ribs of rafters, but facing it was a new building, half + constructed, the first fruit of Sir Charles's South African gold. + + Through the gateway we passed into the avenue, where the wheels were + again hushed amid the leaves, and the old trees shot their branches + in a sombre tunnel over our heads. Baskerville shuddered as he looked + up the long, dark drive to where the house glimmered like a ghost at + the farther end. + + "Was it here?" he asked in a low voice. + + "No, no, the Yew Alley is on the other side." + + The young heir glanced round with a gloomy face. + + "It's no wonder my uncle felt as if trouble were coming on him in + such a place as this," said he. "It's enough to scare any man. I'll + have a row of electric lamps up here inside of six months, and you + won't know it again, with a thousand candle-power Swan and Edison + right here in front of the hall door." + + The avenue opened into a broad expanse of turf, and the house lay + before us. In the fading light I could see that the centre was a + heavy block of building from which a porch projected. The whole front + was draped in ivy, with a patch clipped bare here and there where a + window or a coat-of-arms broke through the dark veil. From this + central block rose the twin towers, ancient, crenelated, and pierced + with many loopholes. To right and left of the turrets were more + modern wings of black granite. A dull light shone through heavy + mullioned windows, and from the high chimneys which rose from the + steep, high-angled roof there sprang a single black column of smoke. + + "Welcome, Sir Henry! Welcome to Baskerville Hall!" + + A tall man had stepped from the shadow of the porch to open the door + of the wagonette. The figure of a woman was silhouetted against the + yellow light of the hall. She came out and helped the man to hand + down our bags. + + "You don't mind my driving straight home, Sir Henry?" said Dr. + Mortimer. "My wife is expecting me." + + "Surely you will stay and have some dinner?" + + "No, I must go. I shall probably find some work awaiting me. I would + stay to show you over the house, but Barrymore will be a better guide + than I. Good-bye, and never hesitate night or day to send for me if I + can be of service." + + The wheels died away down the drive while Sir Henry and I turned into + the hall, and the door clanged heavily behind us. It was a fine + apartment in which we found ourselves, large, lofty, and heavily + raftered with huge balks of age-blackened oak. In the great + old-fashioned fireplace behind the high iron dogs a log-fire crackled + and snapped. Sir Henry and I held out our hands to it, for we were + numb from our long drive. Then we gazed round us at the high, thin + window of old stained glass, the oak panelling, the stags' heads, the + coats-of-arms upon the walls, all dim and sombre in the subdued light + of the central lamp. + + "It's just as I imagined it," said Sir Henry. "Is it not the very + picture of an old family home? To think that this should be the same + hall in which for five hundred years my people have lived. It strikes + me solemn to think of it." + + I saw his dark face lit up with a boyish enthusiasm as he gazed about + him. The light beat upon him where he stood, but long shadows trailed + down the walls and hung like a black canopy above him. Barrymore had + returned from taking our luggage to our rooms. He stood in front of + us now with the subdued manner of a well-trained servant. He was a + remarkable-looking man, tall, handsome, with a square black beard and + pale, distinguished features. + + "Would you wish dinner to be served at once, sir?" + + "Is it ready?" + + "In a very few minutes, sir. You will find hot water in your rooms. + My wife and I will be happy, Sir Henry, to stay with you until you + have made your fresh arrangements, but you will understand that under + the new conditions this house will require a considerable staff." + + "What new conditions?" + + "I only meant, sir, that Sir Charles led a very retired life, and we + were able to look after his wants. You would, naturally, wish to have + more company, and so you will need changes in your household." + + "Do you mean that your wife and you wish to leave?" + + "Only when it is quite convenient to you, sir." + + "But your family have been with us for several generations, have they + not? I should be sorry to begin my life here by breaking an old + family connection." + + I seemed to discern some signs of emotion upon the butler's white + face. + + "I feel that also, sir, and so does my wife. But to tell the truth, + sir, we were both very much attached to Sir Charles, and his death + gave us a shock and made these surroundings very painful to us. I + fear that we shall never again be easy in our minds at Baskerville + Hall." + + "But what do you intend to do?" + + "I have no doubt, sir, that we shall succeed in establishing + ourselves in some business. Sir Charles's generosity has given us the + means to do so. And now, sir, perhaps I had best show you to your + rooms." + + A square balustraded gallery ran round the top of the old hall, + approached by a double stair. From this central point two long + corridors extended the whole length of the building, from which all + the bedrooms opened. My own was in the same wing as Baskerville's and + almost next door to it. These rooms appeared to be much more modern + than the central part of the house, and the bright paper and numerous + candles did something to remove the sombre impression which our + arrival had left upon my mind. + + But the dining-room which opened out of the hall was a place of + shadow and gloom. It was a long chamber with a step separating the + dais where the family sat from the lower portion reserved for their + dependents. At one end a minstrel's gallery overlooked it. Black + beams shot across above our heads, with a smoke-darkened ceiling + beyond them. With rows of flaring torches to light it up, and the + colour and rude hilarity of an old-time banquet, it might have + softened; but now, when two black-clothed gentlemen sat in the little + circle of light thrown by a shaded lamp, one's voice became hushed + and one's spirit subdued. A dim line of ancestors, in every variety + of dress, from the Elizabethan knight to the buck of the Regency, + stared down upon us and daunted us by their silent company. We talked + little, and I for one was glad when the meal was over and we were + able to retire into the modern billiard-room and smoke a cigarette. + + "My word, it isn't a very cheerful place," said Sir Henry. "I suppose + one can tone down to it, but I feel a bit out of the picture at + present. I don't wonder that my uncle got a little jumpy if he lived + all alone in such a house as this. However, if it suits you, we will + retire early to-night, and perhaps things may seem more cheerful in + the morning." + + I drew aside my curtains before I went to bed and looked out from my + window. It opened upon the grassy space which lay in front of the + hall door. Beyond, two copses of trees moaned and swung in a rising + wind. A half moon broke through the rifts of racing clouds. In its + cold light I saw beyond the trees a broken fringe of rocks, and the + long, low curve of the melancholy moor. I closed the curtain, feeling + that my last impression was in keeping with the rest. + + And yet it was not quite the last. I found myself weary and yet + wakeful, tossing restlessly from side to side, seeking for the sleep + which would not come. Far away a chiming clock struck out the + quarters of the hours, but otherwise a deathly silence lay upon the + old house. And then suddenly, in the very dead of the night, there + came a sound to my ears, clear, resonant, and unmistakable. It was + the sob of a woman, the muffled, strangling gasp of one who is torn + by an uncontrollable sorrow. I sat up in bed and listened intently. + The noise could not have been far away and was certainly in the + house. For half an hour I waited with every nerve on the alert, but + there came no other sound save the chiming clock and the rustle of + the ivy on the wall. + + + + + + CHAPTER VII + The Stapletons of Merripit House + + + The fresh beauty of the following morning did something to efface + from our minds the grim and gray impression which had been left upon + both of us by our first experience of Baskerville Hall. As Sir Henry + and I sat at breakfast the sunlight flooded in through the high + mullioned windows, throwing watery patches of colour from the coats + of arms which covered them. The dark panelling glowed like bronze in + the golden rays, and it was hard to realize that this was indeed the + chamber which had struck such a gloom into our souls upon the evening + before. + + "I guess it is ourselves and not the house that we have to blame!" + said the baronet. "We were tired with our journey and chilled by our + drive, so we took a gray view of the place. Now we are fresh and + well, so it is all cheerful once more." + + "And yet it was not entirely a question of imagination," I answered. + "Did you, for example, happen to hear someone, a woman I think, + sobbing in the night?" + + "That is curious, for I did when I was half asleep fancy that I heard + something of the sort. I waited quite a time, but there was no more + of it, so I concluded that it was all a dream." + + "I heard it distinctly, and I am sure that it was really the sob of a + woman." + + "We must ask about this right away." He rang the bell and asked + Barrymore whether he could account for our experience. It seemed to + me that the pallid features of the butler turned a shade paler still + as he listened to his master's question. + + "There are only two women in the house, Sir Henry," he answered. "One + is the scullery-maid, who sleeps in the other wing. The other is my + wife, and I can answer for it that the sound could not have come from + her." + + And yet he lied as he said it, for it chanced that after breakfast I + met Mrs. Barrymore in the long corridor with the sun full upon her + face. She was a large, impassive, heavy-featured woman with a stern + set expression of mouth. But her tell-tale eyes were red and glanced + at me from between swollen lids. It was she, then, who wept in the + night, and if she did so her husband must know it. Yet he had taken + the obvious risk of discovery in declaring that it was not so. Why + had he done this? And why did she weep so bitterly? Already round + this pale-faced, handsome, black-bearded man there was gathering an + atmosphere of mystery and of gloom. It was he who had been the first + to discover the body of Sir Charles, and we had only his word for all + the circumstances which led up to the old man's death. Was it + possible that it was Barrymore after all whom we had seen in the cab + in Regent Street? The beard might well have been the same. The cabman + had described a somewhat shorter man, but such an impression might + easily have been erroneous. How could I settle the point forever? + Obviously the first thing to do was to see the Grimpen postmaster, + and find whether the test telegram had really been placed in + Barrymore's own hands. Be the answer what it might, I should at least + have something to report to Sherlock Holmes. + + Sir Henry had numerous papers to examine after breakfast, so that the + time was propitious for my excursion. It was a pleasant walk of four + miles along the edge of the moor, leading me at last to a small gray + hamlet, in which two larger buildings, which proved to be the inn and + the house of Dr. Mortimer, stood high above the rest. The postmaster, + who was also the village grocer, had a clear recollection of the + telegram. + + "Certainly, sir," said he, "I had the telegram delivered to Mr. + Barrymore exactly as directed." + + "Who delivered it?" + + "My boy here. James, you delivered that telegram to Mr. Barrymore at + the Hall last week, did you not?" + + "Yes, father, I delivered it." + + "Into his own hands?" I asked. + + "Well, he was up in the loft at the time, so that I could not put it + into his own hands, but I gave it into Mrs. Barrymore's hands, and + she promised to deliver it at once." + + "Did you see Mr. Barrymore?" + + "No, sir; I tell you he was in the loft." + + "If you didn't see him, how do you know he was in the loft?" + + "Well, surely his own wife ought to know where he is," said the + postmaster testily. "Didn't he get the telegram? If there is any + mistake it is for Mr. Barrymore himself to complain." + + It seemed hopeless to pursue the inquiry any farther, but it was + clear that in spite of Holmes's ruse we had no proof that Barrymore + had not been in London all the time. Suppose that it were so--suppose + that the same man had been the last who had seen Sir Charles alive, + and the first to dog the new heir when he returned to England. What + then? Was he the agent of others or had he some sinister design of + his own? What interest could he have in persecuting the Baskerville + family? I thought of the strange warning clipped out of the leading + article of the Times. Was that his work or was it possibly the doing + of someone who was bent upon counteracting his schemes? The only + conceivable motive was that which had been suggested by Sir Henry, + that if the family could be scared away a comfortable and permanent + home would be secured for the Barrymores. But surely such an + explanation as that would be quite inadequate to account for the deep + and subtle scheming which seemed to be weaving an invisible net round + the young baronet. Holmes himself had said that no more complex case + had come to him in all the long series of his sensational + investigations. I prayed, as I walked back along the gray, lonely + road, that my friend might soon be freed from his preoccupations and + able to come down to take this heavy burden of responsibility from my + shoulders. + + Suddenly my thoughts were interrupted by the sound of running feet + behind me and by a voice which called me by name. I turned, expecting + to see Dr. Mortimer, but to my surprise it was a stranger who was + pursuing me. He was a small, slim, clean-shaven, prim-faced man, + flaxen-haired and lean-jawed, between thirty and forty years of age, + dressed in a gray suit and wearing a straw hat. A tin box for + botanical specimens hung over his shoulder and he carried a green + butterfly-net in one of his hands. + + "You will, I am sure, excuse my presumption, Dr. Watson," said he, as + he came panting up to where I stood. "Here on the moor we are homely + folk and do not wait for formal introductions. You may possibly have + heard my name from our mutual friend, Mortimer. I am Stapleton, of + Merripit House." + + "Your net and box would have told me as much," said I, "for I knew + that Mr. Stapleton was a naturalist. But how did you know me?" + + "I have been calling on Mortimer, and he pointed you out to me from + the window of his surgery as you passed. As our road lay the same way + I thought that I would overtake you and introduce myself. I trust + that Sir Henry is none the worse for his journey?" + + "He is very well, thank you." + + "We were all rather afraid that after the sad death of Sir Charles + the new baronet might refuse to live here. It is asking much of a + wealthy man to come down and bury himself in a place of this kind, + but I need not tell you that it means a very great deal to the + country-side. Sir Henry has, I suppose, no superstitious fears in the + matter?" + + "I do not think that it is likely." + + "Of course you know the legend of the fiend dog which haunts the + family?" + + "I have heard it." + + "It is extraordinary how credulous the peasants are about here! Any + number of them are ready to swear that they have seen such a creature + upon the moor." He spoke with a smile, but I seemed to read in his + eyes that he took the matter more seriously. "The story took a great + hold upon the imagination of Sir Charles, and I have no doubt that it + led to his tragic end." + + "But how?" + + "His nerves were so worked up that the appearance of any dog might + have had a fatal effect upon his diseased heart. I fancy that he + really did see something of the kind upon that last night in the Yew + Alley. I feared that some disaster might occur, for I was very fond + of the old man, and I knew that his heart was weak." + + "How did you know that?" + + "My friend Mortimer told me." + + "You think, then, that some dog pursued Sir Charles, and that he died + of fright in consequence?" + + "Have you any better explanation?" + + "I have not come to any conclusion." + + "Has Mr. Sherlock Holmes?" + + The words took away my breath for an instant, but a glance at the + placid face and steadfast eyes of my companion showed that no + surprise was intended. + + "It is useless for us to pretend that we do not know you, Dr. + Watson," said he. "The records of your detective have reached us + here, and you could not celebrate him without being known yourself. + When Mortimer told me your name he could not deny your identity. If + you are here, then it follows that Mr. Sherlock Holmes is interesting + himself in the matter, and I am naturally curious to know what view + he may take." + + "I am afraid that I cannot answer that question." + + "May I ask if he is going to honour us with a visit himself?" + + "He cannot leave town at present. He has other cases which engage his + attention." + + "What a pity! He might throw some light on that which is so dark to + us. But as to your own researches, if there is any possible way in + which I can be of service to you I trust that you will command me. If + I had any indication of the nature of your suspicions or how you + propose to investigate the case, I might perhaps even now give you + some aid or advice." + + "I assure you that I am simply here upon a visit to my friend, Sir + Henry, and that I need no help of any kind." + + "Excellent!" said Stapleton. "You are perfectly right to be wary and + discreet. I am justly reproved for what I feel was an unjustifiable + intrusion, and I promise you that I will not mention the matter + again." + + We had come to a point where a narrow grassy path struck off from the + road and wound away across the moor. A steep, boulder-sprinkled hill + lay upon the right which had in bygone days been cut into a granite + quarry. The face which was turned towards us formed a dark cliff, + with ferns and brambles growing in its niches. From over a distant + rise there floated a gray plume of smoke. + + "A moderate walk along this moor-path brings us to Merripit House," + said he. "Perhaps you will spare an hour that I may have the pleasure + of introducing you to my sister." + + My first thought was that I should be by Sir Henry's side. But then I + remembered the pile of papers and bills with which his study table + was littered. It was certain that I could not help with those. And + Holmes had expressly said that I should study the neighbours upon the + moor. I accepted Stapleton's invitation, and we turned together down + the path. + + "It is a wonderful place, the moor," said he, looking round over the + undulating downs, long green rollers, with crests of jagged granite + foaming up into fantastic surges. "You never tire of the moor. You + cannot think the wonderful secrets which it contains. It is so vast, + and so barren, and so mysterious." + + "You know it well, then?" + + "I have only been here two years. The residents would call me a + newcomer. We came shortly after Sir Charles settled. But my tastes + led me to explore every part of the country round, and I should think + that there are few men who know it better than I do." + + "Is it hard to know?" + + "Very hard. You see, for example, this great plain to the north here + with the queer hills breaking out of it. Do you observe anything + remarkable about that?" + + "It would be a rare place for a gallop." + + "You would naturally think so and the thought has cost several their + lives before now. You notice those bright green spots scattered + thickly over it?" + + "Yes, they seem more fertile than the rest." + + Stapleton laughed. + + "That is the great Grimpen Mire," said he. "A false step yonder means + death to man or beast. Only yesterday I saw one of the moor ponies + wander into it. He never came out. I saw his head for quite a long + time craning out of the bog-hole, but it sucked him down at last. + Even in dry seasons it is a danger to cross it, but after these + autumn rains it is an awful place. And yet I can find my way to the + very heart of it and return alive. By George, there is another of + those miserable ponies!" + + Something brown was rolling and tossing among the green sedges. Then + a long, agonized, writhing neck shot upward and a dreadful cry echoed + over the moor. It turned me cold with horror, but my companion's + nerves seemed to be stronger than mine. + + "It's gone!" said he. "The mire has him. Two in two days, and many + more, perhaps, for they get in the way of going there in the dry + weather, and never know the difference until the mire has them in its + clutches. It's a bad place, the great Grimpen Mire." + + "And you say you can penetrate it?" + + "Yes, there are one or two paths which a very active man can take. I + have found them out." + + "But why should you wish to go into so horrible a place?" + + "Well, you see the hills beyond? They are really islands cut off on + all sides by the impassable mire, which has crawled round them in the + course of years. That is where the rare plants and the butterflies + are, if you have the wit to reach them." + + "I shall try my luck some day." + + He looked at me with a surprised face. + + "For God's sake put such an idea out of your mind," said he. "Your + blood would be upon my head. I assure you that there would not be the + least chance of your coming back alive. It is only by remembering + certain complex landmarks that I am able to do it." + + "Halloa!" I cried. "What is that?" + + A long, low moan, indescribably sad, swept over the moor. It filled + the whole air, and yet it was impossible to say whence it came. From + a dull murmur it swelled into a deep roar, and then sank back into a + melancholy, throbbing murmur once again. Stapleton looked at me with + a curious expression in his face. + + "Queer place, the moor!" said he. + + "But what is it?" + + "The peasants say it is the Hound of the Baskervilles calling for its + prey. I've heard it once or twice before, but never quite so loud." + + I looked round, with a chill of fear in my heart, at the huge + swelling plain, mottled with the green patches of rushes. Nothing + stirred over the vast expanse save a pair of ravens, which croaked + loudly from a tor behind us. + + "You are an educated man. You don't believe such nonsense as that?" + said I. "What do you think is the cause of so strange a sound?" + + "Bogs make queer noises sometimes. It's the mud settling, or the + water rising, or something." + + "No, no, that was a living voice." + + "Well, perhaps it was. Did you ever hear a bittern booming?" + + "No, I never did." + + "It's a very rare bird--practically extinct--in England now, but all + things are possible upon the moor. Yes, I should not be surprised to + learn that what we have heard is the cry of the last of the + bitterns." + + "It's the weirdest, strangest thing that ever I heard in my life." + + "Yes, it's rather an uncanny place altogether. Look at the hill-side + yonder. What do you make of those?" + + The whole steep slope was covered with gray circular rings of stone, + a score of them at least. + + "What are they? Sheep-pens?" + + "No, they are the homes of our worthy ancestors. Prehistoric man + lived thickly on the moor, and as no one in particular has lived + there since, we find all his little arrangements exactly as he left + them. These are his wigwams with the roofs off. You can even see his + hearth and his couch if you have the curiosity to go inside." + + "But it is quite a town. When was it inhabited?" + + "Neolithic man--no date." + + "What did he do?" + + "He grazed his cattle on these slopes, and he learned to dig for tin + when the bronze sword began to supersede the stone axe. Look at the + great trench in the opposite hill. That is his mark. Yes, you will + find some very singular points about the moor, Dr. Watson. Oh, excuse + me an instant! It is surely Cyclopides." + + A small fly or moth had fluttered across our path, and in an instant + Stapleton was rushing with extraordinary energy and speed in pursuit + of it. To my dismay the creature flew straight for the great mire, + and my acquaintance never paused for an instant, bounding from tuft + to tuft behind it, his green net waving in the air. His gray clothes + and jerky, zigzag, irregular progress made him not unlike some huge + moth himself. I was standing watching his pursuit with a mixture of + admiration for his extraordinary activity and fear lest he should + lose his footing in the treacherous mire, when I heard the sound of + steps, and turning round found a woman near me upon the path. She had + come from the direction in which the plume of smoke indicated the + position of Merripit House, but the dip of the moor had hid her until + she was quite close. + + I could not doubt that this was the Miss Stapleton of whom I had been + told, since ladies of any sort must be few upon the moor, and I + remembered that I had heard someone describe her as being a beauty. + The woman who approached me was certainly that, and of a most + uncommon type. There could not have been a greater contrast between + brother and sister, for Stapleton was neutral tinted, with light hair + and gray eyes, while she was darker than any brunette whom I have + seen in England--slim, elegant, and tall. She had a proud, finely cut + face, so regular that it might have seemed impassive were it not for + the sensitive mouth and the beautiful dark, eager eyes. With her + perfect figure and elegant dress she was, indeed, a strange + apparition upon a lonely moorland path. Her eyes were on her brother + as I turned, and then she quickened her pace towards me. I had raised + my hat and was about to make some explanatory remark, when her own + words turned all my thoughts into a new channel. + + "Go back!" she said. "Go straight back to London, instantly." + + I could only stare at her in stupid surprise. Her eyes blazed at me, + and she tapped the ground impatiently with her foot. + + "Why should I go back?" I asked. + + "I cannot explain." She spoke in a low, eager voice, with a curious + lisp in her utterance. "But for God's sake do what I ask you. Go back + and never set foot upon the moor again." + + "But I have only just come." + + "Man, man!" she cried. "Can you not tell when a warning is for your + own good? Go back to London! Start to-night! Get away from this place + at all costs! Hush, my brother is coming! Not a word of what I have + said. Would you mind getting that orchid for me among the mares-tails + yonder? We are very rich in orchids on the moor, though, of course, + you are rather late to see the beauties of the place." + + Stapleton had abandoned the chase and came back to us breathing hard + and flushed with his exertions. + + "Halloa, Beryl!" said he, and it seemed to me that the tone of his + greeting was not altogether a cordial one. + + "Well, Jack, you are very hot." + + "Yes, I was chasing a Cyclopides. He is very rare and seldom found in + the late autumn. What a pity that I should have missed him!" He spoke + unconcernedly, but his small light eyes glanced incessantly from the + girl to me. + + "You have introduced yourselves, I can see." + + "Yes. I was telling Sir Henry that it was rather late for him to see + the true beauties of the moor." + + "Why, who do you think this is?" + + "I imagine that it must be Sir Henry Baskerville." + + "No, no," said I. "Only a humble commoner, but his friend. My name is + Dr. Watson." + + A flush of vexation passed over her expressive face. "We have been + talking at cross purposes," said she. + + "Why, you had not very much time for talk," her brother remarked with + the same questioning eyes. + + "I talked as if Dr. Watson were a resident instead of being merely a + visitor," said she. "It cannot much matter to him whether it is early + or late for the orchids. But you will come on, will you not, and see + Merripit House?" + + A short walk brought us to it, a bleak moorland house, once the farm + of some grazier in the old prosperous days, but now put into repair + and turned into a modern dwelling. An orchard surrounded it, but the + trees, as is usual upon the moor, were stunted and nipped, and the + effect of the whole place was mean and melancholy. We were admitted + by a strange, wizened, rusty-coated old manservant, who seemed in + keeping with the house. Inside, however, there were large rooms + furnished with an elegance in which I seemed to recognize the taste + of the lady. As I looked from their windows at the interminable + granite-flecked moor rolling unbroken to the farthest horizon I could + not but marvel at what could have brought this highly educated man + and this beautiful woman to live in such a place. + + "Queer spot to choose, is it not?" said he as if in answer to my + thought. "And yet we manage to make ourselves fairly happy, do we + not, Beryl?" + + "Quite happy," said she, but there was no ring of conviction in her + words. + + "I had a school," said Stapleton. "It was in the north country. The + work to a man of my temperament was mechanical and uninteresting, but + the privilege of living with youth, of helping to mould those young + minds, and of impressing them with one's own character and ideals, + was very dear to me. However, the fates were against us. A serious + epidemic broke out in the school and three of the boys died. It never + recovered from the blow, and much of my capital was irretrievably + swallowed up. And yet, if it were not for the loss of the charming + companionship of the boys, I could rejoice over my own misfortune, + for, with my strong tastes for botany and zoology, I find an + unlimited field of work here, and my sister is as devoted to Nature + as I am. All this, Dr. Watson, has been brought upon your head by + your expression as you surveyed the moor out of our window." + + "It certainly did cross my mind that it might be a little dull--less + for you, perhaps, than for your sister." + + "No, no, I am never dull," said she, quickly. + + "We have books, we have our studies, and we have interesting + neighbours. Dr. Mortimer is a most learned man in his own line. Poor + Sir Charles was also an admirable companion. We knew him well, and + miss him more than I can tell. Do you think that I should intrude if + I were to call this afternoon and make the acquaintance of Sir + Henry?" + + "I am sure that he would be delighted." + + "Then perhaps you would mention that I propose to do so. We may in + our humble way do something to make things more easy for him until he + becomes accustomed to his new surroundings. Will you come upstairs, + Dr. Watson, and inspect my collection of Lepidoptera? I think it is + the most complete one in the south-west of England. By the time that + you have looked through them lunch will be almost ready." + + But I was eager to get back to my charge. The melancholy of the moor, + the death of the unfortunate pony, the weird sound which had been + associated with the grim legend of the Baskervilles, all these things + tinged my thoughts with sadness. Then on the top of these more or + less vague impressions there had come the definite and distinct + warning of Miss Stapleton, delivered with such intense earnestness + that I could not doubt that some grave and deep reason lay behind it. + I resisted all pressure to stay for lunch, and I set off at once upon + my return journey, taking the grass-grown path by which we had come. + + It seems, however, that there must have been some short cut for those + who knew it, for before I had reached the road I was astounded to see + Miss Stapleton sitting upon a rock by the side of the track. Her face + was beautifully flushed with her exertions, and she held her hand to + her side. + + "I have run all the way in order to cut you off, Dr. Watson," said + she. "I had not even time to put on my hat. I must not stop, or my + brother may miss me. I wanted to say to you how sorry I am about the + stupid mistake I made in thinking that you were Sir Henry. Please + forget the words I said, which have no application whatever to you." + + "But I can't forget them, Miss Stapleton," said I. "I am Sir Henry's + friend, and his welfare is a very close concern of mine. Tell me why + it was that you were so eager that Sir Henry should return to + London." + + "A woman's whim, Dr. Watson. When you know me better you will + understand that I cannot always give reasons for what I say or do." + + "No, no. I remember the thrill in your voice. I remember the look in + your eyes. Please, please, be frank with me, Miss Stapleton, for ever + since I have been here I have been conscious of shadows all round me. + Life has become like that great Grimpen Mire, with little green + patches everywhere into which one may sink and with no guide to point + the track. Tell me then what it was that you meant, and I will + promise to convey your warning to Sir Henry." + + An expression of irresolution passed for an instant over her face, + but her eyes had hardened again when she answered me. + + "You make too much of it, Dr. Watson," said she. "My brother and I + were very much shocked by the death of Sir Charles. We knew him very + intimately, for his favourite walk was over the moor to our house. He + was deeply impressed with the curse which hung over the family, and + when this tragedy came I naturally felt that there must be some + grounds for the fears which he had expressed. I was distressed + therefore when another member of the family came down to live here, + and I felt that he should be warned of the danger which he will run. + That was all which I intended to convey. + + "But what is the danger?" + + "You know the story of the hound?" + + "I do not believe in such nonsense." + + "But I do. If you have any influence with Sir Henry, take him away + from a place which has always been fatal to his family. The world is + wide. Why should he wish to live at the place of danger?" + + "Because it is the place of danger. That is Sir Henry's nature. I + fear that unless you can give me some more definite information than + this it would be impossible to get him to move." + + "I cannot say anything definite, for I do not know anything + definite." + + "I would ask you one more question, Miss Stapleton. If you meant no + more than this when you first spoke to me, why should you not wish + your brother to overhear what you said? There is nothing to which he, + or anyone else, could object." + + "My brother is very anxious to have the Hall inhabited, for he thinks + it is for the good of the poor folk upon the moor. He would be very + angry if he knew that I have said anything which might induce Sir + Henry to go away. But I have done my duty now and I will say no more. + I must get back, or he will miss me and suspect that I have seen you. + Good-bye!" She turned and had disappeared in a few minutes among the + scattered boulders, while I, with my soul full of vague fears, + pursued my way to Baskerville Hall. + + + + + + CHAPTER VIII + First Report of Dr. Watson + + + From this point onward I will follow the course of events by + transcribing my own letters to Mr. Sherlock Holmes which lie before + me on the table. One page is missing, but otherwise they are exactly + as written and show my feelings and suspicions of the moment more + accurately than my memory, clear as it is upon these tragic events, + can possibly do. + + Baskerville Hall, October 13th. + + My dear Holmes: + My previous letters and telegrams have kept you pretty well up to + date as to all that has occurred in this most God-forsaken corner of + the world. The longer one stays here the more does the spirit of the + moor sink into one's soul, its vastness, and also its grim charm. + When you are once out upon its bosom you have left all traces of + modern England behind you, but on the other hand you are conscious + everywhere of the homes and the work of the prehistoric people. On + all sides of you as you walk are the houses of these forgotten folk, + with their graves and the huge monoliths which are supposed to have + marked their temples. As you look at their gray stone huts against + the scarred hill-sides you leave your own age behind you, and if you + were to see a skin-clad, hairy man crawl out from the low door + fitting a flint-tipped arrow on to the string of his bow, you would + feel that his presence there was more natural than your own. The + strange thing is that they should have lived so thickly on what must + always have been most unfruitful soil. I am no antiquarian, but I + could imagine that they were some unwarlike and harried race who were + forced to accept that which none other would occupy. + + All this, however, is foreign to the mission on which you sent me and + will probably be very uninteresting to your severely practical mind. + I can still remember your complete indifference as to whether the sun + moved round the earth or the earth round the sun. Let me, therefore, + return to the facts concerning Sir Henry Baskerville. + + If you have not had any report within the last few days it is because + up to to-day there was nothing of importance to relate. Then a very + surprising circumstance occurred, which I shall tell you in due + course. But, first of all, I must keep you in touch with some of the + other factors in the situation. + + One of these, concerning which I have said little, is the escaped + convict upon the moor. There is strong reason now to believe that he + has got right away, which is a considerable relief to the lonely + householders of this district. A fortnight has passed since his + flight, during which he has not been seen and nothing has been heard + of him. It is surely inconceivable that he could have held out upon + the moor during all that time. Of course, so far as his concealment + goes there is no difficulty at all. Any one of these stone huts would + give him a hiding-place. But there is nothing to eat unless he were + to catch and slaughter one of the moor sheep. We think, therefore, + that he has gone, and the outlying farmers sleep the better in + consequence. + + We are four able-bodied men in this household, so that we could take + good care of ourselves, but I confess that I have had uneasy moments + when I have thought of the Stapletons. They live miles from any help. + There are one maid, an old manservant, the sister, and the brother, + the latter not a very strong man. They would be helpless in the hands + of a desperate fellow like this Notting Hill criminal, if he could + once effect an entrance. Both Sir Henry and I were concerned at their + situation, and it was suggested that Perkins the groom should go over + to sleep there, but Stapleton would not hear of it. + + The fact is that our friend, the baronet, begins to display a + considerable interest in our fair neighbour. It is not to be wondered + at, for time hangs heavily in this lonely spot to an active man like + him, and she is a very fascinating and beautiful woman. There is + something tropical and exotic about her which forms a singular + contrast to her cool and unemotional brother. Yet he also gives the + idea of hidden fires. He has certainly a very marked influence over + her, for I have seen her continually glance at him as she talked as + if seeking approbation for what she said. I trust that he is kind to + her. There is a dry glitter in his eyes, and a firm set of his thin + lips, which goes with a positive and possibly a harsh nature. You + would find him an interesting study. + + He came over to call upon Baskerville on that first day, and the very + next morning he took us both to show us the spot where the legend of + the wicked Hugo is supposed to have had its origin. It was an + excursion of some miles across the moor to a place which is so dismal + that it might have suggested the story. We found a short valley + between rugged tors which led to an open, grassy space flecked over + with the white cotton grass. In the middle of it rose two great + stones, worn and sharpened at the upper end, until they looked like + the huge corroding fangs of some monstrous beast. In every way it + corresponded with the scene of the old tragedy. Sir Henry was much + interested and asked Stapleton more than once whether he did really + believe in the possibility of the interference of the supernatural in + the affairs of men. He spoke lightly, but it was evident that he was + very much in earnest. Stapleton was guarded in his replies, but it + was easy to see that he said less than he might, and that he would + not express his whole opinion out of consideration for the feelings + of the baronet. He told us of similar cases, where families had + suffered from some evil influence, and he left us with the impression + that he shared the popular view upon the matter. + + On our way back we stayed for lunch at Merripit House, and it was + there that Sir Henry made the acquaintance of Miss Stapleton. From + the first moment that he saw her he appeared to be strongly attracted + by her, and I am much mistaken if the feeling was not mutual. He + referred to her again and again on our walk home, and since then + hardly a day has passed that we have not seen something of the + brother and sister. They dine here to-night, and there is some talk + of our going to them next week. One would imagine that such a match + would be very welcome to Stapleton, and yet I have more than once + caught a look of the strongest disapprobation in his face when Sir + Henry has been paying some attention to his sister. He is much + attached to her, no doubt, and would lead a lonely life without her, + but it would seem the height of selfishness if he were to stand in + the way of her making so brilliant a marriage. Yet I am certain that + he does not wish their intimacy to ripen into love, and I have + several times observed that he has taken pains to prevent them from + being tête-à-tête. By the way, your instructions to me never to allow + Sir Henry to go out alone will become very much more onerous if a + love affair were to be added to our other difficulties. My popularity + would soon suffer if I were to carry out your orders to the letter. + + The other day--Thursday, to be more exact--Dr. Mortimer lunched with + us. He has been excavating a barrow at Long Down, and has got a + prehistoric skull which fills him with great joy. Never was there + such a single-minded enthusiast as he! The Stapletons came in + afterwards, and the good doctor took us all to the Yew Alley, at Sir + Henry's request, to show us exactly how everything occurred upon that + fatal night. It is a long, dismal walk, the Yew Alley, between two + high walls of clipped hedge, with a narrow band of grass upon either + side. At the far end is an old tumble-down summer-house. Half-way + down is the moor-gate, where the old gentleman left his cigar-ash. It + is a white wooden gate with a latch. Beyond it lies the wide moor. I + remembered your theory of the affair and tried to picture all that + had occurred. As the old man stood there he saw something coming + across the moor, something which terrified him so that he lost his + wits, and ran and ran until he died of sheer horror and exhaustion. + There was the long, gloomy tunnel down which he fled. And from what? + A sheep-dog of the moor? Or a spectral hound, black, silent, and + monstrous? Was there a human agency in the matter? Did the pale, + watchful Barrymore know more than he cared to say? It was all dim and + vague, but always there is the dark shadow of crime behind it. + + One other neighbour I have met since I wrote last. This is Mr. + Frankland, of Lafter Hall, who lives some four miles to the south of + us. He is an elderly man, red-faced, white-haired, and choleric. His + passion is for the British law, and he has spent a large fortune in + litigation. He fights for the mere pleasure of fighting and is + equally ready to take up either side of a question, so that it is no + wonder that he has found it a costly amusement. Sometimes he will + shut up a right of way and defy the parish to make him open it. At + others he will with his own hands tear down some other man's gate and + declare that a path has existed there from time immemorial, defying + the owner to prosecute him for trespass. He is learned in old + manorial and communal rights, and he applies his knowledge sometimes + in favour of the villagers of Fernworthy and sometimes against them, + so that he is periodically either carried in triumph down the village + street or else burned in effigy, according to his latest exploit. He + is said to have about seven lawsuits upon his hands at present, which + will probably swallow up the remainder of his fortune and so draw his + sting and leave him harmless for the future. Apart from the law he + seems a kindly, good-natured person, and I only mention him because + you were particular that I should send some description of the people + who surround us. He is curiously employed at present, for, being an + amateur astronomer, he has an excellent telescope, with which he lies + upon the roof of his own house and sweeps the moor all day in the + hope of catching a glimpse of the escaped convict. If he would + confine his energies to this all would be well, but there are rumours + that he intends to prosecute Dr. Mortimer for opening a grave without + the consent of the next-of-kin, because he dug up the Neolithic skull + in the barrow on Long Down. He helps to keep our lives from being + monotonous and gives a little comic relief where it is badly needed. + + And now, having brought you up to date in the escaped convict, the + Stapletons, Dr. Mortimer, and Frankland, of Lafter Hall, let me end + on that which is most important and tell you more about the + Barrymores, and especially about the surprising development of last + night. + + First of all about the test telegram, which you sent from London in + order to make sure that Barrymore was really here. I have already + explained that the testimony of the postmaster shows that the test + was worthless and that we have no proof one way or the other. I told + Sir Henry how the matter stood, and he at once, in his downright + fashion, had Barrymore up and asked him whether he had received the + telegram himself. Barrymore said that he had. + + "Did the boy deliver it into your own hands?" asked Sir Henry. + + Barrymore looked surprised, and considered for a little time. + + "No," said he, "I was in the box-room at the time, and my wife + brought it up to me." + + "Did you answer it yourself?" + + "No; I told my wife what to answer and she went down to write it." + + In the evening he recurred to the subject of his own accord. + + "I could not quite understand the object of your questions this + morning, Sir Henry," said he. "I trust that they do not mean that I + have done anything to forfeit your confidence?" + + Sir Henry had to assure him that it was not so and pacify him by + giving him a considerable part of his old wardrobe, the London outfit + having now all arrived. + + Mrs. Barrymore is of interest to me. She is a heavy, solid person, + very limited, intensely respectable, and inclined to be puritanical. + You could hardly conceive a less emotional subject. Yet I have told + you how, on the first night here, I heard her sobbing bitterly, and + since then I have more than once observed traces of tears upon her + face. Some deep sorrow gnaws ever at her heart. Sometimes I wonder if + she has a guilty memory which haunts her, and sometimes I suspect + Barrymore of being a domestic tyrant. I have always felt that there + was something singular and questionable in this man's character, but + the adventure of last night brings all my suspicions to a head. + + And yet it may seem a small matter in itself. You are aware that I am + not a very sound sleeper, and since I have been on guard in this + house my slumbers have been lighter than ever. Last night, about two + in the morning, I was aroused by a stealthy step passing my room. I + rose, opened my door, and peeped out. A long black shadow was + trailing down the corridor. It was thrown by a man who walked softly + down the passage with a candle held in his hand. He was in shirt and + trousers, with no covering to his feet. I could merely see the + outline, but his height told me that it was Barrymore. He walked very + slowly and circumspectly, and there was something indescribably + guilty and furtive in his whole appearance. + + I have told you that the corridor is broken by the balcony which runs + round the hall, but that it is resumed upon the farther side. I + waited until he had passed out of sight and then I followed him. When + I came round the balcony he had reached the end of the farther + corridor, and I could see from the glimmer of light through an open + door that he had entered one of the rooms. Now, all these rooms are + unfurnished and unoccupied, so that his expedition became more + mysterious than ever. The light shone steadily as if he were standing + motionless. I crept down the passage as noiselessly as I could and + peeped round the corner of the door. + + Barrymore was crouching at the window with the candle held against + the glass. His profile was half turned towards me, and his face + seemed to be rigid with expectation as he stared out into the + blackness of the moor. For some minutes he stood watching intently. + Then he gave a deep groan and with an impatient gesture he put out + the light. Instantly I made my way back to my room, and very shortly + came the stealthy steps passing once more upon their return journey. + Long afterwards when I had fallen into a light sleep I heard a key + turn somewhere in a lock, but I could not tell whence the sound came. + What it all means I cannot guess, but there is some secret business + going on in this house of gloom which sooner or later we shall get to + the bottom of. I do not trouble you with my theories, for you asked + me to furnish you only with facts. I have had a long talk with Sir + Henry this morning, and we have made a plan of campaign founded upon + my observations of last night. I will not speak about it just now, + but it should make my next report interesting reading. + + + + + + CHAPTER IX + Second Report of Dr. Watson + + + THE LIGHT UPON THE MOOR + + Baskerville Hall, Oct. 15th. + + My dear Holmes: + If I was compelled to leave you without much news during the early + days of my mission you must acknowledge that I am making up for lost + time, and that events are now crowding thick and fast upon us. In my + last report I ended upon my top note with Barrymore at the window, + and now I have quite a budget already which will, unless I am much + mistaken, considerably surprise you. Things have taken a turn which I + could not have anticipated. In some ways they have within the last + forty-eight hours become much clearer and in some ways they have + become more complicated. But I will tell you all and you shall judge + for yourself. + + Before breakfast on the morning following my adventure I went down + the corridor and examined the room in which Barrymore had been on the + night before. The western window through which he had stared so + intently has, I noticed, one peculiarity above all other windows in + the house--it commands the nearest outlook on the moor. There is an + opening between two trees which enables one from this point of view + to look right down upon it, while from all the other windows it is + only a distant glimpse which can be obtained. It follows, therefore, + that Barrymore, since only this window would serve the purpose, must + have been looking out for something or somebody upon the moor. The + night was very dark, so that I can hardly imagine how he could have + hoped to see anyone. It had struck me that it was possible that some + love intrigue was on foot. That would have accounted for his stealthy + movements and also for the uneasiness of his wife. The man is a + striking-looking fellow, very well equipped to steal the heart of a + country girl, so that this theory seemed to have something to support + it. That opening of the door which I had heard after I had returned + to my room might mean that he had gone out to keep some clandestine + appointment. So I reasoned with myself in the morning, and I tell you + the direction of my suspicions, however much the result may have + shown that they were unfounded. + + But whatever the true explanation of Barrymore's movements might be, + I felt that the responsibility of keeping them to myself until I + could explain them was more than I could bear. I had an interview + with the baronet in his study after breakfast, and I told him all + that I had seen. He was less surprised than I had expected. + + "I knew that Barrymore walked about nights, and I had a mind to speak + to him about it," said he. "Two or three times I have heard his steps + in the passage, coming and going, just about the hour you name." + + "Perhaps then he pays a visit every night to that particular window," + I suggested. + + "Perhaps he does. If so, we should be able to shadow him, and see + what it is that he is after. I wonder what your friend Holmes would + do, if he were here." + + "I believe that he would do exactly what you now suggest," said I. + "He would follow Barrymore and see what he did." + + "Then we shall do it together." + + "But surely he would hear us." + + "The man is rather deaf, and in any case we must take our chance of + that. We'll sit up in my room to-night and wait until he passes." Sir + Henry rubbed his hands with pleasure, and it was evident that he + hailed the adventure as a relief to his somewhat quiet life upon the + moor. + + The baronet has been in communication with the architect who prepared + the plans for Sir Charles, and with a contractor from London, so that + we may expect great changes to begin here soon. There have been + decorators and furnishers up from Plymouth, and it is evident that + our friend has large ideas, and means to spare no pains or expense to + restore the grandeur of his family. When the house is renovated and + refurnished, all that he will need will be a wife to make it + complete. Between ourselves there are pretty clear signs that this + will not be wanting if the lady is willing, for I have seldom seen a + man more infatuated with a woman than he is with our beautiful + neighbour, Miss Stapleton. And yet the course of true love does not + run quite as smoothly as one would under the circumstances expect. + To-day, for example, its surface was broken by a very unexpected + ripple, which has caused our friend considerable perplexity and + annoyance. + + After the conversation which I have quoted about Barrymore, Sir Henry + put on his hat and prepared to go out. As a matter of course I did + the same. + + "What, are you coming, Watson?" he asked, looking at me in a curious + way. + + "That depends on whether you are going on the moor," said I. + + "Yes, I am." + + "Well, you know what my instructions are. I am sorry to intrude, but + you heard how earnestly Holmes insisted that I should not leave you, + and especially that you should not go alone upon the moor." + + Sir Henry put his hand upon my shoulder with a pleasant smile. + + "My dear fellow," said he, "Holmes, with all his wisdom, did not + foresee some things which have happened since I have been on the + moor. You understand me? I am sure that you are the last man in the + world who would wish to be a spoil-sport. I must go out alone." + + It put me in a most awkward position. I was at a loss what to say or + what to do, and before I had made up my mind he picked up his cane + and was gone. + + But when I came to think the matter over my conscience reproached me + bitterly for having on any pretext allowed him to go out of my sight. + I imagined what my feelings would be if I had to return to you and to + confess that some misfortune had occurred through my disregard for + your instructions. I assure you my cheeks flushed at the very + thought. It might not even now be too late to overtake him, so I set + off at once in the direction of Merripit House. + + I hurried along the road at the top of my speed without seeing + anything of Sir Henry, until I came to the point where the moor path + branches off. There, fearing that perhaps I had come in the wrong + direction after all, I mounted a hill from which I could command a + view--the same hill which is cut into the dark quarry. Thence I saw + him at once. He was on the moor path, about a quarter of a mile off, + and a lady was by his side who could only be Miss Stapleton. It was + clear that there was already an understanding between them and that + they had met by appointment. They were walking slowly along in deep + conversation, and I saw her making quick little movements of her + hands as if she were very earnest in what she was saying, while he + listened intently, and once or twice shook his head in strong + dissent. I stood among the rocks watching them, very much puzzled as + to what I should do next. To follow them and break into their + intimate conversation seemed to be an outrage, and yet my clear duty + was never for an instant to let him out of my sight. To act the spy + upon a friend was a hateful task. Still, I could see no better course + than to observe him from the hill, and to clear my conscience by + confessing to him afterwards what I had done. It is true that if any + sudden danger had threatened him I was too far away to be of use, and + yet I am sure that you will agree with me that the position was very + difficult, and that there was nothing more which I could do. + + Our friend, Sir Henry, and the lady had halted on the path and were + standing deeply absorbed in their conversation, when I was suddenly + aware that I was not the only witness of their interview. A wisp of + green floating in the air caught my eye, and another glance showed me + that it was carried on a stick by a man who was moving among the + broken ground. It was Stapleton with his butterfly-net. He was very + much closer to the pair than I was, and he appeared to be moving in + their direction. At this instant Sir Henry suddenly drew Miss + Stapleton to his side. His arm was round her, but it seemed to me + that she was straining away from him with her face averted. He + stooped his head to hers, and she raised one hand as if in protest. + Next moment I saw them spring apart and turn hurriedly round. + Stapleton was the cause of the interruption. He was running wildly + towards them, his absurd net dangling behind him. He gesticulated and + almost danced with excitement in front of the lovers. What the scene + meant I could not imagine, but it seemed to me that Stapleton was + abusing Sir Henry, who offered explanations, which became more angry + as the other refused to accept them. The lady stood by in haughty + silence. Finally Stapleton turned upon his heel and beckoned in a + peremptory way to his sister, who, after an irresolute glance at Sir + Henry, walked off by the side of her brother. The naturalist's angry + gestures showed that the lady was included in his displeasure. The + baronet stood for a minute looking after them, and then he walked + slowly back the way that he had come, his head hanging, the very + picture of dejection. + + What all this meant I could not imagine, but I was deeply ashamed to + have witnessed so intimate a scene without my friend's knowledge. I + ran down the hill therefore and met the baronet at the bottom. His + face was flushed with anger and his brows were wrinkled, like one who + is at his wit's ends what to do. + + "Halloa, Watson! Where have you dropped from?" said he. "You don't + mean to say that you came after me in spite of all?" + + I explained everything to him: how I had found it impossible to + remain behind, how I had followed him, and how I had witnessed all + that had occurred. For an instant his eyes blazed at me, but my + frankness disarmed his anger, and he broke at last into a rather + rueful laugh. + + "You would have thought the middle of that prairie a fairly safe + place for a man to be private," said he, "but, by thunder, the whole + country-side seems to have been out to see me do my wooing--and a + mighty poor wooing at that! Where had you engaged a seat?" + + "I was on that hill." + + "Quite in the back row, eh? But her brother was well up to the front. + Did you see him come out on us?" + + "Yes, I did." + + "Did he ever strike you as being crazy--this brother of hers?" + + "I can't say that he ever did." + + "I dare say not. I always thought him sane enough until to-day, but + you can take it from me that either he or I ought to be in a + strait-jacket. What's the matter with me, anyhow? You've lived near + me for some weeks, Watson. Tell me straight, now! Is there anything + that would prevent me from making a good husband to a woman that I + loved?" + + "I should say not." + + "He can't object to my worldly position, so it must be myself that he + has this down on. What has he against me? I never hurt man or woman + in my life that I know of. And yet he would not so much as let me + touch the tips of her fingers." + + "Did he say so?" + + "That, and a deal more. I tell you, Watson, I've only known her these + few weeks, but from the first I just felt that she was made for me, + and she, too--she was happy when she was with me, and that I'll + swear. There's a light in a woman's eyes that speaks louder than + words. But he has never let us get together, and it was only to-day + for the first time that I saw a chance of having a few words with her + alone. She was glad to meet me, but when she did it was not love that + she would talk about, and she wouldn't have let me talk about it + either if she could have stopped it. She kept coming back to it that + this was a place of danger, and that she would never be happy until I + had left it. I told her that since I had seen her I was in no hurry + to leave it, and that if she really wanted me to go, the only way to + work it was for her to arrange to go with me. With that I offered in + as many words to marry her, but before she could answer, down came + this brother of hers, running at us with a face on him like a madman. + He was just white with rage, and those light eyes of his were blazing + with fury. What was I doing with the lady? How dared I offer her + attentions which were distasteful to her? Did I think that because I + was a baronet I could do what I liked? If he had not been her brother + I should have known better how to answer him. As it was I told him + that my feelings towards his sister were such as I was not ashamed + of, and that I hoped that she might honour me by becoming my wife. + That seemed to make the matter no better, so then I lost my temper + too, and I answered him rather more hotly than I should perhaps, + considering that she was standing by. So it ended by his going off + with her, as you saw, and here am I as badly puzzled a man as any in + this county. Just tell me what it all means, Watson, and I'll owe you + more than ever I can hope to pay." + + I tried one or two explanations, but, indeed, I was completely + puzzled myself. Our friend's title, his fortune, his age, his + character, and his appearance are all in his favour, and I know + nothing against him unless it be this dark fate which runs in his + family. That his advances should be rejected so brusquely without any + reference to the lady's own wishes, and that the lady should accept + the situation without protest, is very amazing. However, our + conjectures were set at rest by a visit from Stapleton himself that + very afternoon. He had come to offer apologies for his rudeness of + the morning, and after a long private interview with Sir Henry in his + study, the upshot of their conversation was that the breach is quite + healed, and that we are to dine at Merripit House next Friday as a + sign of it. + + "I don't say now that he isn't a crazy man," said Sir Henry; "I can't + forget the look in his eyes when he ran at me this morning, but I + must allow that no man could make a more handsome apology than he has + done." + + "Did he give any explanation of his conduct?" + + "His sister is everything in his life, he says. That is natural + enough, and I am glad that he should understand her value. They have + always been together, and according to his account he has been a very + lonely man with only her as a companion, so that the thought of + losing her was really terrible to him. He had not understood, he + said, that I was becoming attached to her, but when he saw with his + own eyes that it was really so, and that she might be taken away from + him, it gave him such a shock that for a time he was not responsible + for what he said or did. He was very sorry for all that had passed, + and he recognized how foolish and how selfish it was that he should + imagine that he could hold a beautiful woman like his sister to + himself for her whole life. If she had to leave him he had rather it + was to a neighbour like myself than to anyone else. But in any case + it was a blow to him, and it would take him some time before he could + prepare himself to meet it. He would withdraw all opposition upon his + part if I would promise for three months to let the matter rest and + to be content with cultivating the lady's friendship during that time + without claiming her love. This I promised, and so the matter rests." + + So there is one of our small mysteries cleared up. It is something to + have touched bottom anywhere in this bog in which we are floundering. + We know now why Stapleton looked with disfavour upon his sister's + suitor--even when that suitor was so eligible a one as Sir Henry. And + now I pass on to another thread which I have extricated out of the + tangled skein, the mystery of the sobs in the night, of the + tear-stained face of Mrs. Barrymore, of the secret journey of the + butler to the western lattice window. Congratulate me, my dear + Holmes, and tell me that I have not disappointed you as an + agent--that you do not regret the confidence which you showed in me + when you sent me down. All these things have by one night's work been + thoroughly cleared. + + I have said "by one night's work," but, in truth, it was by two + nights' work, for on the first we drew entirely blank. I sat up with + Sir Henry in his rooms until nearly three o'clock in the morning, but + no sound of any sort did we hear except the chiming clock upon the + stairs. It was a most melancholy vigil, and ended by each of us + falling asleep in our chairs. Fortunately we were not discouraged, + and we determined to try again. The next night we lowered the lamp, + and sat smoking cigarettes without making the least sound. It was + incredible how slowly the hours crawled by, and yet we were helped + through it by the same sort of patient interest which the hunter must + feel as he watches the trap into which he hopes the game may wander. + One struck, and two, and we had almost for the second time given it + up in despair, when in an instant we both sat bolt upright in our + chairs, with all our weary senses keenly on the alert once more. We + had heard the creak of a step in the passage. + + Very stealthily we heard it pass along until it died away in the + distance. Then the baronet gently opened his door and we set out in + pursuit. Already our man had gone round the gallery, and the corridor + was all in darkness. Softly we stole along until we had come into the + other wing. We were just in time to catch a glimpse of the tall, + black-bearded figure, his shoulders rounded, as he tip-toed down the + passage. Then he passed through the same door as before, and the + light of the candle framed it in the darkness and shot one single + yellow beam across the gloom of the corridor. We shuffled cautiously + towards it, trying every plank before we dared to put our whole + weight upon it. We had taken the precaution of leaving our boots + behind us, but, even so, the old boards snapped and creaked beneath + our tread. Sometimes it seemed impossible that he should fail to hear + our approach. However, the man is fortunately rather deaf, and he was + entirely preoccupied in that which he was doing. When at last we + reached the door and peeped through we found him crouching at the + window, candle in hand, his white, intent face pressed against the + pane, exactly as I had seen him two nights before. + + We had arranged no plan of campaign, but the baronet is a man to whom + the most direct way is always the most natural. He walked into the + room, and as he did so Barrymore sprang up from the window with a + sharp hiss of his breath and stood, livid and trembling, before us. + His dark eyes, glaring out of the white mask of his face, were full + of horror and astonishment as he gazed from Sir Henry to me. + + "What are you doing here, Barrymore?" + + "Nothing, sir." His agitation was so great that he could hardly + speak, and the shadows sprang up and down from the shaking of his + candle. "It was the window, sir. I go round at night to see that they + are fastened." + + "On the second floor?" + + "Yes, sir, all the windows." + + "Look here, Barrymore," said Sir Henry, sternly; "we have made up our + minds to have the truth out of you, so it will save you trouble to + tell it sooner rather than later. Come, now! No lies! What were you + doing at that window?" + + The fellow looked at us in a helpless way, and he wrung his hands + together like one who is in the last extremity of doubt and misery. + + "I was doing no harm, sir. I was holding a candle to the window." + + "And why were you holding a candle to the window?" + + "Don't ask me, Sir Henry--don't ask me! I give you my word, sir, that + it is not my secret, and that I cannot tell it. If it concerned no + one but myself I would not try to keep it from you." + + A sudden idea occurred to me, and I took the candle from the + trembling hand of the butler. + + "He must have been holding it as a signal," said I. "Let us see if + there is any answer." I held it as he had done, and stared out into + the darkness of the night. Vaguely I could discern the black bank of + the trees and the lighter expanse of the moor, for the moon was + behind the clouds. And then I gave a cry of exultation, for a tiny + pin-point of yellow light had suddenly transfixed the dark veil, and + glowed steadily in the centre of the black square framed by the + window. + + "There it is!" I cried. + + "No, no, sir, it is nothing--nothing at all!" the butler broke in; "I + assure you, sir--" + + "Move your light across the window, Watson!" cried the baronet. "See, + the other moves also! Now, you rascal, do you deny that it is a + signal? Come, speak up! Who is your confederate out yonder, and what + is this conspiracy that is going on?" + + The man's face became openly defiant. + + "It is my business, and not yours. I will not tell." + + "Then you leave my employment right away." + + "Very good, sir. If I must I must." + + "And you go in disgrace. By thunder, you may well be ashamed of + yourself. Your family has lived with mine for over a hundred years + under this roof, and here I find you deep in some dark plot against + me." + + "No, no, sir; no, not against you!" It was a woman's voice, and Mrs. + Barrymore, paler and more horror-struck than her husband, was + standing at the door. Her bulky figure in a shawl and skirt might + have been comic were it not for the intensity of feeling upon her + face. + + "We have to go, Eliza. This is the end of it. You can pack our + things," said the butler. + + "Oh, John, John, have I brought you to this? It is my doing, Sir + Henry--all mine. He has done nothing except for my sake and because I + asked him." + + "Speak out, then! What does it mean?" + + "My unhappy brother is starving on the moor. We cannot let him perish + at our very gates. The light is a signal to him that food is ready + for him, and his light out yonder is to show the spot to which to + bring it." + + "Then your brother is--" + + "The escaped convict, sir--Selden, the criminal." + + "That's the truth, sir," said Barrymore. "I said that it was not my + secret and that I could not tell it to you. But now you have heard + it, and you will see that if there was a plot it was not against + you." + + This, then, was the explanation of the stealthy expeditions at night + and the light at the window. Sir Henry and I both stared at the woman + in amazement. Was it possible that this stolidly respectable person + was of the same blood as one of the most notorious criminals in the + country? + + "Yes, sir, my name was Selden, and he is my younger brother. We + humoured him too much when he was a lad, and gave him his own way in + everything until he came to think that the world was made for his + pleasure, and that he could do what he liked in it. Then as he grew + older he met wicked companions, and the devil entered into him until + he broke my mother's heart and dragged our name in the dirt. From + crime to crime he sank lower and lower, until it is only the mercy of + God which has snatched him from the scaffold; but to me, sir, he was + always the little curly-headed boy that I had nursed and played with, + as an elder sister would. That was why he broke prison, sir. He knew + that I was here and that we could not refuse to help him. When he + dragged himself here one night, weary and starving, with the warders + hard at his heels, what could we do? We took him in and fed him and + cared for him. Then you returned, sir, and my brother thought he + would be safer on the moor than anywhere else until the hue and cry + was over, so he lay in hiding there. But every second night we made + sure if he was still there by putting a light in the window, and if + there was an answer my husband took out some bread and meat to him. + Every day we hoped that he was gone, but as long as he was there we + could not desert him. That is the whole truth, as I am an honest + Christian woman, and you will see that if there is blame in the + matter it does not lie with my husband, but with me, for whose sake + he has done all that he has." + + The woman's words came with an intense earnestness which carried + conviction with them. + + "Is this true, Barrymore?" + + "Yes, Sir Henry. Every word of it." + + "Well, I cannot blame you for standing by your own wife. Forget what + I have said. Go to your room, you two, and we shall talk further + about this matter in the morning." + + When they were gone we looked out of the window again. Sir Henry had + flung it open, and the cold night wind beat in upon our faces. Far + away in the black distance there still glowed that one tiny point of + yellow light. + + "I wonder he dares," said Sir Henry. + + "It may be so placed as to be only visible from here." + + "Very likely. How far do you think it is?" + + "Out by the Cleft Tor, I think." + + "Not more than a mile or two off." + + "Hardly that." + + "Well, it cannot be far if Barrymore had to carry out the food to it. + And he is waiting, this villain, beside that candle. By thunder, + Watson, I am going out to take that man!" + + The same thought had crossed my own mind. It was not as if the + Barrymores had taken us into their confidence. Their secret had been + forced from them. The man was a danger to the community, an + unmitigated scoundrel for whom there was neither pity nor excuse. We + were only doing our duty in taking this chance of putting him back + where he could do no harm. With his brutal and violent nature, others + would have to pay the price if we held our hands. Any night, for + example, our neighbours the Stapletons might be attacked by him, and + it may have been the thought of this which made Sir Henry so keen + upon the adventure. + + "I will come," said I. + + "Then get your revolver and put on your boots. The sooner we start + the better, as the fellow may put out his light and be off." + + In five minutes we were outside the door, starting upon our + expedition. We hurried through the dark shrubbery, amid the dull + moaning of the autumn wind and the rustle of the falling leaves. The + night air was heavy with the smell of damp and decay. Now and again + the moon peeped out for an instant, but clouds were driving over the + face of the sky, and just as we came out on the moor a thin rain + began to fall. The light still burned steadily in front. + + "Are you armed?" I asked. + + "I have a hunting-crop." + + "We must close in on him rapidly, for he is said to be a desperate + fellow. We shall take him by surprise and have him at our mercy + before he can resist." + + "I say, Watson," said the baronet, "what would Holmes say to this? + How about that hour of darkness in which the power of evil is + exalted?" + + As if in answer to his words there rose suddenly out of the vast + gloom of the moor that strange cry which I had already heard upon the + borders of the great Grimpen Mire. It came with the wind through the + silence of the night, a long, deep mutter, then a rising howl, and + then the sad moan in which it died away. Again and again it sounded, + the whole air throbbing with it, strident, wild, and menacing. The + baronet caught my sleeve and his face glimmered white through the + darkness. + + "My God, what's that, Watson?" + + "I don't know. It's a sound they have on the moor. I heard it once + before." + + It died away, and an absolute silence closed in upon us. We stood + straining our ears, but nothing came. + + "Watson," said the baronet, "it was the cry of a hound." + + My blood ran cold in my veins, for there was a break in his voice + which told of the sudden horror which had seized him. + + "What do they call this sound?" he asked. + + "Who?" + + "The folk on the country-side." + + "Oh, they are ignorant people. Why should you mind what they call + it?" + + "Tell me, Watson. What do they say of it?" + + I hesitated but could not escape the question. + + "They say it is the cry of the Hound of the Baskervilles." + + He groaned and was silent for a few moments. + + "A hound it was," he said, at last, "but it seemed to come from miles + away, over yonder, I think." + + "It was hard to say whence it came." + + "It rose and fell with the wind. Isn't that the direction of the + great Grimpen Mire?" + + "Yes, it is." + + "Well, it was up there. Come now, Watson, didn't you think yourself + that it was the cry of a hound? I am not a child. You need not fear + to speak the truth." + + "Stapleton was with me when I heard it last. He said that it might be + the calling of a strange bird." + + "No, no, it was a hound. My God, can there be some truth in all these + stories? Is it possible that I am really in danger from so dark a + cause? You don't believe it, do you, Watson?" + + "No, no." + + "And yet it was one thing to laugh about it in London, and it is + another to stand out here in the darkness of the moor and to hear + such a cry as that. And my uncle! There was the footprint of the + hound beside him as he lay. It all fits together. I don't think that + I am a coward, Watson, but that sound seemed to freeze my very blood. + Feel my hand!" + + It was as cold as a block of marble. + + "You'll be all right to-morrow." + + "I don't think I'll get that cry out of my head. What do you advise + that we do now?" + + "Shall we turn back?" + + "No, by thunder; we have come out to get our man, and we will do it. + We after the convict, and a hell-hound, as likely as not, after us. + Come on! We'll see it through if all the fiends of the pit were loose + upon the moor." + + We stumbled slowly along in the darkness, with the black loom of the + craggy hills around us, and the yellow speck of light burning + steadily in front. There is nothing so deceptive as the distance of a + light upon a pitch-dark night, and sometimes the glimmer seemed to be + far away upon the horizon and sometimes it might have been within a + few yards of us. But at last we could see whence it came, and then we + knew that we were indeed very close. A guttering candle was stuck in + a crevice of the rocks which flanked it on each side so as to keep + the wind from it and also to prevent it from being visible, save in + the direction of Baskerville Hall. A boulder of granite concealed our + approach, and crouching behind it we gazed over it at the signal + light. It was strange to see this single candle burning there in the + middle of the moor, with no sign of life near it--just the one + straight yellow flame and the gleam of the rock on each side of it. + + "What shall we do now?" whispered Sir Henry. + + "Wait here. He must be near his light. Let us see if we can get a + glimpse of him." + + The words were hardly out of my mouth when we both saw him. Over the + rocks, in the crevice of which the candle burned, there was thrust + out an evil yellow face, a terrible animal face, all seamed and + scored with vile passions. Foul with mire, with a bristling beard, + and hung with matted hair, it might well have belonged to one of + those old savages who dwelt in the burrows on the hillsides. The + light beneath him was reflected in his small, cunning eyes which + peered fiercely to right and left through the darkness, like a crafty + and savage animal who has heard the steps of the hunters. + + Something had evidently aroused his suspicions. It may have been that + Barrymore had some private signal which we had neglected to give, or + the fellow may have had some other reason for thinking that all was + not well, but I could read his fears upon his wicked face. Any + instant he might dash out the light and vanish in the darkness. I + sprang forward therefore, and Sir Henry did the same. At the same + moment the convict screamed out a curse at us and hurled a rock which + splintered up against the boulder which had sheltered us. I caught + one glimpse of his short, squat, strongly-built figure as he sprang + to his feet and turned to run. At the same moment by a lucky chance + the moon broke through the clouds. We rushed over the brow of the + hill, and there was our man running with great speed down the other + side, springing over the stones in his way with the activity of a + mountain goat. A lucky long shot of my revolver might have crippled + him, but I had brought it only to defend myself if attacked, and not + to shoot an unarmed man who was running away. + + We were both swift runners and in fairly good training, but we soon + found that we had no chance of overtaking him. We saw him for a long + time in the moonlight until he was only a small speck moving swiftly + among the boulders upon the side of a distant hill. We ran and ran + until we were completely blown, but the space between us grew ever + wider. Finally we stopped and sat panting on two rocks, while we + watched him disappearing in the distance. + + And it was at this moment that there occurred a most strange and + unexpected thing. We had risen from our rocks and were turning to go + home, having abandoned the hopeless chase. The moon was low upon the + right, and the jagged pinnacle of a granite tor stood up against the + lower curve of its silver disc. There, outlined as black as an ebony + statue on that shining back-ground, I saw the figure of a man upon + the tor. Do not think that it was a delusion, Holmes. I assure you + that I have never in my life seen anything more clearly. As far as I + could judge, the figure was that of a tall, thin man. He stood with + his legs a little separated, his arms folded, his head bowed, as if + he were brooding over that enormous wilderness of peat and granite + which lay before him. He might have been the very spirit of that + terrible place. It was not the convict. This man was far from the + place where the latter had disappeared. Besides, he was a much taller + man. With a cry of surprise I pointed him out to the baronet, but in + the instant during which I had turned to grasp his arm the man was + gone. There was the sharp pinnacle of granite still cutting the lower + edge of the moon, but its peak bore no trace of that silent and + motionless figure. + + I wished to go in that direction and to search the tor, but it was + some distance away. The baronet's nerves were still quivering from + that cry, which recalled the dark story of his family, and he was not + in the mood for fresh adventures. He had not seen this lonely man + upon the tor and could not feel the thrill which his strange presence + and his commanding attitude had given to me. "A warder, no doubt," + said he. "The moor has been thick with them since this fellow + escaped." Well, perhaps his explanation may be the right one, but I + should like to have some further proof of it. To-day we mean to + communicate to the Princetown people where they should look for their + missing man, but it is hard lines that we have not actually had the + triumph of bringing him back as our own prisoner. Such are the + adventures of last night, and you must acknowledge, my dear Holmes, + that I have done you very well in the matter of a report. Much of + what I tell you is no doubt quite irrelevant, but still I feel that + it is best that I should let you have all the facts and leave you to + select for yourself those which will be of most service to you in + helping you to your conclusions. We are certainly making some + progress. So far as the Barrymores go we have found the motive of + their actions, and that has cleared up the situation very much. But + the moor with its mysteries and its strange inhabitants remains as + inscrutable as ever. Perhaps in my next I may be able to throw some + light upon this also. Best of all would it be if you could come down + to us. In any case you will hear from me again in the course of the + next few days. + + + + + + CHAPTER X + Extract from the Diary of Dr. Watson + + + So far I have been able to quote from the reports which I have + forwarded during these early days to Sherlock Holmes. Now, however, I + have arrived at a point in my narrative where I am compelled to + abandon this method and to trust once more to my recollections, aided + by the diary which I kept at the time. A few extracts from the latter + will carry me on to those scenes which are indelibly fixed in every + detail upon my memory. I proceed, then, from the morning which + followed our abortive chase of the convict and our other strange + experiences upon the moor. + + October 16th.--A dull and foggy day with a drizzle of rain. The house + is banked in with rolling clouds, which rise now and then to show the + dreary curves of the moor, with thin, silver veins upon the sides of + the hills, and the distant boulders gleaming where the light strikes + upon their wet faces. It is melancholy outside and in. The baronet is + in a black reaction after the excitements of the night. I am + conscious myself of a weight at my heart and a feeling of impending + danger--ever present danger, which is the more terrible because I am + unable to define it. + + And have I not cause for such a feeling? Consider the long sequence + of incidents which have all pointed to some sinister influence which + is at work around us. There is the death of the last occupant of the + Hall, fulfilling so exactly the conditions of the family legend, and + there are the repeated reports from peasants of the appearance of a + strange creature upon the moor. Twice I have with my own ears heard + the sound which resembled the distant baying of a hound. It is + incredible, impossible, that it should really be outside the ordinary + laws of nature. A spectral hound which leaves material footmarks and + fills the air with its howling is surely not to be thought of. + Stapleton may fall in with such a superstition, and Mortimer also; + but if I have one quality upon earth it is common-sense, and nothing + will persuade me to believe in such a thing. To do so would be to + descend to the level of these poor peasants, who are not content with + a mere fiend dog but must needs describe him with hell-fire shooting + from his mouth and eyes. Holmes would not listen to such fancies, and + I am his agent. But facts are facts, and I have twice heard this + crying upon the moor. Suppose that there were really some huge hound + loose upon it; that would go far to explain everything. But where + could such a hound lie concealed, where did it get its food, where + did it come from, how was it that no one saw it by day? It must be + confessed that the natural explanation offers almost as many + difficulties as the other. And always, apart from the hound, there is + the fact of the human agency in London, the man in the cab, and the + letter which warned Sir Henry against the moor. This at least was + real, but it might have been the work of a protecting friend as + easily as of an enemy. Where is that friend or enemy now? Has he + remained in London, or has he followed us down here? Could he--could + he be the stranger whom I saw upon the tor? + + It is true that I have had only the one glance at him, and yet there + are some things to which I am ready to swear. He is no one whom I + have seen down here, and I have now met all the neighbours. The + figure was far taller than that of Stapleton, far thinner than that + of Frankland. Barrymore it might possibly have been, but we had left + him behind us, and I am certain that he could not have followed us. A + stranger then is still dogging us, just as a stranger dogged us in + London. We have never shaken him off. If I could lay my hands upon + that man, then at last we might find ourselves at the end of all our + difficulties. To this one purpose I must now devote all my energies. + + My first impulse was to tell Sir Henry all my plans. My second and + wisest one is to play my own game and speak as little as possible to + anyone. He is silent and distrait. His nerves have been strangely + shaken by that sound upon the moor. I will say nothing to add to his + anxieties, but I will take my own steps to attain my own end. + + We had a small scene this morning after breakfast. Barrymore asked + leave to speak with Sir Henry, and they were closeted in his study + some little time. Sitting in the billiard-room I more than once heard + the sound of voices raised, and I had a pretty good idea what the + point was which was under discussion. After a time the baronet opened + his door and called for me. + + "Barrymore considers that he has a grievance," he said. "He thinks + that it was unfair on our part to hunt his brother-in-law down when + he, of his own free will, had told us the secret." + + The butler was standing very pale but very collected before us. + + "I may have spoken too warmly, sir," said he, "and if I have, I am + sure that I beg your pardon. At the same time, I was very much + surprised when I heard you two gentlemen come back this morning and + learned that you had been chasing Selden. The poor fellow has enough + to fight against without my putting more upon his track." + + "If you had told us of your own free will it would have been a + different thing," said the baronet, "you only told us, or rather your + wife only told us, when it was forced from you and you could not help + yourself." + + "I didn't think you would have taken advantage of it, Sir + Henry--indeed I didn't." + + "The man is a public danger. There are lonely houses scattered over + the moor, and he is a fellow who would stick at nothing. You only + want to get a glimpse of his face to see that. Look at Mr. + Stapleton's house, for example, with no one but himself to defend it. + There's no safety for anyone until he is under lock and key." + + "He'll break into no house, sir. I give you my solemn word upon that. + But he will never trouble anyone in this country again. I assure you, + Sir Henry, that in a very few days the necessary arrangements will + have been made and he will be on his way to South America. For God's + sake, sir, I beg of you not to let the police know that he is still + on the moor. They have given up the chase there, and he can lie quiet + until the ship is ready for him. You can't tell on him without + getting my wife and me into trouble. I beg you, sir, to say nothing + to the police." + + "What do you say, Watson?" + + I shrugged my shoulders. "If he were safely out of the country it + would relieve the tax-payer of a burden." + + "But how about the chance of his holding someone up before he goes?" + + "He would not do anything so mad, sir. We have provided him with all + that he can want. To commit a crime would be to show where he was + hiding." + + "That is true," said Sir Henry. "Well, Barrymore--" + + "God bless you, sir, and thank you from my heart! It would have + killed my poor wife had he been taken again." + + "I guess we are aiding and abetting a felony, Watson? But, after what + we have heard I don't feel as if I could give the man up, so there is + an end of it. All right, Barrymore, you can go." + + With a few broken words of gratitude the man turned, but he hesitated + and then came back. + + "You've been so kind to us, sir, that I should like to do the best I + can for you in return. I know something, Sir Henry, and perhaps I + should have said it before, but it was long after the inquest that I + found it out. I've never breathed a word about it yet to mortal man. + It's about poor Sir Charles's death." + + The baronet and I were both upon our feet. "Do you know how he died?" + + "No, sir, I don't know that." + + "What then?" + + "I know why he was at the gate at that hour. It was to meet a woman." + + "To meet a woman! He?" + + "Yes, sir." + + "And the woman's name?" + + "I can't give you the name, sir, but I can give you the initials. Her + initials were L. L." + + "How do you know this, Barrymore?" + + "Well, Sir Henry, your uncle had a letter that morning. He had + usually a great many letters, for he was a public man and well known + for his kind heart, so that everyone who was in trouble was glad to + turn to him. But that morning, as it chanced, there was only this one + letter, so I took the more notice of it. It was from Coombe Tracey, + and it was addressed in a woman's hand." + + "Well?" + + "Well, sir, I thought no more of the matter, and never would have + done had it not been for my wife. Only a few weeks ago she was + cleaning out Sir Charles's study--it had never been touched since his + death--and she found the ashes of a burned letter in the back of the + grate. The greater part of it was charred to pieces, but one little + slip, the end of a page, hung together, and the writing could still + be read, though it was gray on a black ground. It seemed to us to be + a postscript at the end of the letter, and it said: 'Please, please, + as you are a gentleman, burn this letter, and be at the gate by ten + o'clock'. Beneath it were signed the initials L. L." + + "Have you got that slip?" + + "No, sir, it crumbled all to bits after we moved it." + + "Had Sir Charles received any other letters in the same writing?" + + "Well, sir, I took no particular notice of his letters. I should not + have noticed this one, only it happened to come alone." + + "And you have no idea who L. L. is?" + + "No, sir. No more than you have. But I expect if we could lay our + hands upon that lady we should know more about Sir Charles's death." + + "I cannot understand, Barrymore, how you came to conceal this + important information." + + "Well, sir, it was immediately after that our own trouble came to us. + And then again, sir, we were both of us very fond of Sir Charles, as + we well might be considering all that he has done for us. To rake + this up couldn't help our poor master, and it's well to go carefully + when there's a lady in the case. Even the best of us--" + + "You thought it might injure his reputation?" + + "Well, sir, I thought no good could come of it. But now you have been + kind to us, and I feel as if it would be treating you unfairly not to + tell you all that I know about the matter." + + "Very good, Barrymore; you can go." When the butler had left us Sir + Henry turned to me. "Well, Watson, what do you think of this new + light?" + + "It seems to leave the darkness rather blacker than before." + + "So I think. But if we can only trace L. L. it should clear up the + whole business. We have gained that much. We know that there is + someone who has the facts if we can only find her. What do you think + we should do?" + + "Let Holmes know all about it at once. It will give him the clue for + which he has been seeking. I am much mistaken if it does not bring + him down." + + I went at once to my room and drew up my report of the morning's + conversation for Holmes. It was evident to me that he had been very + busy of late, for the notes which I had from Baker Street were few + and short, with no comments upon the information which I had supplied + and hardly any reference to my mission. No doubt his blackmailing + case is absorbing all his faculties. And yet this new factor must + surely arrest his attention and renew his interest. I wish that he + were here. + + October 17th.--All day to-day the rain poured down, rustling on the + ivy and dripping from the eaves. I thought of the convict out upon + the bleak, cold, shelterless moor. Poor devil! Whatever his crimes, + he has suffered something to atone for them. And then I thought of + that other one--the face in the cab, the figure against the moon. Was + he also out in that deluged--the unseen watcher, the man of darkness? + In the evening I put on my waterproof and I walked far upon the + sodden moor, full of dark imaginings, the rain beating upon my face + and the wind whistling about my ears. God help those who wander into + the great mire now, for even the firm uplands are becoming a morass. + I found the black tor upon which I had seen the solitary watcher, and + from its craggy summit I looked out myself across the melancholy + downs. Rain squalls drifted across their russet face, and the heavy, + slate-coloured clouds hung low over the landscape, trailing in gray + wreaths down the sides of the fantastic hills. In the distant hollow + on the left, half hidden by the mist, the two thin towers of + Baskerville Hall rose above the trees. They were the only signs of + human life which I could see, save only those prehistoric huts which + lay thickly upon the slopes of the hills. Nowhere was there any trace + of that lonely man whom I had seen on the same spot two nights + before. + + As I walked back I was overtaken by Dr. Mortimer driving in his + dog-cart over a rough moorland track which led from the outlying + farmhouse of Foulmire. He has been very attentive to us, and hardly a + day has passed that he has not called at the Hall to see how we were + getting on. He insisted upon my climbing into his dog-cart, and he + gave me a lift homeward. I found him much troubled over the + disappearance of his little spaniel. It had wandered on to the moor + and had never come back. I gave him such consolation as I might, but + I thought of the pony on the Grimpen Mire, and I do not fancy that he + will see his little dog again. + + "By the way, Mortimer," said I as we jolted along the rough road, "I + suppose there are few people living within driving distance of this + whom you do not know?" + + "Hardly any, I think." + + "Can you, then, tell me the name of any woman whose initials are L. + L.?" + + He thought for a few minutes. + + "No," said he. "There are a few gipsies and labouring folk for whom I + can't answer, but among the farmers or gentry there is no one whose + initials are those. Wait a bit though," he added after a pause. + "There is Laura Lyons--her initials are L. L.--but she lives in + Coombe Tracey." + + "Who is she?" I asked. + + "She is Frankland's daughter." + + "What! Old Frankland the crank?" + + "Exactly. She married an artist named Lyons, who came sketching on + the moor. He proved to be a blackguard and deserted her. The fault + from what I hear may not have been entirely on one side. Her father + refused to have anything to do with her because she had married + without his consent, and perhaps for one or two other reasons as + well. So, between the old sinner and the young one the girl has had a + pretty bad time." + + "How does she live?" + + "I fancy old Frankland allows her a pittance, but it cannot be more, + for his own affairs are considerably involved. Whatever she may have + deserved one could not allow her to go hopelessly to the bad. Her + story got about, and several of the people here did something to + enable her to earn an honest living. Stapleton did for one, and Sir + Charles for another. I gave a trifle myself. It was to set her up in + a typewriting business." + + He wanted to know the object of my inquiries, but I managed to + satisfy his curiosity without telling him too much, for there is no + reason why we should take anyone into our confidence. To-morrow + morning I shall find my way to Coombe Tracey, and if I can see this + Mrs. Laura Lyons, of equivocal reputation, a long step will have been + made towards clearing one incident in this chain of mysteries. I am + certainly developing the wisdom of the serpent, for when Mortimer + pressed his questions to an inconvenient extent I asked him casually + to what type Frankland's skull belonged, and so heard nothing but + craniology for the rest of our drive. I have not lived for years with + Sherlock Holmes for nothing. + + I have only one other incident to record upon this tempestuous and + melancholy day. This was my conversation with Barrymore just now, + which gives me one more strong card which I can play in due time. + + Mortimer had stayed to dinner, and he and the baronet played écarté + afterwards. The butler brought me my coffee into the library, and I + took the chance to ask him a few questions. + + "Well," said I, "has this precious relation of yours departed, or is + he still lurking out yonder?" + + "I don't know, sir. I hope to heaven that he has gone, for he has + brought nothing but trouble here! I've not heard of him since I left + out food for him last, and that was three days ago." + + "Did you see him then?" + + "No, sir, but the food was gone when next I went that way." + + "Then he was certainly there?" + + "So you would think, sir, unless it was the other man who took it." + + I sat with my coffee-cup halfway to my lips and stared at Barrymore. + + "You know that there is another man then?" + + "Yes, sir; there is another man upon the moor." + + "Have you seen him?" + + "No, sir." + + "How do you know of him then?" + + "Selden told me of him, sir, a week ago or more. He's in hiding, too, + but he's not a convict as far as I can make out. I don't like it, Dr. + Watson--I tell you straight, sir, that I don't like it." He spoke + with a sudden passion of earnestness. + + "Now, listen to me, Barrymore! I have no interest in this matter but + that of your master. I have come here with no object except to help + him. Tell me, frankly, what it is that you don't like." + + Barrymore hesitated for a moment, as if he regretted his outburst, or + found it difficult to express his own feelings in words. + + "It's all these goings-on, sir," he cried at last, waving his hand + towards the rain-lashed window which faced the moor. "There's foul + play somewhere, and there's black villainy brewing, to that I'll + swear! Very glad I should be, sir, to see Sir Henry on his way back + to London again!" + + "But what is it that alarms you?" + + "Look at Sir Charles's death! That was bad enough, for all that the + coroner said. Look at the noises on the moor at night. There's not a + man would cross it after sundown if he was paid for it. Look at this + stranger hiding out yonder, and watching and waiting! What's he + waiting for? What does it mean? It means no good to anyone of the + name of Baskerville, and very glad I shall be to be quit of it all on + the day that Sir Henry's new servants are ready to take over the + Hall." + + "But about this stranger," said I. "Can you tell me anything about + him? What did Selden say? Did he find out where he hid, or what he + was doing?" + + "He saw him once or twice, but he is a deep one, and gives nothing + away. At first he thought that he was the police, but soon he found + that he had some lay of his own. A kind of gentleman he was, as far + as he could see, but what he was doing he could not make out." + + "And where did he say that he lived?" + + "Among the old houses on the hillside--the stone huts where the old + folk used to live." + + "But how about his food?" + + "Selden found out that he has got a lad who works for him and brings + him all he needs. I dare say he goes to Coombe Tracey for what he + wants." + + "Very good, Barrymore. We may talk further of this some other time." + When the butler had gone I walked over to the black window, and I + looked through a blurred pane at the driving clouds and at the + tossing outline of the wind-swept trees. It is a wild night indoors, + and what must it be in a stone hut upon the moor. What passion of + hatred can it be which leads a man to lurk in such a place at such a + time! And what deep and earnest purpose can he have which calls for + such a trial! There, in that hut upon the moor, seems to lie the very + centre of that problem which has vexed me so sorely. I swear that + another day shall not have passed before I have done all that man can + do to reach the heart of the mystery. + + + + + + CHAPTER XI + The Man on the Tor + + + The extract from my private diary which forms the last chapter has + brought my narrative up to the 18th of October, a time when these + strange events began to move swiftly towards their terrible + conclusion. The incidents of the next few days are indelibly graven + upon my recollection, and I can tell them without reference to the + notes made at the time. I start then from the day which succeeded + that upon which I had established two facts of great importance, the + one that Mrs. Laura Lyons of Coombe Tracey had written to Sir Charles + Baskerville and made an appointment with him at the very place and + hour that he met his death, the other that the lurking man upon the + moor was to be found among the stone huts upon the hill-side. With + these two facts in my possession I felt that either my intelligence + or my courage must be deficient if I could not throw some further + light upon these dark places. + + I had no opportunity to tell the baronet what I had learned about + Mrs. Lyons upon the evening before, for Dr. Mortimer remained with + him at cards until it was very late. At breakfast, however, I + informed him about my discovery, and asked him whether he would care + to accompany me to Coombe Tracey. At first he was very eager to come, + but on second thoughts it seemed to both of us that if I went alone + the results might be better. The more formal we made the visit the + less information we might obtain. I left Sir Henry behind, therefore, + not without some prickings of conscience, and drove off upon my new + quest. + + When I reached Coombe Tracey I told Perkins to put up the horses, and + I made inquiries for the lady whom I had come to interrogate. I had + no difficulty in finding her rooms, which were central and well + appointed. A maid showed me in without ceremony, and as I entered the + sitting-room a lady, who was sitting before a Remington typewriter, + sprang up with a pleasant smile of welcome. Her face fell, however, + when she saw that I was a stranger, and she sat down again and asked + me the object of my visit. + + The first impression left by Mrs. Lyons was one of extreme beauty. + Her eyes and hair were of the same rich hazel colour, and her cheeks, + though considerably freckled, were flushed with the exquisite bloom + of the brunette, the dainty pink which lurks at the heart of the + sulphur rose. Admiration was, I repeat, the first impression. But the + second was criticism. There was something subtly wrong with the face, + some coarseness of expression, some hardness, perhaps, of eye, some + looseness of lip which marred its perfect beauty. But these, of + course, are after-thoughts. At the moment I was simply conscious that + I was in the presence of a very handsome woman, and that she was + asking me the reasons for my visit. I had not quite understood until + that instant how delicate my mission was. + + "I have the pleasure," said I, "of knowing your father." It was a + clumsy introduction, and the lady made me feel it. + + "There is nothing in common between my father and me," she said. "I + owe him nothing, and his friends are not mine. If it were not for the + late Sir Charles Baskerville and some other kind hearts I might have + starved for all that my father cared." + + "It was about the late Sir Charles Baskerville that I have come here + to see you." + + The freckles started out on the lady's face. + + "What can I tell you about him?" she asked, and her fingers played + nervously over the stops of her typewriter. + + "You knew him, did you not?" + + "I have already said that I owe a great deal to his kindness. If I am + able to support myself it is largely due to the interest which he + took in my unhappy situation." + + "Did you correspond with him?" + + The lady looked quickly up with an angry gleam in her hazel eyes. + + "What is the object of these questions?" she asked sharply. + + "The object is to avoid a public scandal. It is better that I should + ask them here than that the matter should pass outside our control." + + She was silent and her face was still very pale. At last she looked + up with something reckless and defiant in her manner. + + "Well, I'll answer," she said. "What are your questions?" + + "Did you correspond with Sir Charles?" + + "I certainly wrote to him once or twice to acknowledge his delicacy + and his generosity." + + "Have you the dates of those letters?" + + "No." + + "Have you ever met him?" + + "Yes, once or twice, when he came into Coombe Tracey. He was a very + retiring man, and he preferred to do good by stealth." + + "But if you saw him so seldom and wrote so seldom, how did he know + enough about your affairs to be able to help you, as you say that he + has done?" + + She met my difficulty with the utmost readiness. + + "There were several gentlemen who knew my sad history and united to + help me. One was Mr. Stapleton, a neighbour and intimate friend of + Sir Charles's. He was exceedingly kind, and it was through him that + Sir Charles learned about my affairs." + + I knew already that Sir Charles Baskerville had made Stapleton his + almoner upon several occasions, so the lady's statement bore the + impress of truth upon it. + + "Did you ever write to Sir Charles asking him to meet you?" I + continued. + + Mrs. Lyons flushed with anger again. + + "Really, sir, this is a very extraordinary question." + + "I am sorry, madam, but I must repeat it." + + "Then I answer, certainly not." + + "Not on the very day of Sir Charles's death?" + + The flush had faded in an instant, and a deathly face was before me. + Her dry lips could not speak the "No" which I saw rather than heard. + + "Surely your memory deceives you," said I. "I could even quote a + passage of your letter. It ran 'Please, please, as you are a + gentleman, burn this letter, and be at the gate by ten o'clock.'" + + I thought that she had fainted, but she recovered herself by a + supreme effort. + + "Is there no such thing as a gentleman?" she gasped. + + "You do Sir Charles an injustice. He did burn the letter. But + sometimes a letter may be legible even when burned. You acknowledge + now that you wrote it?" + + "Yes, I did write it," she cried, pouring out her soul in a torrent + of words. "I did write it. Why should I deny it? I have no reason to + be ashamed of it. I wished him to help me. I believed that if I had + an interview I could gain his help, so I asked him to meet me." + + "But why at such an hour?" + + "Because I had only just learned that he was going to London next day + and might be away for months. There were reasons why I could not get + there earlier." + + "But why a rendezvous in the garden instead of a visit to the house?" + + "Do you think a woman could go alone at that hour to a bachelor's + house?" + + "Well, what happened when you did get there?" + + "I never went." + + "Mrs. Lyons!" + + "No, I swear it to you on all I hold sacred. I never went. Something + intervened to prevent my going." + + "What was that?" + + "That is a private matter. I cannot tell it." + + "You acknowledge then that you made an appointment with Sir Charles + at the very hour and place at which he met his death, but you deny + that you kept the appointment." + + "That is the truth." + + Again and again I cross-questioned her, but I could never get past + that point. + + "Mrs. Lyons," said I, as I rose from this long and inconclusive + interview, "you are taking a very great responsibility and putting + yourself in a very false position by not making an absolutely clean + breast of all that you know. If I have to call in the aid of the + police you will find how seriously you are compromised. If your + position is innocent, why did you in the first instance deny having + written to Sir Charles upon that date?" + + "Because I feared that some false conclusion might be drawn from it + and that I might find myself involved in a scandal." + + "And why were you so pressing that Sir Charles should destroy your + letter?" + + "If you have read the letter you will know." + + "I did not say that I had read all the letter." + + "You quoted some of it." + + "I quoted the postscript. The letter had, as I said, been burned and + it was not all legible. I ask you once again why it was that you were + so pressing that Sir Charles should destroy this letter which he + received on the day of his death." + + "The matter is a very private one." + + "The more reason why you should avoid a public investigation." + + "I will tell you, then. If you have heard anything of my unhappy + history you will know that I made a rash marriage and had reason to + regret it." + + "I have heard so much." + + "My life has been one incessant persecution from a husband whom I + abhor. The law is upon his side, and every day I am faced by the + possibility that he may force me to live with him. At the time that I + wrote this letter to Sir Charles I had learned that there was a + prospect of my regaining my freedom if certain expenses could be met. + It meant everything to me--peace of mind, happiness, + self-respect--everything. I knew Sir Charles's generosity, and I + thought that if he heard the story from my own lips he would help + me." + + "Then how is it that you did not go?" + + "Because I received help in the interval from another source." + + "Why then, did you not write to Sir Charles and explain this?" + + "So I should have done had I not seen his death in the paper next + morning." + + The woman's story hung coherently together, and all my questions were + unable to shake it. I could only check it by finding if she had, + indeed, instituted divorce proceedings against her husband at or + about the time of the tragedy. + + It was unlikely that she would dare to say that she had not been to + Baskerville Hall if she really had been, for a trap would be + necessary to take her there, and could not have returned to Coombe + Tracey until the early hours of the morning. Such an excursion could + not be kept secret. The probability was, therefore, that she was + telling the truth, or, at least, a part of the truth. I came away + baffled and disheartened. Once again I had reached that dead wall + which seemed to be built across every path by which I tried to get at + the object of my mission. And yet the more I thought of the lady's + face and of her manner the more I felt that something was being held + back from me. Why should she turn so pale? Why should she fight + against every admission until it was forced from her? Why should she + have been so reticent at the time of the tragedy? Surely the + explanation of all this could not be as innocent as she would have me + believe. For the moment I could proceed no farther in that direction, + but must turn back to that other clue which was to be sought for + among the stone huts upon the moor. + + And that was a most vague direction. I realized it as I drove back + and noted how hill after hill showed traces of the ancient people. + Barrymore's only indication had been that the stranger lived in one + of these abandoned huts, and many hundreds of them are scattered + throughout the length and breadth of the moor. But I had my own + experience for a guide since it had shown me the man himself standing + upon the summit of the Black Tor. That then should be the centre of + my search. From there I should explore every hut upon the moor until + I lighted upon the right one. If this man were inside it I should + find out from his own lips, at the point of my revolver if necessary, + who he was and why he had dogged us so long. He might slip away from + us in the crowd of Regent Street, but it would puzzle him to do so + upon the lonely moor. On the other hand, if I should find the hut and + its tenant should not be within it I must remain there, however long + the vigil, until he returned. Holmes had missed him in London. It + would indeed be a triumph for me if I could run him to earth, where + my master had failed. + + Luck had been against us again and again in this inquiry, but now at + last it came to my aid. And the messenger of good fortune was none + other than Mr. Frankland, who was standing, gray-whiskered and + red-faced, outside the gate of his garden, which opened on to the + high road along which I travelled. + + "Good-day, Dr. Watson," cried he with unwonted good humour, "you must + really give your horses a rest, and come in to have a glass of wine + and to congratulate me." + + My feelings towards him were very far from being friendly after what + I had heard of his treatment of his daughter, but I was anxious to + send Perkins and the wagonette home, and the opportunity was a good + one. I alighted and sent a message to Sir Henry that I should walk + over in time for dinner. Then I followed Frankland into his + dining-room. + + "It is a great day for me, sir--one of the red-letter days of my + life," he cried with many chuckles. "I have brought off a double + event. I mean to teach them in these parts that law is law, and that + there is a man here who does not fear to invoke it. I have + established a right of way through the centre of old Middleton's + park, slap across it, sir, within a hundred yards of his own front + door. What do you think of that? We'll teach these magnates that they + cannot ride roughshod over the rights of the commoners, confound + them! And I've closed the wood where the Fernworthy folk used to + picnic. These infernal people seem to think that there are no rights + of property, and that they can swarm where they like with their + papers and their bottles. Both cases decided, Dr. Watson, and both in + my favour. I haven't had such a day since I had Sir John Morland for + trespass, because he shot in his own warren." + + "How on earth did you do that?" + + "Look it up in the books, sir. It will repay reading--Frankland v. + Morland, Court of Queen's Bench. It cost me 200 pounds, but I got my + verdict." + + "Did it do you any good?" + + "None, sir, none. I am proud to say that I had no interest in the + matter. I act entirely from a sense of public duty. I have no doubt, + for example, that the Fernworthy people will burn me in effigy + to-night. I told the police last time they did it that they should + stop these disgraceful exhibitions. The County Constabulary is in a + scandalous state, sir, and it has not afforded me the protection to + which I am entitled. The case of Frankland v. Regina will bring the + matter before the attention of the public. I told them that they + would have occasion to regret their treatment of me, and already my + words have come true." + + "How so?" I asked. + + The old man put on a very knowing expression. + + "Because I could tell them what they are dying to know; but nothing + would induce me to help the rascals in any way." + + I had been casting round for some excuse by which I could get away + from his gossip, but now I began to wish to hear more of it. I had + seen enough of the contrary nature of the old sinner to understand + that any strong sign of interest would be the surest way to stop his + confidences. + + "Some poaching case, no doubt?" said I, with an indifferent manner. + + "Ha, ha, my boy, a very much more important matter than that! What + about the convict on the moor?" + + I started. "You don't mean that you know where he is?" said I. + + "I may not know exactly where he is, but I am quite sure that I could + help the police to lay their hands on him. Has it never struck you + that the way to catch that man was to find out where he got his food, + and so trace it to him?" + + He certainly seemed to be getting uncomfortably near the truth. "No + doubt," said I; "but how do you know that he is anywhere upon the + moor?" + + "I know it because I have seen with my own eyes the messenger who + takes him his food." + + My heart sank for Barrymore. It was a serious thing to be in the + power of this spiteful old busybody. But his next remark took a + weight from my mind. + + "You'll be surprised to hear that his food is taken to him by a + child. I see him every day through my telescope upon the roof. He + passes along the same path at the same hour, and to whom should he be + going except to the convict?" + + Here was luck indeed! And yet I suppressed all appearance of + interest. A child! Barrymore had said that our unknown was supplied + by a boy. It was on his track, and not upon the convict's, that + Frankland had stumbled. If I could get his knowledge it might save me + a long and weary hunt. But incredulity and indifference were + evidently my strongest cards. + + "I should say that it was much more likely that it was the son of one + of the moorland shepherds taking out his father's dinner." + + The least appearance of opposition struck fire out of the old + autocrat. His eyes looked malignantly at me, and his gray whiskers + bristled like those of an angry cat. + + "Indeed, sir!" said he, pointing out over the wide-stretching moor. + "Do you see that Black Tor over yonder? Well, do you see the low hill + beyond with the thornbush upon it? It is the stoniest part of the + whole moor. Is that a place where a shepherd would be likely to take + his station? Your suggestion, sir, is a most absurd one." + + I meekly answered that I had spoken without knowing all the facts. My + submission pleased him and led him to further confidences. + + "You may be sure, sir, that I have very good grounds before I come to + an opinion. I have seen the boy again and again with his bundle. + Every day, and sometimes twice a day, I have been able--but wait a + moment, Dr. Watson. Do my eyes deceive me, or is there at the present + moment something moving upon that hill-side?" + + It was several miles off, but I could distinctly see a small dark dot + against the dull green and gray. + + "Come, sir, come!" cried Frankland, rushing upstairs. "You will see + with your own eyes and judge for yourself." + + The telescope, a formidable instrument mounted upon a tripod, stood + upon the flat leads of the house. Frankland clapped his eye to it and + gave a cry of satisfaction. + + "Quick, Dr. Watson, quick, before he passes over the hill!" + + There he was, sure enough, a small urchin with a little bundle upon + his shoulder, toiling slowly up the hill. When he reached the crest I + saw the ragged uncouth figure outlined for an instant against the + cold blue sky. He looked round him with a furtive and stealthy air, + as one who dreads pursuit. Then he vanished over the hill. + + "Well! Am I right?" + + "Certainly, there is a boy who seems to have some secret errand." + + "And what the errand is even a county constable could guess. But not + one word shall they have from me, and I bind you to secrecy also, Dr. + Watson. Not a word! You understand!" + + "Just as you wish." + + "They have treated me shamefully--shamefully. When the facts come out + in Frankland v. Regina I venture to think that a thrill of + indignation will run through the country. Nothing would induce me to + help the police in any way. For all they cared it might have been me, + instead of my effigy, which these rascals burned at the stake. Surely + you are not going! You will help me to empty the decanter in honour + of this great occasion!" + + But I resisted all his solicitations and succeeded in dissuading him + from his announced intention of walking home with me. I kept the road + as long as his eye was on me, and then I struck off across the moor + and made for the stony hill over which the boy had disappeared. + Everything was working in my favour, and I swore that it should not + be through lack of energy or perseverance that I should miss the + chance which fortune had thrown in my way. + + The sun was already sinking when I reached the summit of the hill, + and the long slopes beneath me were all golden-green on one side and + gray shadow on the other. A haze lay low upon the farthest sky-line, + out of which jutted the fantastic shapes of Belliver and Vixen Tor. + Over the wide expanse there was no sound and no movement. One great + gray bird, a gull or curlew, soared aloft in the blue heaven. He and + I seemed to be the only living things between the huge arch of the + sky and the desert beneath it. The barren scene, the sense of + loneliness, and the mystery and urgency of my task all struck a chill + into my heart. The boy was nowhere to be seen. But down beneath me in + a cleft of the hills there was a circle of the old stone huts, and in + the middle of them there was one which retained sufficient roof to + act as a screen against the weather. My heart leaped within me as I + saw it. This must be the burrow where the stranger lurked. At last my + foot was on the threshold of his hiding place--his secret was within + my grasp. + + As I approached the hut, walking as warily as Stapleton would do when + with poised net he drew near the settled butterfly, I satisfied + myself that the place had indeed been used as a habitation. A vague + pathway among the boulders led to the dilapidated opening which + served as a door. All was silent within. The unknown might be lurking + there, or he might be prowling on the moor. My nerves tingled with + the sense of adventure. Throwing aside my cigarette, I closed my hand + upon the butt of my revolver and, walking swiftly up to the door, I + looked in. The place was empty. + + But there were ample signs that I had not come upon a false scent. + This was certainly where the man lived. Some blankets rolled in a + waterproof lay upon that very stone slab upon which Neolithic man had + once slumbered. The ashes of a fire were heaped in a rude grate. + Beside it lay some cooking utensils and a bucket half-full of water. + A litter of empty tins showed that the place had been occupied for + some time, and I saw, as my eyes became accustomed to the checkered + light, a pannikin and a half-full bottle of spirits standing in the + corner. In the middle of the hut a flat stone served the purpose of a + table, and upon this stood a small cloth bundle--the same, no doubt, + which I had seen through the telescope upon the shoulder of the boy. + It contained a loaf of bread, a tinned tongue, and two tins of + preserved peaches. As I set it down again, after having examined it, + my heart leaped to see that beneath it there lay a sheet of paper + with writing upon it. I raised it, and this was what I read, roughly + scrawled in pencil:-- + + Dr. Watson has gone to Coombe Tracey. + + For a minute I stood there with the paper in my hands thinking out + the meaning of this curt message. It was I, then, and not Sir Henry, + who was being dogged by this secret man. He had not followed me + himself, but he had set an agent--the boy, perhaps--upon my track, + and this was his report. Possibly I had taken no step since I had + been upon the moor which had not been observed and reported. Always + there was this feeling of an unseen force, a fine net drawn round us + with infinite skill and delicacy, holding us so lightly that it was + only at some supreme moment that one realized that one was indeed + entangled in its meshes. + + If there was one report there might be others, so I looked round the + hut in search of them. There was no trace, however, of anything of + the kind, nor could I discover any sign which might indicate the + character or intentions of the man who lived in this singular place, + save that he must be of Spartan habits and cared little for the + comforts of life. When I thought of the heavy rains and looked at the + gaping roof I understood how strong and immutable must be the purpose + which had kept him in that inhospitable abode. Was he our malignant + enemy, or was he by chance our guardian angel? I swore that I would + not leave the hut until I knew. + + Outside the sun was sinking low and the west was blazing with scarlet + and gold. Its reflection was shot back in ruddy patches by the + distant pools which lay amid the great Grimpen Mire. There were the + two towers of Baskerville Hall, and there a distant blur of smoke + which marked the village of Grimpen. Between the two, behind the + hill, was the house of the Stapletons. All was sweet and mellow and + peaceful in the golden evening light, and yet as I looked at them my + soul shared none of the peace of nature but quivered at the vagueness + and the terror of that interview which every instant was bringing + nearer. With tingling nerves, but a fixed purpose, I sat in the dark + recess of the hut and waited with sombre patience for the coming of + its tenant. + + And then at last I heard him. Far away came the sharp clink of a boot + striking upon a stone. Then another and yet another, coming nearer + and nearer. I shrank back into the darkest corner, and cocked the + pistol in my pocket, determined not to discover myself until I had an + opportunity of seeing something of the stranger. There was a long + pause which showed that he had stopped. Then once more the footsteps + approached and a shadow fell across the opening of the hut. + + "It is a lovely evening, my dear Watson," said a well-known voice. "I + really think that you will be more comfortable outside than in." + + + + + + CHAPTER XII + Death on the Moor + + + For a moment or two I sat breathless, hardly able to believe my ears. + Then my senses and my voice came back to me, while a crushing weight + of responsibility seemed in an instant to be lifted from my soul. + That cold, incisive, ironical voice could belong to but one man in + all the world. + + "Holmes!" I cried--"Holmes!" + + "Come out," said he, "and please be careful with the revolver." + + I stooped under the rude lintel, and there he sat upon a stone + outside, his gray eyes dancing with amusement as they fell upon my + astonished features. He was thin and worn, but clear and alert, his + keen face bronzed by the sun and roughened by the wind. In his tweed + suit and cloth cap he looked like any other tourist upon the moor, + and he had contrived, with that cat-like love of personal cleanliness + which was one of his characteristics, that his chin should be as + smooth and his linen as perfect as if he were in Baker Street. + + "I never was more glad to see anyone in my life," said I, as I wrung + him by the hand. + + "Or more astonished, eh?" + + "Well, I must confess to it." + + "The surprise was not all on one side, I assure you. I had no idea + that you had found my occasional retreat, still less that you were + inside it, until I was within twenty paces of the door." + + "My footprint, I presume?" + + "No, Watson; I fear that I could not undertake to recognize your + footprint amid all the footprints of the world. If you seriously + desire to deceive me you must change your tobacconist; for when I see + the stub of a cigarette marked Bradley, Oxford Street, I know that my + friend Watson is in the neighbourhood. You will see it there beside + the path. You threw it down, no doubt, at that supreme moment when + you charged into the empty hut." + + "Exactly." + + "I thought as much--and knowing your admirable tenacity I was + convinced that you were sitting in ambush, a weapon within reach, + waiting for the tenant to return. So you actually thought that I was + the criminal?" + + "I did not know who you were, but I was determined to find out." + + "Excellent, Watson! And how did you localize me? You saw me, perhaps, + on the night of the convict hunt, when I was so imprudent as to allow + the moon to rise behind me?" + + "Yes, I saw you then." + + "And have no doubt searched all the huts until you came to this one?" + + "No, your boy had been observed, and that gave me a guide where to + look." + + "The old gentleman with the telescope, no doubt. I could not make it + out when first I saw the light flashing upon the lens." He rose and + peeped into the hut. "Ha, I see that Cartwright has brought up some + supplies. What's this paper? So you have been to Coombe Tracey, have + you?" + + "Yes." + + "To see Mrs. Laura Lyons?" + + "Exactly." + + "Well done! Our researches have evidently been running on parallel + lines, and when we unite our results I expect we shall have a fairly + full knowledge of the case." + + "Well, I am glad from my heart that you are here, for indeed the + responsibility and the mystery were both becoming too much for my + nerves. But how in the name of wonder did you come here, and what + have you been doing? I thought that you were in Baker Street working + out that case of blackmailing." + + "That was what I wished you to think." + + "Then you use me, and yet do not trust me!" I cried with some + bitterness. "I think that I have deserved better at your hands, + Holmes." + + "My dear fellow, you have been invaluable to me in this as in many + other cases, and I beg that you will forgive me if I have seemed to + play a trick upon you. In truth, it was partly for your own sake that + I did it, and it was my appreciation of the danger which you ran + which led me to come down and examine the matter for myself. Had I + been with Sir Henry and you it is confident that my point of view + would have been the same as yours, and my presence would have warned + our very formidable opponents to be on their guard. As it is, I have + been able to get about as I could not possibly have done had I been + living in the Hall, and I remain an unknown factor in the business, + ready to throw in all my weight at a critical moment." + + "But why keep me in the dark?" + + "For you to know could not have helped us, and might possibly have + led to my discovery. You would have wished to tell me something, or + in your kindness you would have brought me out some comfort or other, + and so an unnecessary risk would be run. I brought Cartwright down + with me--you remember the little chap at the express office--and he + has seen after my simple wants: a loaf of bread and a clean collar. + What does man want more? He has given me an extra pair of eyes upon a + very active pair of feet, and both have been invaluable." + + "Then my reports have all been wasted!"--My voice trembled as I + recalled the pains and the pride with which I had composed them. + + Holmes took a bundle of papers from his pocket. + + "Here are your reports, my dear fellow, and very well thumbed, I + assure you. I made excellent arrangements, and they are only delayed + one day upon their way. I must compliment you exceedingly upon the + zeal and the intelligence which you have shown over an + extraordinarily difficult case." + + I was still rather raw over the deception which had been practised + upon me, but the warmth of Holmes's praise drove my anger from my + mind. I felt also in my heart that he was right in what he said and + that it was really best for our purpose that I should not have known + that he was upon the moor. + + "That's better," said he, seeing the shadow rise from my face. "And + now tell me the result of your visit to Mrs. Laura Lyons--it was not + difficult for me to guess that it was to see her that you had gone, + for I am already aware that she is the one person in Coombe Tracey + who might be of service to us in the matter. In fact, if you had not + gone to-day it is exceedingly probable that I should have gone + to-morrow." + + The sun had set and dusk was settling over the moor. The air had + turned chill and we withdrew into the hut for warmth. There, sitting + together in the twilight, I told Holmes of my conversation with the + lady. So interested was he that I had to repeat some of it twice + before he was satisfied. + + "This is most important," said he when I had concluded. "It fills up + a gap which I had been unable to bridge, in this most complex affair. + You are aware, perhaps, that a close intimacy exists between this + lady and the man Stapleton?" + + "I did not know of a close intimacy." + + "There can be no doubt about the matter. They meet, they write, there + is a complete understanding between them. Now, this puts a very + powerful weapon into our hands. If I could only use it to detach his + wife--" + + "His wife?" + + "I am giving you some information now, in return for all that you + have given me. The lady who has passed here as Miss Stapleton is in + reality his wife." + + "Good heavens, Holmes! Are you sure of what you say? How could he + have permitted Sir Henry to fall in love with her?" + + "Sir Henry's falling in love could do no harm to anyone except Sir + Henry. He took particular care that Sir Henry did not make love to + her, as you have yourself observed. I repeat that the lady is his + wife and not his sister." + + "But why this elaborate deception?" + + "Because he foresaw that she would be very much more useful to him in + the character of a free woman." + + All my unspoken instincts, my vague suspicions, suddenly took shape + and centred upon the naturalist. In that impassive, colourless man, + with his straw hat and his butterfly-net, I seemed to see something + terrible--a creature of infinite patience and craft, with a smiling + face and a murderous heart. + + "It is he, then, who is our enemy--it is he who dogged us in London?" + + "So I read the riddle." + + "And the warning--it must have come from her!" + + "Exactly." + + The shape of some monstrous villainy, half seen, half guessed, loomed + through the darkness which had girt me so long. + + "But are you sure of this, Holmes? How do you know that the woman is + his wife?" + + "Because he so far forgot himself as to tell you a true piece of + autobiography upon the occasion when he first met you, and I dare say + he has many a time regretted it since. He was once a schoolmaster in + the north of England. Now, there is no one more easy to trace than a + schoolmaster. There are scholastic agencies by which one may identify + any man who has been in the profession. A little investigation showed + me that a school had come to grief under atrocious circumstances, and + that the man who had owned it--the name was different--had + disappeared with his wife. The descriptions agreed. When I learned + that the missing man was devoted to entomology the identification was + complete." + + The darkness was rising, but much was still hidden by the shadows. + + "If this woman is in truth his wife, where does Mrs. Laura Lyons come + in?" I asked. + + "That is one of the points upon which your own researches have shed a + light. Your interview with the lady has cleared the situation very + much. I did not know about a projected divorce between herself and + her husband. In that case, regarding Stapleton as an unmarried man, + she counted no doubt upon becoming his wife." + + "And when she is undeceived?" + + "Why, then we may find the lady of service. It must be our first duty + to see her--both of us--to-morrow. Don't you think, Watson, that you + are away from your charge rather long? Your place should be at + Baskerville Hall." + + The last red streaks had faded away in the west and night had settled + upon the moor. A few faint stars were gleaming in a violet sky. + + "One last question, Holmes," I said, as I rose. "Surely there is no + need of secrecy between you and me. What is the meaning of it all? + What is he after?" + + Holmes's voice sank as he answered:-- + + "It is murder, Watson--refined, cold-blooded, deliberate murder. Do + not ask me for particulars. My nets are closing upon him, even as his + are upon Sir Henry, and with your help he is already almost at my + mercy. There is but one danger which can threaten us. It is that he + should strike before we are ready to do so. Another day--two at the + most--and I have my case complete, but until then guard your charge + as closely as ever a fond mother watched her ailing child. Your + mission to-day has justified itself, and yet I could almost wish that + you had not left his side. Hark!" + + A terrible scream--a prolonged yell of horror and anguish--burst out + of the silence of the moor. That frightful cry turned the blood to + ice in my veins. + + "Oh, my God!" I gasped. "What is it? What does it mean?" + + Holmes had sprung to his feet, and I saw his dark, athletic outline + at the door of the hut, his shoulders stooping, his head thrust + forward, his face peering into the darkness. + + "Hush!" he whispered. "Hush!" + + The cry had been loud on account of its vehemence, but it had pealed + out from somewhere far off on the shadowy plain. Now it burst upon + our ears, nearer, louder, more urgent than before. + + "Where is it?" Holmes whispered; and I knew from the thrill of his + voice that he, the man of iron, was shaken to the soul. "Where is it, + Watson?" + + "There, I think." I pointed into the darkness. + + "No, there!" + + Again the agonized cry swept through the silent night, louder and + much nearer than ever. And a new sound mingled with it, a deep, + muttered rumble, musical and yet menacing, rising and falling like + the low, constant murmur of the sea. + + "The hound!" cried Holmes. "Come, Watson, come! Great heavens, if we + are too late!" + + He had started running swiftly over the moor, and I had followed at + his heels. But now from somewhere among the broken ground immediately + in front of us there came one last despairing yell, and then a dull, + heavy thud. We halted and listened. Not another sound broke the heavy + silence of the windless night. + + I saw Holmes put his hand to his forehead like a man distracted. He + stamped his feet upon the ground. + + "He has beaten us, Watson. We are too late." + + "No, no, surely not!" + + "Fool that I was to hold my hand. And you, Watson, see what comes of + abandoning your charge! But, by Heaven, if the worst has happened, + we'll avenge him!" + + Blindly we ran through the gloom, blundering against boulders, + forcing our way through gorse bushes, panting up hills and rushing + down slopes, heading always in the direction whence those dreadful + sounds had come. At every rise Holmes looked eagerly round him, but + the shadows were thick upon the moor, and nothing moved upon its + dreary face. + + "Can you see anything?" + + "Nothing." + + "But, hark, what is that?" + + A low moan had fallen upon our ears. There it was again upon our + left! On that side a ridge of rocks ended in a sheer cliff which + overlooked a stone-strewn slope. On its jagged face was spread-eagled + some dark, irregular object. As we ran towards it the vague outline + hardened into a definite shape. It was a prostrate man face downward + upon the ground, the head doubled under him at a horrible angle, the + shoulders rounded and the body hunched together as if in the act of + throwing a somersault. So grotesque was the attitude that I could not + for the instant realize that that moan had been the passing of his + soul. Not a whisper, not a rustle, rose now from the dark figure over + which we stooped. Holmes laid his hand upon him, and held it up + again, with an exclamation of horror. The gleam of the match which he + struck shone upon his clotted fingers and upon the ghastly pool which + widened slowly from the crushed skull of the victim. And it shone + upon something else which turned our hearts sick and faint within + us--the body of Sir Henry Baskerville! + + There was no chance of either of us forgetting that peculiar ruddy + tweed suit--the very one which he had worn on the first morning that + we had seen him in Baker Street. We caught the one clear glimpse of + it, and then the match flickered and went out, even as the hope had + gone out of our souls. Holmes groaned, and his face glimmered white + through the darkness. + + "The brute! the brute!" I cried with clenched hands. "Oh Holmes, I + shall never forgive myself for having left him to his fate." + + "I am more to blame than you, Watson. In order to have my case well + rounded and complete, I have thrown away the life of my client. It is + the greatest blow which has befallen me in my career. But how could I + know--how could l know--that he would risk his life alone upon the + moor in the face of all my warnings?" + + "That we should have heard his screams--my God, those screams!--and + yet have been unable to save him! Where is this brute of a hound + which drove him to his death? It may be lurking among these rocks at + this instant. And Stapleton, where is he? He shall answer for this + deed." + + "He shall. I will see to that. Uncle and nephew have been + murdered--the one frightened to death by the very sight of a beast + which he thought to be supernatural, the other driven to his end in + his wild flight to escape from it. But now we have to prove the + connection between the man and the beast. Save from what we heard, we + cannot even swear to the existence of the latter, since Sir Henry has + evidently died from the fall. But, by heavens, cunning as he is, the + fellow shall be in my power before another day is past!" + + We stood with bitter hearts on either side of the mangled body, + overwhelmed by this sudden and irrevocable disaster which had brought + all our long and weary labours to so piteous an end. Then, as the + moon rose we climbed to the top of the rocks over which our poor + friend had fallen, and from the summit we gazed out over the shadowy + moor, half silver and half gloom. Far away, miles off, in the + direction of Grimpen, a single steady yellow light was shining. It + could only come from the lonely abode of the Stapletons. With a + bitter curse I shook my fist at it as I gazed. + + "Why should we not seize him at once?" + + "Our case is not complete. The fellow is wary and cunning to the last + degree. It is not what we know, but what we can prove. If we make one + false move the villain may escape us yet." + + "What can we do?" + + "There will be plenty for us to do to-morrow. To-night we can only + perform the last offices to our poor friend." + + Together we made our way down the precipitous slope and approached + the body, black and clear against the silvered stones. The agony of + those contorted limbs struck me with a spasm of pain and blurred my + eyes with tears. + + "We must send for help, Holmes! We cannot carry him all the way to + the Hall. Good heavens, are you mad?" + + He had uttered a cry and bent over the body. Now he was dancing and + laughing and wringing my hand. Could this be my stern, self-contained + friend? These were hidden fires, indeed! + + "A beard! A beard! The man has a beard!" + + "A beard?" + + "It is not the baronet--it is--why, it is my neighbour, the convict!" + + With feverish haste we had turned the body over, and that dripping + beard was pointing up to the cold, clear moon. There could be no + doubt about the beetling forehead, the sunken animal eyes. It was + indeed the same face which had glared upon me in the light of the + candle from over the rock--the face of Selden, the criminal. + + Then in an instant it was all clear to me. I remembered how the + baronet had told me that he had handed his old wardrobe to Barrymore. + Barrymore had passed it on in order to help Selden in his escape. + Boots, shirt, cap--it was all Sir Henry's. The tragedy was still + black enough, but this man had at least deserved death by the laws of + his country. I told Holmes how the matter stood, my heart bubbling + over with thankfulness and joy. + + "Then the clothes have been the poor devil's death," said he. "It is + clear enough that the hound has been laid on from some article of Sir + Henry's--the boot which was abstracted in the hotel, in all + probability--and so ran this man down. There is one very singular + thing, however: How came Selden, in the darkness, to know that the + hound was on his trail?" + + "He heard him." + + "To hear a hound upon the moor would not work a hard man like this + convict into such a paroxysm of terror that he would risk recapture + by screaming wildly for help. By his cries he must have run a long + way after he knew the animal was on his track. How did he know?" + + "A greater mystery to me is why this hound, presuming that all our + conjectures are correct--" + + "I presume nothing." + + "Well, then, why this hound should be loose to-night. I suppose that + it does not always run loose upon the moor. Stapleton would not let + it go unless he had reason to think that Sir Henry would be there." + + "My difficulty is the more formidable of the two, for I think that we + shall very shortly get an explanation of yours, while mine may remain + forever a mystery. The question now is, what shall we do with this + poor wretch's body? We cannot leave it here to the foxes and the + ravens." + + "I suggest that we put it in one of the huts until we can communicate + with the police." + + "Exactly. I have no doubt that you and I could carry it so far. + Halloa, Watson, what's this? It's the man himself, by all that's + wonderful and audacious! Not a word to show your suspicions--not a + word, or my plans crumble to the ground." + + A figure was approaching us over the moor, and I saw the dull red + glow of a cigar. The moon shone upon him, and I could distinguish the + dapper shape and jaunty walk of the naturalist. He stopped when he + saw us, and then came on again. + + "Why, Dr. Watson, that's not you, is it? You are the last man that I + should have expected to see out on the moor at this time of night. + But, dear me, what's this? Somebody hurt? Not--don't tell me that it + is our friend Sir Henry!" He hurried past me and stooped over the + dead man. I heard a sharp intake of his breath and the cigar fell + from his fingers. + + "Who--who's this?" he stammered. + + "It is Selden, the man who escaped from Princetown." + + Stapleton turned a ghastly face upon us, but by a supreme effort he + had overcome his amazement and his disappointment. He looked sharply + from Holmes to me. + + "Dear me! What a very shocking affair! How did he die?" + + "He appears to have broken his neck by falling over these rocks. My + friend and I were strolling on the moor when we heard a cry." + + "I heard a cry also. That was what brought me out. I was uneasy about + Sir Henry." + + "Why about Sir Henry in particular?" I could not help asking. + + "Because I had suggested that he should come over. When he did not + come I was surprised, and I naturally became alarmed for his safety + when I heard cries upon the moor. By the way"--his eyes darted again + from my face to Holmes's--"did you hear anything else besides a cry?" + + "No," said Holmes; "did you?" + + "No." + + "What do you mean, then?" + + "Oh, you know the stories that the peasants tell about a phantom + hound, and so on. It is said to be heard at night upon the moor. I + was wondering if there were any evidence of such a sound to-night." + + "We heard nothing of the kind," said I. + + "And what is your theory of this poor fellow's death?" + + "I have no doubt that anxiety and exposure have driven him off his + head. He has rushed about the moor in a crazy state and eventually + fallen over here and broken his neck." + + "That seems the most reasonable theory," said Stapleton, and he gave + a sigh which I took to indicate his relief. "What do you think about + it, Mr. Sherlock Holmes?" + + My friend bowed his compliments. + + "You are quick at identification," said he. + + "We have been expecting you in these parts since Dr. Watson came + down. You are in time to see a tragedy." + + "Yes, indeed. I have no doubt that my friend's explanation will cover + the facts. I will take an unpleasant remembrance back to London with + me to-morrow." + + "Oh, you return to-morrow?" + + "That is my intention." + + "I hope your visit has cast some light upon those occurrences which + have puzzled us?" + + Holmes shrugged his shoulders. + + "One cannot always have the success for which one hopes. An + investigator needs facts, and not legends or rumours. It has not been + a satisfactory case." + + My friend spoke in his frankest and most unconcerned manner. + Stapleton still looked hard at him. Then he turned to me. + + "I would suggest carrying this poor fellow to my house, but it would + give my sister such a fright that I do not feel justified in doing + it. I think that if we put something over his face he will be safe + until morning." + + And so it was arranged. Resisting Stapleton's offer of hospitality, + Holmes and I set off to Baskerville Hall, leaving the naturalist to + return alone. Looking back we saw the figure moving slowly away over + the broad moor, and behind him that one black smudge on the silvered + slope which showed where the man was lying who had come so horribly + to his end. + + + + + + CHAPTER XIII + Fixing the Nets + + + "We're at close grips at last," said Holmes as we walked together + across the moor. "What a nerve the fellow has! How he pulled himself + together in the face of what must have been a paralyzing shock when + he found that the wrong man had fallen a victim to his plot. I told + you in London, Watson, and I tell you now again, that we have never + had a foeman more worthy of our steel." + + "I am sorry that he has seen you." + + "And so was I at first. But there was no getting out of it." + + "What effect do you think it will have upon his plans now that he + knows you are here?" + + "It may cause him to be more cautious, or it may drive him to + desperate measures at once. Like most clever criminals, he may be too + confident in his own cleverness and imagine that he has completely + deceived us." + + "Why should we not arrest him at once?" + + "My dear Watson, you were born to be a man of action. Your instinct + is always to do something energetic. But supposing, for argument's + sake, that we had him arrested to-night, what on earth the better off + should we be for that? We could prove nothing against him. There's + the devilish cunning of it! If he were acting through a human agent + we could get some evidence, but if we were to drag this great dog to + the light of day it would not help us in putting a rope round the + neck of its master." + + "Surely we have a case." + + "Not a shadow of one--only surmise and conjecture. We should be + laughed out of court if we came with such a story and such evidence." + + "There is Sir Charles's death." + + "Found dead without a mark upon him. You and I know that he died of + sheer fright, and we know also what frightened him; but how are we to + get twelve stolid jurymen to know it? What signs are there of a + hound? Where are the marks of its fangs? Of course we know that a + hound does not bite a dead body and that Sir Charles was dead before + ever the brute overtook him. But we have to prove all this, and we + are not in a position to do it." + + "Well, then, to-night?" + + "We are not much better off to-night. Again, there was no direct + connection between the hound and the man's death. We never saw the + hound. We heard it; but we could not prove that it was running upon + this man's trail. There is a complete absence of motive. No, my dear + fellow; we must reconcile ourselves to the fact that we have no case + at present, and that it is worth our while to run any risk in order + to establish one." + + "And how do you propose to do so?" + + "I have great hopes of what Mrs. Laura Lyons may do for us when the + position of affairs is made clear to her. And I have my own plan as + well. Sufficient for to-morrow is the evil thereof; but I hope before + the day is past to have the upper hand at last." + + I could draw nothing further from him, and he walked, lost in + thought, as far as the Baskerville gates. + + "Are you coming up?" + + "Yes; I see no reason for further concealment. But one last word, + Watson. Say nothing of the hound to Sir Henry. Let him think that + Selden's death was as Stapleton would have us believe. He will have a + better nerve for the ordeal which he will have to undergo to-morrow, + when he is engaged, if I remember your report aright, to dine with + these people." + + "And so am I." + + "Then you must excuse yourself and he must go alone. That will be + easily arranged. And now, if we are too late for dinner, I think that + we are both ready for our suppers." + + Sir Henry was more pleased than surprised to see Sherlock Holmes, for + he had for some days been expecting that recent events would bring + him down from London. He did raise his eyebrows, however, when he + found that my friend had neither any luggage nor any explanations for + its absence. Between us we soon supplied his wants, and then over a + belated supper we explained to the baronet as much of our experience + as it seemed desirable that he should know. But first I had the + unpleasant duty of breaking the news to Barrymore and his wife. To + him it may have been an unmitigated relief, but she wept bitterly in + her apron. To all the world he was the man of violence, half animal + and half demon; but to her he always remained the little wilful boy + of her own girlhood, the child who had clung to her hand. Evil indeed + is the man who has not one woman to mourn him. + + "I've been moping in the house all day since Watson went off in the + morning," said the baronet. "I guess I should have some credit, for I + have kept my promise. If I hadn't sworn not to go about alone I might + have had a more lively evening, for I had a message from Stapleton + asking me over there." + + "I have no doubt that you would have had a more lively evening," said + Holmes drily. "By the way, I don't suppose you appreciate that we + have been mourning over you as having broken your neck?" + + Sir Henry opened his eyes. "How was that?" + + "This poor wretch was dressed in your clothes. I fear your servant + who gave them to him may get into trouble with the police." + + "That is unlikely. There was no mark on any of them, as far as I + know." + + "That's lucky for him--in fact, it's lucky for all of you, since you + are all on the wrong side of the law in this matter. I am not sure + that as a conscientious detective my first duty is not to arrest the + whole household. Watson's reports are most incriminating documents." + + "But how about the case?" asked the baronet. "Have you made anything + out of the tangle? I don't know that Watson and I are much the wiser + since we came down." + + "I think that I shall be in a position to make the situation rather + more clear to you before long. It has been an exceedingly difficult + and most complicated business. There are several points upon which we + still want light--but it is coming all the same." + + "We've had one experience, as Watson has no doubt told you. We heard + the hound on the moor, so I can swear that it is not all empty + superstition. I had something to do with dogs when I was out West, + and I know one when I hear one. If you can muzzle that one and put + him on a chain I'll be ready to swear you are the greatest detective + of all time." + + "I think I will muzzle him and chain him all right if you will give + me your help." + + "Whatever you tell me to do I will do." + + "Very good; and I will ask you also to do it blindly, without always + asking the reason." + + "Just as you like." + + "If you will do this I think the chances are that our little problem + will soon be solved. I have no doubt--" + + He stopped suddenly and stared fixedly up over my head into the air. + The lamp beat upon his face, and so intent was it and so still that + it might have been that of a clear-cut classical statue, a + personification of alertness and expectation. + + "What is it?" we both cried. + + I could see as he looked down that he was repressing some internal + emotion. His features were still composed, but his eyes shone with + amused exultation. + + "Excuse the admiration of a connoisseur," said he as he waved his + hand towards the line of portraits which covered the opposite wall. + "Watson won't allow that I know anything of art, but that is mere + jealousy, because our views upon the subject differ. Now, these are a + really very fine series of portraits." + + "Well, I'm glad to hear you say so," said Sir Henry, glancing with + some surprise at my friend. "I don't pretend to know much about these + things, and I'd be a better judge of a horse or a steer than of a + picture. I didn't know that you found time for such things." + + "I know what is good when I see it, and I see it now. That's a + Kneller, I'll swear, that lady in the blue silk over yonder, and the + stout gentleman with the wig ought to be a Reynolds. They are all + family portraits, I presume?" + + "Every one." + + "Do you know the names?" + + "Barrymore has been coaching me in them, and I think I can say my + lessons fairly well." + + "Who is the gentleman with the telescope?" + + "That is Rear-Admiral Baskerville, who served under Rodney in the + West Indies. The man with the blue coat and the roll of paper is Sir + William Baskerville, who was Chairman of Committees of the House of + Commons under Pitt." + + "And this Cavalier opposite to me--the one with the black velvet and + the lace?" + + "Ah, you have a right to know about him. That is the cause of all the + mischief, the wicked Hugo, who started the Hound of the Baskervilles. + We're not likely to forget him." + + I gazed with interest and some surprise upon the portrait. + + "Dear me!" said Holmes, "he seems a quiet, meek-mannered man enough, + but I dare say that there was a lurking devil in his eyes. I had + pictured him as a more robust and ruffianly person." + + "There's no doubt about the authenticity, for the name and the date, + 1647, are on the back of the canvas." + + Holmes said little more, but the picture of the old roysterer seemed + to have a fascination for him, and his eyes were continually fixed + upon it during supper. It was not until later, when Sir Henry had + gone to his room, that I was able to follow the trend of his + thoughts. He led me back into the banqueting-hall, his bedroom candle + in his hand, and he held it up against the time-stained portrait on + the wall. + + "Do you see anything there?" + + I looked at the broad plumed hat, the curling love-locks, the white + lace collar, and the straight, severe face which was framed between + them. It was not a brutal countenance, but it was prim, hard, and + stern, with a firm-set, thin-lipped mouth, and a coldly intolerant + eye. + + "Is it like anyone you know?" + + "There is something of Sir Henry about the jaw." + + "Just a suggestion, perhaps. But wait an instant!" He stood upon a + chair, and, holding up the light in his left hand, he curved his + right arm over the broad hat and round the long ringlets. + + "Good heavens!" I cried, in amazement. + + The face of Stapleton had sprung out of the canvas. + + "Ha, you see it now. My eyes have been trained to examine faces and + not their trimmings. It is the first quality of a criminal + investigator that he should see through a disguise." + + "But this is marvellous. It might be his portrait." + + "Yes, it is an interesting instance of a throwback, which appears to + be both physical and spiritual. A study of family portraits is enough + to convert a man to the doctrine of reincarnation. The fellow is a + Baskerville--that is evident." + + "With designs upon the succession." + + "Exactly. This chance of the picture has supplied us with one of our + most obvious missing links. We have him, Watson, we have him, and I + dare swear that before to-morrow night he will be fluttering in our + net as helpless as one of his own butterflies. A pin, a cork, and a + card, and we add him to the Baker Street collection!" He burst into + one of his rare fits of laughter as he turned away from the picture. + I have not heard him laugh often, and it has always boded ill to + somebody. + + I was up betimes in the morning, but Holmes was afoot earlier still, + for I saw him as I dressed, coming up the drive. + + "Yes, we should have a full day to-day," he remarked, and he rubbed + his hands with the joy of action. "The nets are all in place, and the + drag is about to begin. We'll know before the day is out whether we + have caught our big, lean-jawed pike, or whether he has got through + the meshes." + + "Have you been on the moor already?" + + "I have sent a report from Grimpen to Princetown as to the death of + Selden. I think I can promise that none of you will be troubled in + the matter. And I have also communicated with my faithful Cartwright, + who would certainly have pined away at the door of my hut, as a dog + does at his master's grave, if I had not set his mind at rest about + my safety." + + "What is the next move?" + + "To see Sir Henry. Ah, here he is!" + + "Good morning, Holmes," said the baronet. "You look like a general + who is planning a battle with his chief of the staff." + + "That is the exact situation. Watson was asking for orders." + + "And so do I." + + "Very good. You are engaged, as I understand, to dine with our + friends the Stapletons to-night." + + "I hope that you will come also. They are very hospitable people, and + I am sure that they would be very glad to see you." + + "I fear that Watson and I must go to London." + + "To London?" + + "Yes, I think that we should be more useful there at the present + juncture." + + The baronet's face perceptibly lengthened. + + "I hoped that you were going to see me through this business. The + Hall and the moor are not very pleasant places when one is alone." + + "My dear fellow, you must trust me implicitly and do exactly what I + tell you. You can tell your friends that we should have been happy to + have come with you, but that urgent business required us to be in + town. We hope very soon to return to Devonshire. Will you remember to + give them that message?" + + "If you insist upon it." + + "There is no alternative, I assure you." + + I saw by the baronet's clouded brow that he was deeply hurt by what + he regarded as our desertion. + + "When do you desire to go?" he asked coldly. + + "Immediately after breakfast. We will drive in to Coombe Tracey, but + Watson will leave his things as a pledge that he will come back to + you. Watson, you will send a note to Stapleton to tell him that you + regret that you cannot come." + + "I have a good mind to go to London with you," said the baronet. "Why + should I stay here alone?" + + "Because it is your post of duty. Because you gave me your word that + you would do as you were told, and I tell you to stay." + + "All right, then, I'll stay." + + "One more direction! I wish you to drive to Merripit House. Send back + your trap, however, and let them know that you intend to walk home." + + "To walk across the moor?" + + "Yes." + + "But that is the very thing which you have so often cautioned me not + to do." + + "This time you may do it with safety. If I had not every confidence + in your nerve and courage I would not suggest it, but it is essential + that you should do it." + + "Then I will do it." + + "And as you value your life do not go across the moor in any + direction save along the straight path which leads from Merripit + House to the Grimpen Road, and is your natural way home." + + "I will do just what you say." + + "Very good. I should be glad to get away as soon after breakfast as + possible, so as to reach London in the afternoon." + + I was much astounded by this programme, though I remembered that + Holmes had said to Stapleton on the night before that his visit would + terminate next day. It had not crossed my mind, however, that he + would wish me to go with him, nor could I understand how we could + both be absent at a moment which he himself declared to be critical. + There was nothing for it, however, but implicit obedience; so we bade + good-bye to our rueful friend, and a couple of hours afterwards we + were at the station of Coombe Tracey and had dispatched the trap upon + its return journey. A small boy was waiting upon the platform. + + "Any orders, sir?" + + "You will take this train to town, Cartwright. The moment you arrive + you will send a wire to Sir Henry Baskerville, in my name, to say + that if he finds the pocket-book which I have dropped he is to send + it by registered post to Baker Street." + + "Yes, sir." + + "And ask at the station office if there is a message for me." + + The boy returned with a telegram, which Holmes handed to me. It ran: + + Wire received. Coming down with unsigned warrant. Arrive five-forty. + Lestrade. + + "That is in answer to mine of this morning. He is the best of the + professionals, I think, and we may need his assistance. Now, Watson, + I think that we cannot employ our time better than by calling upon + your acquaintance, Mrs. Laura Lyons." + + His plan of campaign was beginning to be evident. He would use the + baronet in order to convince the Stapletons that we were really gone, + while we should actually return at the instant when we were likely to + be needed. That telegram from London, if mentioned by Sir Henry to + the Stapletons, must remove the last suspicions from their minds. + Already I seemed to see our nets drawing closer around that + lean-jawed pike. + + Mrs. Laura Lyons was in her office, and Sherlock Holmes opened his + interview with a frankness and directness which considerably amazed + her. + + "I am investigating the circumstances which attended the death of the + late Sir Charles Baskerville," said he. "My friend here, Dr. Watson, + has informed me of what you have communicated, and also of what you + have withheld in connection with that matter." + + "What have I withheld?" she asked defiantly. + + "You have confessed that you asked Sir Charles to be at the gate at + ten o'clock. We know that that was the place and hour of his death. + You have withheld what the connection is between these events." + + "There is no connection." + + "In that case the coincidence must indeed be an extraordinary one. + But I think that we shall succeed in establishing a connection after + all. I wish to be perfectly frank with you, Mrs. Lyons. We regard + this case as one of murder, and the evidence may implicate not only + your friend Mr. Stapleton, but his wife as well." + + The lady sprang from her chair. + + "His wife!" she cried. + + "The fact is no longer a secret. The person who has passed for his + sister is really his wife." + + Mrs. Lyons had resumed her seat. Her hands were grasping the arms of + her chair, and I saw that the pink nails had turned white with the + pressure of her grip. + + "His wife!" she said again. "His wife! He is not a married man." + + Sherlock Holmes shrugged his shoulders. + + "Prove it to me! Prove it to me! And if you can do so--!" The fierce + flash of her eyes said more than any words. + + "I have come prepared to do so," said Holmes, drawing several papers + from his pocket. "Here is a photograph of the couple taken in York + four years ago. It is indorsed 'Mr. and Mrs. Vandeleur,' but you will + have no difficulty in recognizing him, and her also, if you know her + by sight. Here are three written descriptions by trustworthy + witnesses of Mr. and Mrs. Vandeleur, who at that time kept St. + Oliver's private school. Read them and see if you can doubt the + identity of these people." + + She glanced at them, and then looked up at us with the set, rigid + face of a desperate woman. + + "Mr. Holmes," she said, "this man had offered me marriage on + condition that I could get a divorce from my husband. He has lied to + me, the villain, in every conceivable way. Not one word of truth has + he ever told me. And why--why? I imagined that all was for my own + sake. But now I see that I was never anything but a tool in his + hands. Why should I preserve faith with him who never kept any with + me? Why should I try to shield him from the consequences of his own + wicked acts? Ask me what you like, and there is nothing which I shall + hold back. One thing I swear to you, and that is that when I wrote + the letter I never dreamed of any harm to the old gentleman, who had + been my kindest friend." + + "I entirely believe you, madam," said Sherlock Holmes. "The recital + of these events must be very painful to you, and perhaps it will make + it easier if I tell you what occurred, and you can check me if I make + any material mistake. The sending of this letter was suggested to you + by Stapleton?" + + "He dictated it." + + "I presume that the reason he gave was that you would receive help + from Sir Charles for the legal expenses connected with your divorce?" + + "Exactly." + + "And then after you had sent the letter he dissuaded you from keeping + the appointment?" + + "He told me that it would hurt his self-respect that any other man + should find the money for such an object, and that though he was a + poor man himself he would devote his last penny to removing the + obstacles which divided us." + + "He appears to be a very consistent character. And then you heard + nothing until you read the reports of the death in the paper?" + + "No." + + "And he made you swear to say nothing about your appointment with Sir + Charles?" + + "He did. He said that the death was a very mysterious one, and that I + should certainly be suspected if the facts came out. He frightened me + into remaining silent." + + "Quite so. But you had your suspicions?" + + She hesitated and looked down. + + "I knew him," she said. "But if he had kept faith with me I should + always have done so with him." + + "I think that on the whole you have had a fortunate escape," said + Sherlock Holmes. "You have had him in your power and he knew it, and + yet you are alive. You have been walking for some months very near to + the edge of a precipice. We must wish you good-morning now, Mrs. + Lyons, and it is probable that you will very shortly hear from us + again." + + "Our case becomes rounded off, and difficulty after difficulty thins + away in front of us," said Holmes as we stood waiting for the arrival + of the express from town. "I shall soon be in the position of being + able to put into a single connected narrative one of the most + singular and sensational crimes of modern times. Students of + criminology will remember the analogous incidents in Godno, in Little + Russia, in the year '66, and of course there are the Anderson murders + in North Carolina, but this case possesses some features which are + entirely its own. Even now we have no clear case against this very + wily man. But I shall be very much surprised if it is not clear + enough before we go to bed this night." + + The London express came roaring into the station, and a small, wiry + bulldog of a man had sprung from a first-class carriage. We all three + shook hands, and I saw at once from the reverential way in which + Lestrade gazed at my companion that he had learned a good deal since + the days when they had first worked together. I could well remember + the scorn which the theories of the reasoner used then to excite in + the practical man. + + "Anything good?" he asked. + + "The biggest thing for years," said Holmes. "We have two hours before + we need think of starting. I think we might employ it in getting some + dinner and then, Lestrade, we will take the London fog out of your + throat by giving you a breath of the pure night air of Dartmoor. + Never been there? Ah, well, I don't suppose you will forget your + first visit." + + + + + + CHAPTER XIV + The Hound of the Baskervilles + + + One of Sherlock Holmes's defects--if, indeed, one may call it a + defect--was that he was exceedingly loath to communicate his full + plans to any other person until the instant of their fulfilment. + Partly it came no doubt from his own masterful nature, which loved to + dominate and surprise those who were around him. Partly also from his + professional caution, which urged him never to take any chances. The + result, however, was very trying for those who were acting as his + agents and assistants. I had often suffered under it, but never more + so than during that long drive in the darkness. The great ordeal was + in front of us; at last we were about to make our final effort, and + yet Holmes had said nothing, and I could only surmise what his course + of action would be. My nerves thrilled with anticipation when at last + the cold wind upon our faces and the dark, void spaces on either side + of the narrow road told me that we were back upon the moor once + again. Every stride of the horses and every turn of the wheels was + taking us nearer to our supreme adventure. + + Our conversation was hampered by the presence of the driver of the + hired wagonette, so that we were forced to talk of trivial matters + when our nerves were tense with emotion and anticipation. It was a + relief to me, after that unnatural restraint, when we at last passed + Frankland's house and knew that we were drawing near to the Hall and + to the scene of action. We did not drive up to the door but got down + near the gate of the avenue. The wagonette was paid off and ordered + to return to Coombe Tracey forthwith, while we started to walk to + Merripit House. + + "Are you armed, Lestrade?" + + The little detective smiled. + + "As long as I have my trousers I have a hip-pocket, and as long as I + have my hip-pocket I have something in it." + + "Good! My friend and I are also ready for emergencies." + + "You're mighty close about this affair, Mr. Holmes. What's the game + now?" + + "A waiting game." + + "My word, it does not seem a very cheerful place," said the detective + with a shiver, glancing round him at the gloomy slopes of the hill + and at the huge lake of fog which lay over the Grimpen Mire. "I see + the lights of a house ahead of us." + + "That is Merripit House and the end of our journey. I must request + you to walk on tiptoe and not to talk above a whisper." + + We moved cautiously along the track as if we were bound for the + house, but Holmes halted us when we were about two hundred yards from + it. + + "This will do," said he. "These rocks upon the right make an + admirable screen." + + "We are to wait here?" + + "Yes, we shall make our little ambush here. Get into this hollow, + Lestrade. You have been inside the house, have you not, Watson? Can + you tell the position of the rooms? What are those latticed windows + at this end?" + + "I think they are the kitchen windows." + + "And the one beyond, which shines so brightly?" + + "That is certainly the dining-room." + + "The blinds are up. You know the lie of the land best. Creep forward + quietly and see what they are doing--but for heaven's sake don't let + them know that they are watched!" + + I tiptoed down the path and stooped behind the low wall which + surrounded the stunted orchard. Creeping in its shadow I reached a + point whence I could look straight through the uncurtained window. + + There were only two men in the room, Sir Henry and Stapleton. They + sat with their profiles towards me on either side of the round table. + Both of them were smoking cigars, and coffee and wine were in front + of them. Stapleton was talking with animation, but the baronet looked + pale and distrait. Perhaps the thought of that lonely walk across the + ill-omened moor was weighing heavily upon his mind. + + As I watched them Stapleton rose and left the room, while Sir Henry + filled his glass again and leaned back in his chair, puffing at his + cigar. I heard the creak of a door and the crisp sound of boots upon + gravel. The steps passed along the path on the other side of the wall + under which I crouched. Looking over, I saw the naturalist pause at + the door of an out-house in the corner of the orchard. A key turned + in a lock, and as he passed in there was a curious scuffling noise + from within. He was only a minute or so inside, and then I heard the + key turn once more and he passed me and re-entered the house. I saw + him rejoin his guest, and I crept quietly back to where my companions + were waiting to tell them what I had seen. + + "You say, Watson, that the lady is not there?" Holmes asked, when I + had finished my report. + + "No." + + "Where can she be, then, since there is no light in any other room + except the kitchen?" + + "I cannot think where she is." + + I have said that over the great Grimpen Mire there hung a dense, + white fog. It was drifting slowly in our direction, and banked itself + up like a wall on that side of us, low, but thick and well defined. + The moon shone on it, and it looked like a great shimmering + ice-field, with the heads of the distant tors as rocks borne upon its + surface. Holmes's face was turned towards it, and he muttered + impatiently as he watched its sluggish drift. + + "It's moving towards us, Watson." + + "Is that serious?" + + "Very serious, indeed--the one thing upon earth which could have + disarranged my plans. He can't be very long, now. It is already ten + o'clock. Our success and even his life may depend upon his coming out + before the fog is over the path." + + The night was clear and fine above us. The stars shone cold and + bright, while a half-moon bathed the whole scene in a soft, uncertain + light. Before us lay the dark bulk of the house, its serrated roof + and bristling chimneys hard outlined against the silver-spangled sky. + Broad bars of golden light from the lower windows stretched across + the orchard and the moor. One of them was suddenly shut off. The + servants had left the kitchen. There only remained the lamp in the + dining-room where the two men, the murderous host and the unconscious + guest, still chatted over their cigars. + + Every minute that white woolly plain which covered one half of the + moor was drifting closer and closer to the house. Already the first + thin wisps of it were curling across the golden square of the lighted + window. The farther wall of the orchard was already invisible, and + the trees were standing out of a swirl of white vapour. As we watched + it the fog-wreaths came crawling round both corners of the house and + rolled slowly into one dense bank, on which the upper floor and the + roof floated like a strange ship upon a shadowy sea. Holmes struck + his hand passionately upon the rock in front of us and stamped his + feet in his impatience. + + "If he isn't out in a quarter of an hour the path will be covered. In + half an hour we won't be able to see our hands in front of us." + + "Shall we move farther back upon higher ground?" + + "Yes, I think it would be as well." + + So as the fog-bank flowed onward we fell back before it until we were + half a mile from the house, and still that dense white sea, with the + moon silvering its upper edge, swept slowly and inexorably on. + + "We are going too far," said Holmes. "We dare not take the chance of + his being overtaken before he can reach us. At all costs we must hold + our ground where we are." He dropped on his knees and clapped his ear + to the ground. "Thank God, I think that I hear him coming." + + A sound of quick steps broke the silence of the moor. Crouching among + the stones we stared intently at the silver-tipped bank in front of + us. The steps grew louder, and through the fog, as through a curtain, + there stepped the man whom we were awaiting. He looked round him in + surprise as he emerged into the clear, starlit night. Then he came + swiftly along the path, passed close to where we lay, and went on up + the long slope behind us. As he walked he glanced continually over + either shoulder, like a man who is ill at ease. + + "Hist!" cried Holmes, and I heard the sharp click of a cocking + pistol. "Look out! It's coming!" + + There was a thin, crisp, continuous patter from somewhere in the + heart of that crawling bank. The cloud was within fifty yards of + where we lay, and we glared at it, all three, uncertain what horror + was about to break from the heart of it. I was at Holmes's elbow, and + I glanced for an instant at his face. It was pale and exultant, his + eyes shining brightly in the moonlight. But suddenly they started + forward in a rigid, fixed stare, and his lips parted in amazement. At + the same instant Lestrade gave a yell of terror and threw himself + face downward upon the ground. I sprang to my feet, my inert hand + grasping my pistol, my mind paralyzed by the dreadful shape which had + sprung out upon us from the shadows of the fog. A hound it was, an + enormous coal-black hound, but not such a hound as mortal eyes have + ever seen. Fire burst from its open mouth, its eyes glowed with a + smouldering glare, its muzzle and hackles and dewlap were outlined in + flickering flame. Never in the delirious dream of a disordered brain + could anything more savage, more appalling, more hellish be conceived + than that dark form and savage face which broke upon us out of the + wall of fog. + + With long bounds the huge black creature was leaping down the track, + following hard upon the footsteps of our friend. So paralyzed were we + by the apparition that we allowed him to pass before we had recovered + our nerve. Then Holmes and I both fired together, and the creature + gave a hideous howl, which showed that one at least had hit him. He + did not pause, however, but bounded onward. Far away on the path we + saw Sir Henry looking back, his face white in the moonlight, his + hands raised in horror, glaring helplessly at the frightful thing + which was hunting him down. + + But that cry of pain from the hound had blown all our fears to the + winds. If he was vulnerable he was mortal, and if we could wound him + we could kill him. Never have I seen a man run as Holmes ran that + night. I am reckoned fleet of foot, but he outpaced me as much as I + outpaced the little professional. In front of us as we flew up the + track we heard scream after scream from Sir Henry and the deep roar + of the hound. I was in time to see the beast spring upon its victim, + hurl him to the ground, and worry at his throat. But the next instant + Holmes had emptied five barrels of his revolver into the creature's + flank. With a last howl of agony and a vicious snap in the air, it + rolled upon its back, four feet pawing furiously, and then fell limp + upon its side. I stooped, panting, and pressed my pistol to the + dreadful, shimmering head, but it was useless to press the trigger. + The giant hound was dead. + + Sir Henry lay insensible where he had fallen. We tore away his + collar, and Holmes breathed a prayer of gratitude when we saw that + there was no sign of a wound and that the rescue had been in time. + Already our friend's eyelids shivered and he made a feeble effort to + move. Lestrade thrust his brandy-flask between the baronet's teeth, + and two frightened eyes were looking up at us. + + "My God!" he whispered. "What was it? What, in heaven's name, was + it?" + + "It's dead, whatever it is," said Holmes. "We've laid the family + ghost once and forever." + + In mere size and strength it was a terrible creature which was lying + stretched before us. It was not a pure bloodhound and it was not a + pure mastiff; but it appeared to be a combination of the two--gaunt, + savage, and as large as a small lioness. Even now, in the stillness + of death, the huge jaws seemed to be dripping with a bluish flame and + the small, deep-set, cruel eyes were ringed with fire. I placed my + hand upon the glowing muzzle, and as I held them up my own fingers + smouldered and gleamed in the darkness. + + "Phosphorus," I said. + + "A cunning preparation of it," said Holmes, sniffing at the dead + animal. "There is no smell which might have interfered with his power + of scent. We owe you a deep apology, Sir Henry, for having exposed + you to this fright. I was prepared for a hound, but not for such a + creature as this. And the fog gave us little time to receive him." + + "You have saved my life." + + "Having first endangered it. Are you strong enough to stand?" + + "Give me another mouthful of that brandy and I shall be ready for + anything. So! Now, if you will help me up. What do you propose to + do?" + + "To leave you here. You are not fit for further adventures to-night. + If you will wait, one or other of us will go back with you to the + Hall." + + He tried to stagger to his feet; but he was still ghastly pale and + trembling in every limb. We helped him to a rock, where he sat + shivering with his face buried in his hands. + + "We must leave you now," said Holmes. "The rest of our work must be + done, and every moment is of importance. We have our case, and now we + only want our man. + + "It's a thousand to one against our finding him at the house," he + continued as we retraced our steps swiftly down the path. "Those + shots must have told him that the game was up." + + "We were some distance off, and this fog may have deadened them." + + "He followed the hound to call him off--of that you may be certain. + No, no, he's gone by this time! But we'll search the house and make + sure." + + The front door was open, so we rushed in and hurried from room to + room to the amazement of a doddering old manservant, who met us in + the passage. There was no light save in the dining-room, but Holmes + caught up the lamp and left no corner of the house unexplored. No + sign could we see of the man whom we were chasing. On the upper + floor, however, one of the bedroom doors was locked. + + "There's someone in here," cried Lestrade. "I can hear a movement. + Open this door!" + + A faint moaning and rustling came from within. Holmes struck the door + just over the lock with the flat of his foot and it flew open. Pistol + in hand, we all three rushed into the room. + + But there was no sign within it of that desperate and defiant villain + whom we expected to see. Instead we were faced by an object so + strange and so unexpected that we stood for a moment staring at it in + amazement. + + The room had been fashioned into a small museum, and the walls were + lined by a number of glass-topped cases full of that collection of + butterflies and moths the formation of which had been the relaxation + of this complex and dangerous man. In the centre of this room there + was an upright beam, which had been placed at some period as a + support for the old worm-eaten baulk of timber which spanned the + roof. To this post a figure was tied, so swathed and muffled in the + sheets which had been used to secure it that one could not for the + moment tell whether it was that of a man or a woman. One towel passed + round the throat and was secured at the back of the pillar. Another + covered the lower part of the face, and over it two dark eyes--eyes + full of grief and shame and a dreadful questioning--stared back at + us. In a minute we had torn off the gag, unswathed the bonds, and + Mrs. Stapleton sank upon the floor in front of us. As her beautiful + head fell upon her chest I saw the clear red weal of a whiplash + across her neck. + + "The brute!" cried Holmes. "Here, Lestrade, your brandy-bottle! Put + her in the chair! She has fainted from ill-usage and exhaustion." + + She opened her eyes again. + + "Is he safe?" she asked. "Has he escaped?" + + "He cannot escape us, madam." + + "No, no, I did not mean my husband. Sir Henry? Is he safe?" + + "Yes." + + "And the hound?" + + "It is dead." + + She gave a long sigh of satisfaction. + + "Thank God! Thank God! Oh, this villain! See how he has treated me!" + She shot her arms out from her sleeves, and we saw with horror that + they were all mottled with bruises. "But this is nothing--nothing! It + is my mind and soul that he has tortured and defiled. I could endure + it all, ill-usage, solitude, a life of deception, everything, as long + as I could still cling to the hope that I had his love, but now I + know that in this also I have been his dupe and his tool." She broke + into passionate sobbing as she spoke. + + "You bear him no good will, madam," said Holmes. "Tell us then where + we shall find him. If you have ever aided him in evil, help us now + and so atone." + + "There is but one place where he can have fled," she answered. "There + is an old tin mine on an island in the heart of the mire. It was + there that he kept his hound and there also he had made preparations + so that he might have a refuge. That is where he would fly." + + The fog-bank lay like white wool against the window. Holmes held the + lamp towards it. + + "See," said he. "No one could find his way into the Grimpen Mire + to-night." + + She laughed and clapped her hands. Her eyes and teeth gleamed with + fierce merriment. + + "He may find his way in, but never out," she cried. "How can he see + the guiding wands to-night? We planted them together, he and I, to + mark the pathway through the mire. Oh, if I could only have plucked + them out to-day. Then indeed you would have had him at your mercy!" + + It was evident to us that all pursuit was in vain until the fog had + lifted. Meanwhile we left Lestrade in possession of the house while + Holmes and I went back with the baronet to Baskerville Hall. The + story of the Stapletons could no longer be withheld from him, but he + took the blow bravely when he learned the truth about the woman whom + he had loved. But the shock of the night's adventures had shattered + his nerves, and before morning he lay delirious in a high fever, + under the care of Dr. Mortimer. The two of them were destined to + travel together round the world before Sir Henry had become once more + the hale, hearty man that he had been before he became master of that + ill-omened estate. + + And now I come rapidly to the conclusion of this singular narrative, + in which I have tried to make the reader share those dark fears and + vague surmises which clouded our lives so long and ended in so tragic + a manner. On the morning after the death of the hound the fog had + lifted and we were guided by Mrs. Stapleton to the point where they + had found a pathway through the bog. It helped us to realize the + horror of this woman's life when we saw the eagerness and joy with + which she laid us on her husband's track. We left her standing upon + the thin peninsula of firm, peaty soil which tapered out into the + widespread bog. From the end of it a small wand planted here and + there showed where the path zigzagged from tuft to tuft of rushes + among those green-scummed pits and foul quagmires which barred the + way to the stranger. Rank reeds and lush, slimy water-plants sent an + odour of decay and a heavy miasmatic vapour onto our faces, while a + false step plunged us more than once thigh-deep into the dark, + quivering mire, which shook for yards in soft undulations around our + feet. Its tenacious grip plucked at our heels as we walked, and when + we sank into it it was as if some malignant hand was tugging us down + into those obscene depths, so grim and purposeful was the clutch in + which it held us. Once only we saw a trace that someone had passed + that perilous way before us. From amid a tuft of cotton grass which + bore it up out of the slime some dark thing was projecting. Holmes + sank to his waist as he stepped from the path to seize it, and had we + not been there to drag him out he could never have set his foot upon + firm land again. He held an old black boot in the air. "Meyers, + Toronto," was printed on the leather inside. + + "It is worth a mud bath," said he. "It is our friend Sir Henry's + missing boot." + + "Thrown there by Stapleton in his flight." + + "Exactly. He retained it in his hand after using it to set the hound + upon the track. He fled when he knew the game was up, still clutching + it. And he hurled it away at this point of his flight. We know at + least that he came so far in safety." + + But more than that we were never destined to know, though there was + much which we might surmise. There was no chance of finding footsteps + in the mire, for the rising mud oozed swiftly in upon them, but as we + at last reached firmer ground beyond the morass we all looked eagerly + for them. But no slightest sign of them ever met our eyes. If the + earth told a true story, then Stapleton never reached that island of + refuge towards which he struggled through the fog upon that last + night. Somewhere in the heart of the great Grimpen Mire, down in the + foul slime of the huge morass which had sucked him in, this cold and + cruel-hearted man is forever buried. + + Many traces we found of him in the bog-girt island where he had hid + his savage ally. A huge driving-wheel and a shaft half-filled with + rubbish showed the position of an abandoned mine. Beside it were the + crumbling remains of the cottages of the miners, driven away no doubt + by the foul reek of the surrounding swamp. In one of these a staple + and chain with a quantity of gnawed bones showed where the animal had + been confined. A skeleton with a tangle of brown hair adhering to it + lay among the debris. + + "A dog!" said Holmes. "By Jove, a curly-haired spaniel. Poor Mortimer + will never see his pet again. Well, I do not know that this place + contains any secret which we have not already fathomed. He could hide + his hound, but he could not hush its voice, and hence came those + cries which even in daylight were not pleasant to hear. On an + emergency he could keep the hound in the out-house at Merripit, but + it was always a risk, and it was only on the supreme day, which he + regarded as the end of all his efforts, that he dared do it. This + paste in the tin is no doubt the luminous mixture with which the + creature was daubed. It was suggested, of course, by the story of the + family hell-hound, and by the desire to frighten old Sir Charles to + death. No wonder the poor devil of a convict ran and screamed, even + as our friend did, and as we ourselves might have done, when he saw + such a creature bounding through the darkness of the moor upon his + track. It was a cunning device, for, apart from the chance of driving + your victim to his death, what peasant would venture to inquire too + closely into such a creature should he get sight of it, as many have + done, upon the moor? I said it in London, Watson, and I say it again + now, that never yet have we helped to hunt down a more dangerous man + than he who is lying yonder"--he swept his long arm towards the huge + mottled expanse of green-splotched bog which stretched away until it + merged into the russet slopes of the moor. + + + + + + CHAPTER XV + A Retrospection + + + It was the end of November and Holmes and I sat, upon a raw and foggy + night, on either side of a blazing fire in our sitting-room in Baker + Street. Since the tragic upshot of our visit to Devonshire he had + been engaged in two affairs of the utmost importance, in the first of + which he had exposed the atrocious conduct of Colonel Upwood in + connection with the famous card scandal of the Nonpareil Club, while + in the second he had defended the unfortunate Mme. Montpensier from + the charge of murder which hung over her in connection with the death + of her step-daughter, Mlle. Carere, the young lady who, as it will be + remembered, was found six months later alive and married in New York. + My friend was in excellent spirits over the success which had + attended a succession of difficult and important cases, so that I was + able to induce him to discuss the details of the Baskerville mystery. + I had waited patiently for the opportunity, for I was aware that he + would never permit cases to overlap, and that his clear and logical + mind would not be drawn from its present work to dwell upon memories + of the past. Sir Henry and Dr. Mortimer were, however, in London, on + their way to that long voyage which had been recommended for the + restoration of his shattered nerves. They had called upon us that + very afternoon, so that it was natural that the subject should come + up for discussion. + + "The whole course of events," said Holmes, "from the point of view of + the man who called himself Stapleton was simple and direct, although + to us, who had no means in the beginning of knowing the motives of + his actions and could only learn part of the facts, it all appeared + exceedingly complex. I have had the advantage of two conversations + with Mrs. Stapleton, and the case has now been so entirely cleared up + that I am not aware that there is anything which has remained a + secret to us. You will find a few notes upon the matter under the + heading B in my indexed list of cases." + + "Perhaps you would kindly give me a sketch of the course of events + from memory." + + "Certainly, though I cannot guarantee that I carry all the facts in + my mind. Intense mental concentration has a curious way of blotting + out what has passed. The barrister who has his case at his fingers' + ends, and is able to argue with an expert upon his own subject finds + that a week or two of the courts will drive it all out of his head + once more. So each of my cases displaces the last, and Mlle. Carere + has blurred my recollection of Baskerville Hall. To-morrow some other + little problem may be submitted to my notice which will in turn + dispossess the fair French lady and the infamous Upwood. So far as + the case of the Hound goes, however, I will give you the course of + events as nearly as I can, and you will suggest anything which I may + have forgotten. + + "My inquiries show beyond all question that the family portrait did + not lie, and that this fellow was indeed a Baskerville. He was a son + of that Rodger Baskerville, the younger brother of Sir Charles, who + fled with a sinister reputation to South America, where he was said + to have died unmarried. He did, as a matter of fact, marry, and had + one child, this fellow, whose real name is the same as his father's. + He married Beryl Garcia, one of the beauties of Costa Rica, and, + having purloined a considerable sum of public money, he changed his + name to Vandeleur and fled to England, where he established a school + in the east of Yorkshire. His reason for attempting this special line + of business was that he had struck up an acquaintance with a + consumptive tutor upon the voyage home, and that he had used this + man's ability to make the undertaking a success. Fraser, the tutor, + died however, and the school which had begun well sank from disrepute + into infamy. The Vandeleurs found it convenient to change their name + to Stapleton, and he brought the remains of his fortune, his schemes + for the future, and his taste for entomology to the south of England. + I learned at the British Museum that he was a recognized authority + upon the subject, and that the name of Vandeleur has been permanently + attached to a certain moth which he had, in his Yorkshire days, been + the first to describe. + + "We now come to that portion of his life which has proved to be of + such intense interest to us. The fellow had evidently made inquiry + and found that only two lives intervened between him and a valuable + estate. When he went to Devonshire his plans were, I believe, + exceedingly hazy, but that he meant mischief from the first is + evident from the way in which he took his wife with him in the + character of his sister. The idea of using her as a decoy was clearly + already in his mind, though he may not have been certain how the + details of his plot were to be arranged. He meant in the end to have + the estate, and he was ready to use any tool or run any risk for that + end. His first act was to establish himself as near to his ancestral + home as he could, and his second was to cultivate a friendship with + Sir Charles Baskerville and with the neighbours. + + "The baronet himself told him about the family hound, and so prepared + the way for his own death. Stapleton, as I will continue to call him, + knew that the old man's heart was weak and that a shock would kill + him. So much he had learned from Dr. Mortimer. He had heard also that + Sir Charles was superstitious and had taken this grim legend very + seriously. His ingenious mind instantly suggested a way by which the + baronet could be done to death, and yet it would be hardly possible + to bring home the guilt to the real murderer. + + "Having conceived the idea he proceeded to carry it out with + considerable finesse. An ordinary schemer would have been content to + work with a savage hound. The use of artificial means to make the + creature diabolical was a flash of genius upon his part. The dog he + bought in London from Ross and Mangles, the dealers in Fulham Road. + It was the strongest and most savage in their possession. He brought + it down by the North Devon line and walked a great distance over the + moor so as to get it home without exciting any remarks. He had + already on his insect hunts learned to penetrate the Grimpen Mire, + and so had found a safe hiding-place for the creature. Here he + kennelled it and waited his chance. + + "But it was some time coming. The old gentleman could not be decoyed + outside of his grounds at night. Several times Stapleton lurked about + with his hound, but without avail. It was during these fruitless + quests that he, or rather his ally, was seen by peasants, and that + the legend of the demon dog received a new confirmation. He had hoped + that his wife might lure Sir Charles to his ruin, but here she proved + unexpectedly independent. She would not endeavour to entangle the old + gentleman in a sentimental attachment which might deliver him over to + his enemy. Threats and even, I am sorry to say, blows refused to move + her. She would have nothing to do with it, and for a time Stapleton + was at a deadlock. + + "He found a way out of his difficulties through the chance that Sir + Charles, who had conceived a friendship for him, made him the + minister of his charity in the case of this unfortunate woman, Mrs. + Laura Lyons. By representing himself as a single man he acquired + complete influence over her, and he gave her to understand that in + the event of her obtaining a divorce from her husband he would marry + her. His plans were suddenly brought to a head by his knowledge that + Sir Charles was about to leave the Hall on the advice of Dr. + Mortimer, with whose opinion he himself pretended to coincide. He + must act at once, or his victim might get beyond his power. He + therefore put pressure upon Mrs. Lyons to write this letter, + imploring the old man to give her an interview on the evening before + his departure for London. He then, by a specious argument, prevented + her from going, and so had the chance for which he had waited. + + "Driving back in the evening from Coombe Tracey he was in time to get + his hound, to treat it with his infernal paint, and to bring the + beast round to the gate at which he had reason to expect that he + would find the old gentleman waiting. The dog, incited by its master, + sprang over the wicket-gate and pursued the unfortunate baronet, who + fled screaming down the Yew Alley. In that gloomy tunnel it must + indeed have been a dreadful sight to see that huge black creature, + with its flaming jaws and blazing eyes, bounding after its victim. He + fell dead at the end of the alley from heart disease and terror. The + hound had kept upon the grassy border while the baronet had run down + the path, so that no track but the man's was visible. On seeing him + lying still the creature had probably approached to sniff at him, but + finding him dead had turned away again. It was then that it left the + print which was actually observed by Dr. Mortimer. The hound was + called off and hurried away to its lair in the Grimpen Mire, and a + mystery was left which puzzled the authorities, alarmed the + country-side, and finally brought the case within the scope of our + observation. + + "So much for the death of Sir Charles Baskerville. You perceive the + devilish cunning of it, for really it would be almost impossible to + make a case against the real murderer. His only accomplice was one + who could never give him away, and the grotesque, inconceivable + nature of the device only served to make it more effective. Both of + the women concerned in the case, Mrs. Stapleton and Mrs. Laura Lyons, + were left with a strong suspicion against Stapleton. Mrs. Stapleton + knew that he had designs upon the old man, and also of the existence + of the hound. Mrs. Lyons knew neither of these things, but had been + impressed by the death occurring at the time of an uncancelled + appointment which was only known to him. However, both of them were + under his influence, and he had nothing to fear from them. The first + half of his task was successfully accomplished but the more difficult + still remained. + + "It is possible that Stapleton did not know of the existence of an + heir in Canada. In any case he would very soon learn it from his + friend Dr. Mortimer, and he was told by the latter all details about + the arrival of Henry Baskerville. Stapleton's first idea was that + this young stranger from Canada might possibly be done to death in + London without coming down to Devonshire at all. He distrusted his + wife ever since she had refused to help him in laying a trap for the + old man, and he dared not leave her long out of his sight for fear he + should lose his influence over her. It was for this reason that he + took her to London with him. They lodged, I find, at the Mexborough + Private Hotel, in Craven Street, which was actually one of those + called upon by my agent in search of evidence. Here he kept his wife + imprisoned in her room while he, disguised in a beard, followed Dr. + Mortimer to Baker Street and afterwards to the station and to the + Northumberland Hotel. His wife had some inkling of his plans; but she + had such a fear of her husband--a fear founded upon brutal + ill-treatment--that she dare not write to warn the man whom she knew + to be in danger. If the letter should fall into Stapleton's hands her + own life would not be safe. Eventually, as we know, she adopted the + expedient of cutting out the words which would form the message, and + addressing the letter in a disguised hand. It reached the baronet, + and gave him the first warning of his danger. + + "It was very essential for Stapleton to get some article of Sir + Henry's attire so that, in case he was driven to use the dog, he + might always have the means of setting him upon his track. With + characteristic promptness and audacity he set about this at once, and + we cannot doubt that the boots or chamber-maid of the hotel was well + bribed to help him in his design. By chance, however, the first boot + which was procured for him was a new one and, therefore, useless for + his purpose. He then had it returned and obtained another--a most + instructive incident, since it proved conclusively to my mind that we + were dealing with a real hound, as no other supposition could explain + this anxiety to obtain an old boot and this indifference to a new + one. The more outré and grotesque an incident is the more carefully + it deserves to be examined, and the very point which appears to + complicate a case is, when duly considered and scientifically + handled, the one which is most likely to elucidate it. + + "Then we had the visit from our friends next morning, shadowed always + by Stapleton in the cab. From his knowledge of our rooms and of my + appearance, as well as from his general conduct, I am inclined to + think that Stapleton's career of crime has been by no means limited + to this single Baskerville affair. It is suggestive that during the + last three years there have been four considerable burglaries in the + West Country, for none of which was any criminal ever arrested. The + last of these, at Folkestone Court, in May, was remarkable for the + cold-blooded pistoling of the page, who surprised the masked and + solitary burglar. I cannot doubt that Stapleton recruited his waning + resources in this fashion, and that for years he has been a desperate + and dangerous man. + + "We had an example of his readiness of resource that morning when he + got away from us so successfully, and also of his audacity in sending + back my own name to me through the cabman. From that moment he + understood that I had taken over the case in London, and that + therefore there was no chance for him there. He returned to Dartmoor + and awaited the arrival of the baronet." + + "One moment!" said I. "You have, no doubt, described the sequence of + events correctly, but there is one point which you have left + unexplained. What became of the hound when its master was in London?" + + "I have given some attention to this matter and it is undoubtedly of + importance. There can be no question that Stapleton had a confidant, + though it is unlikely that he ever placed himself in his power by + sharing all his plans with him. There was an old manservant at + Merripit House, whose name was Anthony. His connection with the + Stapletons can be traced for several years, as far back as the + schoolmastering days, so that he must have been aware that his master + and mistress were really husband and wife. This man has disappeared + and has escaped from the country. It is suggestive that Anthony is + not a common name in England, while Antonio is so in all Spanish or + Spanish-American countries. The man, like Mrs. Stapleton herself, + spoke good English, but with a curious lisping accent. I have myself + seen this old man cross the Grimpen Mire by the path which Stapleton + had marked out. It is very probable, therefore, that in the absence + of his master it was he who cared for the hound, though he may never + have known the purpose for which the beast was used. + + "The Stapletons then went down to Devonshire, whither they were soon + followed by Sir Henry and you. One word now as to how I stood myself + at that time. It may possibly recur to your memory that when I + examined the paper upon which the printed words were fastened I made + a close inspection for the water-mark. In doing so I held it within a + few inches of my eyes, and was conscious of a faint smell of the + scent known as white jessamine. There are seventy-five perfumes, + which it is very necessary that a criminal expert should be able to + distinguish from each other, and cases have more than once within my + own experience depended upon their prompt recognition. The scent + suggested the presence of a lady, and already my thoughts began to + turn towards the Stapletons. Thus I had made certain of the hound, + and had guessed at the criminal before ever we went to the west + country. + + "It was my game to watch Stapleton. It was evident, however, that I + could not do this if I were with you, since he would be keenly on his + guard. I deceived everybody, therefore, yourself included, and I came + down secretly when I was supposed to be in London. My hardships were + not so great as you imagined, though such trifling details must never + interfere with the investigation of a case. I stayed for the most + part at Coombe Tracey, and only used the hut upon the moor when it + was necessary to be near the scene of action. Cartwright had come + down with me, and in his disguise as a country boy he was of great + assistance to me. I was dependent upon him for food and clean linen. + When I was watching Stapleton, Cartwright was frequently watching + you, so that I was able to keep my hand upon all the strings. + + "I have already told you that your reports reached me rapidly, being + forwarded instantly from Baker Street to Coombe Tracey. They were of + great service to me, and especially that one incidentally truthful + piece of biography of Stapleton's. I was able to establish the + identity of the man and the woman and knew at last exactly how I + stood. The case had been considerably complicated through the + incident of the escaped convict and the relations between him and the + Barrymores. This also you cleared up in a very effective way, though + I had already come to the same conclusions from my own observations. + + "By the time that you discovered me upon the moor I had a complete + knowledge of the whole business, but I had not a case which could go + to a jury. Even Stapleton's attempt upon Sir Henry that night which + ended in the death of the unfortunate convict did not help us much in + proving murder against our man. There seemed to be no alternative but + to catch him red-handed, and to do so we had to use Sir Henry, alone + and apparently unprotected, as a bait. We did so, and at the cost of + a severe shock to our client we succeeded in completing our case and + driving Stapleton to his destruction. That Sir Henry should have been + exposed to this is, I must confess, a reproach to my management of + the case, but we had no means of foreseeing the terrible and + paralyzing spectacle which the beast presented, nor could we predict + the fog which enabled him to burst upon us at such short notice. We + succeeded in our object at a cost which both the specialist and Dr. + Mortimer assure me will be a temporary one. A long journey may enable + our friend to recover not only from his shattered nerves but also + from his wounded feelings. His love for the lady was deep and + sincere, and to him the saddest part of all this black business was + that he should have been deceived by her. + + "It only remains to indicate the part which she had played + throughout. There can be no doubt that Stapleton exercised an + influence over her which may have been love or may have been fear, or + very possibly both, since they are by no means incompatible emotions. + It was, at least, absolutely effective. At his command she consented + to pass as his sister, though he found the limits of his power over + her when he endeavoured to make her the direct accessory to murder. + She was ready to warn Sir Henry so far as she could without + implicating her husband, and again and again she tried to do so. + Stapleton himself seems to have been capable of jealousy, and when he + saw the baronet paying court to the lady, even though it was part of + his own plan, still he could not help interrupting with a passionate + outburst which revealed the fiery soul which his self-contained + manner so cleverly concealed. By encouraging the intimacy he made it + certain that Sir Henry would frequently come to Merripit House and + that he would sooner or later get the opportunity which he desired. + On the day of the crisis, however, his wife turned suddenly against + him. She had learned something of the death of the convict, and she + knew that the hound was being kept in the out-house on the evening + that Sir Henry was coming to dinner. She taxed her husband with his + intended crime, and a furious scene followed, in which he showed her + for the first time that she had a rival in his love. Her fidelity + turned in an instant to bitter hatred and he saw that she would + betray him. He tied her up, therefore, that she might have no chance + of warning Sir Henry, and he hoped, no doubt, that when the whole + country-side put down the baronet's death to the curse of his family, + as they certainly would do, he could win his wife back to accept an + accomplished fact and to keep silent upon what she knew. In this I + fancy that in any case he made a miscalculation, and that, if we had + not been there, his doom would none the less have been sealed. A + woman of Spanish blood does not condone such an injury so lightly. + And now, my dear Watson, without referring to my notes, I cannot give + you a more detailed account of this curious case. I do not know that + anything essential has been left unexplained." + + "He could not hope to frighten Sir Henry to death as he had done the + old uncle with his bogie hound." + + "The beast was savage and half-starved. If its appearance did not + frighten its victim to death, at least it would paralyze the + resistance which might be offered." + + "No doubt. There only remains one difficulty. If Stapleton came into + the succession, how could he explain the fact that he, the heir, had + been living unannounced under another name so close to the property? + How could he claim it without causing suspicion and inquiry?" + + "It is a formidable difficulty, and I fear that you ask too much when + you expect me to solve it. The past and the present are within the + field of my inquiry, but what a man may do in the future is a hard + question to answer. Mrs. Stapleton has heard her husband discuss the + problem on several occasions. There were three possible courses. He + might claim the property from South America, establish his identity + before the British authorities there and so obtain the fortune + without ever coming to England at all; or he might adopt an elaborate + disguise during the short time that he need be in London; or, again, + he might furnish an accomplice with the proofs and papers, putting + him in as heir, and retaining a claim upon some proportion of his + income. We cannot doubt from what we know of him that he would have + found some way out of the difficulty. And now, my dear Watson, we + have had some weeks of severe work, and for one evening, I think, we + may turn our thoughts into more pleasant channels. I have a box for + 'Les Huguenots.' Have you heard the De Reszkes? Might I trouble you + then to be ready in half an hour, and we can stop at Marcini's for a + little dinner on the way?" + + + + + + + THE VALLEY OF FEAR + + + + + + Table of contents + + Part I + The Warning + Sherlock Holmes Discourses + The Tragedy of Birlstone + Darkness + The People Of the Drama + A Dawning Light + The Solution + + Part II + The Man + The Bodymaster + Lodge 341, Vermissa + The Valley of Fear + The Darkest Hour + Danger + The Trapping of Birdy Edwards + Epilogue + + + + + + + + + + + + + + + + + + + + PART I + + The Tragedy of Birlstone + + + + + + CHAPTER I + The Warning + + + "I am inclined to think--" said I. + + "I should do so," Sherlock Holmes remarked impatiently. + + I believe that I am one of the most long-suffering of mortals; but + I'll admit that I was annoyed at the sardonic interruption. + + "Really, Holmes," said I severely, "you are a little trying at + times." + + He was too much absorbed with his own thoughts to give any immediate + answer to my remonstrance. He leaned upon his hand, with his untasted + breakfast before him, and he stared at the slip of paper which he had + just drawn from its envelope. Then he took the envelope itself, held + it up to the light, and very carefully studied both the exterior and + the flap. + + "It is Porlock's writing," said he thoughtfully. "I can hardly doubt + that it is Porlock's writing, though I have seen it only twice + before. The Greek e with the peculiar top flourish is distinctive. + But if it is Porlock, then it must be something of the very first + importance." + + He was speaking to himself rather than to me; but my vexation + disappeared in the interest which the words awakened. + + "Who then is Porlock?" I asked. + + "Porlock, Watson, is a nom-de-plume, a mere identification mark; but + behind it lies a shifty and evasive personality. In a former letter + he frankly informed me that the name was not his own, and defied me + ever to trace him among the teeming millions of this great city. + Porlock is important, not for himself, but for the great man with + whom he is in touch. Picture to yourself the pilot fish with the + shark, the jackal with the lion--anything that is insignificant in + companionship with what is formidable: not only formidable, Watson, + but sinister--in the highest degree sinister. That is where he comes + within my purview. You have heard me speak of Professor Moriarty?" + + "The famous scientific criminal, as famous among crooks as--" + + "My blushes, Watson!" Holmes murmured in a deprecating voice. + + "I was about to say, as he is unknown to the public." + + "A touch! A distinct touch!" cried Holmes. "You are developing a + certain unexpected vein of pawky humour, Watson, against which I must + learn to guard myself. But in calling Moriarty a criminal you are + uttering libel in the eyes of the law--and there lie the glory and + the wonder of it! The greatest schemer of all time, the organizer of + every deviltry, the controlling brain of the underworld, a brain + which might have made or marred the destiny of nations--that's the + man! But so aloof is he from general suspicion, so immune from + criticism, so admirable in his management and self-effacement, that + for those very words that you have uttered he could hale you to a + court and emerge with your year's pension as a solatium for his + wounded character. Is he not the celebrated author of The Dynamics of + an Asteroid, a book which ascends to such rarefied heights of pure + mathematics that it is said that there was no man in the scientific + press capable of criticizing it? Is this a man to traduce? + Foul-mouthed doctor and slandered professor--such would be your + respective roles! That's genius, Watson. But if I am spared by lesser + men, our day will surely come." + + "May I be there to see!" I exclaimed devoutly. "But you were speaking + of this man Porlock." + + "Ah, yes--the so-called Porlock is a link in the chain some little + way from its great attachment. Porlock is not quite a sound + link--between ourselves. He is the only flaw in that chain so far as + I have been able to test it." + + "But no chain is stronger than its weakest link." + + "Exactly, my dear Watson! Hence the extreme importance of Porlock. + Led on by some rudimentary aspirations towards right, and encouraged + by the judicious stimulation of an occasional ten-pound note sent to + him by devious methods, he has once or twice given me advance + information which has been of value--that highest value which + anticipates and prevents rather than avenges crime. I cannot doubt + that, if we had the cipher, we should find that this communication is + of the nature that I indicate." + + Again Holmes flattened out the paper upon his unused plate. I rose + and, leaning over him, stared down at the curious inscription, which + ran as follows: + + 534 C2 13 127 36 31 4 17 21 41 + DOUGLAS 109 293 5 37 BIRLSTONE + 26 BIRLSTONE 9 47 171 + + "What do you make of it, Holmes?" + + "It is obviously an attempt to convey secret information." + + "But what is the use of a cipher message without the cipher?" + + "In this instance, none at all." + + "Why do you say 'in this instance'?" + + "Because there are many ciphers which I would read as easily as I do + the apocrypha of the agony column: such crude devices amuse the + intelligence without fatiguing it. But this is different. It is + clearly a reference to the words in a page of some book. Until I am + told which page and which book I am powerless." + + "But why 'Douglas' and 'Birlstone'?" + + "Clearly because those are words which were not contained in the page + in question." + + "Then why has he not indicated the book?" + + "Your native shrewdness, my dear Watson, that innate cunning which is + the delight of your friends, would surely prevent you from inclosing + cipher and message in the same envelope. Should it miscarry, you are + undone. As it is, both have to go wrong before any harm comes from + it. Our second post is now overdue, and I shall be surprised if it + does not bring us either a further letter of explanation, or, as is + more probable, the very volume to which these figures refer." + + Holmes's calculation was fulfilled within a very few minutes by the + appearance of Billy, the page, with the very letter which we were + expecting. + + "The same writing," remarked Holmes, as he opened the envelope, "and + actually signed," he added in an exultant voice as he unfolded the + epistle. "Come, we are getting on, Watson." His brow clouded, + however, as he glanced over the contents. + + "Dear me, this is very disappointing! I fear, Watson, that all our + expectations come to nothing. I trust that the man Porlock will come + to no harm. + + "Dear Mr. Holmes [he says]: + "I will go no further in this matter. It is too dangerous--he + suspects me. I can see that he suspects me. He came to me quite + unexpectedly after I had actually addressed this envelope with the + intention of sending you the key to the cipher. I was able to cover + it up. If he had seen it, it would have gone hard with me. But I read + suspicion in his eyes. Please burn the cipher message, which can now + be of no use to you. + "Fred Porlock." + + Holmes sat for some little time twisting this letter between his + fingers, and frowning, as he stared into the fire. + + "After all," he said at last, "there may be nothing in it. It may be + only his guilty conscience. Knowing himself to be a traitor, he may + have read the accusation in the other's eyes." + + "The other being, I presume, Professor Moriarty." + + "No less! When any of that party talk about 'He' you know whom they + mean. There is one predominant 'He' for all of them." + + "But what can he do?" + + "Hum! That's a large question. When you have one of the first brains + of Europe up against you, and all the powers of darkness at his back, + there are infinite possibilities. Anyhow, Friend Porlock is evidently + scared out of his senses--kindly compare the writing in the note to + that upon its envelope; which was done, he tells us, before this + ill-omened visit. The one is clear and firm. The other hardly + legible." + + "Why did he write at all? Why did he not simply drop it?" + + "Because he feared I would make some inquiry after him in that case, + and possibly bring trouble on him." + + "No doubt," said I. "Of course." I had picked up the original cipher + message and was bending my brows over it. "It's pretty maddening to + think that an important secret may lie here on this slip of paper, + and that it is beyond human power to penetrate it." + + Sherlock Holmes had pushed away his untasted breakfast and lit the + unsavoury pipe which was the companion of his deepest meditations. "I + wonder!" said he, leaning back and staring at the ceiling. "Perhaps + there are points which have escaped your Machiavellian intellect. Let + us consider the problem in the light of pure reason. This man's + reference is to a book. That is our point of departure." + + "A somewhat vague one." + + "Let us see then if we can narrow it down. As I focus my mind upon + it, it seems rather less impenetrable. What indications have we as to + this book?" + + "None." + + "Well, well, it is surely not quite so bad as that. The cipher + message begins with a large 534, does it not? We may take it as a + working hypothesis that 534 is the particular page to which the + cipher refers. So our book has already become a large book which is + surely something gained. What other indications have we as to the + nature of this large book? The next sign is C2. What do you make of + that, Watson?" + + "Chapter the second, no doubt." + + "Hardly that, Watson. You will, I am sure, agree with me that if the + page be given, the number of the chapter is immaterial. Also that if + page 534 finds us only in the second chapter, the length of the first + one must have been really intolerable." + + "Column!" I cried. + + "Brilliant, Watson. You are scintillating this morning. If it is not + column, then I am very much deceived. So now, you see, we begin to + visualize a large book printed in double columns which are each of a + considerable length, since one of the words is numbered in the + document as the two hundred and ninety-third. Have we reached the + limits of what reason can supply?" + + "I fear that we have." + + "Surely you do yourself an injustice. One more coruscation, my dear + Watson--yet another brain-wave! Had the volume been an unusual one, + he would have sent it to me. Instead of that, he had intended, before + his plans were nipped, to send me the clue in this envelope. He says + so in his note. This would seem to indicate that the book is one + which he thought I would have no difficulty in finding for myself. He + had it--and he imagined that I would have it, too. In short, Watson, + it is a very common book." + + "What you say certainly sounds plausible." + + "So we have contracted our field of search to a large book, printed + in double columns and in common use." + + "The Bible!" I cried triumphantly. + + "Good, Watson, good! But not, if I may say so, quite good enough! + Even if I accepted the compliment for myself I could hardly name any + volume which would be less likely to lie at the elbow of one of + Moriarty's associates. Besides, the editions of Holy Writ are so + numerous that he could hardly suppose that two copies would have the + same pagination. This is clearly a book which is standardized. He + knows for certain that his page 534 will exactly agree with my page + 534." + + "But very few books would correspond with that." + + "Exactly. Therein lies our salvation. Our search is narrowed down to + standardized books which anyone may be supposed to possess." + + "Bradshaw!" + + "There are difficulties, Watson. The vocabulary of Bradshaw is + nervous and terse, but limited. The selection of words would hardly + lend itself to the sending of general messages. We will eliminate + Bradshaw. The dictionary is, I fear, inadmissible for the same + reason. What then is left?" + + "An almanac!" + + "Excellent, Watson! I am very much mistaken if you have not touched + the spot. An almanac! Let us consider the claims of Whitaker's + Almanac. It is in common use. It has the requisite number of pages. + It is in double column. Though reserved in its earlier vocabulary, it + becomes, if I remember right, quite garrulous towards the end." He + picked the volume from his desk. "Here is page 534, column two, a + substantial block of print dealing, I perceive, with the trade and + resources of British India. Jot down the words, Watson! Number + thirteen is 'Mahratta.' Not, I fear, a very auspicious beginning. + Number one hundred and twenty-seven is 'Government'; which at least + makes sense, though somewhat irrelevant to ourselves and Professor + Moriarty. Now let us try again. What does the Mahratta government do? + Alas! the next word is 'pig's-bristles.' We are undone, my good + Watson! It is finished!" + + He had spoken in jesting vein, but the twitching of his bushy + eyebrows bespoke his disappointment and irritation. I sat helpless + and unhappy, staring into the fire. A long silence was broken by a + sudden exclamation from Holmes, who dashed at a cupboard, from which + he emerged with a second yellow-covered volume in his hand. + + "We pay the price, Watson, for being too up-to-date!" he cried. "We + are before our time, and suffer the usual penalties. Being the + seventh of January, we have very properly laid in the new almanac. It + is more than likely that Porlock took his message from the old one. + No doubt he would have told us so had his letter of explanation been + written. Now let us see what page 534 has in store for us. Number + thirteen is 'There,' which is much more promising. Number one hundred + and twenty-seven is 'is'--'There is'"--Holmes's eyes were gleaming + with excitement, and his thin, nervous fingers twitched as he counted + the words--"'danger.' Ha! Ha! Capital! Put that down, Watson. 'There + is danger-- may-- come-- very-- soon-- one.' Then we have the name + 'Douglas' --'rich-- country-- now-- at-- Birlstone-- House-- + Birlstone-- confidence-- is-- pressing.' There, Watson! What do you + think of pure reason and its fruit? If the greengrocer had such a + thing as a laurel wreath, I should send Billy round for it." + + I was staring at the strange message which I had scrawled, as he + deciphered it, upon a sheet of foolscap on my knee. + + "What a queer, scrambling way of expressing his meaning!" said I. + + "On the contrary, he has done quite remarkably well," said Holmes. + "When you search a single column for words with which to express your + meaning, you can hardly expect to get everything you want. You are + bound to leave something to the intelligence of your correspondent. + The purport is perfectly clear. Some deviltry is intended against one + Douglas, whoever he may be, residing as stated, a rich country + gentleman. He is sure--'confidence' was as near as he could get to + 'confident'--that it is pressing. There is our result--and a very + workmanlike little bit of analysis it was!" + + Holmes had the impersonal joy of the true artist in his better work, + even as he mourned darkly when it fell below the high level to which + he aspired. He was still chuckling over his success when Billy swung + open the door and Inspector MacDonald of Scotland Yard was ushered + into the room. + + Those were the early days at the end of the '80's, when Alec + MacDonald was far from having attained the national fame which he has + now achieved. He was a young but trusted member of the detective + force, who had distinguished himself in several cases which had been + entrusted to him. His tall, bony figure gave promise of exceptional + physical strength, while his great cranium and deep-set, lustrous + eyes spoke no less clearly of the keen intelligence which twinkled + out from behind his bushy eyebrows. He was a silent, precise man with + a dour nature and a hard Aberdonian accent. + + Twice already in his career had Holmes helped him to attain success, + his own sole reward being the intellectual joy of the problem. For + this reason the affection and respect of the Scotchman for his + amateur colleague were profound, and he showed them by the frankness + with which he consulted Holmes in every difficulty. Mediocrity knows + nothing higher than itself; but talent instantly recognizes genius, + and MacDonald had talent enough for his profession to enable him to + perceive that there was no humiliation in seeking the assistance of + one who already stood alone in Europe, both in his gifts and in his + experience. Holmes was not prone to friendship, but he was tolerant + of the big Scotchman, and smiled at the sight of him. + + "You are an early bird, Mr. Mac," said he. "I wish you luck with your + worm. I fear this means that there is some mischief afoot." + + "If you said 'hope' instead of 'fear,' it would be nearer the truth, + I'm thinking, Mr. Holmes," the inspector answered, with a knowing + grin. "Well, maybe a wee nip would keep out the raw morning chill. + No, I won't smoke, I thank you. I'll have to be pushing on my way; + for the early hours of a case are the precious ones, as no man knows + better than your own self. But--but--" + + The inspector had stopped suddenly, and was staring with a look of + absolute amazement at a paper upon the table. It was the sheet upon + which I had scrawled the enigmatic message. + + "Douglas!" he stammered. "Birlstone! What's this, Mr. Holmes? Man, + it's witchcraft! Where in the name of all that is wonderful did you + get those names?" + + "It is a cipher that Dr. Watson and I have had occasion to solve. But + why--what's amiss with the names?" + + The inspector looked from one to the other of us in dazed + astonishment. "Just this," said he, "that Mr. Douglas of Birlstone + Manor House was horribly murdered last night!" + + + + + + CHAPTER II + Sherlock Holmes Discourses + + + It was one of those dramatic moments for which my friend existed. It + would be an overstatement to say that he was shocked or even excited + by the amazing announcement. Without having a tinge of cruelty in his + singular composition, he was undoubtedly callous from long + over-stimulation. Yet, if his emotions were dulled, his intellectual + perceptions were exceedingly active. There was no trace then of the + horror which I had myself felt at this curt declaration; but his face + showed rather the quiet and interested composure of the chemist who + sees the crystals falling into position from his oversaturated + solution. + + "Remarkable!" said he. "Remarkable!" + + "You don't seem surprised." + + "Interested, Mr. Mac, but hardly surprised. Why should I be + surprised? I receive an anonymous communication from a quarter which + I know to be important, warning me that danger threatens a certain + person. Within an hour I learn that this danger has actually + materialized and that the person is dead. I am interested; but, as + you observe, I am not surprised." + + In a few short sentences he explained to the inspector the facts + about the letter and the cipher. MacDonald sat with his chin on his + hands and his great sandy eyebrows bunched into a yellow tangle. + + "I was going down to Birlstone this morning," said he. "I had come to + ask you if you cared to come with me--you and your friend here. But + from what you say we might perhaps be doing better work in London." + + "I rather think not," said Holmes. + + "Hang it all, Mr. Holmes!" cried the inspector. "The papers will be + full of the Birlstone mystery in a day or two; but where's the + mystery if there is a man in London who prophesied the crime before + ever it occurred? We have only to lay our hands on that man, and the + rest will follow." + + "No doubt, Mr. Mac. But how do you propose to lay your hands on the + so-called Porlock?" + + MacDonald turned over the letter which Holmes had handed him. "Posted + in Camberwell--that doesn't help us much. Name, you say, is assumed. + Not much to go on, certainly. Didn't you say that you have sent him + money?" + + "Twice." + + "And how?" + + "In notes to Camberwell post-office." + + "Did you ever trouble to see who called for them?" + + "No." + + The inspector looked surprised and a little shocked. "Why not?" + + "Because I always keep faith. I had promised when he first wrote that + I would not try to trace him." + + "You think there is someone behind him?" + + "I know there is." + + "This professor that I've heard you mention?" + + "Exactly!" + + Inspector MacDonald smiled, and his eyelid quivered as he glanced + towards me. "I won't conceal from you, Mr. Holmes, that we think in + the C. I. D. that you have a wee bit of a bee in your bonnet over + this professor. I made some inquiries myself about the matter. He + seems to be a very respectable, learned, and talented sort of man." + + "I'm glad you've got so far as to recognize the talent." + + "Man, you can't but recognize it! After I heard your view I made it + my business to see him. I had a chat with him on eclipses. How the + talk got that way I canna think; but he had out a reflector lantern + and a globe, and made it all clear in a minute. He lent me a book; + but I don't mind saying that it was a bit above my head, though I had + a good Aberdeen upbringing. He'd have made a grand meenister with his + thin face and gray hair and solemn-like way of talking. When he put + his hand on my shoulder as we were parting, it was like a father's + blessing before you go out into the cold, cruel world." + + Holmes chuckled and rubbed his hands. "Great!" he said. "Great! Tell + me, Friend MacDonald, this pleasing and touching interview was, I + suppose, in the professor's study?" + + "That's so." + + "A fine room, is it not?" + + "Very fine--very handsome indeed, Mr. Holmes." + + "You sat in front of his writing desk?" + + "Just so." + + "Sun in your eyes and his face in the shadow?" + + "Well, it was evening; but I mind that the lamp was turned on my + face." + + "It would be. Did you happen to observe a picture over the + professor's head?" + + "I don't miss much, Mr. Holmes. Maybe I learned that from you. Yes, I + saw the picture--a young woman with her head on her hands, peeping at + you sideways." + + "That painting was by Jean Baptiste Greuze." + + The inspector endeavoured to look interested. + + "Jean Baptiste Greuze," Holmes continued, joining his finger tips and + leaning well back in his chair, "was a French artist who flourished + between the years 1750 and 1800. I allude, of course to his working + career. Modern criticism has more than indorsed the high opinion + formed of him by his contemporaries." + + The inspector's eyes grew abstracted. "Hadn't we better--" he said. + + "We are doing so," Holmes interrupted. "All that I am saying has a + very direct and vital bearing upon what you have called the Birlstone + Mystery. In fact, it may in a sense be called the very centre of it." + + MacDonald smiled feebly, and looked appealingly to me. "Your thoughts + move a bit too quick for me, Mr. Holmes. You leave out a link or two, + and I can't get over the gap. What in the whole wide world can be the + connection between this dead painting man and the affair at + Birlstone?" + + "All knowledge comes useful to the detective," remarked Holmes. "Even + the trivial fact that in the year 1865 a picture by Greuze entitled + La Jeune Fille a l'Agneau fetched one million two hundred thousand + francs--more than forty thousand pounds--at the Portalis sale may + start a train of reflection in your mind." + + It was clear that it did. The inspector looked honestly interested. + + "I may remind you," Holmes continued, "that the professor's salary + can be ascertained in several trustworthy books of reference. It is + seven hundred a year." + + "Then how could he buy--" + + "Quite so! How could he?" + + "Ay, that's remarkable," said the inspector thoughtfully. "Talk away, + Mr. Holmes. I'm just loving it. It's fine!" + + Holmes smiled. He was always warmed by genuine admiration--the + characteristic of the real artist. "What about Birlstone?" he asked. + + "We've time yet," said the inspector, glancing at his watch. "I've a + cab at the door, and it won't take us twenty minutes to Victoria. But + about this picture: I thought you told me once, Mr. Holmes, that you + had never met Professor Moriarty." + + "No, I never have." + + "Then how do you know about his rooms?" + + "Ah, that's another matter. I have been three times in his rooms, + twice waiting for him under different pretexts and leaving before he + came. Once--well, I can hardly tell about the once to an official + detective. It was on the last occasion that I took the liberty of + running over his papers--with the most unexpected results." + + "You found something compromising?" + + "Absolutely nothing. That was what amazed me. However, you have now + seen the point of the picture. It shows him to be a very wealthy man. + How did he acquire wealth? He is unmarried. His younger brother is a + station master in the west of England. His chair is worth seven + hundred a year. And he owns a Greuze." + + "Well?" + + "Surely the inference is plain." + + "You mean that he has a great income and that he must earn it in an + illegal fashion?" + + "Exactly. Of course I have other reasons for thinking so--dozens of + exiguous threads which lead vaguely up towards the centre of the web + where the poisonous, motionless creature is lurking. I only mention + the Greuze because it brings the matter within the range of your own + observation." + + "Well, Mr. Holmes, I admit that what you say is interesting: it's + more than interesting--it's just wonderful. But let us have it a + little clearer if you can. Is it forgery, coining, burglary--where + does the money come from?" + + "Have you ever read of Jonathan Wild?" + + "Well, the name has a familiar sound. Someone in a novel, was he not? + I don't take much stock of detectives in novels--chaps that do things + and never let you see how they do them. That's just inspiration: not + business." + + "Jonathan Wild wasn't a detective, and he wasn't in a novel. He was a + master criminal, and he lived last century--1750 or thereabouts." + + "Then he's no use to me. I'm a practical man." + + "Mr. Mac, the most practical thing that you ever did in your life + would be to shut yourself up for three months and read twelve hours a + day at the annals of crime. Everything comes in circles--even + Professor Moriarty. Jonathan Wild was the hidden force of the London + criminals, to whom he sold his brains and his organization on a + fifteen per cent commission. The old wheel turns, and the same spoke + comes up. It's all been done before, and will be again. I'll tell you + one or two things about Moriarty which may interest you." + + "You'll interest me, right enough." + + "I happen to know who is the first link in his chain--a chain with + this Napoleon-gone-wrong at one end, and a hundred broken fighting + men, pickpockets, blackmailers, and card sharpers at the other, with + every sort of crime in between. His chief of staff is Colonel + Sebastian Moran, as aloof and guarded and inaccessible to the law as + himself. What do you think he pays him?" + + "I'd like to hear." + + "Six thousand a year. That's paying for brains, you see--the American + business principle. I learned that detail quite by chance. It's more + than the Prime Minister gets. That gives you an idea of Moriarty's + gains and of the scale on which he works. Another point: I made it my + business to hunt down some of Moriarty's checks lately--just common + innocent checks that he pays his household bills with. They were + drawn on six different banks. Does that make any impression on your + mind?" + + "Queer, certainly! But what do you gather from it?" + + "That he wanted no gossip about his wealth. No single man should know + what he had. I have no doubt that he has twenty banking accounts; the + bulk of his fortune abroad in the Deutsche Bank or the Credit + Lyonnais as likely as not. Sometime when you have a year or two to + spare I commend to you the study of Professor Moriarty." + + Inspector MacDonald had grown steadily more impressed as the + conversation proceeded. He had lost himself in his interest. Now his + practical Scotch intelligence brought him back with a snap to the + matter in hand. + + "He can keep, anyhow," said he. "You've got us side-tracked with your + interesting anecdotes, Mr. Holmes. What really counts is your remark + that there is some connection between the professor and the crime. + That you get from the warning received through the man Porlock. Can + we for our present practical needs get any further than that?" + + "We may form some conception as to the motives of the crime. It is, + as I gather from your original remarks, an inexplicable, or at least + an unexplained, murder. Now, presuming that the source of the crime + is as we suspect it to be, there might be two different motives. In + the first place, I may tell you that Moriarty rules with a rod of + iron over his people. His discipline is tremendous. There is only one + punishment in his code. It is death. Now we might suppose that this + murdered man--this Douglas whose approaching fate was known by one of + the arch-criminal's subordinates--had in some way betrayed the chief. + His punishment followed, and would be known to all--if only to put + the fear of death into them." + + "Well, that is one suggestion, Mr. Holmes." + + "The other is that it has been engineered by Moriarty in the ordinary + course of business. Was there any robbery?" + + "I have not heard." + + "If so, it would, of course, be against the first hypothesis and in + favour of the second. Moriarty may have been engaged to engineer it + on a promise of part spoils, or he may have been paid so much down to + manage it. Either is possible. But whichever it may be, or if it is + some third combination, it is down at Birlstone that we must seek the + solution. I know our man too well to suppose that he has left + anything up here which may lead us to him." + + "Then to Birlstone we must go!" cried MacDonald, jumping from his + chair. "My word! it's later than I thought. I can give you, + gentlemen, five minutes for preparation, and that is all." + + "And ample for us both," said Holmes, as he sprang up and hastened to + change from his dressing gown to his coat. "While we are on our way, + Mr. Mac, I will ask you to be good enough to tell me all about it." + + "All about it" proved to be disappointingly little, and yet there was + enough to assure us that the case before us might well be worthy of + the expert's closest attention. He brightened and rubbed his thin + hands together as he listened to the meagre but remarkable details. A + long series of sterile weeks lay behind us, and here at last there + was a fitting object for those remarkable powers which, like all + special gifts, become irksome to their owner when they are not in + use. That razor brain blunted and rusted with inaction. + + Sherlock Holmes's eyes glistened, his pale cheeks took a warmer hue, + and his whole eager face shone with an inward light when the call for + work reached him. Leaning forward in the cab, he listened intently to + MacDonald's short sketch of the problem which awaited us in Sussex. + The inspector was himself dependent, as he explained to us, upon a + scribbled account forwarded to him by the milk train in the early + hours of the morning. White Mason, the local officer, was a personal + friend, and hence MacDonald had been notified much more promptly than + is usual at Scotland Yard when provincials need their assistance. It + is a very cold scent upon which the Metropolitan expert is generally + asked to run. + + "Dear Inspector MacDonald [said the letter which he read to us]: + "Official requisition for your services is in separate envelope. This + is for your private eye. Wire me what train in the morning you can + get for Birlstone, and I will meet it--or have it met if I am too + occupied. This case is a snorter. Don't waste a moment in getting + started. If you can bring Mr. Holmes, please do so; for he will find + something after his own heart. We would think the whole thing had + been fixed up for theatrical effect if there wasn't a dead man in the + middle of it. My word! it is a snorter." + + "Your friend seems to be no fool," remarked Holmes. + + "No, sir, White Mason is a very live man, if I am any judge." + + "Well, have you anything more?" + + "Only that he will give us every detail when we meet." + + "Then how did you get at Mr. Douglas and the fact that he had been + horribly murdered?" + + "That was in the enclosed official report. It didn't say 'horrible': + that's not a recognized official term. It gave the name John Douglas. + It mentioned that his injuries had been in the head, from the + discharge of a shotgun. It also mentioned the hour of the alarm, + which was close on to midnight last night. It added that the case was + undoubtedly one of murder, but that no arrest had been made, and that + the case was one which presented some very perplexing and + extraordinary features. That's absolutely all we have at present, Mr. + Holmes." + + "Then, with your permission, we will leave it at that, Mr. Mac. The + temptation to form premature theories upon insufficient data is the + bane of our profession. I can see only two things for certain at + present--a great brain in London, and a dead man in Sussex. It's the + chain between that we are going to trace." + + + + + + CHAPTER III + The Tragedy of Birlstone + + + Now for a moment I will ask leave to remove my own insignificant + personality and to describe events which occurred before we arrived + upon the scene by the light of knowledge which came to us afterwards. + Only in this way can I make the reader appreciate the people + concerned and the strange setting in which their fate was cast. + + The village of Birlstone is a small and very ancient cluster of + half-timbered cottages on the northern border of the county of + Sussex. For centuries it had remained unchanged; but within the last + few years its picturesque appearance and situation have attracted a + number of well-to-do residents, whose villas peep out from the woods + around. These woods are locally supposed to be the extreme fringe of + the great Weald forest, which thins away until it reaches the + northern chalk downs. A number of small shops have come into being to + meet the wants of the increased population; so there seems some + prospect that Birlstone may soon grow from an ancient village into a + modern town. It is the centre for a considerable area of country, + since Tunbridge Wells, the nearest place of importance, is ten or + twelve miles to the eastward, over the borders of Kent. + + About half a mile from the town, standing in an old park famous for + its huge beech trees, is the ancient Manor House of Birlstone. Part + of this venerable building dates back to the time of the first + crusade, when Hugo de Capus built a fortalice in the centre of the + estate, which had been granted to him by the Red King. This was + destroyed by fire in 1543, and some of its smoke-blackened corner + stones were used when, in Jacobean times, a brick country house rose + upon the ruins of the feudal castle. + + The Manor House, with its many gables and its small diamond-paned + windows, was still much as the builder had left it in the early + seventeenth century. Of the double moats which had guarded its more + warlike predecessor, the outer had been allowed to dry up, and served + the humble function of a kitchen garden. The inner one was still + there, and lay forty feet in breadth, though now only a few feet in + depth, round the whole house. A small stream fed it and continued + beyond it, so that the sheet of water, though turbid, was never + ditch-like or unhealthy. The ground floor windows were within a foot + of the surface of the water. + + The only approach to the house was over a drawbridge, the chains and + windlass of which had long been rusted and broken. The latest tenants + of the Manor House had, however, with characteristic energy, set this + right, and the drawbridge was not only capable of being raised, but + actually was raised every evening and lowered every morning. By thus + renewing the custom of the old feudal days the Manor House was + converted into an island during the night--a fact which had a very + direct bearing upon the mystery which was soon to engage the + attention of all England. + + The house had been untenanted for some years and was threatening to + moulder into a picturesque decay when the Douglases took possession + of it. This family consisted of only two individuals--John Douglas + and his wife. Douglas was a remarkable man, both in character and in + person. In age he may have been about fifty, with a strong-jawed, + rugged face, a grizzling moustache, peculiarly keen gray eyes, and a + wiry, vigorous figure which had lost nothing of the strength and + activity of youth. He was cheery and genial to all, but somewhat + offhand in his manners, giving the impression that he had seen life + in social strata on some far lower horizon than the county society of + Sussex. + + Yet, though looked at with some curiosity and reserve by his more + cultivated neighbours, he soon acquired a great popularity among the + villagers, subscribing handsomely to all local objects, and attending + their smoking concerts and other functions, where, having a + remarkably rich tenor voice, he was always ready to oblige with an + excellent song. He appeared to have plenty of money, which was said + to have been gained in the California gold fields, and it was clear + from his own talk and that of his wife that he had spent a part of + his life in America. + + The good impression which had been produced by his generosity and by + his democratic manners was increased by a reputation gained for utter + indifference to danger. Though a wretched rider, he turned out at + every meet, and took the most amazing falls in his determination to + hold his own with the best. When the vicarage caught fire he + distinguished himself also by the fearlessness with which he + reentered the building to save property, after the local fire brigade + had given it up as impossible. Thus it came about that John Douglas + of the Manor House had within five years won himself quite a + reputation in Birlstone. + + His wife, too, was popular with those who had made her acquaintance; + though, after the English fashion, the callers upon a stranger who + settled in the county without introductions were few and far between. + This mattered the less to her, as she was retiring by disposition, + and very much absorbed, to all appearance, in her husband and her + domestic duties. It was known that she was an English lady who had + met Mr. Douglas in London, he being at that time a widower. She was a + beautiful woman, tall, dark, and slender, some twenty years younger + than her husband, a disparity which seemed in no wise to mar the + contentment of their family life. + + It was remarked sometimes, however, by those who knew them best, that + the confidence between the two did not appear to be complete, since + the wife was either very reticent about her husband's past life, or + else, as seemed more likely, was imperfectly informed about it. It + had also been noted and commented upon by a few observant people that + there were signs sometimes of some nerve-strain upon the part of Mrs. + Douglas, and that she would display acute uneasiness if her absent + husband should ever be particularly late in his return. On a quiet + countryside, where all gossip is welcome, this weakness of the lady + of the Manor House did not pass without remark, and it bulked larger + upon people's memory when the events arose which gave it a very + special significance. + + There was yet another individual whose residence under that roof was, + it is true, only an intermittent one, but whose presence at the time + of the strange happenings which will now be narrated brought his name + prominently before the public. This was Cecil James Barker, of Hales + Lodge, Hampstead. + + Cecil Barker's tall, loose-jointed figure was a familiar one in the + main street of Birlstone village; for he was a frequent and welcome + visitor at the Manor House. He was the more noticed as being the only + friend of the past unknown life of Mr. Douglas who was ever seen in + his new English surroundings. Barker was himself an undoubted + Englishman; but by his remarks it was clear that he had first known + Douglas in America and had there lived on intimate terms with him. He + appeared to be a man of considerable wealth, and was reputed to be a + bachelor. + + In age he was rather younger than Douglas--forty-five at the most--a + tall, straight, broad-chested fellow with a clean-shaved, + prize-fighter face, thick, strong, black eyebrows, and a pair of + masterful black eyes which might, even without the aid of his very + capable hands, clear a way for him through a hostile crowd. He + neither rode nor shot, but spent his days in wandering round the old + village with his pipe in his mouth, or in driving with his host, or + in his absence with his hostess, over the beautiful countryside. "An + easy-going, free-handed gentleman," said Ames, the butler. "But, my + word! I had rather not be the man that crossed him!" He was cordial + and intimate with Douglas, and he was no less friendly with his + wife--a friendship which more than once seemed to cause some + irritation to the husband, so that even the servants were able to + perceive his annoyance. Such was the third person who was one of the + family when the catastrophe occurred. + + As to the other denizens of the old building, it will suffice out of + a large household to mention the prim, respectable, and capable Ames, + and Mrs. Allen, a buxom and cheerful person, who relieved the lady of + some of her household cares. The other six servants in the house bear + no relation to the events of the night of January 6th. + + It was at eleven forty-five that the first alarm reached the small + local police station, in charge of Sergeant Wilson of the Sussex + Constabulary. Cecil Barker, much excited, had rushed up to the door + and pealed furiously upon the bell. A terrible tragedy had occurred + at the Manor House, and John Douglas had been murdered. That was the + breathless burden of his message. He had hurried back to the house, + followed within a few minutes by the police sergeant, who arrived at + the scene of the crime a little after twelve o'clock, after taking + prompt steps to warn the county authorities that something serious + was afoot. + + On reaching the Manor House, the sergeant had found the drawbridge + down, the windows lighted up, and the whole household in a state of + wild confusion and alarm. The white-faced servants were huddling + together in the hall, with the frightened butler wringing his hands + in the doorway. Only Cecil Barker seemed to be master of himself and + his emotions; he had opened the door which was nearest to the + entrance and he had beckoned to the sergeant to follow him. At that + moment there arrived Dr. Wood, a brisk and capable general + practitioner from the village. The three men entered the fatal room + together, while the horror-stricken butler followed at their heels, + closing the door behind him to shut out the terrible scene from the + maid servants. + + The dead man lay on his back, sprawling with outstretched limbs in + the centre of the room. He was clad only in a pink dressing gown, + which covered his night clothes. There were carpet slippers on his + bare feet. The doctor knelt beside him and held down the hand lamp + which had stood on the table. One glance at the victim was enough to + show the healer that his presence could be dispensed with. The man + had been horribly injured. Lying across his chest was a curious + weapon, a shotgun with the barrel sawed off a foot in front of the + triggers. It was clear that this had been fired at close range and + that he had received the whole charge in the face, blowing his head + almost to pieces. The triggers had been wired together, so as to make + the simultaneous discharge more destructive. + + The country policeman was unnerved and troubled by the tremendous + responsibility which had come so suddenly upon him. "We will touch + nothing until my superiors arrive," he said in a hushed voice, + staring in horror at the dreadful head. + + "Nothing has been touched up to now," said Cecil Barker. "I'll answer + for that. You see it all exactly as I found it." + + "When was that?" The sergeant had drawn out his notebook. + + "It was just half-past eleven. I had not begun to undress, and I was + sitting by the fire in my bedroom when I heard the report. It was not + very loud--it seemed to be muffled. I rushed down--I don't suppose it + was thirty seconds before I was in the room." + + "Was the door open?" + + "Yes, it was open. Poor Douglas was lying as you see him. His bedroom + candle was burning on the table. It was I who lit the lamp some + minutes afterward." + + "Did you see no one?" + + "No. I heard Mrs. Douglas coming down the stair behind me, and I + rushed out to prevent her from seeing this dreadful sight. Mrs. + Allen, the housekeeper, came and took her away. Ames had arrived, and + we ran back into the room once more." + + "But surely I have heard that the drawbridge is kept up all night." + + "Yes, it was up until I lowered it." + + "Then how could any murderer have got away? It is out of the + question! Mr. Douglas must have shot himself." + + "That was our first idea. But see!" Barker drew aside the curtain, + and showed that the long, diamond-paned window was open to its full + extent. "And look at this!" He held the lamp down and illuminated a + smudge of blood like the mark of a boot-sole upon the wooden sill. + "Someone has stood there in getting out." + + "You mean that someone waded across the moat?" + + "Exactly!" + + "Then if you were in the room within half a minute of the crime, he + must have been in the water at that very moment." + + "I have not a doubt of it. I wish to heaven that I had rushed to the + window! But the curtain screened it, as you can see, and so it never + occurred to me. Then I heard the step of Mrs. Douglas, and I could + not let her enter the room. It would have been too horrible." + + "Horrible enough!" said the doctor, looking at the shattered head and + the terrible marks which surrounded it. "I've never seen such + injuries since the Birlstone railway smash." + + "But, I say," remarked the police sergeant, whose slow, bucolic + common sense was still pondering the open window. "It's all very well + your saying that a man escaped by wading this moat, but what I ask + you is, how did he ever get into the house at all if the bridge was + up?" + + "Ah, that's the question," said Barker. + + "At what o'clock was it raised?" + + "It was nearly six o'clock," said Ames, the butler. + + "I've heard," said the sergeant, "that it was usually raised at + sunset. That would be nearer half-past four than six at this time of + year." + + "Mrs. Douglas had visitors to tea," said Ames. "I couldn't raise it + until they went. Then I wound it up myself." + + "Then it comes to this," said the sergeant: "If anyone came from + outside--if they did--they must have got in across the bridge before + six and been in hiding ever since, until Mr. Douglas came into the + room after eleven." + + "That is so! Mr. Douglas went round the house every night the last + thing before he turned in to see that the lights were right. That + brought him in here. The man was waiting and shot him. Then he got + away through the window and left his gun behind him. That's how I + read it; for nothing else will fit the facts." + + The sergeant picked up a card which lay beside the dead man on the + floor. The initials V. V. and under them the number 341 were rudely + scrawled in ink upon it. + + "What's this?" he asked, holding it up. + + Barker looked at it with curiosity. "I never noticed it before," he + said. "The murderer must have left it behind him." + + "V. V.--341. I can make no sense of that." + + The sergeant kept turning it over in his big fingers. "What's V. V.? + Somebody's initials, maybe. What have you got there, Dr. Wood?" + + It was a good-sized hammer which had been lying on the rug in front + of the fireplace--a substantial, workmanlike hammer. Cecil Barker + pointed to a box of brass-headed nails upon the mantelpiece. + + "Mr. Douglas was altering the pictures yesterday," he said. "I saw + him myself, standing upon that chair and fixing the big picture above + it. That accounts for the hammer." + + "We'd best put it back on the rug where we found it," said the + sergeant, scratching his puzzled head in his perplexity. "It will + want the best brains in the force to get to the bottom of this thing. + It will be a London job before it is finished." He raised the hand + lamp and walked slowly round the room. "Hullo!" he cried, excitedly, + drawing the window curtain to one side. "What o'clock were those + curtains drawn?" + + "When the lamps were lit," said the butler. "It would be shortly + after four." + + "Someone had been hiding here, sure enough." He held down the light, + and the marks of muddy boots were very visible in the corner. "I'm + bound to say this bears out your theory, Mr. Barker. It looks as if + the man got into the house after four when the curtains were drawn + and before six when the bridge was raised. He slipped into this room, + because it was the first that he saw. There was no other place where + he could hide, so he popped in behind this curtain. That all seems + clear enough. It is likely that his main idea was to burgle the + house; but Mr. Douglas chanced to come upon him, so he murdered him + and escaped." + + "That's how I read it," said Barker. "But, I say, aren't we wasting + precious time? Couldn't we start out and scour the country before the + fellow gets away?" + + The sergeant considered for a moment. + + "There are no trains before six in the morning; so he can't get away + by rail. If he goes by road with his legs all dripping, it's odds + that someone will notice him. Anyhow, I can't leave here myself until + I am relieved. But I think none of you should go until we see more + clearly how we all stand." + + The doctor had taken the lamp and was narrowly scrutinizing the body. + "What's this mark?" he asked. "Could this have any connection with + the crime?" + + The dead man's right arm was thrust out from his dressing gown, and + exposed as high as the elbow. About halfway up the forearm was a + curious brown design, a triangle inside a circle, standing out in + vivid relief upon the lard-coloured skin. + + "It's not tattooed," said the doctor, peering through his glasses. "I + never saw anything like it. The man has been branded at some time as + they brand cattle. What is the meaning of this?" + + "I don't profess to know the meaning of it," said Cecil Barker; "but + I have seen the mark on Douglas many times this last ten years." + + "And so have I," said the butler. "Many a time when the master has + rolled up his sleeves I have noticed that very mark. I've often + wondered what it could be." + + "Then it has nothing to do with the crime, anyhow," said the + sergeant. "But it's a rum thing all the same. Everything about this + case is rum. Well, what is it now?" + + The butler had given an exclamation of astonishment and was pointing + at the dead man's outstretched hand. + + "They've taken his wedding ring!" he gasped. + + "What!" + + "Yes, indeed. Master always wore his plain gold wedding ring on the + little finger of his left hand. That ring with the rough nugget on it + was above it, and the twisted snake ring on the third finger. There's + the nugget and there's the snake, but the wedding ring is gone." + + "He's right," said Barker. + + "Do you tell me," said the sergeant, "that the wedding ring was below + the other?" + + "Always!" + + "Then the murderer, or whoever it was, first took off this ring you + call the nugget ring, then the wedding ring, and afterwards put the + nugget ring back again." + + "That is so!" + + The worthy country policeman shook his head. "Seems to me the sooner + we get London on to this case the better," said he. "White Mason is a + smart man. No local job has ever been too much for White Mason. It + won't be long now before he is here to help us. But I expect we'll + have to look to London before we are through. Anyhow, I'm not ashamed + to say that it is a deal too thick for the likes of me." + + + + + + CHAPTER IV + Darkness + + + At three in the morning the chief Sussex detective, obeying the + urgent call from Sergeant Wilson of Birlstone, arrived from + headquarters in a light dog-cart behind a breathless trotter. By the + five-forty train in the morning he had sent his message to Scotland + Yard, and he was at the Birlstone station at twelve o'clock to + welcome us. White Mason was a quiet, comfortable-looking person in a + loose tweed suit, with a clean-shaved, ruddy face, a stoutish body, + and powerful bandy legs adorned with gaiters, looking like a small + farmer, a retired gamekeeper, or anything upon earth except a very + favourable specimen of the provincial criminal officer. + + "A real downright snorter, Mr. MacDonald!" he kept repeating. "We'll + have the pressmen down like flies when they understand it. I'm hoping + we will get our work done before they get poking their noses into it + and messing up all the trails. There has been nothing like this that + I can remember. There are some bits that will come home to you, Mr. + Holmes, or I am mistaken. And you also, Dr. Watson; for the medicos + will have a word to say before we finish. Your room is at the + Westville Arms. There's no other place; but I hear that it is clean + and good. The man will carry your bags. This way, gentlemen, if you + please." + + He was a very bustling and genial person, this Sussex detective. In + ten minutes we had all found our quarters. In ten more we were seated + in the parlour of the inn and being treated to a rapid sketch of + those events which have been outlined in the previous chapter. + MacDonald made an occasional note, while Holmes sat absorbed, with + the expression of surprised and reverent admiration with which the + botanist surveys the rare and precious bloom. + + "Remarkable!" he said, when the story was unfolded, "most remarkable! + I can hardly recall any case where the features have been more + peculiar." + + "I thought you would say so, Mr. Holmes," said White Mason in great + delight. "We're well up with the times in Sussex. I've told you now + how matters were, up to the time when I took over from Sergeant + Wilson between three and four this morning. My word! I made the old + mare go! But I need not have been in such a hurry, as it turned out; + for there was nothing immediate that I could do. Sergeant Wilson had + all the facts. I checked them and considered them and maybe added a + few of my own." + + "What were they?" asked Holmes eagerly. + + "Well, I first had the hammer examined. There was Dr. Wood there to + help me. We found no signs of violence upon it. I was hoping that if + Mr. Douglas defended himself with the hammer, he might have left his + mark upon the murderer before he dropped it on the mat. But there was + no stain." + + "That, of course, proves nothing at all," remarked Inspector + MacDonald. "There has been many a hammer murder and no trace on the + hammer." + + "Quite so. It doesn't prove it wasn't used. But there might have been + stains, and that would have helped us. As a matter of fact there were + none. Then I examined the gun. They were buckshot cartridges, and, as + Sergeant Wilson pointed out, the triggers were wired together so + that, if you pulled on the hinder one, both barrels were discharged. + Whoever fixed that up had made up his mind that he was going to take + no chances of missing his man. The sawed gun was not more than two + foot long--one could carry it easily under one's coat. There was no + complete maker's name; but the printed letters P-E-N were on the + fluting between the barrels, and the rest of the name had been cut + off by the saw." + + "A big P with a flourish above it, E and N smaller?" asked Holmes. + + "Exactly." + + "Pennsylvania Small Arms Company--well-known American firm," said + Holmes. + + White Mason gazed at my friend as the little village practitioner + looks at the Harley Street specialist who by a word can solve the + difficulties that perplex him. + + "That is very helpful, Mr. Holmes. No doubt you are right. Wonderful! + Wonderful! Do you carry the names of all the gun makers in the world + in your memory?" + + Holmes dismissed the subject with a wave. + + "No doubt it is an American shotgun," White Mason continued. "I seem + to have read that a sawed-off shotgun is a weapon used in some parts + of America. Apart from the name upon the barrel, the idea had + occurred to me. There is some evidence then, that this man who + entered the house and killed its master was an American." + + MacDonald shook his head. "Man, you are surely travelling overfast," + said he. "I have heard no evidence yet that any stranger was ever in + the house at all." + + "The open window, the blood on the sill, the queer card, the marks of + boots in the corner, the gun!" + + "Nothing there that could not have been arranged. Mr. Douglas was an + American, or had lived long in America. So had Mr. Barker. You don't + need to import an American from outside in order to account for + American doings." + + "Ames, the butler--" + + "What about him? Is he reliable?" + + "Ten years with Sir Charles Chandos--as solid as a rock. He has been + with Douglas ever since he took the Manor House five years ago. He + has never seen a gun of this sort in the house." + + "The gun was made to conceal. That's why the barrels were sawed. It + would fit into any box. How could he swear there was no such gun in + the house?" + + "Well, anyhow, he had never seen one." + + MacDonald shook his obstinate Scotch head. "I'm not convinced yet + that there was ever anyone in the house," said he. "I'm asking you to + conseedar" (his accent became more Aberdonian as he lost himself in + his argument) "I'm asking you to conseedar what it involves if you + suppose that this gun was ever brought into the house, and that all + these strange things were done by a person from outside. Oh, man, + it's just inconceivable! It's clean against common sense! I put it to + you, Mr. Holmes, judging it by what we have heard." + + "Well, state your case, Mr. Mac," said Holmes in his most judicial + style. + + "The man is not a burglar, supposing that he ever existed. The ring + business and the card point to premeditated murder for some private + reason. Very good. Here is a man who slips into a house with the + deliberate intention of committing murder. He knows, if he knows + anything, that he will have a deeficulty in making his escape, as the + house is surrounded with water. What weapon would he choose? You + would say the most silent in the world. Then he could hope when the + deed was done to slip quickly from the window, to wade the moat, and + to get away at his leisure. That's understandable. But is it + understandable that he should go out of his way to bring with him the + most noisy weapon he could select, knowing well that it will fetch + every human being in the house to the spot as quick as they can run, + and that it is all odds that he will be seen before he can get across + the moat? Is that credible, Mr. Holmes?" + + "Well, you put the case strongly," my friend replied thoughtfully. + "It certainly needs a good deal of justification. May I ask, Mr. + White Mason, whether you examined the farther side of the moat at + once to see if there were any signs of the man having climbed out + from the water?" + + "There were no signs, Mr. Holmes. But it is a stone ledge, and one + could hardly expect them." + + "No tracks or marks?" + + "None." + + "Ha! Would there be any objection, Mr. White Mason, to our going down + to the house at once? There may possibly be some small point which + might be suggestive." + + "I was going to propose it, Mr. Holmes; but I thought it well to put + you in touch with all the facts before we go. I suppose if anything + should strike you--" White Mason looked doubtfully at the amateur. + + "I have worked with Mr. Holmes before," said Inspector MacDonald. "He + plays the game." + + "My own idea of the game, at any rate," said Holmes, with a smile. "I + go into a case to help the ends of justice and the work of the + police. If I have ever separated myself from the official force, it + is because they have first separated themselves from me. I have no + wish ever to score at their expense. At the same time, Mr. White + Mason, I claim the right to work in my own way and give my results at + my own time--complete rather than in stages." + + "I am sure we are honoured by your presence and to show you all we + know," said White Mason cordially. "Come along, Dr. Watson, and when + the time comes we'll all hope for a place in your book." + + We walked down the quaint village street with a row of pollarded elms + on each side of it. Just beyond were two ancient stone pillars, + weather-stained and lichen-blotched bearing upon their summits a + shapeless something which had once been the rampant lion of Capus of + Birlstone. A short walk along the winding drive with such sward and + oaks around it as one only sees in rural England, then a sudden turn, + and the long, low Jacobean house of dingy, liver-coloured brick lay + before us, with an old-fashioned garden of cut yews on each side of + it. As we approached it, there was the wooden drawbridge and the + beautiful broad moat as still and luminous as quicksilver in the + cold, winter sunshine. + + Three centuries had flowed past the old Manor House, centuries of + births and of homecomings, of country dances and of the meetings of + fox hunters. Strange that now in its old age this dark business + should have cast its shadow upon the venerable walls! And yet those + strange, peaked roofs and quaint, overhung gables were a fitting + covering to grim and terrible intrigue. As I looked at the deep-set + windows and the long sweep of the dull-coloured, water-lapped front, + I felt that no more fitting scene could be set for such a tragedy. + + "That's the window," said White Mason, "that one on the immediate + right of the drawbridge. It's open just as it was found last night." + + "It looks rather narrow for a man to pass." + + "Well, it wasn't a fat man, anyhow. We don't need your deductions, + Mr. Holmes, to tell us that. But you or I could squeeze through all + right." + + Holmes walked to the edge of the moat and looked across. Then he + examined the stone ledge and the grass border beyond it. + + "I've had a good look, Mr. Holmes," said White Mason. "There is + nothing there, no sign that anyone has landed--but why should he + leave any sign?" + + "Exactly. Why should he? Is the water always turbid?" + + "Generally about this colour. The stream brings down the clay." + + "How deep is it?" + + "About two feet at each side and three in the middle." + + "So we can put aside all idea of the man having been drowned in + crossing." + + "No, a child could not be drowned in it." + + We walked across the drawbridge, and were admitted by a quaint, + gnarled, dried-up person, who was the butler, Ames. The poor old + fellow was white and quivering from the shock. The village sergeant, + a tall, formal, melancholy man, still held his vigil in the room of + Fate. The doctor had departed. + + "Anything fresh, Sergeant Wilson?" asked White Mason. + + "No, sir." + + "Then you can go home. You've had enough. We can send for you if we + want you. The butler had better wait outside. Tell him to warn Mr. + Cecil Barker, Mrs. Douglas, and the housekeeper that we may want a + word with them presently. Now, gentlemen, perhaps you will allow me + to give you the views I have formed first, and then you will be able + to arrive at your own." + + He impressed me, this country specialist. He had a solid grip of fact + and a cool, clear, common-sense brain, which should take him some way + in his profession. Holmes listened to him intently, with no sign of + that impatience which the official exponent too often produced. + + "Is it suicide, or is it murder--that's our first question, + gentlemen, is it not? If it were suicide, then we have to believe + that this man began by taking off his wedding ring and concealing it; + that he then came down here in his dressing gown, trampled mud into a + corner behind the curtain in order to give the idea someone had + waited for him, opened the window, put blood on the--" + + "We can surely dismiss that," said MacDonald. + + "So I think. Suicide is out of the question. Then a murder has been + done. What we have to determine is, whether it was done by someone + outside or inside the house." + + "Well, let's hear the argument." + + "There are considerable difficulties both ways, and yet one or the + other it must be. We will suppose first that some person or persons + inside the house did the crime. They got this man down here at a time + when everything was still and yet no one was asleep. They then did + the deed with the queerest and noisiest weapon in the world so as to + tell everyone what had happened--a weapon that was never seen in the + house before. That does not seem a very likely start, does it?" + + "No, it does not." + + "Well, then, everyone is agreed that after the alarm was given only a + minute at the most had passed before the whole household--not Mr. + Cecil Barker alone, though he claims to have been the first, but Ames + and all of them were on the spot. Do you tell me that in that time + the guilty person managed to make footmarks in the corner, open the + window, mark the sill with blood, take the wedding ring off the dead + man's finger, and all the rest of it? It's impossible!" + + "You put it very clearly," said Holmes. "I am inclined to agree with + you." + + "Well, then, we are driven back to the theory that it was done by + someone from outside. We are still faced with some big difficulties; + but anyhow they have ceased to be impossibilities. The man got into + the house between four-thirty and six; that is to say, between dusk + and the time when the bridge was raised. There had been some + visitors, and the door was open; so there was nothing to prevent him. + He may have been a common burglar, or he may have had some private + grudge against Mr. Douglas. Since Mr. Douglas has spent most of his + life in America, and this shotgun seems to be an American weapon, it + would seem that the private grudge is the more likely theory. He + slipped into this room because it was the first he came to, and he + hid behind the curtain. There he remained until past eleven at night. + At that time Mr. Douglas entered the room. It was a short interview, + if there were any interview at all; for Mrs. Douglas declares that + her husband had not left her more than a few minutes when she heard + the shot." + + "The candle shows that," said Holmes. + + "Exactly. The candle, which was a new one, is not burned more than + half an inch. He must have placed it on the table before he was + attacked; otherwise, of course, it would have fallen when he fell. + This shows that he was not attacked the instant that he entered the + room. When Mr. Barker arrived the candle was lit and the lamp was + out." + + "That's all clear enough." + + "Well, now, we can reconstruct things on those lines. Mr. Douglas + enters the room. He puts down the candle. A man appears from behind + the curtain. He is armed with this gun. He demands the wedding + ring--Heaven only knows why, but so it must have been. Mr. Douglas + gave it up. Then either in cold blood or in the course of a + struggle--Douglas may have gripped the hammer that was found upon the + mat--he shot Douglas in this horrible way. He dropped his gun and + also it would seem this queer card--V. V. 341, whatever that may + mean--and he made his escape through the window and across the moat + at the very moment when Cecil Barker was discovering the crime. How's + that, Mr. Holmes?" + + "Very interesting, but just a little unconvincing." + + "Man, it would be absolute nonsense if it wasn't that anything else + is even worse!" cried MacDonald. "Somebody killed the man, and + whoever it was I could clearly prove to you that he should have done + it some other way. What does he mean by allowing his retreat to be + cut off like that? What does he mean by using a shotgun when silence + was his one chance of escape? Come, Mr. Holmes, it's up to you to + give us a lead, since you say Mr. White Mason's theory is + unconvincing." + + Holmes had sat intently observant during this long discussion, + missing no word that was said, with his keen eyes darting to right + and to left, and his forehead wrinkled with speculation. + + "I should like a few more facts before I get so far as a theory, Mr. + Mac," said he, kneeling down beside the body. "Dear me! these + injuries are really appalling. Can we have the butler in for a + moment? ... Ames, I understand that you have often seen this very + unusual mark--a branded triangle inside a circle--upon Mr. Douglas's + forearm?" + + "Frequently, sir." + + "You never heard any speculation as to what it meant?" + + "No, sir." + + "It must have caused great pain when it was inflicted. It is + undoubtedly a burn. Now, I observe, Ames, that there is a small piece + of plaster at the angle of Mr. Douglas's jaw. Did you observe that in + life?" + + "Yes, sir, he cut himself in shaving yesterday morning." + + "Did you ever know him to cut himself in shaving before?" + + "Not for a very long time, sir." + + "Suggestive!" said Holmes. "It may, of course, be a mere coincidence, + or it may point to some nervousness which would indicate that he had + reason to apprehend danger. Had you noticed anything unusual in his + conduct, yesterday, Ames?" + + "It struck me that he was a little restless and excited, sir." + + "Ha! The attack may not have been entirely unexpected. We do seem to + make a little progress, do we not? Perhaps you would rather do the + questioning, Mr. Mac?" + + "No, Mr. Holmes, it's in better hands than mine." + + "Well, then, we will pass to this card--V. V. 341. It is rough + cardboard. Have you any of the sort in the house?" + + "I don't think so." + + Holmes walked across to the desk and dabbed a little ink from each + bottle on to the blotting paper. "It was not printed in this room," + he said; "this is black ink and the other purplish. It was done by a + thick pen, and these are fine. No, it was done elsewhere, I should + say. Can you make anything of the inscription, Ames?" + + "No, sir, nothing." + + "What do you think, Mr. Mac?" + + "It gives me the impression of a secret society of some sort; the + same with his badge upon the forearm." + + "That's my idea, too," said White Mason. + + "Well, we can adopt it as a working hypothesis and then see how far + our difficulties disappear. An agent from such a society makes his + way into the house, waits for Mr. Douglas, blows his head nearly off + with this weapon, and escapes by wading the moat, after leaving a + card beside the dead man, which will when mentioned in the papers, + tell other members of the society that vengeance has been done. That + all hangs together. But why this gun, of all weapons?" + + "Exactly." + + "And why the missing ring?" + + "Quite so." + + "And why no arrest? It's past two now. I take it for granted that + since dawn every constable within forty miles has been looking out + for a wet stranger?" + + "That is so, Mr. Holmes." + + "Well, unless he has a burrow close by or a change of clothes ready, + they can hardly miss him. And yet they have missed him up to now!" + Holmes had gone to the window and was examining with his lens the + blood mark on the sill. "It is clearly the tread of a shoe. It is + remarkably broad; a splay-foot, one would say. Curious, because, so + far as one can trace any footmark in this mud-stained corner, one + would say it was a more shapely sole. However, they are certainly + very indistinct. What's this under the side table?" + + "Mr. Douglas's dumb-bells," said Ames. + + "Dumb-bell--there's only one. Where's the other?" + + "I don't know, Mr. Holmes. There may have been only one. I have not + noticed them for months." + + "One dumb-bell--" Holmes said seriously; but his remarks were + interrupted by a sharp knock at the door. + + A tall, sunburned, capable-looking, clean-shaved man looked in at us. + I had no difficulty in guessing that it was the Cecil Barker of whom + I had heard. His masterful eyes travelled quickly with a questioning + glance from face to face. + + "Sorry to interrupt your consultation," said he, "but you should hear + the latest news." + + "An arrest?" + + "No such luck. But they've found his bicycle. The fellow left his + bicycle behind him. Come and have a look. It is within a hundred + yards of the hall door." + + We found three or four grooms and idlers standing in the drive + inspecting a bicycle which had been drawn out from a clump of + evergreens in which it had been concealed. It was a well used + Rudge-Whitworth, splashed as from a considerable journey. There was a + saddlebag with spanner and oilcan, but no clue as to the owner. + + "It would be a grand help to the police," said the inspector, "if + these things were numbered and registered. But we must be thankful + for what we've got. If we can't find where he went to, at least we + are likely to get where he came from. But what in the name of all + that is wonderful made the fellow leave it behind? And how in the + world has he got away without it? We don't seem to get a gleam of + light in the case, Mr. Holmes." + + "Don't we?" my friend answered thoughtfully. "I wonder!" + + + + + + CHAPTER V + The People Of the Drama + + + "Have you seen all you want of the study?" asked White Mason as we + reentered the house. + + "For the time," said the inspector, and Holmes nodded. + + "Then perhaps you would now like to hear the evidence of some of the + people in the house. We could use the dining-room, Ames. Please come + yourself first and tell us what you know." + + The butler's account was a simple and a clear one, and he gave a + convincing impression of sincerity. He had been engaged five years + before, when Douglas first came to Birlstone. He understood that Mr. + Douglas was a rich gentleman who had made his money in America. He + had been a kind and considerate employer--not quite what Ames was + used to, perhaps; but one can't have everything. He never saw any + signs of apprehension in Mr. Douglas: on the contrary, he was the + most fearless man he had ever known. He ordered the drawbridge to be + pulled up every night because it was the ancient custom of the old + house, and he liked to keep the old ways up. + + Mr. Douglas seldom went to London or left the village; but on the day + before the crime he had been shopping at Tunbridge Wells. He (Ames) + had observed some restlessness and excitement on the part of Mr. + Douglas that day; for he had seemed impatient and irritable, which + was unusual with him. He had not gone to bed that night; but was in + the pantry at the back of the house, putting away the silver, when he + heard the bell ring violently. He heard no shot; but it was hardly + possible he would, as the pantry and kitchens were at the very back + of the house and there were several closed doors and a long passage + between. The housekeeper had come out of her room, attracted by the + violent ringing of the bell. They had gone to the front of the house + together. + + As they reached the bottom of the stair he had seen Mrs. Douglas + coming down it. No, she was not hurrying; it did not seem to him that + she was particularly agitated. Just as she reached the bottom of the + stair Mr. Barker had rushed out of the study. He had stopped Mrs. + Douglas and begged her to go back. + + "For God's sake, go back to your room!" he cried. "Poor Jack is dead! + You can do nothing. For God's sake, go back!" + + After some persuasion upon the stairs Mrs. Douglas had gone back. She + did not scream. She made no outcry whatever. Mrs. Allen, the + housekeeper, had taken her upstairs and stayed with her in the + bedroom. Ames and Mr. Barker had then returned to the study, where + they had found everything exactly as the police had seen it. The + candle was not lit at that time; but the lamp was burning. They had + looked out of the window; but the night was very dark and nothing + could be seen or heard. They had then rushed out into the hall, where + Ames had turned the windlass which lowered the drawbridge. Mr. Barker + had then hurried off to get the police. + + Such, in its essentials, was the evidence of the butler. + + The account of Mrs. Allen, the housekeeper, was, so far as it went, a + corroboration of that of her fellow servant. The housekeeper's room + was rather nearer to the front of the house than the pantry in which + Ames had been working. She was preparing to go to bed when the loud + ringing of the bell had attracted her attention. She was a little + hard of hearing. Perhaps that was why she had not heard the shot; but + in any case the study was a long way off. She remembered hearing some + sound which she imagined to be the slamming of a door. That was a + good deal earlier--half an hour at least before the ringing of the + bell. When Mr. Ames ran to the front she went with him. She saw Mr. + Barker, very pale and excited, come out of the study. He intercepted + Mrs. Douglas, who was coming down the stairs. He entreated her to go + back, and she answered him, but what she said could not be heard. + + "Take her up! Stay with her!" he had said to Mrs. Allen. + + She had therefore taken her to the bedroom, and endeavoured to soothe + her. She was greatly excited, trembling all over, but made no other + attempt to go downstairs. She just sat in her dressing gown by her + bedroom fire, with her head sunk in her hands. Mrs. Allen stayed with + her most of the night. As to the other servants, they had all gone to + bed, and the alarm did not reach them until just before the police + arrived. They slept at the extreme back of the house, and could not + possibly have heard anything. + + So far the housekeeper could add nothing on cross-examination save + lamentations and expressions of amazement. + + Cecil Barker succeeded Mrs. Allen as a witness. As to the occurrences + of the night before, he had very little to add to what he had already + told the police. Personally, he was convinced that the murderer had + escaped by the window. The bloodstain was conclusive, in his opinion, + on that point. Besides, as the bridge was up, there was no other + possible way of escaping. He could not explain what had become of the + assassin or why he had not taken his bicycle, if it were indeed his. + He could not possibly have been drowned in the moat, which was at no + place more than three feet deep. + + In his own mind he had a very definite theory about the murder. + Douglas was a reticent man, and there were some chapters in his life + of which he never spoke. He had emigrated to America when he was a + very young man. He had prospered well, and Barker had first met him + in California, where they had become partners in a successful mining + claim at a place called Benito Canyon. They had done very well; but + Douglas had suddenly sold out and started for England. He was a + widower at that time. Barker had afterwards realized his money and + come to live in London. Thus they had renewed their friendship. + + Douglas had given him the impression that some danger was hanging + over his head, and he had always looked upon his sudden departure + from California, and also his renting a house in so quiet a place in + England, as being connected with this peril. He imagined that some + secret society, some implacable organization, was on Douglas's track, + which would never rest until it killed him. Some remarks of his had + given him this idea; though he had never told him what the society + was, nor how he had come to offend it. He could only suppose that the + legend upon the placard had some reference to this secret society. + + "How long were you with Douglas in California?" asked Inspector + MacDonald. + + "Five years altogether." + + "He was a bachelor, you say?" + + "A widower." + + "Have you ever heard where his first wife came from?" + + "No, I remember his saying that she was of German extraction, and I + have seen her portrait. She was a very beautiful woman. She died of + typhoid the year before I met him." + + "You don't associate his past with any particular part of America?" + + "I have heard him talk of Chicago. He knew that city well and had + worked there. I have heard him talk of the coal and iron districts. + He had travelled a good deal in his time." + + "Was he a politician? Had this secret society to do with politics?" + + "No, he cared nothing about politics." + + "You have no reason to think it was criminal?" + + "On the contrary, I never met a straighter man in my life." + + "Was there anything curious about his life in California?" + + "He liked best to stay and to work at our claim in the mountains. He + would never go where other men were if he could help it. That's why I + first thought that someone was after him. Then when he left so + suddenly for Europe I made sure that it was so. I believe that he had + a warning of some sort. Within a week of his leaving half a dozen men + were inquiring for him." + + "What sort of men?" + + "Well, they were a mighty hard-looking crowd. They came up to the + claim and wanted to know where he was. I told them that he was gone + to Europe and that I did not know where to find him. They meant him + no good--it was easy to see that." + + "Were these men Americans--Californians?" + + "Well, I don't know about Californians. They were Americans, all + right. But they were not miners. I don't know what they were, and was + very glad to see their backs." + + "That was six years ago?" + + "Nearer seven." + + "And then you were together five years in California, so that this + business dates back not less than eleven years at the least?" + + "That is so." + + "It must be a very serious feud that would be kept up with such + earnestness for as long as that. It would be no light thing that + would give rise to it." + + "I think it shadowed his whole life. It was never quite out of his + mind." + + "But if a man had a danger hanging over him, and knew what it was, + don't you think he would turn to the police for protection?" + + "Maybe it was some danger that he could not be protected against. + There's one thing you should know. He always went about armed. His + revolver was never out of his pocket. But, by bad luck, he was in his + dressing gown and had left it in the bedroom last night. Once the + bridge was up, I guess he thought he was safe." + + "I should like these dates a little clearer," said MacDonald. "It is + quite six years since Douglas left California. You followed him next + year, did you not?" + + "That is so." + + "And he had been married five years. You must have returned about the + time of his marriage." + + "About a month before. I was his best man." + + "Did you know Mrs. Douglas before her marriage?" + + "No, I did not. I had been away from England for ten years." + + "But you have seen a good deal of her since." + + Barker looked sternly at the detective. "I have seen a good deal of + him since," he answered. "If I have seen her, it is because you + cannot visit a man without knowing his wife. If you imagine there is + any connection--" + + "I imagine nothing, Mr. Barker. I am bound to make every inquiry + which can bear upon the case. But I mean no offense." + + "Some inquiries are offensive," Barker answered angrily. + + "It's only the facts that we want. It is in your interest and + everyone's interest that they should be cleared up. Did Mr. Douglas + entirely approve your friendship with his wife?" + + Barker grew paler, and his great, strong hands were clasped + convulsively together. "You have no right to ask such questions!" he + cried. "What has this to do with the matter you are investigating?" + + "I must repeat the question." + + "Well, I refuse to answer." + + "You can refuse to answer; but you must be aware that your refusal is + in itself an answer, for you would not refuse if you had not + something to conceal." + + Barker stood for a moment with his face set grimly and his strong + black eyebrows drawn low in intense thought. Then he looked up with a + smile. "Well, I guess you gentlemen are only doing your clear duty + after all, and I have no right to stand in the way of it. I'd only + ask you not to worry Mrs. Douglas over this matter; for she has + enough upon her just now. I may tell you that poor Douglas had just + one fault in the world, and that was his jealousy. He was fond of + me--no man could be fonder of a friend. And he was devoted to his + wife. He loved me to come here, and was forever sending for me. And + yet if his wife and I talked together or there seemed any sympathy + between us, a kind of wave of jealousy would pass over him, and he + would be off the handle and saying the wildest things in a moment. + More than once I've sworn off coming for that reason, and then he + would write me such penitent, imploring letters that I just had to. + But you can take it from me, gentlemen, if it was my last word, that + no man ever had a more loving, faithful wife--and I can say also no + friend could be more loyal than I!" + + It was spoken with fervour and feeling, and yet Inspector MacDonald + could not dismiss the subject. + + "You are aware," said he, "that the dead man's wedding ring has been + taken from his finger?" + + "So it appears," said Barker. + + "What do you mean by 'appears'? You know it as a fact." + + The man seemed confused and undecided. "When I said 'appears' I meant + that it was conceivable that he had himself taken off the ring." + + "The mere fact that the ring should be absent, whoever may have + removed it, would suggest to anyone's mind, would it not, that the + marriage and the tragedy were connected?" + + Barker shrugged his broad shoulders. "I can't profess to say what it + means." he answered. "But if you mean to hint that it could reflect + in any way upon this lady's honour"--his eyes blazed for an instant, + and then with an evident effort he got a grip upon his own + emotions--"well, you are on the wrong track, that's all." + + "I don't know that I've anything else to ask you at present," said + MacDonald, coldly. + + "There was one small point," remarked Sherlock Holmes. "When you + entered the room there was only a candle lighted on the table, was + there not?" + + "Yes, that was so." + + "By its light you saw that some terrible incident had occurred?" + + "Exactly." + + "You at once rang for help?" + + "Yes." + + "And it arrived very speedily?" + + "Within a minute or so." + + "And yet when they arrived they found that the candle was out and + that the lamp had been lighted. That seems very remarkable." + + Again Barker showed some signs of indecision. "I don't see that it + was remarkable, Mr. Holmes," he answered after a pause. "The candle + threw a very bad light. My first thought was to get a better one. The + lamp was on the table; so I lit it." + + "And blew out the candle?" + + "Exactly." + + Holmes asked no further question, and Barker, with a deliberate look + from one to the other of us, which had, as it seemed to me, something + of defiance in it, turned and left the room. + + Inspector MacDonald had sent up a note to the effect that he would + wait upon Mrs. Douglas in her room; but she had replied that she + would meet us in the dining room. She entered now, a tall and + beautiful woman of thirty, reserved and self-possessed to a + remarkable degree, very different from the tragic and distracted + figure I had pictured. It is true that her face was pale and drawn, + like that of one who has endured a great shock; but her manner was + composed, and the finely moulded hand which she rested upon the edge + of the table was as steady as my own. Her sad, appealing eyes + travelled from one to the other of us with a curiously inquisitive + expression. That questioning gaze transformed itself suddenly into + abrupt speech. + + "Have you found anything out yet?" she asked. + + Was it my imagination that there was an undertone of fear rather than + of hope in the question? + + "We have taken every possible step, Mrs. Douglas," said the + inspector. "You may rest assured that nothing will be neglected." + + "Spare no money," she said in a dead, even tone. "It is my desire + that every possible effort should be made." + + "Perhaps you can tell us something which may throw some light upon + the matter." + + "I fear not; but all I know is at your service." + + "We have heard from Mr. Cecil Barker that you did not actually + see--that you were never in the room where the tragedy occurred?" + + "No, he turned me back upon the stairs. He begged me to return to my + room." + + "Quite so. You had heard the shot, and you had at once come down." + + "I put on my dressing gown and then came down." + + "How long was it after hearing the shot that you were stopped on the + stair by Mr. Barker?" + + "It may have been a couple of minutes. It is so hard to reckon time + at such a moment. He implored me not to go on. He assured me that I + could do nothing. Then Mrs. Allen, the housekeeper, led me upstairs + again. It was all like some dreadful dream." + + "Can you give us any idea how long your husband had been downstairs + before you heard the shot?" + + "No, I cannot say. He went from his dressing room, and I did not hear + him go. He did the round of the house every night, for he was nervous + of fire. It is the only thing that I have ever known him nervous of." + + "That is just the point which I want to come to, Mrs. Douglas. You + have known your husband only in England, have you not?" + + "Yes, we have been married five years." + + "Have you heard him speak of anything which occurred in America and + might bring some danger upon him?" + + Mrs. Douglas thought earnestly before she answered. "Yes." she said + at last, "I have always felt that there was a danger hanging over + him. He refused to discuss it with me. It was not from want of + confidence in me--there was the most complete love and confidence + between us--but it was out of his desire to keep all alarm away from + me. He thought I should brood over it if I knew all, and so he was + silent." + + "How did you know it, then?" + + Mrs. Douglas's face lit with a quick smile. "Can a husband ever carry + about a secret all his life and a woman who loves him have no + suspicion of it? I knew it by his refusal to talk about some episodes + in his American life. I knew it by certain precautions he took. I + knew it by certain words he let fall. I knew it by the way he looked + at unexpected strangers. I was perfectly certain that he had some + powerful enemies, that he believed they were on his track, and that + he was always on his guard against them. I was so sure of it that for + years I have been terrified if ever he came home later than was + expected." + + "Might I ask," asked Holmes, "what the words were which attracted + your attention?" + + "The Valley of Fear," the lady answered. "That was an expression he + has used when I questioned him. 'I have been in the Valley of Fear. I + am not out of it yet.'--'Are we never to get out of the Valley of + Fear?' I have asked him when I have seen him more serious than usual. + 'Sometimes I think that we never shall,' he has answered." + + "Surely you asked him what he meant by the Valley of Fear?" + + "I did; but his face would become very grave and he would shake his + head. 'It is bad enough that one of us should have been in its + shadow,' he said. 'Please God it shall never fall upon you!' It was + some real valley in which he had lived and in which something + terrible had occurred to him, of that I am certain; but I can tell + you no more." + + "And he never mentioned any names?" + + "Yes, he was delirious with fever once when he had his hunting + accident three years ago. Then I remember that there was a name that + came continually to his lips. He spoke it with anger and a sort of + horror. McGinty was the name--Bodymaster McGinty. I asked him when he + recovered who Bodymaster McGinty was, and whose body he was master + of. 'Never of mine, thank God!' he answered with a laugh, and that + was all I could get from him. But there is a connection between + Bodymaster McGinty and the Valley of Fear." + + "There is one other point," said Inspector MacDonald. "You met Mr. + Douglas in a boarding house in London, did you not, and became + engaged to him there? Was there any romance, anything secret or + mysterious, about the wedding?" + + "There was romance. There is always romance. There was nothing + mysterious." + + "He had no rival?" + + "No, I was quite free." + + "You have heard, no doubt, that his wedding ring has been taken. Does + that suggest anything to you? Suppose that some enemy of his old life + had tracked him down and committed this crime, what possible reason + could he have for taking his wedding ring?" + + For an instant I could have sworn that the faintest shadow of a smile + flickered over the woman's lips. + + "I really cannot tell," she answered. "It is certainly a most + extraordinary thing." + + "Well, we will not detain you any longer, and we are sorry to have + put you to this trouble at such a time," said the inspector. "There + are some other points, no doubt; but we can refer to you as they + arise." + + She rose, and I was again conscious of that quick, questioning glance + with which she had just surveyed us. "What impression has my evidence + made upon you?" The question might as well have been spoken. Then, + with a bow, she swept from the room. + + "She's a beautiful woman--a very beautiful woman," said MacDonald + thoughtfully, after the door had closed behind her. "This man Barker + has certainly been down here a good deal. He is a man who might be + attractive to a woman. He admits that the dead man was jealous, and + maybe he knew best himself what cause he had for jealousy. Then + there's that wedding ring. You can't get past that. The man who tears + a wedding ring off a dead man's--What do you say to it, Mr. Holmes?" + + My friend had sat with his head upon his hands, sunk in the deepest + thought. Now he rose and rang the bell. "Ames," he said, when the + butler entered, "where is Mr. Cecil Barker now?" + + "I'll see, sir." + + He came back in a moment to say that Barker was in the garden. + + "Can you remember, Ames, what Mr. Barker had on his feet last night + when you joined him in the study?" + + "Yes, Mr. Holmes. He had a pair of bedroom slippers. I brought him + his boots when he went for the police." + + "Where are the slippers now?" + + "They are still under the chair in the hall." + + "Very good, Ames. It is, of course, important for us to know which + tracks may be Mr. Barker's and which from outside." + + "Yes, sir. I may say that I noticed that the slippers were stained + with blood--so indeed were my own." + + "That is natural enough, considering the condition of the room. Very + good, Ames. We will ring if we want you." + + A few minutes later we were in the study. Holmes had brought with him + the carpet slippers from the hall. As Ames had observed, the soles of + both were dark with blood. + + "Strange!" murmured Holmes, as he stood in the light of the window + and examined them minutely. "Very strange indeed!" + + Stooping with one of his quick feline pounces, he placed the slipper + upon the blood mark on the sill. It exactly corresponded. He smiled + in silence at his colleagues. + + The inspector was transfigured with excitement. His native accent + rattled like a stick upon railings. + + "Man," he cried, "there's not a doubt of it! Barker has just marked + the window himself. It's a good deal broader than any bootmark. I + mind that you said it was a splay-foot, and here's the explanation. + But what's the game, Mr. Holmes--what's the game?" + + "Ay, what's the game?" my friend repeated thoughtfully. + + White Mason chuckled and rubbed his fat hands together in his + professional satisfaction. "I said it was a snorter!" he cried. "And + a real snorter it is!" + + + + + + CHAPTER VI + A Dawning Light + + + The three detectives had many matters of detail into which to + inquire; so I returned alone to our modest quarters at the village + inn. But before doing so I took a stroll in the curious old-world + garden which flanked the house. Rows of very ancient yew trees cut + into strange designs girded it round. Inside was a beautiful stretch + of lawn with an old sundial in the middle, the whole effect so + soothing and restful that it was welcome to my somewhat jangled + nerves. + + In that deeply peaceful atmosphere one could forget, or remember only + as some fantastic nightmare, that darkened study with the sprawling, + bloodstained figure on the floor. And yet, as I strolled round it and + tried to steep my soul in its gentle balm, a strange incident + occurred, which brought me back to the tragedy and left a sinister + impression in my mind. + + I have said that a decoration of yew trees circled the garden. At the + end farthest from the house they thickened into a continuous hedge. + On the other side of this hedge, concealed from the eyes of anyone + approaching from the direction of the house, there was a stone seat. + As I approached the spot I was aware of voices, some remark in the + deep tones of a man, answered by a little ripple of feminine + laughter. + + An instant later I had come round the end of the hedge and my eyes + lit upon Mrs. Douglas and the man Barker before they were aware of my + presence. Her appearance gave me a shock. In the dining-room she had + been demure and discreet. Now all pretense of grief had passed away + from her. Her eyes shone with the joy of living, and her face still + quivered with amusement at some remark of her companion. He sat + forward, his hands clasped and his forearms on his knees, with an + answering smile upon his bold, handsome face. In an instant--but it + was just one instant too late--they resumed their solemn masks as my + figure came into view. A hurried word or two passed between them, and + then Barker rose and came towards me. + + "Excuse me, sir," said he, "but am I addressing Dr. Watson?" + + I bowed with a coldness which showed, I dare say, very plainly the + impression which had been produced upon my mind. + + "We thought that it was probably you, as your friendship with Mr. + Sherlock Holmes is so well known. Would you mind coming over and + speaking to Mrs. Douglas for one instant?" + + I followed him with a dour face. Very clearly I could see in my + mind's eye that shattered figure on the floor. Here within a few + hours of the tragedy were his wife and his nearest friend laughing + together behind a bush in the garden which had been his. I greeted + the lady with reserve. I had grieved with her grief in the + dining-room. Now I met her appealing gaze with an unresponsive eye. + + "I fear that you think me callous and hard-hearted," said she. + + I shrugged my shoulders. "It is no business of mine," said I. + + "Perhaps some day you will do me justice. If you only realized--" + + "There is no need why Dr. Watson should realize," said Barker + quickly. "As he has himself said, it is no possible business of his." + + "Exactly," said I, "and so I will beg leave to resume my walk." + + "One moment, Dr. Watson," cried the woman in a pleading voice. "There + is one question which you can answer with more authority than anyone + else in the world, and it may make a very great difference to me. You + know Mr. Holmes and his relations with the police better than anyone + else can. Supposing that a matter were brought confidentially to his + knowledge, is it absolutely necessary that he should pass it on to + the detectives?" + + "Yes, that's it," said Barker eagerly. "Is he on his own or is he + entirely in with them?" + + "I really don't know that I should be justified in discussing such a + point." + + "I beg--I implore that you will, Dr. Watson! I assure you that you + will be helping us--helping me greatly if you will guide us on that + point." + + There was such a ring of sincerity in the woman's voice that for the + instant I forgot all about her levity and was moved only to do her + will. + + "Mr. Holmes is an independent investigator," I said. "He is his own + master, and would act as his own judgment directed. At the same time, + he would naturally feel loyalty towards the officials who were + working on the same case, and he would not conceal from them anything + which would help them in bringing a criminal to justice. Beyond this + I can say nothing, and I would refer you to Mr. Holmes himself if you + wanted fuller information." + + So saying I raised my hat and went upon my way, leaving them still + seated behind that concealing hedge. I looked back as I rounded the + far end of it, and saw that they were still talking very earnestly + together, and, as they were gazing after me, it was clear that it was + our interview that was the subject of their debate. + + "I wish none of their confidences," said Holmes, when I reported to + him what had occurred. He had spent the whole afternoon at the Manor + House in consultation with his two colleagues, and returned about + five with a ravenous appetite for a high tea which I had ordered for + him. "No confidences, Watson; for they are mighty awkward if it comes + to an arrest for conspiracy and murder." + + "You think it will come to that?" + + He was in his most cheerful and debonair humour. "My dear Watson, + when I have exterminated that fourth egg I shall be ready to put you + in touch with the whole situation. I don't say that we have fathomed + it--far from it--but when we have traced the missing dumb-bell--" + + "The dumb-bell!" + + "Dear me, Watson, is it possible that you have not penetrated the + fact that the case hangs upon the missing dumb-bell? Well, well, you + need not be downcast; for between ourselves I don't think that either + Inspector Mac or the excellent local practitioner has grasped the + overwhelming importance of this incident. One dumb-bell, Watson! + Consider an athlete with one dumb-bell! Picture to yourself the + unilateral development, the imminent danger of a spinal curvature. + Shocking, Watson, shocking!" + + He sat with his mouth full of toast and his eyes sparkling with + mischief, watching my intellectual entanglement. The mere sight of + his excellent appetite was an assurance of success, for I had very + clear recollections of days and nights without a thought of food, + when his baffled mind had chafed before some problem while his thin, + eager features became more attenuated with the asceticism of complete + mental concentration. Finally he lit his pipe, and sitting in the + inglenook of the old village inn he talked slowly and at random about + his case, rather as one who thinks aloud than as one who makes a + considered statement. + + "A lie, Watson--a great, big, thumping, obtrusive, uncompromising + lie--that's what meets us on the threshold! There is our starting + point. The whole story told by Barker is a lie. But Barker's story is + corroborated by Mrs. Douglas. Therefore she is lying also. They are + both lying, and in a conspiracy. So now we have the clear problem. + Why are they lying, and what is the truth which they are trying so + hard to conceal? Let us try, Watson, you and I, if we can get behind + the lie and reconstruct the truth. + + "How do I know that they are lying? Because it is a clumsy + fabrication which simply could not be true. Consider! According to + the story given to us, the assassin had less than a minute after the + murder had been committed to take that ring, which was under another + ring, from the dead man's finger, to replace the other ring--a thing + which he would surely never have done--and to put that singular card + beside his victim. I say that this was obviously impossible. + + "You may argue--but I have too much respect for your judgment, + Watson, to think that you will do so--that the ring may have been + taken before the man was killed. The fact that the candle had been + lit only a short time shows that there had been no lengthy interview. + Was Douglas, from what we hear of his fearless character, a man who + would be likely to give up his wedding ring at such short notice, or + could we conceive of his giving it up at all? No, no, Watson, the + assassin was alone with the dead man for some time with the lamp lit. + Of that I have no doubt at all. + + "But the gunshot was apparently the cause of death. Therefore the + shot must have been fired some time earlier than we are told. But + there could be no mistake about such a matter as that. We are in the + presence, therefore, of a deliberate conspiracy upon the part of the + two people who heard the gunshot--of the man Barker and of the woman + Douglas. When on the top of this I am able to show that the blood + mark on the windowsill was deliberately placed there by Barker, in + order to give a false clue to the police, you will admit that the + case grows dark against him. + + "Now we have to ask ourselves at what hour the murder actually did + occur. Up to half-past ten the servants were moving about the house; + so it was certainly not before that time. At a quarter to eleven they + had all gone to their rooms with the exception of Ames, who was in + the pantry. I have been trying some experiments after you left us + this afternoon, and I find that no noise which MacDonald can make in + the study can penetrate to me in the pantry when the doors are all + shut. + + "It is otherwise, however, from the housekeeper's room. It is not so + far down the corridor, and from it I could vaguely hear a voice when + it was very loudly raised. The sound from a shotgun is to some extent + muffled when the discharge is at very close range, as it undoubtedly + was in this instance. It would not be very loud, and yet in the + silence of the night it should have easily penetrated to Mrs. Allen's + room. She is, as she has told us, somewhat deaf; but none the less + she mentioned in her evidence that she did hear something like a door + slamming half an hour before the alarm was given. Half an hour before + the alarm was given would be a quarter to eleven. I have no doubt + that what she heard was the report of the gun, and that this was the + real instant of the murder. + + "If this is so, we have now to determine what Barker and Mrs. + Douglas, presuming that they are not the actual murderers, could have + been doing from quarter to eleven, when the sound of the shot brought + them down, until quarter past eleven, when they rang the bell and + summoned the servants. What were they doing, and why did they not + instantly give the alarm? That is the question which faces us, and + when it has been answered we shall surely have gone some way to solve + our problem." + + "I am convinced myself," said I, "that there is an understanding + between those two people. She must be a heartless creature to sit + laughing at some jest within a few hours of her husband's murder." + + "Exactly. She does not shine as a wife even in her own account of + what occurred. I am not a whole-souled admirer of womankind, as you + are aware, Watson, but my experience of life has taught me that there + are few wives, having any regard for their husbands, who would let + any man's spoken word stand between them and that husband's dead + body. Should I ever marry, Watson, I should hope to inspire my wife + with some feeling which would prevent her from being walked off by a + housekeeper when my corpse was lying within a few yards of her. It + was badly stage-managed; for even the rawest investigators must be + struck by the absence of the usual feminine ululation. If there had + been nothing else, this incident alone would have suggested a + prearranged conspiracy to my mind." + + "You think then, definitely, that Barker and Mrs. Douglas are guilty + of the murder?" + + "There is an appalling directness about your questions, Watson," said + Holmes, shaking his pipe at me. "They come at me like bullets. If you + put it that Mrs. Douglas and Barker know the truth about the murder, + and are conspiring to conceal it, then I can give you a whole-souled + answer. I am sure they do. But your more deadly proposition is not so + clear. Let us for a moment consider the difficulties which stand in + the way. + + "We will suppose that this couple are united by the bonds of a guilty + love, and that they have determined to get rid of the man who stands + between them. It is a large supposition; for discreet inquiry among + servants and others has failed to corroborate it in any way. On the + contrary, there is a good deal of evidence that the Douglases were + very attached to each other." + + "That, I am sure, cannot he true." said I, thinking of the beautiful + smiling face in the garden. + + "Well at least they gave that impression. However, we will suppose + that they are an extraordinarily astute couple, who deceive everyone + upon this point, and conspire to murder the husband. He happens to be + a man over whose head some danger hangs--" + + "We have only their word for that." + + Holmes looked thoughtful. "I see, Watson. You are sketching out a + theory by which everything they say from the beginning is false. + According to your idea, there was never any hidden menace, or secret + society, or Valley of Fear, or Boss MacSomebody, or anything else. + Well, that is a good sweeping generalization. Let us see what that + brings us to. They invent this theory to account for the crime. They + then play up to the idea by leaving this bicycle in the park as proof + of the existence of some outsider. The stain on the windowsill + conveys the same idea. So does the card on the body, which might have + been prepared in the house. That all fits into your hypothesis, + Watson. But now we come on the nasty, angular, uncompromising bits + which won't slip into their places. Why a cut-off shotgun of all + weapons--and an American one at that? How could they be so sure that + the sound of it would not bring someone on to them? It's a mere + chance as it is that Mrs. Allen did not start out to inquire for the + slamming door. Why did your guilty couple do all this, Watson?" + + "I confess that I can't explain it." + + "Then again, if a woman and her lover conspire to murder a husband, + are they going to advertise their guilt by ostentatiously removing + his wedding ring after his death? Does that strike you as very + probable, Watson?" + + "No, it does not." + + "And once again, if the thought of leaving a bicycle concealed + outside had occurred to you, would it really have seemed worth doing + when the dullest detective would naturally say this is an obvious + blind, as the bicycle is the first thing which the fugitive needed in + order to make his escape." + + "I can conceive of no explanation." + + "And yet there should be no combination of events for which the wit + of man cannot conceive an explanation. Simply as a mental exercise, + without any assertion that it is true, let me indicate a possible + line of thought. It is, I admit, mere imagination; but how often is + imagination the mother of truth? + + "We will suppose that there was a guilty secret, a really shameful + secret in the life of this man Douglas. This leads to his murder by + someone who is, we will suppose, an avenger, someone from outside. + This avenger, for some reason which I confess I am still at a loss to + explain, took the dead man's wedding ring. The vendetta might + conceivably date back to the man's first marriage, and the ring be + taken for some such reason. + + "Before this avenger got away, Barker and the wife had reached the + room. The assassin convinced them that any attempt to arrest him + would lead to the publication of some hideous scandal. They were + converted to this idea, and preferred to let him go. For this purpose + they probably lowered the bridge, which can be done quite + noiselessly, and then raised it again. He made his escape, and for + some reason thought that he could do so more safely on foot than on + the bicycle. He therefore left his machine where it would not be + discovered until he had got safely away. So far we are within the + bounds of possibility, are we not?" + + "Well, it is possible, no doubt," said I, with some reserve. + + "We have to remember, Watson, that whatever occurred is certainly + something very extraordinary. Well, now, to continue our + supposititious case, the couple--not necessarily a guilty + couple--realize after the murderer is gone that they have placed + themselves in a position in which it may be difficult for them to + prove that they did not themselves either do the deed or connive at + it. They rapidly and rather clumsily met the situation. The mark was + put by Barker's bloodstained slipper upon the window-sill to suggest + how the fugitive got away. They obviously were the two who must have + heard the sound of the gun; so they gave the alarm exactly as they + would have done, but a good half hour after the event." + + "And how do you propose to prove all this?" + + "Well, if there were an outsider, he may be traced and taken. That + would be the most effective of all proofs. But if not--well, the + resources of science are far from being exhausted. I think that an + evening alone in that study would help me much." + + "An evening alone!" + + "I propose to go up there presently. I have arranged it with the + estimable Ames, who is by no means whole-hearted about Barker. I + shall sit in that room and see if its atmosphere brings me + inspiration. I'm a believer in the genius loci. You smile, Friend + Watson. Well, we shall see. By the way, you have that big umbrella of + yours, have you not?" + + "It is here." + + "Well, I'll borrow that if I may." + + "Certainly--but what a wretched weapon! If there is danger--" + + "Nothing serious, my dear Watson, or I should certainly ask for your + assistance. But I'll take the umbrella. At present I am only awaiting + the return of our colleagues from Tunbridge Wells, where they are at + present engaged in trying for a likely owner to the bicycle." + + It was nightfall before Inspector MacDonald and White Mason came back + from their expedition, and they arrived exultant, reporting a great + advance in our investigation. + + "Man, I'll admeet that I had my doubts if there was ever an + outsider," said MacDonald, "but that's all past now. We've had the + bicycle identified, and we have a description of our man; so that's a + long step on our journey." + + "It sounds to me like the beginning of the end," said Holmes. "I'm + sure I congratulate you both with all my heart." + + "Well, I started from the fact that Mr. Douglas had seemed disturbed + since the day before, when he had been at Tunbridge Wells. It was at + Tunbridge Wells then that he had become conscious of some danger. It + was clear, therefore, that if a man had come over with a bicycle it + was from Tunbridge Wells that he might be expected to have come. We + took the bicycle over with us and showed it at the hotels. It was + identified at once by the manager of the Eagle Commercial as + belonging to a man named Hargrave, who had taken a room there two + days before. This bicycle and a small valise were his whole + belongings. He had registered his name as coming from London, but had + given no address. The valise was London made, and the contents were + British; but the man himself was undoubtedly an American." + + "Well, well," said Holmes gleefully, "you have indeed done some solid + work while I have been sitting spinning theories with my friend! It's + a lesson in being practical, Mr. Mac." + + "Ay, it's just that, Mr. Holmes," said the inspector with + satisfaction. + + "But this may all fit in with your theories," I remarked. + + "That may or may not be. But let us hear the end, Mr. Mac. Was there + nothing to identify this man?" + + "So little that it was evident that he had carefully guarded himself + against identification. There were no papers or letters, and no + marking upon the clothes. A cycle map of the county lay on his + bedroom table. He had left the hotel after breakfast yesterday + morning on his bicycle, and no more was heard of him until our + inquiries." + + "That's what puzzles me, Mr. Holmes," said White Mason. "If the + fellow did not want the hue and cry raised over him, one would + imagine that he would have returned and remained at the hotel as an + inoffensive tourist. As it is, he must know that he will be reported + to the police by the hotel manager and that his disappearance will be + connected with the murder." + + "So one would imagine. Still, he has been justified of his wisdom up + to date, at any rate, since he has not been taken. But his + description--what of that?" + + MacDonald referred to his notebook. "Here we have it so far as they + could give it. They don't seem to have taken any very particular + stock of him; but still the porter, the clerk, and the chambermaid + are all agreed that this about covers the points. He was a man about + five foot nine in height, fifty or so years of age, his hair slightly + grizzled, a grayish moustache, a curved nose, and a face which all of + them described as fierce and forbidding." + + "Well, bar the expression, that might almost be a description of + Douglas himself," said Holmes. "He is just over fifty, with grizzled + hair and moustache, and about the same height. Did you get anything + else?" + + "He was dressed in a heavy gray suit with a reefer jacket, and he + wore a short yellow overcoat and a soft cap." + + "What about the shotgun?" + + "It is less than two feet long. It could very well have fitted into + his valise. He could have carried it inside his overcoat without + difficulty." + + "And how do you consider that all this bears upon the general case?" + + "Well, Mr. Holmes," said MacDonald, "when we have got our man--and + you may be sure that I had his description on the wires within five + minutes of hearing it--we shall be better able to judge. But, even as + it stands, we have surely gone a long way. We know that an American + calling himself Hargrave came to Tunbridge Wells two days ago with + bicycle and valise. In the latter was a sawed-off shotgun; so he came + with the deliberate purpose of crime. Yesterday morning he set off + for this place on his bicycle, with his gun concealed in his + overcoat. No one saw him arrive, so far as we can learn; but he need + not pass through the village to reach the park gates, and there are + many cyclists upon the road. Presumably he at once concealed his + cycle among the laurels where it was found, and possibly lurked there + himself, with his eye on the house, waiting for Mr. Douglas to come + out. The shotgun is a strange weapon to use inside a house; but he + had intended to use it outside, and there it has very obvious + advantages, as it would be impossible to miss with it, and the sound + of shots is so common in an English sporting neighbourhood that no + particular notice would be taken." + + "That is all very clear," said Holmes. + + "Well, Mr. Douglas did not appear. What was he to do next? He left + his bicycle and approached the house in the twilight. He found the + bridge down and no one about. He took his chance, intending, no + doubt, to make some excuse if he met anyone. He met no one. He + slipped into the first room that he saw, and concealed himself behind + the curtain. Thence he could see the drawbridge go up, and he knew + that his only escape was through the moat. He waited until + quarter-past eleven, when Mr. Douglas upon his usual nightly round + came into the room. He shot him and escaped, as arranged. He was + aware that the bicycle would be described by the hotel people and be + a clue against him; so he left it there and made his way by some + other means to London or to some safe hiding place which he had + already arranged. How is that, Mr. Holmes?" + + "Well, Mr. Mac, it is very good and very clear so far as it goes. + That is your end of the story. My end is that the crime was committed + half an hour earlier than reported; that Mrs. Douglas and Barker are + both in a conspiracy to conceal something; that they aided the + murderer's escape--or at least that they reached the room before he + escaped--and that they fabricated evidence of his escape through the + window, whereas in all probability they had themselves let him go by + lowering the bridge. That's my reading of the first half." + + The two detectives shook their heads. + + "Well, Mr. Holmes, if this is true, we only tumble out of one mystery + into another," said the London inspector. + + "And in some ways a worse one," added White Mason. "The lady has + never been in America in all her life. What possible connection could + she have with an American assassin which would cause her to shelter + him?" + + "I freely admit the difficulties," said Holmes. "I propose to make a + little investigation of my own to-night, and it is just possible that + it may contribute something to the common cause." + + "Can we help you, Mr. Holmes?" + + "No, no! Darkness and Dr. Watson's umbrella--my wants are simple. And + Ames, the faithful Ames, no doubt he will stretch a point for me. All + my lines of thought lead me back invariably to the one basic + question--why should an athletic man develop his frame upon so + unnatural an instrument as a single dumb-bell?" + + It was late that night when Holmes returned from his solitary + excursion. We slept in a double-bedded room, which was the best that + the little country inn could do for us. I was already asleep when I + was partly awakened by his entrance. + + "Well, Holmes," I murmured, "have you found anything out?" + + He stood beside me in silence, his candle in his hand. Then the tall, + lean figure inclined towards me. "I say, Watson," he whispered, + "would you be afraid to sleep in the same room with a lunatic, a man + with softening of the brain, an idiot whose mind has lost its grip?" + + "Not in the least," I answered in astonishment. + + "Ah, that's lucky," he said, and not another word would he utter that + night. + + + + + + CHAPTER VII + The Solution + + + Next morning, after breakfast, we found Inspector MacDonald and White + Mason seated in close consultation in the small parlour of the local + police sergeant. On the table in front of them were piled a number of + letters and telegrams, which they were carefully sorting and + docketing. Three had been placed on one side. + + "Still on the track of the elusive bicyclist?" Holmes asked + cheerfully. "What is the latest news of the ruffian?" + + MacDonald pointed ruefully to his heap of correspondence. + + "He is at present reported from Leicester, Nottingham, Southampton, + Derby, East Ham, Richmond, and fourteen other places. In three of + them--East Ham, Leicester, and Liverpool--there is a clear case + against him, and he has actually been arrested. The country seems to + be full of the fugitives with yellow coats." + + "Dear me!" said Holmes sympathetically. "Now, Mr. Mac and you, Mr. + White Mason, I wish to give you a very earnest piece of advice. When + I went into this case with you I bargained, as you will no doubt + remember, that I should not present you with half-proved theories, + but that I should retain and work out my own ideas until I had + satisfied myself that they were correct. For this reason I am not at + the present moment telling you all that is in my mind. On the other + hand, I said that I would play the game fairly by you, and I do not + think it is a fair game to allow you for one unnecessary moment to + waste your energies upon a profitless task. Therefore I am here to + advise you this morning, and my advice to you is summed up in three + words--abandon the case." + + MacDonald and White Mason stared in amazement at their celebrated + colleague. + + "You consider it hopeless!" cried the inspector. + + "I consider your case to be hopeless. I do not consider that it is + hopeless to arrive at the truth." + + "But this cyclist. He is not an invention. We have his description, + his valise, his bicycle. The fellow must be somewhere. Why should we + not get him?" + + "Yes, yes, no doubt he is somewhere, and no doubt we shall get him; + but I would not have you waste your energies in East Ham or + Liverpool. I am sure that we can find some shorter cut to a result." + + "You are holding something back. It's hardly fair of you, Mr. + Holmes." The inspector was annoyed. + + "You know my methods of work, Mr. Mac. But I will hold it back for + the shortest time possible. I only wish to verify my details in one + way, which can very readily be done, and then I make my bow and + return to London, leaving my results entirely at your service. I owe + you too much to act otherwise; for in all my experience I cannot + recall any more singular and interesting study." + + "This is clean beyond me, Mr. Holmes. We saw you when we returned + from Tunbridge Wells last night, and you were in general agreement + with our results. What has happened since then to give you a + completely new idea of the case?" + + "Well, since you ask me, I spent, as I told you that I would, some + hours last night at the Manor House." + + "Well, what happened?" + + "Ah, I can only give you a very general answer to that for the + moment. By the way, I have been reading a short but clear and + interesting account of the old building, purchasable at the modest + sum of one penny from the local tobacconist." + + Here Holmes drew a small tract, embellished with a rude engraving of + the ancient Manor House, from his waistcoat pocket. + + "It immensely adds to the zest of an investigation, my dear Mr. Mac, + when one is in conscious sympathy with the historical atmosphere of + one's surroundings. Don't look so impatient; for I assure you that + even so bald an account as this raises some sort of picture of the + past in one's mind. Permit me to give you a sample. 'Erected in the + fifth year of the reign of James I, and standing upon the site of a + much older building, the Manor House of Birlstone presents one of the + finest surviving examples of the moated Jacobean residence--' " + + "You are making fools of us, Mr. Holmes!" + + "Tut, tut, Mr. Mac!--the first sign of temper I have detected in you. + Well, I won't read it verbatim, since you feel so strongly upon the + subject. But when I tell you that there is some account of the taking + of the place by a parliamentary colonel in 1644, of the concealment + of Charles for several days in the course of the Civil War, and + finally of a visit there by the second George, you will admit that + there are various associations of interest connected with this + ancient house." + + "I don't doubt it, Mr. Holmes; but that is no business of ours." + + "Is it not? Is it not? Breadth of view, my dear Mr. Mac, is one of + the essentials of our profession. The interplay of ideas and the + oblique uses of knowledge are often of extraordinary interest. You + will excuse these remarks from one who, though a mere connoisseur of + crime, is still rather older and perhaps more experienced than + yourself." + + "I'm the first to admit that," said the detective heartily. "You get + to your point, I admit; but you have such a deuced round-the-corner + way of doing it." + + "Well, well, I'll drop past history and get down to present-day + facts. I called last night, as I have already said, at the Manor + House. I did not see either Barker or Mrs. Douglas. I saw no + necessity to disturb them; but I was pleased to hear that the lady + was not visibly pining and that she had partaken of an excellent + dinner. My visit was specially made to the good Mr. Ames, with whom I + exchanged some amiabilities, which culminated in his allowing me, + without reference to anyone else, to sit alone for a time in the + study." + + "What! With that?" I ejaculated. + + "No, no, everything is now in order. You gave permission for that, + Mr. Mac, as I am informed. The room was in its normal state, and in + it I passed an instructive quarter of an hour." + + "What were you doing?" + + "Well, not to make a mystery of so simple a matter, I was looking for + the missing dumb-bell. It has always bulked rather large in my + estimate of the case. I ended by finding it." + + "Where?" + + "Ah, there we come to the edge of the unexplored. Let me go a little + further, a very little further, and I will promise that you shall + share everything that I know." + + "Well, we're bound to take you on your own terms," said the + inspector; "but when it comes to telling us to abandon the case--why + in the name of goodness should we abandon the case?" + + "For the simple reason, my dear Mr. Mac, that you have not got the + first idea what it is that you are investigating." + + "We are investigating the murder of Mr. John Douglas of Birlstone + Manor." + + "Yes, yes, so you are. But don't trouble to trace the mysterious + gentleman upon the bicycle. I assure you that it won't help you." + + "Then what do you suggest that we do?" + + "I will tell you exactly what to do, if you will do it." + + "Well, I'm bound to say I've always found you had reason behind all + your queer ways. I'll do what you advise." + + "And you, Mr. White Mason?" + + The country detective looked helplessly from one to the other. Holmes + and his methods were new to him. "Well, if it is good enough for the + inspector, it is good enough for me," he said at last. + + "Capital!" said Holmes. "Well, then, I should recommend a nice, + cheery country walk for both of you. They tell me that the views from + Birlstone Ridge over the Weald are very remarkable. No doubt lunch + could be got at some suitable hostelry; though my ignorance of the + country prevents me from recommending one. In the evening, tired but + happy--" + + "Man, this is getting past a joke!" cried MacDonald, rising angrily + from his chair. + + "Well, well, spend the day as you like," said Holmes, patting him + cheerfully upon the shoulder. "Do what you like and go where you + will, but meet me here before dusk without fail--without fail, Mr. + Mac." + + "That sounds more like sanity." + + "All of it was excellent advice; but I don't insist, so long as you + are here when I need you. But now, before we part, I want you to + write a note to Mr. Barker." + + "Well?" + + "I'll dictate it, if you like. Ready? + + "Dear Sir: + "It has struck me that it is our duty to drain the moat, in the hope + that we may find some--" + + "It's impossible," said the inspector. "I've made inquiry." + + "Tut, tut! My dear sir, please do what I ask you." + + "Well, go on." + + "--in the hope that we may find something which may bear upon our + investigation. I have made arrangements, and the workmen will be at + work early to-morrow morning diverting the stream--" + + "Impossible!" + + "--diverting the stream; so I thought it best to explain matters + beforehand. + + "Now sign that, and send it by hand about four o'clock. At that hour + we shall meet again in this room. Until then we may each do what we + like; for I can assure you that this inquiry has come to a definite + pause." + + Evening was drawing in when we reassembled. Holmes was very serious + in his manner, myself curious, and the detectives obviously critical + and annoyed. + + "Well, gentlemen," said my friend gravely, "I am asking you now to + put everything to the test with me, and you will judge for yourselves + whether the observations I have made justify the conclusions to which + I have come. It is a chill evening, and I do not know how long our + expedition may last; so I beg that you will wear your warmest coats. + It is of the first importance that we should be in our places before + it grows dark; so with your permission we shall get started at once." + + We passed along the outer bounds of the Manor House park until we + came to a place where there was a gap in the rails which fenced it. + Through this we slipped, and then in the gathering gloom we followed + Holmes until we had reached a shrubbery which lies nearly opposite to + the main door and the drawbridge. The latter had not been raised. + Holmes crouched down behind the screen of laurels, and we all three + followed his example. + + "Well, what are we to do now?" asked MacDonald with some gruffness. + + "Possess our souls in patience and make as little noise as possible," + Holmes answered. + + "What are we here for at all? I really think that you might treat us + with more frankness." + + Holmes laughed. "Watson insists that I am the dramatist in real + life," said he. "Some touch of the artist wells up within me, and + calls insistently for a well-staged performance. Surely our + profession, Mr. Mac, would be a drab and sordid one if we did not + sometimes set the scene so as to glorify our results. The blunt + accusation, the brutal tap upon the shoulder--what can one make of + such a dénouement? But the quick inference, the subtle trap, the + clever forecast of coming events, the triumphant vindication of bold + theories--are these not the pride and the justification of our life's + work? At the present moment you thrill with the glamour of the + situation and the anticipation of the hunt. Where would be that + thrill if I had been as definite as a timetable? I only ask a little + patience, Mr. Mac, and all will be clear to you." + + "Well, I hope the pride and justification and the rest of it will + come before we all get our death of cold," said the London detective + with comic resignation. + + We all had good reason to join in the aspiration; for our vigil was a + long and bitter one. Slowly the shadows darkened over the long, + sombre face of the old house. A cold, damp reek from the moat chilled + us to the bones and set our teeth chattering. There was a single lamp + over the gateway and a steady globe of light in the fatal study. + Everything else was dark and still. + + "How long is this to last?" asked the inspector finally. "And what is + it we are watching for?" + + "I have no more notion than you how long it is to last," Holmes + answered with some asperity. "If criminals would always schedule + their movements like railway trains, it would certainly be more + convenient for all of us. As to what it is we--Well, that's what we + are watching for!" + + As he spoke the bright, yellow light in the study was obscured by + somebody passing to and fro before it. The laurels among which we lay + were immediately opposite the window and not more than a hundred feet + from it. Presently it was thrown open with a whining of hinges, and + we could dimly see the dark outline of a man's head and shoulders + looking out into the gloom. For some minutes he peered forth in + furtive, stealthy fashion, as one who wishes to be assured that he is + unobserved. Then he leaned forward, and in the intense silence we + were aware of the soft lapping of agitated water. He seemed to be + stirring up the moat with something which he held in his hand. Then + suddenly he hauled something in as a fisherman lands a fish--some + large, round object which obscured the light as it was dragged + through the open casement. + + "Now!" cried Holmes. "Now!" + + We were all upon our feet, staggering after him with our stiffened + limbs, while he ran swiftly across the bridge and rang violently at + the bell. There was the rasping of bolts from the other side, and the + amazed Ames stood in the entrance. Holmes brushed him aside without a + word and, followed by all of us, rushed into the room which had been + occupied by the man whom we had been watching. + + The oil lamp on the table represented the glow which we had seen from + outside. It was now in the hand of Cecil Barker, who held it towards + us as we entered. Its light shone upon his strong, resolute, + clean-shaved face and his menacing eyes. + + "What the devil is the meaning of all this?" he cried. "What are you + after, anyhow?" + + Holmes took a swift glance round, and then pounced upon a sodden + bundle tied together with cord which lay where it had been thrust + under the writing table. + + "This is what we are after, Mr. Barker--this bundle, weighted with a + dumb-bell, which you have just raised from the bottom of the moat." + + Barker stared at Holmes with amazement in his face. "How in thunder + came you to know anything about it?" he asked. + + "Simply that I put it there." + + "You put it there! You!" + + "Perhaps I should have said 'replaced it there,'" said Holmes. "You + will remember, Inspector MacDonald, that I was somewhat struck by the + absence of a dumb-bell. I drew your attention to it; but with the + pressure of other events you had hardly the time to give it the + consideration which would have enabled you to draw deductions from + it. When water is near and a weight is missing it is not a very + far-fetched supposition that something has been sunk in the water. + The idea was at least worth testing; so with the help of Ames, who + admitted me to the room, and the crook of Dr. Watson's umbrella, I + was able last night to fish up and inspect this bundle. + + "It was of the first importance, however, that we should be able to + prove who placed it there. This we accomplished by the very obvious + device of announcing that the moat would be dried to-morrow, which + had, of course, the effect that whoever had hidden the bundle would + most certainly withdraw it the moment that darkness enabled him to do + so. We have no less than four witnesses as to who it was who took + advantage of the opportunity, and so, Mr. Barker, I think the word + lies now with you." + + Sherlock Holmes put the sopping bundle upon the table beside the lamp + and undid the cord which bound it. From within he extracted a + dumb-bell, which he tossed down to its fellow in the corner. Next he + drew forth a pair of boots. "American, as you perceive," he remarked, + pointing to the toes. Then he laid upon the table a long, deadly, + sheathed knife. Finally he unravelled a bundle of clothing, + comprising a complete set of underclothes, socks, a gray tweed suit, + and a short yellow overcoat. + + "The clothes are commonplace," remarked Holmes, "save only the + overcoat, which is full of suggestive touches." He held it tenderly + towards the light. "Here, as you perceive, is the inner pocket + prolonged into the lining in such fashion as to give ample space for + the truncated fowling piece. The tailor's tab is on the neck--'Neal, + Outfitter, Vermissa, U. S. A.' I have spent an instructive afternoon + in the rector's library, and have enlarged my knowledge by adding the + fact that Vermissa is a flourishing little town at the head of one of + the best known coal and iron valleys in the United States. I have + some recollection, Mr. Barker, that you associated the coal districts + with Mr. Douglas's first wife, and it would surely not be too + far-fetched an inference that the V. V. upon the card by the dead + body might stand for Vermissa Valley, or that this very valley which + sends forth emissaries of murder may be that Valley of Fear of which + we have heard. So much is fairly clear. And now, Mr. Barker, I seem + to be standing rather in the way of your explanation." + + It was a sight to see Cecil Barker's expressive face during this + exposition of the great detective. Anger, amazement, consternation, + and indecision swept over it in turn. Finally he took refuge in a + somewhat acrid irony. + + "You know such a lot, Mr. Holmes, perhaps you had better tell us some + more," he sneered. + + "I have no doubt that I could tell you a great deal more, Mr. Barker; + but it would come with a better grace from you." + + "Oh, you think so, do you? Well, all I can say is that if there's any + secret here it is not my secret, and I am not the man to give it + away." + + "Well, if you take that line, Mr. Barker," said the inspector + quietly, "we must just keep you in sight until we have the warrant + and can hold you." + + "You can do what you damn please about that," said Barker defiantly. + + The proceedings seemed to have come to a definite end so far as he + was concerned; for one had only to look at that granite face to + realize that no peine forte et dure would ever force him to plead + against his will. The deadlock was broken, however, by a woman's + voice. Mrs. Douglas had been standing listening at the half opened + door, and now she entered the room. + + "You have done enough for now, Cecil," said she. "Whatever comes of + it in the future, you have done enough." + + "Enough and more than enough," remarked Sherlock Holmes gravely. "I + have every sympathy with you, madam, and should strongly urge you to + have some confidence in the common sense of our jurisdiction and to + take the police voluntarily into your complete confidence. It may be + that I am myself at fault for not following up the hint which you + conveyed to me through my friend, Dr. Watson; but, at that time I had + every reason to believe that you were directly concerned in the + crime. Now I am assured that this is not so. At the same time, there + is much that is unexplained, and I should strongly recommend that you + ask Mr. Douglas to tell us his own story." + + Mrs. Douglas gave a cry of astonishment at Holmes's words. The + detectives and I must have echoed it, when we were aware of a man who + seemed to have emerged from the wall, who advanced now from the gloom + of the corner in which he had appeared. Mrs. Douglas turned, and in + an instant her arms were round him. Barker had seized his + outstretched hand. + + "It's best this way, Jack," his wife repeated; "I am sure that it is + best." + + "Indeed, yes, Mr. Douglas," said Sherlock Holmes, "I am sure that you + will find it best." + + The man stood blinking at us with the dazed look of one who comes + from the dark into the light. It was a remarkable face, bold gray + eyes, a strong, short-clipped, grizzled moustache, a square, + projecting chin, and a humorous mouth. He took a good look at us all, + and then to my amazement he advanced to me and handed me a bundle of + paper. + + "I've heard of you," said he in a voice which was not quite English + and not quite American, but was altogether mellow and pleasing. "You + are the historian of this bunch. Well, Dr. Watson, you've never had + such a story as that pass through your hands before, and I'll lay my + last dollar on that. Tell it your own way; but there are the facts, + and you can't miss the public so long as you have those. I've been + cooped up two days, and I've spent the daylight hours--as much + daylight as I could get in that rat trap--in putting the thing into + words. You're welcome to them--you and your public. There's the story + of the Valley of Fear." + + "That's the past, Mr. Douglas," said Sherlock Holmes quietly. "What + we desire now is to hear your story of the present." + + "You'll have it, sir," said Douglas. "May I smoke as I talk? Well, + thank you, Mr. Holmes. You're a smoker yourself, if I remember right, + and you'll guess what it is to be sitting for two days with tobacco + in your pocket and afraid that the smell will give you away." He + leaned against the mantelpiece and sucked at the cigar which Holmes + had handed him. "I've heard of you, Mr. Holmes. I never guessed that + I should meet you. But before you are through with that," he nodded + at my papers, "you will say I've brought you something fresh." + + Inspector MacDonald had been staring at the newcomer with the + greatest amazement. "Well, this fairly beats me!" he cried at last. + "If you are Mr. John Douglas of Birlstone Manor, then whose death + have we been investigating for these two days, and where in the world + have you sprung from now? You seemed to me to come out of the floor + like a jack-in-a-box." + + "Ah, Mr. Mac," said Holmes, shaking a reproving forefinger, "you + would not read that excellent local compilation which described the + concealment of King Charles. People did not hide in those days + without excellent hiding places, and the hiding place that has once + been used may be again. I had persuaded myself that we should find + Mr. Douglas under this roof." + + "And how long have you been playing this trick upon us, Mr. Holmes?" + said the inspector angrily. "How long have you allowed us to waste + ourselves upon a search that you knew to be an absurd one?" + + "Not one instant, my dear Mr. Mac. Only last night did I form my + views of the case. As they could not be put to the proof until this + evening, I invited you and your colleague to take a holiday for the + day. Pray what more could I do? When I found the suit of clothes in + the moat, it at once became apparent to me that the body we had found + could not have been the body of Mr. John Douglas at all, but must be + that of the bicyclist from Tunbridge Wells. No other conclusion was + possible. Therefore I had to determine where Mr. John Douglas himself + could be, and the balance of probability was that with the connivance + of his wife and his friend he was concealed in a house which had such + conveniences for a fugitive, and awaiting quieter times when he could + make his final escape." + + "Well, you figured it out about right," said Douglas approvingly. "I + thought I'd dodge your British law; for I was not sure how I stood + under it, and also I saw my chance to throw these hounds once for all + off my track. Mind you, from first to last I have done nothing to be + ashamed of, and nothing that I would not do again; but you'll judge + that for yourselves when I tell you my story. Never mind warning me, + Inspector: I'm ready to stand pat upon the truth. + + "I'm not going to begin at the beginning. That's all there," he + indicated my bundle of papers, "and a mighty queer yarn you'll find + it. It all comes down to this: That there are some men that have good + cause to hate me and would give their last dollar to know that they + had got me. So long as I am alive and they are alive, there is no + safety in this world for me. They hunted me from Chicago to + California, then they chased me out of America; but when I married + and settled down in this quiet spot I thought my last years were + going to be peaceable. + + "I never explained to my wife how things were. Why should I pull her + into it? She would never have a quiet moment again; but would always + be imagining trouble. I fancy she knew something, for I may have + dropped a word here or a word there; but until yesterday, after you + gentlemen had seen her, she never knew the rights of the matter. She + told you all she knew, and so did Barker here; for on the night when + this thing happened there was mighty little time for explanations. + She knows everything now, and I would have been a wiser man if I had + told her sooner. But it was a hard question, dear," he took her hand + for an instant in his own, "and I acted for the best. + + "Well, gentlemen, the day before these happenings I was over in + Tunbridge Wells, and I got a glimpse of a man in the street. It was + only a glimpse; but I have a quick eye for these things, and I never + doubted who it was. It was the worst enemy I had among them all--one + who has been after me like a hungry wolf after a caribou all these + years. I knew there was trouble coming, and I came home and made + ready for it. I guessed I'd fight through it all right on my own, my + luck was a proverb in the States about '76. I never doubted that it + would be with me still. + + "I was on my guard all that next day, and never went out into the + park. It's as well, or he'd have had the drop on me with that + buckshot gun of his before ever I could draw on him. After the bridge + was up--my mind was always more restful when that bridge was up in + the evenings--I put the thing clear out of my head. I never dreamed + of his getting into the house and waiting for me. But when I made my + round in my dressing gown, as was my habit, I had no sooner entered + the study than I scented danger. I guess when a man has had dangers + in his life--and I've had more than most in my time--there is a kind + of sixth sense that waves the red flag. I saw the signal clear + enough, and yet I couldn't tell you why. Next instant I spotted a + boot under the window curtain, and then I saw why plain enough. + + "I'd just the one candle that was in my hand; but there was a good + light from the hall lamp through the open door. I put down the candle + and jumped for a hammer that I'd left on the mantel. At the same + moment he sprang at me. I saw the glint of a knife, and I lashed at + him with the hammer. I got him somewhere; for the knife tinkled down + on the floor. He dodged round the table as quick as an eel, and a + moment later he'd got his gun from under his coat. I heard him cock + it; but I had got hold of it before he could fire. I had it by the + barrel, and we wrestled for it all ends up for a minute or more. It + was death to the man that lost his grip. + + "He never lost his grip; but he got it butt downward for a moment too + long. Maybe it was I that pulled the trigger. Maybe we just jolted it + off between us. Anyhow, he got both barrels in the face, and there I + was, staring down at all that was left of Ted Baldwin. I'd recognized + him in the township, and again when he sprang for me; but his own + mother wouldn't recognize him as I saw him then. I'm used to rough + work; but I fairly turned sick at the sight of him. + + "I was hanging on the side of the table when Barker came hurrying + down. I heard my wife coming, and I ran to the door and stopped her. + It was no sight for a woman. I promised I'd come to her soon. I said + a word or two to Barker--he took it all in at a glance--and we waited + for the rest to come along. But there was no sign of them. Then we + understood that they could hear nothing, and that all that had + happened was known only to ourselves. + + "It was at that instant that the idea came to me. I was fairly + dazzled by the brilliance of it. The man's sleeve had slipped up and + there was the branded mark of the lodge upon his forearm. See here!" + + The man whom we had known as Douglas turned up his own coat and cuff + to show a brown triangle within a circle exactly like that which we + had seen upon the dead man. + + "It was the sight of that which started me on it. I seemed to see it + all clear at a glance. There were his height and hair and figure, + about the same as my own. No one could swear to his face, poor devil! + I brought down this suit of clothes, and in a quarter of an hour + Barker and I had put my dressing gown on him and he lay as you found + him. We tied all his things into a bundle, and I weighted them with + the only weight I could find and put them through the window. The + card he had meant to lay upon my body was lying beside his own. + + "My rings were put on his finger; but when it came to the wedding + ring," he held out his muscular hand, "you can see for yourselves + that I had struck the limit. I have not moved it since the day I was + married, and it would have taken a file to get it off. I don't know, + anyhow, that I should have cared to part with it; but if I had wanted + to I couldn't. So we just had to leave that detail to take care of + itself. On the other hand, I brought a bit of plaster down and put it + where I am wearing one myself at this instant. You slipped up there, + Mr. Holmes, clever as you are; for if you had chanced to take off + that plaster you would have found no cut underneath it. + + "Well, that was the situation. If I could lie low for a while and + then get away where I could be joined by my 'widow' we should have a + chance at last of living in peace for the rest of our lives. These + devils would give me no rest so long as I was above ground; but if + they saw in the papers that Baldwin had got his man, there would be + an end of all my troubles. I hadn't much time to make it all clear to + Barker and to my wife; but they understood enough to be able to help + me. I knew all about this hiding place, so did Ames; but it never + entered his head to connect it with the matter. I retired into it, + and it was up to Barker to do the rest. + + "I guess you can fill in for yourselves what he did. He opened the + window and made the mark on the sill to give an idea of how the + murderer escaped. It was a tall order, that; but as the bridge was up + there was no other way. Then, when everything was fixed, he rang the + bell for all he was worth. What happened afterward you know. And so, + gentlemen, you can do what you please; but I've told you the truth + and the whole truth, so help me God! What I ask you now is how do I + stand by the English law?" + + There was a silence which was broken by Sherlock Holmes. + + "The English law is in the main a just law. You will get no worse + than your deserts from that, Mr. Douglas. But I would ask you how did + this man know that you lived here, or how to get into your house, or + where to hide to get you?" + + "I know nothing of this." + + Holmes's face was very white and grave. "The story is not over yet, I + fear," said he. "You may find worse dangers than the English law, or + even than your enemies from America. I see trouble before you, Mr. + Douglas. You'll take my advice and still be on your guard." + + And now, my long-suffering readers, I will ask you to come away with + me for a time, far from the Sussex Manor House of Birlstone, and far + also from the year of grace in which we made our eventful journey + which ended with the strange story of the man who had been known as + John Douglas. I wish you to journey back some twenty years in time, + and westward some thousands of miles in space, that I may lay before + you a singular and terrible narrative--so singular and so terrible + that you may find it hard to believe that even as I tell it, even so + did it occur. + + Do not think that I intrude one story before another is finished. As + you read on you will find that this is not so. And when I have + detailed those distant events and you have solved this mystery of the + past, we shall meet once more in those rooms on Baker Street, where + this, like so many other wonderful happenings, will find its end. + + + + + + + + + + PART II + + The Scowrers + + + + + + CHAPTER I + The Man + + + It was the fourth of February in the year 1875. It had been a severe + winter, and the snow lay deep in the gorges of the Gilmerton + Mountains. The steam ploughs had, however, kept the railroad open, + and the evening train which connects the long line of coal-mining and + iron-working settlements was slowly groaning its way up the steep + gradients which lead from Stagville on the plain to Vermissa, the + central township which lies at the head of Vermissa Valley. From this + point the track sweeps downward to Bartons Crossing, Helmdale, and + the purely agricultural county of Merton. It was a single-track + railroad; but at every siding--and they were numerous--long lines of + trucks piled with coal and iron ore told of the hidden wealth which + had brought a rude population and a bustling life to this most + desolate corner of the United States of America. + + For desolate it was! Little could the first pioneer who had traversed + it have ever imagined that the fairest prairies and the most lush + water pastures were valueless compared to this gloomy land of black + crag and tangled forest. Above the dark and often scarcely penetrable + woods upon their flanks, the high, bare crowns of the mountains, + white snow, and jagged rock towered upon each flank, leaving a long, + winding, tortuous valley in the centre. Up this the little train was + slowly crawling. + + The oil lamps had just been lit in the leading passenger car, a long, + bare carriage in which some twenty or thirty people were seated. The + greater number of these were workmen returning from their day's toil + in the lower part of the valley. At least a dozen, by their grimed + faces and the safety lanterns which they carried, proclaimed + themselves miners. These sat smoking in a group and conversed in low + voices, glancing occasionally at two men on the opposite side of the + car, whose uniforms and badges showed them to be policemen. + + Several women of the labouring class and one or two travellers who + might have been small local storekeepers made up the rest of the + company, with the exception of one young man in a corner by himself. + It is with this man that we are concerned. Take a good look at him, + for he is worth it. + + He is a fresh-complexioned, middle-sized young man, not far, one + would guess, from his thirtieth year. He has large, shrewd, humorous + gray eyes which twinkle inquiringly from time to time as he looks + round through his spectacles at the people about him. It is easy to + see that he is of a sociable and possibly simple disposition, anxious + to be friendly to all men. Anyone could pick him at once as + gregarious in his habits and communicative in his nature, with a + quick wit and a ready smile. And yet the man who studied him more + closely might discern a certain firmness of jaw and grim tightness + about the lips which would warn him that there were depths beyond, + and that this pleasant, brown-haired young Irishman might conceivably + leave his mark for good or evil upon any society to which he was + introduced. + + Having made one or two tentative remarks to the nearest miner, and + receiving only short, gruff replies, the traveller resigned himself + to uncongenial silence, staring moodily out of the window at the + fading landscape. + + It was not a cheering prospect. Through the growing gloom there + pulsed the red glow of the furnaces on the sides of the hills. Great + heaps of slag and dumps of cinders loomed up on each side, with the + high shafts of the collieries towering above them. Huddled groups of + mean, wooden houses, the windows of which were beginning to outline + themselves in light, were scattered here and there along the line, + and the frequent halting places were crowded with their swarthy + inhabitants. + + The iron and coal valleys of the Vermissa district were no resorts + for the leisured or the cultured. Everywhere there were stern signs + of the crudest battle of life, the rude work to be done, and the + rude, strong workers who did it. + + The young traveller gazed out into this dismal country with a face of + mingled repulsion and interest, which showed that the scene was new + to him. At intervals he drew from his pocket a bulky letter to which + he referred, and on the margins of which he scribbled some notes. + Once from the back of his waist he produced something which one would + hardly have expected to find in the possession of so mild-mannered a + man. It was a navy revolver of the largest size. As he turned it + slantwise to the light, the glint upon the rims of the copper shells + within the drum showed that it was fully loaded. He quickly restored + it to his secret pocket, but not before it had been observed by a + working man who had seated himself upon the adjoining bench. + + "Hullo, mate!" said he. "You seem heeled and ready." + + The young man smiled with an air of embarrassment. + + "Yes," said he, "we need them sometimes in the place I come from." + + "And where may that be?" + + "I'm last from Chicago." + + "A stranger in these parts?" + + "Yes." + + "You may find you need it here," said the workman. + + "Ah! is that so?" The young man seemed interested. + + "Have you heard nothing of doings hereabouts?" + + "Nothing out of the way." + + "Why, I thought the country was full of it. You'll hear quick enough. + What made you come here?" + + "I heard there was always work for a willing man." + + "Are you a member of the union?" + + "Sure." + + "Then you'll get your job, I guess. Have you any friends?" + + "Not yet; but I have the means of making them." + + "How's that, then?" + + "I am one of the Eminent Order of Freemen. There's no town without a + lodge, and where there is a lodge I'll find my friends." + + The remark had a singular effect upon his companion. He glanced round + suspiciously at the others in the car. The miners were still + whispering among themselves. The two police officers were dozing. He + came across, seated himself close to the young traveller, and held + out his hand. + + "Put it there," he said. + + A hand-grip passed between the two. + + "I see you speak the truth," said the workman. "But it's well to make + certain." He raised his right hand to his right eyebrow. The + traveller at once raised his left hand to his left eyebrow. + + "Dark nights are unpleasant," said the workman. + + "Yes, for strangers to travel," the other answered. + + "That's good enough. I'm Brother Scanlan, Lodge 341, Vermissa Valley. + Glad to see you in these parts." + + "Thank you. I'm Brother John McMurdo, Lodge 29, Chicago. Bodymaster + J. H. Scott. But I am in luck to meet a brother so early." + + "Well, there are plenty of us about. You won't find the order more + flourishing anywhere in the States than right here in Vermissa + Valley. But we could do with some lads like you. I can't understand a + spry man of the union finding no work to do in Chicago." + + "I found plenty of work to do," said McMurdo. + + "Then why did you leave?" + + McMurdo nodded towards the policemen and smiled. "I guess those chaps + would be glad to know," he said. + + Scanlan groaned sympathetically. "In trouble?" he asked in a whisper. + + "Deep." + + "A penitentiary job?" + + "And the rest." + + "Not a killing!" + + "It's early days to talk of such things," said McMurdo with the air + of a man who had been surprised into saying more than he intended. + "I've my own good reasons for leaving Chicago, and let that be enough + for you. Who are you that you should take it on yourself to ask such + things?" His gray eyes gleamed with sudden and dangerous anger from + behind his glasses. + + "All right, mate, no offense meant. The boys will think none the + worse of you, whatever you may have done. Where are you bound for + now?" + + "Vermissa." + + "That's the third halt down the line. Where are you staying?" + + McMurdo took out an envelope and held it close to the murky oil lamp. + "Here is the address--Jacob Shafter, Sheridan Street. It's a boarding + house that was recommended by a man I knew in Chicago." + + "Well, I don't know it; but Vermissa is out of my beat. I live at + Hobson's Patch, and that's here where we are drawing up. But, say, + there's one bit of advice I'll give you before we part: If you're in + trouble in Vermissa, go straight to the Union House and see Boss + McGinty. He is the Bodymaster of Vermissa Lodge, and nothing can + happen in these parts unless Black Jack McGinty wants it. So long, + mate! Maybe we'll meet in lodge one of these evenings. But mind my + words: If you are in trouble, go to Boss McGinty." + + Scanlan descended, and McMurdo was left once again to his thoughts. + Night had now fallen, and the flames of the frequent furnaces were + roaring and leaping in the darkness. Against their lurid background + dark figures were bending and straining, twisting and turning, with + the motion of winch or of windlass, to the rhythm of an eternal clank + and roar. + + "I guess hell must look something like that," said a voice. + + McMurdo turned and saw that one of the policemen had shifted in his + seat and was staring out into the fiery waste. + + "For that matter," said the other policeman, "I allow that hell must + be something like that. If there are worse devils down yonder than + some we could name, it's more than I'd expect. I guess you are new to + this part, young man?" + + "Well, what if I am?" McMurdo answered in a surly voice. + + "Just this, mister, that I should advise you to be careful in + choosing your friends. I don't think I'd begin with Mike Scanlan or + his gang if I were you." + + "What the hell is it to you who are my friends?" roared McMurdo in a + voice which brought every head in the carriage round to witness the + altercation. "Did I ask you for your advice, or did you think me such + a sucker that I couldn't move without it? You speak when you are + spoken to, and by the Lord you'd have to wait a long time if it was + me!" He thrust out his face and grinned at the patrolmen like a + snarling dog. + + The two policemen, heavy, good-natured men, were taken aback by the + extraordinary vehemence with which their friendly advances had been + rejected. + + "No offense, stranger," said one. "It was a warning for your own + good, seeing that you are, by your own showing, new to the place." + + "I'm new to the place; but I'm not new to you and your kind!" cried + McMurdo in cold fury. "I guess you're the same in all places, shoving + your advice in when nobody asks for it." + + "Maybe we'll see more of you before very long," said one of the + patrolmen with a grin. "You're a real hand-picked one, if I am a + judge." + + "I was thinking the same," remarked the other. "I guess we may meet + again." + + "I'm not afraid of you, and don't you think it!" cried McMurdo. "My + name's Jack McMurdo--see? If you want me, you'll find me at Jacob + Shafter's on Sheridan Street, Vermissa; so I'm not hiding from you, + am I? Day or night I dare to look the like of you in the face--don't + make any mistake about that!" + + There was a murmur of sympathy and admiration from the miners at the + dauntless demeanour of the newcomer, while the two policemen shrugged + their shoulders and renewed a conversation between themselves. + + A few minutes later the train ran into the ill-lit station, and there + was a general clearing; for Vermissa was by far the largest town on + the line. McMurdo picked up his leather gripsack and was about to + start off into the darkness, when one of the miners accosted him. + + "By Gar, mate! you know how to speak to the cops," he said in a voice + of awe. "It was grand to hear you. Let me carry your grip and show + you the road. I'm passing Shafter's on the way to my own shack." + + There was a chorus of friendly "Good-nights" from the other miners as + they passed from the platform. Before ever he had set foot in it, + McMurdo the turbulent had become a character in Vermissa. + + The country had been a place of terror; but the town was in its way + even more depressing. Down that long valley there was at least a + certain gloomy grandeur in the huge fires and the clouds of drifting + smoke, while the strength and industry of man found fitting monuments + in the hills which he had spilled by the side of his monstrous + excavations. But the town showed a dead level of mean ugliness and + squalor. The broad street was churned up by the traffic into a + horrible rutted paste of muddy snow. The sidewalks were narrow and + uneven. The numerous gas-lamps served only to show more clearly a + long line of wooden houses, each with its veranda facing the street, + unkempt and dirty. + + As they approached the centre of the town the scene was brightened by + a row of well-lit stores, and even more by a cluster of saloons and + gaming houses, in which the miners spent their hard-earned but + generous wages. + + "That's the Union House," said the guide, pointing to one saloon + which rose almost to the dignity of being a hotel. "Jack McGinty is + the boss there." + + "What sort of a man is he?" McMurdo asked. + + "What! have you never heard of the boss?" + + "How could I have heard of him when you know that I am a stranger in + these parts?" + + "Well, I thought his name was known clear across the country. It's + been in the papers often enough." + + "What for?" + + "Well," the miner lowered his voice--"over the affairs." + + "What affairs?" + + "Good Lord, mister! you are queer, if I must say it without offense. + There's only one set of affairs that you'll hear of in these parts, + and that's the affairs of the Scowrers." + + "Why, I seem to have read of the Scowrers in Chicago. A gang of + murderers, are they not?" + + "Hush, on your life!" cried the miner, standing still in alarm, and + gazing in amazement at his companion. "Man, you won't live long in + these parts if you speak in the open street like that. Many a man has + had the life beaten out of him for less." + + "Well, I know nothing about them. It's only what I have read." + + "And I'm not saying that you have not read the truth." The man looked + nervously round him as he spoke, peering into the shadows as if he + feared to see some lurking danger. "If killing is murder, then God + knows there is murder and to spare. But don't you dare to breathe the + name of Jack McGinty in connection with it, stranger; for every + whisper goes back to him, and he is not one that is likely to let it + pass. Now, that's the house you're after, that one standing back from + the street. You'll find old Jacob Shafter that runs it as honest a + man as lives in this township." + + "I thank you," said McMurdo, and shaking hands with his new + acquaintance he plodded, gripsack in hand, up the path which led to + the dwelling house, at the door of which he gave a resounding knock. + + It was opened at once by someone very different from what he had + expected. It was a woman, young and singularly beautiful. She was of + the German type, blonde and fair-haired, with the piquant contrast of + a pair of beautiful dark eyes with which she surveyed the stranger + with surprise and a pleasing embarrassment which brought a wave of + colour over her pale face. Framed in the bright light of the open + doorway, it seemed to McMurdo that he had never seen a more beautiful + picture; the more attractive for its contrast with the sordid and + gloomy surroundings. A lovely violet growing upon one of those black + slag-heaps of the mines would not have seemed more surprising. So + entranced was he that he stood staring without a word, and it was she + who broke the silence. + + "I thought it was father," said she with a pleasing little touch of a + German accent. "Did you come to see him? He is downtown. I expect him + back every minute." + + McMurdo continued to gaze at her in open admiration until her eyes + dropped in confusion before this masterful visitor. + + "No, miss," he said at last, "I'm in no hurry to see him. But your + house was recommended to me for board. I thought it might suit + me--and now I know it will." + + "You are quick to make up your mind," said she with a smile. + + "Anyone but a blind man could do as much," the other answered. + + She laughed at the compliment. "Come right in, sir," she said. "I'm + Miss Ettie Shafter, Mr. Shafter's daughter. My mother's dead, and I + run the house. You can sit down by the stove in the front room until + father comes along--Ah, here he is! So you can fix things with him + right away." + + A heavy, elderly man came plodding up the path. In a few words + McMurdo explained his business. A man of the name of Murphy had given + him the address in Chicago. He in turn had had it from someone else. + Old Shafter was quite ready. The stranger made no bones about terms, + agreed at once to every condition, and was apparently fairly flush of + money. For seven dollars a week paid in advance he was to have board + and lodging. + + So it was that McMurdo, the self-confessed fugitive from justice, + took up his abode under the roof of the Shafters, the first step + which was to lead to so long and dark a train of events, ending in a + far distant land. + + + + + + CHAPTER II + The Bodymaster + + + McMurdo was a man who made his mark quickly. Wherever he was the folk + around soon knew it. Within a week he had become infinitely the most + important person at Shafter's. There were ten or a dozen boarders + there; but they were honest foremen or commonplace clerks from the + stores, of a very different calibre from the young Irishman. Of an + evening when they gathered together his joke was always the readiest, + his conversation the brightest, and his song the best. He was a born + boon companion, with a magnetism which drew good humour from all + around him. + + And yet he showed again and again, as he had shown in the railway + carriage, a capacity for sudden, fierce anger, which compelled the + respect and even the fear of those who met him. For the law, too, and + all who were connected with it, he exhibited a bitter contempt which + delighted some and alarmed others of his fellow boarders. + + From the first he made it evident, by his open admiration, that the + daughter of the house had won his heart from the instant that he had + set eyes upon her beauty and her grace. He was no backward suitor. On + the second day he told her that he loved her, and from then onward he + repeated the same story with an absolute disregard of what she might + say to discourage him. + + "Someone else?" he would cry. "Well, the worse luck for someone else! + Let him look out for himself! Am I to lose my life's chance and all + my heart's desire for someone else? You can keep on saying no, Ettie: + the day will come when you will say yes, and I'm young enough to + wait." + + He was a dangerous suitor, with his glib Irish tongue, and his + pretty, coaxing ways. There was about him also that glamour of + experience and of mystery which attracts a woman's interest, and + finally her love. He could talk of the sweet valleys of County + Monaghan from which he came, of the lovely, distant island, the low + hills and green meadows of which seemed the more beautiful when + imagination viewed them from this place of grime and snow. + + Then he was versed in the life of the cities of the North, of + Detroit, and the lumber camps of Michigan, and finally of Chicago, + where he had worked in a planing mill. And afterwards came the hint + of romance, the feeling that strange things had happened to him in + that great city, so strange and so intimate that they might not be + spoken of. He spoke wistfully of a sudden leaving, a breaking of old + ties, a flight into a strange world, ending in this dreary valley, + and Ettie listened, her dark eyes gleaming with pity and with + sympathy--those two qualities which may turn so rapidly and so + naturally to love. + + McMurdo had obtained a temporary job as bookkeeper; for he was a + well-educated man. This kept him out most of the day, and he had not + found occasion yet to report himself to the head of the lodge of the + Eminent Order of Freemen. He was reminded of his omission, however, + by a visit one evening from Mike Scanlan, the fellow member whom he + had met in the train. Scanlan, the small, sharp-faced, nervous, + black-eyed man, seemed glad to see him once more. After a glass or + two of whisky he broached the object of his visit. + + "Say, McMurdo," said he, "I remembered your address, so l made bold + to call. I'm surprised that you've not reported to the Bodymaster. + Why haven't you seen Boss McGinty yet?" + + "Well, I had to find a job. I have been busy." + + "You must find time for him if you have none for anything else. Good + Lord, man! you're a fool not to have been down to the Union House and + registered your name the first morning after you came here! If you + run against him--well, you mustn't, that's all!" + + McMurdo showed mild surprise. "I've been a member of the lodge for + over two years, Scanlan, but I never heard that duties were so + pressing as all that." + + "Maybe not in Chicago." + + "Well, it's the same society here." + + "Is it?" + + Scanlan looked at him long and fixedly. There was something sinister + in his eyes. + + "Isn't it?" + + "You'll tell me that in a month's time. I hear you had a talk with + the patrolmen after I left the train." + + "How did you know that?" + + "Oh, it got about--things do get about for good and for bad in this + district." + + "Well, yes. I told the hounds what I thought of them." + + "By the Lord, you'll be a man after McGinty's heart!" + + "What, does he hate the police too?" + + Scanlan burst out laughing. "You go and see him, my lad," said he as + he took his leave. "It's not the police but you that he'll hate if + you don't! Now, take a friend's advice and go at once!" + + It chanced that on the same evening McMurdo had another more pressing + interview which urged him in the same direction. It may have been + that his attentions to Ettie had been more evident than before, or + that they had gradually obtruded themselves into the slow mind of his + good German host; but, whatever the cause, the boarding-house keeper + beckoned the young man into his private room and started on the + subject without any circumlocution. + + "It seems to me, mister," said he, "that you are gettin' set on my + Ettie. Ain't that so, or am I wrong?" + + "Yes, that is so," the young man answered. + + "Vell, I vant to tell you right now that it ain't no manner of use. + There's someone slipped in afore you." + + "She told me so." + + "Vell, you can lay that she told you truth. But did she tell you who + it vas?" + + "No, I asked her; but she wouldn't tell." + + "I dare say not, the leetle baggage! Perhaps she did not vish to + frighten you avay." + + "Frighten!" McMurdo was on fire in a moment. + + "Ah, yes, my friend! You need not be ashamed to be frightened of him. + It is Teddy Baldwin." + + "And who the devil is he?" + + "He is a boss of Scowrers." + + "Scowrers! I've heard of them before. It's Scowrers here and Scowrers + there, and always in a whisper! What are you all afraid of? Who are + the Scowrers?" + + The boarding-house keeper instinctively sank his voice, as everyone + did who talked about that terrible society. "The Scowrers," said he, + "are the Eminent Order of Freemen!" + + The young man stared. "Why, I am a member of that order myself." + + "You! I vould never have had you in my house if I had known it--not + if you vere to pay me a hundred dollar a week." + + "What's wrong with the order? It's for charity and good fellowship. + The rules say so." + + "Maybe in some places. Not here!" + + "What is it here?" + + "It's a murder society, that's vat it is." + + McMurdo laughed incredulously. "How can you prove that?" he asked. + + "Prove it! Are there not fifty murders to prove it? Vat about Milman + and Van Shorst, and the Nicholson family, and old Mr. Hyam, and + little Billy James, and the others? Prove it! Is there a man or a + voman in this valley vat does not know it?" + + "See here!" said McMurdo earnestly. "I want you to take back what + you've said, or else make it good. One or the other you must do + before I quit this room. Put yourself in my place. Here am I, a + stranger in the town. I belong to a society that I know only as an + innocent one. You'll find it through the length and breadth of the + States, but always as an innocent one. Now, when I am counting upon + joining it here, you tell me that it is the same as a murder society + called the Scowrers. I guess you owe me either an apology or else an + explanation, Mr. Shafter." + + "I can but tell you vat the whole vorld knows, mister. The bosses of + the one are the bosses of the other. If you offend the one, it is the + other vat vill strike you. We have proved it too often." + + "That's just gossip--I want proof!" said McMurdo. + + "If you live here long you vill get your proof. But I forget that you + are yourself one of them. You vill soon be as bad as the rest. But + you vill find other lodgings, mister. I cannot have you here. Is it + not bad enough that one of these people come courting my Ettie, and + that I dare not turn him down, but that I should have another for my + boarder? Yes, indeed, you shall not sleep here after to-night!" + + McMurdo found himself under sentence of banishment both from his + comfortable quarters and from the girl whom he loved. He found her + alone in the sitting-room that same evening, and he poured his + troubles into her ear. + + "Sure, your father is after giving me notice," he said. "It's little + I would care if it was just my room, but indeed, Ettie, though it's + only a week that I've known you, you are the very breath of life to + me, and I can't live without you!" + + "Oh, hush, Mr. McMurdo, don't speak so!" said the girl. "I have told + you, have I not, that you are too late? There is another, and if I + have not promised to marry him at once, at least I can promise no one + else." + + "Suppose I had been first, Ettie, would I have had a chance?" + + The girl sank her face into her hands. "I wish to heaven that you had + been first!" she sobbed. + + McMurdo was down on his knees before her in an instant. "For God's + sake, Ettie, let it stand at that!" he cried. "Will you ruin your + life and my own for the sake of this promise? Follow your heart, + acushla! 'Tis a safer guide than any promise before you knew what it + was that you were saying." + + He had seized Ettie's white hand between his own strong brown ones. + + "Say that you will be mine, and we will face it out together!" + + "Not here?" + + "Yes, here." + + "No, no, Jack!" His arms were round her now. "It could not be here. + Could you take me away?" + + A struggle passed for a moment over McMurdo's face; but it ended by + setting like granite. "No, here," he said. "I'll hold you against the + world, Ettie, right here where we are!" + + "Why should we not leave together?" + + "No, Ettie, I can't leave here." + + "But why?" + + "I'd never hold my head up again if I felt that I had been driven + out. Besides, what is there to be afraid of? Are we not free folks in + a free country? If you love me, and I you, who will dare to come + between?" + + "You don't know, Jack. You've been here too short a time. You don't + know this Baldwin. You don't know McGinty and his Scowrers." + + "No, I don't know them, and I don't fear them, and I don't believe in + them!" said McMurdo. "I've lived among rough men, my darling, and + instead of fearing them it has always ended that they have feared + me--always, Ettie. It's mad on the face of it! If these men, as your + father says, have done crime after crime in the valley, and if + everyone knows them by name, how comes it that none are brought to + justice? You answer me that, Ettie!" + + "Because no witness dares to appear against them. He would not live a + month if he did. Also because they have always their own men to swear + that the accused one was far from the scene of the crime. But surely, + Jack, you must have read all this. I had understood that every paper + in the United States was writing about it." + + "Well, I have read something, it is true; but I had thought it was a + story. Maybe these men have some reason in what they do. Maybe they + are wronged and have no other way to help themselves." + + "Oh, Jack, don't let me hear you speak so! That is how he speaks--the + other one!" + + "Baldwin--he speaks like that, does he?" + + "And that is why I loathe him so. Oh, Jack, now I can tell you the + truth. I loathe him with all my heart; but I fear him also. I fear + him for myself; but above all I fear him for father. I know that some + great sorrow would come upon us if I dared to say what I really felt. + That is why I have put him off with half-promises. It was in real + truth our only hope. But if you would fly with me, Jack, we could + take father with us and live forever far from the power of these + wicked men." + + Again there was the struggle upon McMurdo's face, and again it set + like granite. "No harm shall come to you, Ettie--nor to your father + either. As to wicked men, I expect you may find that I am as bad as + the worst of them before we're through." + + "No, no, Jack! I would trust you anywhere." + + McMurdo laughed bitterly. "Good Lord! how little you know of me! Your + innocent soul, my darling, could not even guess what is passing in + mine. But, hullo, who's the visitor?" + + The door had opened suddenly, and a young fellow came swaggering in + with the air of one who is the master. He was a handsome, dashing + young man of about the same age and build as McMurdo himself. Under + his broad-brimmed black felt hat, which he had not troubled to + remove, a handsome face with fierce, domineering eyes and a curved + hawk-bill of a nose looked savagely at the pair who sat by the stove. + + Ettie had jumped to her feet full of confusion and alarm. "I'm glad + to see you, Mr. Baldwin," said she. "You're earlier than I had + thought. Come and sit down." + + Baldwin stood with his hands on his hips looking at McMurdo. "Who is + this?" he asked curtly. + + "It's a friend of mine, Mr. Baldwin, a new boarder here. Mr. McMurdo, + may I introduce you to Mr. Baldwin?" + + The young men nodded in surly fashion to each other. + + "Maybe Miss Ettie has told you how it is with us?" said Baldwin. + + "I didn't understand that there was any relation between you." + + "Didn't you? Well, you can understand it now. You can take it from me + that this young lady is mine, and you'll find it a very fine evening + for a walk." + + "Thank you, I am in no humour for a walk." + + "Aren't you?" The man's savage eyes were blazing with anger. "Maybe + you are in a humour for a fight, Mr. Boarder!" + + "That I am!" cried McMurdo, springing to his feet. "You never said a + more welcome word." + + "For God's sake, Jack! Oh, for God's sake!" cried poor, distracted + Ettie. "Oh, Jack, Jack, he will hurt you!" + + "Oh, it's Jack, is it?" said Baldwin with an oath. "You've come to + that already, have you?" + + "Oh, Ted, be reasonable--be kind! For my sake, Ted, if ever you loved + me, be big-hearted and forgiving!" + + "I think, Ettie, that if you were to leave us alone we could get this + thing settled," said McMurdo quietly. "Or maybe, Mr. Baldwin, you + will take a turn down the street with me. It's a fine evening, and + there's some open ground beyond the next block." + + "I'll get even with you without needing to dirty my hands," said his + enemy. "You'll wish you had never set foot in this house before I am + through with you!" + + "No time like the present," cried McMurdo. + + "I'll choose my own time, mister. You can leave the time to me. See + here!" He suddenly rolled up his sleeve and showed upon his forearm a + peculiar sign which appeared to have been branded there. It was a + circle with a triangle within it. "D'you know what that means?" + + "I neither know nor care!" + + "Well, you will know, I'll promise you that. You won't be much older, + either. Perhaps Miss Ettie can tell you something about it. As to + you, Ettie, you'll come back to me on your knees--d'ye hear, + girl?--on your knees--and then I'll tell you what your punishment may + be. You've sowed--and by the Lord, I'll see that you reap!" He + glanced at them both in fury. Then he turned upon his heel, and an + instant later the outer door had banged behind him. + + For a few moments McMurdo and the girl stood in silence. Then she + threw her arms around him. + + "Oh, Jack, how brave you were! But it is no use, you must fly! + To-night--Jack--to-night! It's your only hope. He will have your + life. I read it in his horrible eyes. What chance have you against a + dozen of them, with Boss McGinty and all the power of the lodge + behind them?" + + McMurdo disengaged her hands, kissed her, and gently pushed her back + into a chair. "There, acushla, there! Don't be disturbed or fear for + me. I'm a Freeman myself. I'm after telling your father about it. + Maybe I am no better than the others; so don't make a saint of me. + Perhaps you hate me too, now that I've told you as much?" + + "Hate you, Jack? While life lasts I could never do that! I've heard + that there is no harm in being a Freeman anywhere but here; so why + should I think the worse of you for that? But if you are a Freeman, + Jack, why should you not go down and make a friend of Boss McGinty? + Oh, hurry, Jack, hurry! Get your word in first, or the hounds will be + on your trail." + + "I was thinking the same thing," said McMurdo. "I'll go right now and + fix it. You can tell your father that I'll sleep here to-night and + find some other quarters in the morning." + + The bar of McGinty's saloon was crowded as usual, for it was the + favourite loafing place of all the rougher elements of the town. The + man was popular; for he had a rough, jovial disposition which formed + a mask, covering a great deal which lay behind it. But apart from + this popularity, the fear in which he was held throughout the + township, and indeed down the whole thirty miles of the valley and + past the mountains on each side of it, was enough in itself to fill + his bar; for none could afford to neglect his good will. + + Besides those secret powers which it was universally believed that he + exercised in so pitiless a fashion, he was a high public official, a + municipal councillor, and a commissioner of roads, elected to the + office through the votes of the ruffians who in turn expected to + receive favours at his hands. Assessments and taxes were enormous; + the public works were notoriously neglected, the accounts were + slurred over by bribed auditors, and the decent citizen was + terrorized into paying public blackmail, and holding his tongue lest + some worse thing befall him. + + Thus it was that, year by year, Boss McGinty's diamond pins became + more obtrusive, his gold chains more weighty across a more gorgeous + vest, and his saloon stretched farther and farther, until it + threatened to absorb one whole side of the Market Square. + + McMurdo pushed open the swinging door of the saloon and made his way + amid the crowd of men within, through an atmosphere blurred with + tobacco smoke and heavy with the smell of spirits. The place was + brilliantly lighted, and the huge, heavily gilt mirrors upon every + wall reflected and multiplied the garish illumination. There were + several bartenders in their shirt sleeves, hard at work mixing drinks + for the loungers who fringed the broad, brass-trimmed counter. + + At the far end, with his body resting upon the bar and a cigar stuck + at an acute angle from the corner of his mouth, stood a tall, strong, + heavily built man who could be none other than the famous McGinty + himself. He was a black-maned giant, bearded to the cheek-bones, and + with a shock of raven hair which fell to his collar. His complexion + was as swarthy as that of an Italian, and his eyes were of a strange + dead black, which, combined with a slight squint, gave them a + particularly sinister appearance. + + All else in the man--his noble proportions, his fine features, and + his frank bearing--fitted in with that jovial, man-to-man manner + which he affected. Here, one would say, is a bluff, honest fellow, + whose heart would be sound however rude his outspoken words might + seem. It was only when those dead, dark eyes, deep and remorseless, + were turned upon a man that he shrank within himself, feeling that he + was face to face with an infinite possibility of latent evil, with a + strength and courage and cunning behind it which made it a thousand + times more deadly. + + Having had a good look at his man, McMurdo elbowed his way forward + with his usual careless audacity, and pushed himself through the + little group of courtiers who were fawning upon the powerful boss, + laughing uproariously at the smallest of his jokes. The young + stranger's bold gray eyes looked back fearlessly through their + glasses at the deadly black ones which turned sharply upon him. + + "Well, young man, I can't call your face to mind." + + "I'm new here, Mr. McGinty." + + "You are not so new that you can't give a gentleman his proper + title." + + "He's Councillor McGinty, young man," said a voice from the group. + + "I'm sorry, Councillor. I'm strange to the ways of the place. But I + was advised to see you." + + "Well, you see me. This is all there is. What d'you think of me?" + + "Well, it's early days. If your heart is as big as your body, and + your soul as fine as your face, then I'd ask for nothing better," + said McMurdo. + + "By Gar! you've got an Irish tongue in your head anyhow," cried the + saloon-keeper, not quite certain whether to humour this audacious + visitor or to stand upon his dignity. + + "So you are good enough to pass my appearance?" + + "Sure," said McMurdo. + + "And you were told to see me?" + + "I was." + + "And who told you?" + + "Brother Scanlan of Lodge 341, Vermissa. I drink your health + Councillor, and to our better acquaintance." He raised a glass with + which he had been served to his lips and elevated his little finger + as he drank it. + + McGinty, who had been watching him narrowly, raised his thick black + eyebrows. "Oh, it's like that, is it?" said he. "I'll have to look a + bit closer into this, Mister--" + + "McMurdo." + + "A bit closer, Mr. McMurdo; for we don't take folk on trust in these + parts, nor believe all we're told neither. Come in here for a moment, + behind the bar." + + There was a small room there, lined with barrels. McGinty carefully + closed the door, and then seated himself on one of them, biting + thoughtfully on his cigar and surveying his companion with those + disquieting eyes. For a couple of minutes he sat in complete silence. + McMurdo bore the inspection cheerfully, one hand in his coat pocket, + the other twisting his brown moustache. Suddenly McGinty stooped and + produced a wicked-looking revolver. + + "See here, my joker," said he, "if I thought you were playing any + game on us, it would be short work for you." + + "This is a strange welcome," McMurdo answered with some dignity, "for + the Bodymaster of a lodge of Freemen to give to a stranger brother." + + "Ay, but it's just that same that you have to prove," said McGinty, + "and God help you if you fail! Where were you made?" + + "Lodge 29, Chicago." + + "When?" + + "June 24, 1872." + + "What Bodymaster?" + + "James H. Scott." + + "Who is your district ruler?" + + "Bartholomew Wilson." + + "Hum! You seem glib enough in your tests. What are you doing here?" + + "Working, the same as you--but a poorer job." + + "You have your back answer quick enough." + + "Yes, I was always quick of speech." + + "Are you quick of action?" + + "I have had that name among those that knew me best." + + "Well, we may try you sooner than you think. Have you heard anything + of the lodge in these parts?" + + "I've heard that it takes a man to be a brother." + + "True for you, Mr. McMurdo. Why did you leave Chicago?" + + "I'm damned if I tell you that!" + + McGinty opened his eyes. He was not used to being answered in such + fashion, and it amused him. "Why won't you tell me?" + + "Because no brother may tell another a lie." + + "Then the truth is too bad to tell?" + + "You can put it that way if you like." + + "See here, mister, you can't expect me, as Bodymaster, to pass into + the lodge a man for whose past he can't answer." + + McMurdo looked puzzled. Then he took a worn newspaper cutting from an + inner pocket. + + "You wouldn't squeal on a fellow?" said he. + + "I'll wipe my hand across your face if you say such words to me!" + cried McGinty hotly. + + "You are right, Councillor," said McMurdo meekly. "I should + apologize. I spoke without thought. Well, I know that I am safe in + your hands. Look at that clipping." + + McGinty glanced his eyes over the account of the shooting of one + Jonas Pinto, in the Lake Saloon, Market Street, Chicago, in the New + Year week of 1874. + + "Your work?" he asked, as he handed back the paper. + + McMurdo nodded. + + "Why did you shoot him?" + + "I was helping Uncle Sam to make dollars. Maybe mine were not as good + gold as his, but they looked as well and were cheaper to make. This + man Pinto helped me to shove the queer--" + + "To do what?" + + "Well, it means to pass the dollars out into circulation. Then he + said he would split. Maybe he did split. I didn't wait to see. I just + killed him and lighted out for the coal country." + + "Why the coal country?" + + "'Cause I'd read in the papers that they weren't too particular in + those parts." + + McGinty laughed. "You were first a coiner and then a murderer, and + you came to these parts because you thought you'd be welcome." + + "That's about the size of it," McMurdo answered. + + "Well, I guess you'll go far. Say, can you make those dollars yet?" + + McMurdo took half a dozen from his pocket. "Those never passed the + Philadelphia mint," said he. + + "You don't say!" McGinty held them to the light in his enormous hand, + which was hairy as a gorilla's. "I can see no difference. Gar! you'll + be a mighty useful brother, I'm thinking! We can do with a bad man or + two among us, Friend McMurdo: for there are times when we have to + take our own part. We'd soon be against the wall if we didn't shove + back at those that were pushing us." + + "Well, I guess I'll do my share of shoving with the rest of the + boys." + + "You seem to have a good nerve. You didn't squirm when I shoved this + gun at you." + + "It was not me that was in danger." + + "Who then?" + + "It was you, Councillor." McMurdo drew a cocked pistol from the side + pocket of his peajacket. "I was covering you all the time. I guess my + shot would have been as quick as yours." + + "By Gar!" McGinty flushed an angry red and then burst into a roar of + laughter. "Say, we've had no such holy terror come to hand this many + a year. I reckon the lodge will learn to be proud of you ... Well, + what the hell do you want? And can't I speak alone with a gentleman + for five minutes but you must butt in on us?" + + The bartender stood abashed. "I'm sorry, Councillor, but it's Ted + Baldwin. He says he must see you this very minute." + + The message was unnecessary; for the set, cruel face of the man + himself was looking over the servant's shoulder. He pushed the + bartender out and closed the door on him. + + "So," said he with a furious glance at McMurdo, "you got here first, + did you? I've a word to say to you, Councillor, about this man." + + "Then say it here and now before my face," cried McMurdo. + + "I'll say it at my own time, in my own way." + + "Tut! Tut!" said McGinty, getting off his barrel. "This will never + do. We have a new brother here, Baldwin, and it's not for us to greet + him in such fashion. Hold out your hand, man, and make it up!" + + "Never!" cried Baldwin in a fury. + + "I've offered to fight him if he thinks I have wronged him," said + McMurdo. "I'll fight him with fists, or, if that won't satisfy him, + I'll fight him any other way he chooses. Now, I'll leave it to you, + Councillor, to judge between us as a Bodymaster should." + + "What is it, then?" + + "A young lady. She's free to choose for herself." + + "Is she?" cried Baldwin. + + "As between two brothers of the lodge I should say that she was," + said the Boss. + + "Oh, that's your ruling, is it?" + + "Yes, it is, Ted Baldwin," said McGinty, with a wicked stare. "Is it + you that would dispute it?" + + "You would throw over one that has stood by you this five years in + favour of a man that you never saw before in your life? You're not + Bodymaster for life, Jack McGinty, and by God! when next it comes to + a vote--" + + The Councillor sprang at him like a tiger. His hand closed round the + other's neck, and he hurled him back across one of the barrels. In + his mad fury he would have squeezed the life out of him if McMurdo + had not interfered. + + "Easy, Councillor! For heaven's sake, go easy!" he cried, as he + dragged him back. + + McGinty released his hold, and Baldwin, cowed and shaken gasping for + breath, and shivering in every limb, as one who has looked over the + very edge of death, sat up on the barrel over which he had been + hurled. + + "You've been asking for it this many a day, Ted Baldwin--now you've + got it!" cried McGinty, his huge chest rising and falling. "Maybe you + think if I was voted down from Bodymaster you would find yourself in + my shoes. It's for the lodge to say that. But so long as I am the + chief I'll have no man lift his voice against me or my rulings." + + "I have nothing against you," mumbled Baldwin, feeling his throat. + + "Well, then," cried the other, relapsing in a moment into a bluff + joviality, "we are all good friends again and there's an end of the + matter." + + He took a bottle of champagne down from the shelf and twisted out the + cork. + + "See now," he continued, as he filled three high glasses. "Let us + drink the quarrelling toast of the lodge. After that, as you know, + there can be no bad blood between us. Now, then the left hand on the + apple of my throat. I say to you, Ted Baldwin, what is the offense, + sir?" + + "The clouds are heavy," answered Baldwin. + + "But they will forever brighten." + + "And this I swear!" + + The men drank their glasses, and the same ceremony was performed + between Baldwin and McMurdo + + "There!" cried McGinty, rubbing his hands. "That's the end of the + black blood. You come under lodge discipline if it goes further, and + that's a heavy hand in these parts, as Brother Baldwin knows--and as + you will damn soon find out, Brother McMurdo, if you ask for + trouble!" + + "Faith, I'd be slow to do that," said McMurdo. He held out his hand + to Baldwin. "I'm quick to quarrel and quick to forgive. It's my hot + Irish blood, they tell me. But it's over for me, and I bear no + grudge." + + Baldwin had to take the proffered hand, for the baleful eye of the + terrible Boss was upon him. But his sullen face showed how little the + words of the other had moved him. + + McGinty clapped them both on the shoulders. "Tut! These girls! These + girls!" he cried. "To think that the same petticoats should come + between two of my boys! It's the devil's own luck! Well, it's the + colleen inside of them that must settle the question for it's outside + the jurisdiction of a Bodymaster--and the Lord be praised for that! + We have enough on us, without the women as well. You'll have to be + affiliated to Lodge 341, Brother McMurdo. We have our own ways and + methods, different from Chicago. Saturday night is our meeting, and + if you come then, we'll make you free forever of the Vermissa + Valley." + + + + + + CHAPTER III + Lodge 341, Vermissa + + + On the day following the evening which had contained so many exciting + events, McMurdo moved his lodgings from old Jacob Shafter's and took + up his quarters at the Widow MacNamara's on the extreme outskirts of + the town. Scanlan, his original acquaintance aboard the train, had + occasion shortly afterwards to move into Vermissa, and the two lodged + together. There was no other boarder, and the hostess was an + easy-going old Irishwoman who left them to themselves; so that they + had a freedom for speech and action welcome to men who had secrets in + common. + + Shafter had relented to the extent of letting McMurdo come to his + meals there when he liked; so that his intercourse with Ettie was by + no means broken. On the contrary, it drew closer and more intimate as + the weeks went by. + + In his bedroom at his new abode McMurdo felt it safe to take out the + coining moulds, and under many a pledge of secrecy a number of + brothers from the lodge were allowed to come in and see them, each + carrying away in his pocket some examples of the false money, so + cunningly struck that there was never the slightest difficulty or + danger in passing it. Why, with such a wonderful art at his command, + McMurdo should condescend to work at all was a perpetual mystery to + his companions; though he made it clear to anyone who asked him that + if he lived without any visible means it would very quickly bring the + police upon his track. + + One policeman was indeed after him already; but the incident, as luck + would have it, did the adventurer a great deal more good than harm. + After the first introduction there were few evenings when he did not + find his way to McGinty's saloon, there to make closer acquaintance + with "the boys," which was the jovial title by which the dangerous + gang who infested the place were known to one another. His dashing + manner and fearlessness of speech made him a favourite with them all; + while the rapid and scientific way in which he polished off his + antagonist in an "all in" bar-room scrap earned the respect of that + rough community. Another incident, however, raised him even higher in + their estimation. + + Just at the crowded hour one night, the door opened and a man entered + with the quiet blue uniform and peaked cap of the mine police. This + was a special body raised by the railways and colliery owners to + supplement the efforts of the ordinary civil police, who were + perfectly helpless in the face of the organized ruffianism which + terrorized the district. There was a hush as he entered, and many a + curious glance was cast at him; but the relations between policemen + and criminals are peculiar in some parts of the States, and McGinty + himself standing behind his counter, showed no surprise when the + policeman enrolled himself among his customers. + + "A straight whisky, for the night is bitter," said the police + officer. "I don't think we have met before, Councillor?" + + "You'll be the new captain?" said McGinty. + + "That's so. We're looking to you, Councillor, and to the other + leading citizens, to help us in upholding law and order in this + township. Captain Marvin is my name." + + "We'd do better without you, Captain Marvin," said McGinty coldly; + "for we have our own police of the township, and no need for any + imported goods. What are you but the paid tool of the capitalists, + hired by them to club or shoot your poorer fellow citizen?" + + "Well, well, we won't argue about that," said the police officer + good-humouredly. "I expect we all do our duty same as we see it; but + we can't all see it the same." He had drunk off his glass and had + turned to go, when his eyes fell upon the face of Jack McMurdo, who + was scowling at his elbow. "Hullo! Hullo!" he cried, looking him up + and down. "Here's an old acquaintance!" + + McMurdo shrank away from him. "I was never a friend to you nor any + other cursed copper in my life," said he. + + "An acquaintance isn't always a friend," said the police captain, + grinning. "You're Jack McMurdo of Chicago, right enough, and don't + you deny it!" + + McMurdo shrugged his shoulders. "I'm not denying it," said he. "D'ye + think I'm ashamed of my own name?" + + "You've got good cause to be, anyhow." + + "What the devil d'you mean by that?" he roared with his fists + clenched. + + "No, no, Jack, bluster won't do with me. I was an officer in Chicago + before ever I came to this darned coal bunker, and I know a Chicago + crook when I see one." + + McMurdo's face fell. "Don't tell me that you're Marvin of the Chicago + Central!" he cried. + + "Just the same old Teddy Marvin, at your service. We haven't + forgotten the shooting of Jonas Pinto up there." + + "I never shot him." + + "Did you not? That's good impartial evidence, ain't it? Well, his + death came in uncommon handy for you, or they would have had you for + shoving the queer. Well, we can let that be bygones; for, between you + and me--and perhaps I'm going further than my duty in saying it--they + could get no clear case against you, and Chicago's open to you + to-morrow." + + "I'm very well where I am." + + "Well, I've given you the pointer, and you're a sulky dog not to + thank me for it." + + "Well, I suppose you mean well, and I do thank you," said McMurdo in + no very gracious manner. + + "It's mum with me so long as I see you living on the straight," said + the captain. "But, by the Lord! if you get off after this, it's + another story! So good-night to you--and goodnight, Councillor." + + He left the bar-room; but not before he had created a local hero. + McMurdo's deeds in far Chicago had been whispered before. He had put + off all questions with a smile, as one who did not wish to have + greatness thrust upon him. But now the thing was officially + confirmed. The bar loafers crowded round him and shook him heartily + by the hand. He was free of the community from that time on. He could + drink hard and show little trace of it; but that evening, had his + mate Scanlan not been at hand to lead him home, the feted hero would + surely have spent his night under the bar. + + On a Saturday night McMurdo was introduced to the lodge. He had + thought to pass in without ceremony as being an initiate of Chicago; + but there were particular rites in Vermissa of which they were proud, + and these had to be undergone by every postulant. The assembly met in + a large room reserved for such purposes at the Union House. Some + sixty members assembled at Vermissa; but that by no means represented + the full strength of the organization, for there were several other + lodges in the valley, and others across the mountains on each side, + who exchanged members when any serious business was afoot, so that a + crime might be done by men who were strangers to the locality. + Altogether there were not less than five hundred scattered over the + coal district. + + In the bare assembly room the men were gathered round a long table. + At the side was a second one laden with bottles and glasses, on which + some members of the company were already turning their eyes. McGinty + sat at the head with a flat black velvet cap upon his shock of + tangled black hair, and a coloured purple stole round his neck, so + that he seemed to be a priest presiding over some diabolical ritual. + To right and left of him were the higher lodge officials, the cruel, + handsome face of Ted Baldwin among them. Each of these wore some + scarf or medallion as emblem of his office. + + They were, for the most part, men of mature age; but the rest of the + company consisted of young fellows from eighteen to twenty-five, the + ready and capable agents who carried out the commands of their + seniors. Among the older men were many whose features showed the + tigerish, lawless souls within; but looking at the rank and file it + was difficult to believe that these eager and open-faced young + fellows were in very truth a dangerous gang of murderers, whose minds + had suffered such complete moral perversion that they took a horrible + pride in their proficiency at the business, and looked with deepest + respect at the man who had the reputation of making what they called + "a clean job." + + To their contorted natures it had become a spirited and chivalrous + thing to volunteer for service against some man who had never injured + them, and whom in many cases they had never seen in their lives. The + crime committed, they quarrelled as to who had actually struck the + fatal blow, and amused one another and the company by describing the + cries and contortions of the murdered man. + + At first they had shown some secrecy in their arrangements; but at + the time which this narrative describes their proceedings were + extraordinarily open, for the repeated failures of the law had proved + to them that, on the one hand, no one would dare to witness against + them, and on the other they had an unlimited number of stanch + witnesses upon whom they could call, and a well-filled treasure chest + from which they could draw the funds to engage the best legal talent + in the state. In ten long years of outrage there had been no single + conviction, and the only danger that ever threatened the Scowrers lay + in the victim himself--who, however outnumbered and taken by + surprise, might and occasionally did leave his mark upon his + assailants. + + McMurdo had been warned that some ordeal lay before him; but no one + would tell him in what it consisted. He was led now into an outer + room by two solemn brothers. Through the plank partition he could + hear the murmur of many voices from the assembly within. Once or + twice he caught the sound of his own name, and he knew that they were + discussing his candidacy. Then there entered an inner guard with a + green and gold sash across his chest. + + "The Bodymaster orders that he shall be trussed, blinded, and + entered," said he. + + The three of them removed his coat, turned up the sleeve of his right + arm, and finally passed a rope round above the elbows and made it + fast. They next placed a thick black cap right over his head and the + upper part of his face, so that he could see nothing. He was then led + into the assembly hall. + + It was pitch dark and very oppressive under his hood. He heard the + rustle and murmur of the people round him, and then the voice of + McGinty sounded dull and distant through the covering of his ears. + + "John McMurdo," said the voice, "are you already a member of the + Ancient Order of Freemen?" + + He bowed in assent. + + "Is your lodge No. 29, Chicago?" + + He bowed again. + + "Dark nights are unpleasant," said the voice. + + "Yes, for strangers to travel," he answered. + + "The clouds are heavy." + + "Yes, a storm is approaching." + + "Are the brethren satisfied?" asked the Bodymaster. + + There was a general murmur of assent. + + "We know, Brother, by your sign and by your countersign that you are + indeed one of us," said McGinty. "We would have you know, however, + that in this county and in other counties of these parts we have + certain rites, and also certain duties of our own which call for good + men. Are you ready to be tested?" + + "I am." + + "Are you of stout heart?" + + "I am." + + "Take a stride forward to prove it." + + As the words were said he felt two hard points in front of his eyes, + pressing upon them so that it appeared as if he could not move + forward without a danger of losing them. None the less, he nerved + himself to step resolutely out, and as he did so the pressure melted + away. There was a low murmur of applause. + + "He is of stout heart," said the voice. "Can you bear pain?" + + "As well as another," he answered. + + "Test him!" + + It was all he could do to keep himself from screaming out, for an + agonizing pain shot through his forearm. He nearly fainted at the + sudden shock of it; but he bit his lip and clenched his hands to hide + his agony. + + "I can take more than that," said he. + + This time there was loud applause. A finer first appearance had never + been made in the lodge. Hands clapped him on the back, and the hood + was plucked from his head. He stood blinking and smiling amid the + congratulations of the brothers. + + "One last word, Brother McMurdo," said McGinty. "You have already + sworn the oath of secrecy and fidelity, and you are aware that the + punishment for any breach of it is instant and inevitable death?" + + "I am," said McMurdo. + + "And you accept the rule of the Bodymaster for the time being under + all circumstances?" + + "I do." + + "Then in the name of Lodge 341, Vermissa, I welcome you to its + privileges and debates. You will put the liquor on the table, Brother + Scanlan, and we will drink to our worthy brother." + + McMurdo's coat had been brought to him; but before putting it on he + examined his right arm, which still smarted heavily. There on the + flesh of the forearm was a circle with a triangle within it, deep and + red, as the branding iron had left it. One or two of his neighbours + pulled up their sleeves and showed their own lodge marks. + + "We've all had it," said one; "but not all as brave as you over it." + + "Tut! It was nothing," said he; but it burned and ached all the same. + + When the drinks which followed the ceremony of initiation had all + been disposed of, the business of the lodge proceeded. McMurdo, + accustomed only to the prosaic performances of Chicago, listened with + open ears and more surprise than he ventured to show to what + followed. + + "The first business on the agenda paper," said McGinty, "is to read + the following letter from Division Master Windle of Merton County + Lodge 249. He says: + + "Dear Sir: + "There is a job to be done on Andrew Rae of Rae & Sturmash, coal + owners near this place. You will remember that your lodge owes us a + return, having had the service of two brethren in the matter of the + patrolman last fall. You will send two good men, they will be taken + charge of by Treasurer Higgins of this lodge, whose address you know. + He will show them when to act and where. Yours in freedom, + "J. W. Windle D. M. A. O. F. + + "Windle has never refused us when we have had occasion to ask for the + loan of a man or two, and it is not for us to refuse him." McGinty + paused and looked round the room with his dull, malevolent eyes. "Who + will volunteer for the job?" + + Several young fellows held up their hands. The Bodymaster looked at + them with an approving smile. + + "You'll do, Tiger Cormac. If you handle it as well as you did the + last, you won't be wrong. And you, Wilson." + + "I've no pistol," said the volunteer, a mere boy in his teens. + + "It's your first, is it not? Well, you have to be blooded some time. + It will be a great start for you. As to the pistol, you'll find it + waiting for you, or I'm mistaken. If you report yourselves on Monday, + it will be time enough. You'll get a great welcome when you return." + + "Any reward this time?" asked Cormac, a thick-set, dark-faced, + brutal-looking young man, whose ferocity had earned him the nickname + of "Tiger." + + "Never mind the reward. You just do it for the honour of the thing. + Maybe when it is done there will be a few odd dollars at the bottom + of the box." + + "What has the man done?" asked young Wilson. + + "Sure, it's not for the likes of you to ask what the man has done. He + has been judged over there. That's no business of ours. All we have + to do is to carry it out for them, same as they would for us. + Speaking of that, two brothers from the Merton lodge are coming over + to us next week to do some business in this quarter." + + "Who are they?" asked someone. + + "Faith, it is wiser not to ask. If you know nothing, you can testify + nothing, and no trouble can come of it. But they are men who will + make a clean job when they are about it." + + "And time, too!" cried Ted Baldwin. "Folk are gettin' out of hand in + these parts. It was only last week that three of our men were turned + off by Foreman Blaker. It's been owing him a long time, and he'll get + it full and proper." + + "Get what?" McMurdo whispered to his neighbour. + + "The business end of a buckshot cartridge!" cried the man with a loud + laugh. "What think you of our ways, Brother?" + + McMurdo's criminal soul seemed to have already absorbed the spirit of + the vile association of which he was now a member. "I like it well," + said he. "'Tis a proper place for a lad of mettle." + + Several of those who sat around heard his words and applauded them. + + "What's that?" cried the black-maned Bodymaster from the end of the + table. + + "'Tis our new brother, sir, who finds our ways to his taste." + + McMurdo rose to his feet for an instant. "I would say, Eminent + Bodymaster, that if a man should be wanted I should take it as an + honour to be chosen to help the lodge." + + There was great applause at this. It was felt that a new sun was + pushing its rim above the horizon. To some of the elders it seemed + that the progress was a little too rapid. + + "I would move," said the secretary, Harraway, a vulture-faced old + graybeard who sat near the chairman, "that Brother McMurdo should + wait until it is the good pleasure of the lodge to employ him." + + "Sure, that was what I meant; I'm in your hands," said McMurdo. + + "Your time will come, Brother," said the chairman. "We have marked + you down as a willing man, and we believe that you will do good work + in these parts. There is a small matter to-night in which you may + take a hand if it so please you." + + "I will wait for something that is worth while." + + "You can come to-night, anyhow, and it will help you to know what we + stand for in this community. I will make the announcement later. + Meanwhile," he glanced at his agenda paper, "I have one or two more + points to bring before the meeting. First of all, I will ask the + treasurer as to our bank balance. There is the pension to Jim + Carnaway's widow. He was struck down doing the work of the lodge, and + it is for us to see that she is not the loser." + + "Jim was shot last month when they tried to kill Chester Wilcox of + Marley Creek," McMurdo's neighbour informed him. + + "The funds are good at the moment," said the treasurer, with the + bankbook in front of him. "The firms have been generous of late. Max + Linder & Co. paid five hundred to be left alone. Walker Brothers sent + in a hundred; but I took it on myself to return it and ask for five. + If I do not hear by Wednesday, their winding gear may get out of + order. We had to burn their breaker last year before they became + reasonable. Then the West Section Coaling Company has paid its annual + contribution. We have enough on hand to meet any obligations." + + "What about Archie Swindon?" asked a brother. + + "He has sold out and left the district. The old devil left a note for + us to say that he had rather be a free crossing sweeper in New York + than a large mine owner under the power of a ring of blackmailers. By + Gar! it was as well that he made a break for it before the note + reached us! I guess he won't show his face in this valley again." + + An elderly, clean-shaved man with a kindly face and a good brow rose + from the end of the table which faced the chairman. "Mr. Treasurer," + he asked, "may I ask who has bought the property of this man that we + have driven out of the district?" + + "Yes, Brother Morris. It has been bought by the State & Merton County + Railroad Company." + + "And who bought the mines of Todman and of Lee that came into the + market in the same way last year?" + + "The same company, Brother Morris." + + "And who bought the ironworks of Manson and of Shuman and of Van + Deher and of Atwood, which have all been given up of late?" + + "They were all bought by the West Gilmerton General Mining Company." + + "I don't see, Brother Morris," said the chairman, "that it matters to + us who buys them, since they can't carry them out of the district." + + "With all respect to you, Eminent Bodymaster, I think it may matter + very much to us. This process has been going on now for ten long + years. We are gradually driving all the small men out of trade. What + is the result? We find in their places great companies like the + Railroad or the General Iron, who have their directors in New York or + Philadelphia, and care nothing for our threats. We can take it out of + their local bosses, but it only means that others will be sent in + their stead. And we are making it dangerous for ourselves. The small + men could not harm us. They had not the money nor the power. So long + as we did not squeeze them too dry, they would stay on under our + power. But if these big companies find that we stand between them and + their profits, they will spare no pains and no expense to hunt us + down and bring us to court." + + There was a hush at these ominous words, and every face darkened as + gloomy looks were exchanged. So omnipotent and unchallenged had they + been that the very thought that there was possible retribution in the + background had been banished from their minds. And yet the idea + struck a chill to the most reckless of them. + + "It is my advice," the speaker continued, "that we go easier upon the + small men. On the day that they have all been driven out the power of + this society will have been broken." + + Unwelcome truths are not popular. There were angry cries as the + speaker resumed his seat. McGinty rose with gloom upon his brow. + + "Brother Morris," said he, "you were always a croaker. So long as the + members of this lodge stand together there is no power in the United + States that can touch them. Sure, have we not tried it often enough + in the law courts? I expect the big companies will find it easier to + pay than to fight, same as the little companies do. And now, + Brethren," McGinty took off his black velvet cap and his stole as he + spoke, "this lodge has finished its business for the evening, save + for one small matter which may be mentioned when we are parting. The + time has now come for fraternal refreshment and for harmony." + + Strange indeed is human nature. Here were these men, to whom murder + was familiar, who again and again had struck down the father of the + family, some man against whom they had no personal feeling, without + one thought of compunction or of compassion for his weeping wife or + helpless children, and yet the tender or pathetic in music could move + them to tears. McMurdo had a fine tenor voice, and if he had failed + to gain the good will of the lodge before, it could no longer have + been withheld after he had thrilled them with "I'm Sitting on the + Stile, Mary," and "On the Banks of Allan Water." + + In his very first night the new recruit had made himself one of the + most popular of the brethren, marked already for advancement and high + office. There were other qualities needed, however, besides those of + good fellowship, to make a worthy Freeman, and of these he was given + an example before the evening was over. The whisky bottle had passed + round many times, and the men were flushed and ripe for mischief when + their Bodymaster rose once more to address them. + + "Boys," said he, "there's one man in this town that wants trimming + up, and it's for you to see that he gets it. I'm speaking of James + Stanger of the Herald. You've seen how he's been opening his mouth + against us again?" + + There was a murmur of assent, with many a muttered oath. McGinty took + a slip of paper from his waistcoat pocket. + + Law and Order! + + That's how he heads it. + + "Reign of terror in the coal and iron district + "Twelve years have now elapsed since the first assassinations which + proved the existence of a criminal organization in our midst. From + that day these outrages have never ceased, until now they have + reached a pitch which makes us the opprobrium of the civilized world. + Is it for such results as this that our great country welcomes to its + bosom the alien who flies from the despotisms of Europe? Is it that + they shall themselves become tyrants over the very men who have given + them shelter, and that a state of terrorism and lawlessness should be + established under the very shadow of the sacred folds of the starry + Flag of Freedom which would raise horror in our minds if we read of + it as existing under the most effete monarchy of the East? The men + are known. The organization is patent and public. How long are we to + endure it? Can we forever live-- + + Sure, I've read enough of the slush!" cried the chairman, tossing the + paper down upon the table. "That's what he says of us. The question + I'm asking you is what shall we say to him?" + + "Kill him!" cried a dozen fierce voices. + + "I protest against that," said Brother Morris, the man of the good + brow and shaved face. "I tell you, Brethren, that our hand is too + heavy in this valley, and that there will come a point where in + self-defense every man will unite to crush us out. James Stanger is + an old man. He is respected in the township and the district. His + paper stands for all that is solid in the valley. If that man is + struck down, there will be a stir through this state that will only + end with our destruction." + + "And how would they bring about our destruction, Mr. Standback?" + cried McGinty. "Is it by the police? Sure, half of them are in our + pay and half of them afraid of us. Or is it by the law courts and the + judge? Haven't we tried that before now, and what ever came of it?" + + "There is a Judge Lynch that might try the case," said Brother + Morris. + + A general shout of anger greeted the suggestion. + + "I have but to raise my finger," cried McGinty, "and I could put two + hundred men into this town that would clear it out from end to end." + Then suddenly raising his voice and bending his huge black brows into + a terrible frown, "See here, Brother Morris, I have my eye on you, + and have had for some time! You've no heart yourself, and you try to + take the heart out of others. It will be an ill day for you, Brother + Morris, when your own name comes on our agenda paper, and I'm + thinking that it's just there that I ought to place it." + + Morris had turned deadly pale, and his knees seemed to give way under + him as he fell back into his chair. He raised his glass in his + trembling hand and drank before he could answer. "I apologize, + Eminent Bodymaster, to you and to every brother in this lodge if I + have said more than I should. I am a faithful member--you all know + that--and it is my fear lest evil come to the lodge which makes me + speak in anxious words. But I have greater trust in your judgment + than in my own, Eminent Bodymaster, and I promise you that I will not + offend again." + + The Bodymaster's scowl relaxed as he listened to the humble words. + "Very good, Brother Morris. It's myself that would be sorry if it + were needful to give you a lesson. But so long as I am in this chair + we shall be a united lodge in word and in deed. And now, boys," he + continued, looking round at the company, "I'll say this much, that if + Stanger got his full deserts there would be more trouble than we need + ask for. These editors hang together, and every journal in the state + would be crying out for police and troops. But I guess you can give + him a pretty severe warning. Will you fix it, Brother Baldwin?" + + "Sure!" said the young man eagerly. + + "How many will you take?" + + "Half a dozen, and two to guard the door. You'll come, Gower, and + you, Mansel, and you, Scanlan, and the two Willabys." + + "I promised the new brother he should go," said the chairman. + + Ted Baldwin looked at McMurdo with eyes which showed that he had not + forgotten nor forgiven. "Well, he can come if he wants," he said in a + surly voice. "That's enough. The sooner we get to work the better." + + The company broke up with shouts and yells and snatches of drunken + song. The bar was still crowded with revellers, and many of the + brethren remained there. The little band who had been told off for + duty passed out into the street, proceeding in twos and threes along + the sidewalk so as not to provoke attention. It was a bitterly cold + night, with a half-moon shining brilliantly in a frosty, + star-spangled sky. The men stopped and gathered in a yard which faced + a high building. The words "Vermissa Herald" were printed in gold + lettering between the brightly lit windows. From within came the + clanking of the printing press. + + "Here, you," said Baldwin to McMurdo, "you can stand below at the + door and see that the road is kept open for us. Arthur Willaby can + stay with you. You others come with me. Have no fears, boys; for we + have a dozen witnesses that we are in the Union Bar at this very + moment." + + It was nearly midnight, and the street was deserted save for one or + two revellers upon their way home. The party crossed the road, and, + pushing open the door of the newspaper office, Baldwin and his men + rushed in and up the stair which faced them. McMurdo and another + remained below. From the room above came a shout, a cry for help, and + then the sound of trampling feet and of falling chairs. An instant + later a gray-haired man rushed out on the landing. + + He was seized before he could get farther, and his spectacles came + tinkling down to McMurdo's feet. There was a thud and a groan. He was + on his face, and half a dozen sticks were clattering together as they + fell upon him. He writhed, and his long, thin limbs quivered under + the blows. The others ceased at last; but Baldwin, his cruel face set + in an infernal smile, was hacking at the man's head, which he vainly + endeavoured to defend with his arms. His white hair was dabbled with + patches of blood. Baldwin was still stooping over his victim, putting + in a short, vicious blow whenever he could see a part exposed, when + McMurdo dashed up the stair and pushed him back. + + "You'll kill the man," said he. "Drop it!" + + Baldwin looked at him in amazement. "Curse you!" he cried. "Who are + you to interfere--you that are new to the lodge? Stand back!" He + raised his stick; but McMurdo had whipped his pistol out of his hip + pocket. + + "Stand back yourself!" he cried. "I'll blow your face in if you lay a + hand on me. As to the lodge, wasn't it the order of the Bodymaster + that the man was not to be killed--and what are you doing but killing + him?" + + "It's truth he says," remarked one of the men. + + "By Gar! you'd best hurry yourselves!" cried the man below. "The + windows are all lighting up, and you'll have the whole town here + inside of five minutes." + + There was indeed the sound of shouting in the street, and a little + group of compositors and pressmen was forming in the hall below and + nerving itself to action. Leaving the limp and motionless body of the + editor at the head of the stair, the criminals rushed down and made + their way swiftly along the street. Having reached the Union House, + some of them mixed with the crowd in McGinty's saloon, whispering + across the bar to the Boss that the job had been well carried + through. Others, and among them McMurdo, broke away into side + streets, and so by devious paths to their own homes. + + + + + + CHAPTER IV + The Valley of Fear + + + When McMurdo awoke next morning he had good reason to remember his + initiation into the lodge. His head ached with the effect of the + drink, and his arm, where he had been branded, was hot and swollen. + Having his own peculiar source of income, he was irregular in his + attendance at his work; so he had a late breakfast, and remained at + home for the morning writing a long letter to a friend. Afterwards he + read the Daily Herald. In a special column put in at the last moment + he read: + + Outrage at the herald office -- Editor seriously injured + + It was a short account of the facts with which he was himself more + familiar than the writer could have been. It ended with the + statement: + + The matter is now in the hands of the police; but it can hardly be + hoped that their exertions will be attended by any better results + than in the past. Some of the men were recognized, and there is hope + that a conviction may be obtained. The source of the outrage was, it + need hardly be said, that infamous society which has held this + community in bondage for so long a period, and against which the + Herald has taken so uncompromising a stand. Mr. Stanger's many + friends will rejoice to hear that, though he has been cruelly and + brutally beaten, and though he has sustained severe injuries about + the head, there is no immediate danger to his life. + + Below it stated that a guard of police, armed with Winchester rifles, + had been requisitioned for the defense of the office. + + McMurdo had laid down the paper, and was lighting his pipe with a + hand which was shaky from the excesses of the previous evening, when + there was a knock outside, and his landlady brought to him a note + which had just been handed in by a lad. It was unsigned, and ran + thus: + + I should wish to speak to you, but would rather not do so in your + house. You will find me beside the flagstaff upon Miller Hill. If you + will come there now, I have something which it is important for you + to hear and for me to say. + + McMurdo read the note twice with the utmost surprise; for he could + not imagine what it meant or who was the author of it. Had it been in + a feminine hand, he might have imagined that it was the beginning of + one of those adventures which had been familiar enough in his past + life. But it was the writing of a man, and of a well educated one, + too. Finally, after some hesitation, he determined to see the matter + through. + + Miller Hill is an ill-kept public park in the very centre of the + town. In summer it is a favourite resort of the people; but in winter + it is desolate enough. From the top of it one has a view not only of + the whole straggling, grimy town, but of the winding valley beneath, + with its scattered mines and factories blackening the snow on each + side of it, and of the wooded and white-capped ranges flanking it. + + McMurdo strolled up the winding path hedged in with evergreens until + he reached the deserted restaurant which forms the centre of summer + gaiety. Beside it was a bare flagstaff, and underneath it a man, his + hat drawn down and the collar of his overcoat turned up. When he + turned his face McMurdo saw that it was Brother Morris, he who had + incurred the anger of the Bodymaster the night before. The lodge sign + was given and exchanged as they met. + + "I wanted to have a word with you, Mr. McMurdo," said the older man, + speaking with a hesitation which showed that he was on delicate + ground. "It was kind of you to come." + + "Why did you not put your name to the note?" + + "One has to be cautious, mister. One never knows in times like these + how a thing may come back to one. One never knows either who to trust + or who not to trust." + + "Surely one may trust brothers of the lodge." + + "No, no, not always," cried Morris with vehemence. "Whatever we say, + even what we think, seems to go back to that man McGinty." + + "Look here!" said McMurdo sternly. "It was only last night, as you + know well, that I swore good faith to our Bodymaster. Would you be + asking me to break my oath?" + + "If that is the view you take," said Morris sadly, "I can only say + that I am sorry I gave you the trouble to come and meet me. Things + have come to a bad pass when two free citizens cannot speak their + thoughts to each other." + + McMurdo, who had been watching his companion very narrowly, relaxed + somewhat in his bearing. "Sure I spoke for myself only," said he. "I + am a newcomer, as you know, and I am strange to it all. It is not for + me to open my mouth, Mr. Morris, and if you think well to say + anything to me I am here to hear it." + + "And to take it back to Boss McGinty!" said Morris bitterly. + + "Indeed, then, you do me injustice there," cried McMurdo. "For myself + I am loyal to the lodge, and so I tell you straight; but I would be a + poor creature if I were to repeat to any other what you might say to + me in confidence. It will go no further than me; though I warn you + that you may get neither help nor sympathy." + + "I have given up looking for either the one or the other," said + Morris. "I may be putting my very life in your hands by what I say; + but, bad as you are--and it seemed to me last night that you were + shaping to be as bad as the worst--still you are new to it, and your + conscience cannot yet be as hardened as theirs. That was why I + thought to speak with you." + + "Well, what have you to say?" + + "If you give me away, may a curse be on you!" + + "Sure, I said I would not." + + "I would ask you, then, when you joined the Freeman's society in + Chicago and swore vows of charity and fidelity, did ever it cross + your mind that you might find it would lead you to crime?" + + "If you call it crime," McMurdo answered. + + "Call it crime!" cried Morris, his voice vibrating with passion. "You + have seen little of it if you can call it anything else. Was it crime + last night when a man old enough to be your father was beaten till + the blood dripped from his white hairs? Was that crime--or what else + would you call it?" + + "There are some would say it was war," said McMurdo, "a war of two + classes with all in, so that each struck as best it could." + + "Well, did you think of such a thing when you joined the Freeman's + society at Chicago?" + + "No, I'm bound to say I did not." + + "Nor did I when I joined it at Philadelphia. It was just a benefit + club and a meeting place for one's fellows. Then I heard of this + place--curse the hour that the name first fell upon my ears!--and I + came to better myself! My God! to better myself! My wife and three + children came with me. I started a dry goods store on Market Square, + and I prospered well. The word had gone round that I was a Freeman, + and I was forced to join the local lodge, same as you did last night. + I've the badge of shame on my forearm and something worse branded on + my heart. I found that I was under the orders of a black villain and + caught in a meshwork of crime. What could I do? Every word I said to + make things better was taken as treason, same as it was last night. I + can't get away; for all I have in the world is in my store. If I + leave the society, I know well that it means murder to me, and God + knows what to my wife and children. Oh, man, it is awful--awful!" He + put his hands to his face, and his body shook with convulsive sobs. + + McMurdo shrugged his shoulders. "You were too soft for the job," said + he. "You are the wrong sort for such work." + + "I had a conscience and a religion; but they made me a criminal among + them. I was chosen for a job. If I backed down I knew well what would + come to me. Maybe I'm a coward. Maybe it's the thought of my poor + little woman and the children that makes me one. Anyhow I went. I + guess it will haunt me forever. + + "It was a lonely house, twenty miles from here, over the range + yonder. I was told off for the door, same as you were last night. + They could not trust me with the job. The others went in. When they + came out their hands were crimson to the wrists. As we turned away a + child was screaming out of the house behind us. It was a boy of five + who had seen his father murdered. I nearly fainted with the horror of + it, and yet I had to keep a bold and smiling face; for well I knew + that if I did not it would be out of my house that they would come + next with their bloody hands and it would be my little Fred that + would be screaming for his father. + + "But I was a criminal then, part sharer in a murder, lost forever in + this world, and lost also in the next. I am a good Catholic; but the + priest would have no word with me when he heard I was a Scowrer, and + I am excommunicated from my faith. That's how it stands with me. And + I see you going down the same road, and I ask you what the end is to + be. Are you ready to be a cold-blooded murderer also, or can we do + anything to stop it?" + + "What would you do?" asked McMurdo abruptly. "You would not inform?" + + "God forbid!" cried Morris. "Sure, the very thought would cost me my + life." + + "That's well," said McMurdo. "I'm thinking that you are a weak man + and that you make too much of the matter." + + "Too much! Wait till you have lived here longer. Look down the + valley! See the cloud of a hundred chimneys that overshadows it! I + tell you that the cloud of murder hangs thicker and lower than that + over the heads of the people. It is the Valley of Fear, the Valley of + Death. The terror is in the hearts of the people from the dusk to the + dawn. Wait, young man, and you will learn for yourself." + + "Well, I'll let you know what I think when I have seen more," said + McMurdo carelessly. "What is very clear is that you are not the man + for the place, and that the sooner you sell out--if you only get a + dime a dollar for what the business is worth--the better it will be + for you. What you have said is safe with me; but, by Gar! if I + thought you were an informer--" + + "No, no!" cried Morris piteously. + + "Well, let it rest at that. I'll bear what you have said in mind, and + maybe some day I'll come back to it. I expect you meant kindly by + speaking to me like this. Now I'll be getting home." + + "One word before you go," said Morris. "We may have been seen + together. They may want to know what we have spoken about." + + "Ah! that's well thought of." + + "I offer you a clerkship in my store." + + "And I refuse it. That's our business. Well, so long, Brother Morris, + and may you find things go better with you in the future." + + That same afternoon, as McMurdo sat smoking, lost in thought beside + the stove of his sitting-room, the door swung open and its framework + was filled with the huge figure of Boss McGinty. He passed the sign, + and then seating himself opposite to the young man he looked at him + steadily for some time, a look which was as steadily returned. + + "I'm not much of a visitor, Brother McMurdo," he said at last. "I + guess I am too busy over the folk that visit me. But I thought I'd + stretch a point and drop down to see you in your own house." + + "I'm proud to see you here, Councillor," McMurdo answered heartily, + bringing his whisky bottle out of the cupboard. "It's an honour that + I had not expected." + + "How's the arm?" asked the Boss. + + McMurdo made a wry face. "Well, I'm not forgetting it," he said; "but + it's worth it." + + "Yes, it's worth it," the other answered, "to those that are loyal + and go through with it and are a help to the lodge. What were you + speaking to Brother Morris about on Miller Hill this morning?" + + The question came so suddenly that it was well that he had his answer + prepared. He burst into a hearty laugh. "Morris didn't know I could + earn a living here at home. He shan't know either; for he has got too + much conscience for the likes of me. But he's a good-hearted old + chap. It was his idea that I was at a loose end, and that he would do + me a good turn by offering me a clerkship in a dry goods store." + + "Oh, that was it?" + + "Yes, that was it." + + "And you refused it?" + + "Sure. Couldn't I earn ten times as much in my own bedroom with four + hours' work?" + + "That's so. But I wouldn't get about too much with Morris." + + "Why not?" + + "Well, I guess because I tell you not. That's enough for most folk in + these parts." + + "It may be enough for most folk; but it ain't enough for me, + Councillor," said McMurdo boldly. "If you are a judge of men, you'll + know that." + + The swarthy giant glared at him, and his hairy paw closed for an + instant round the glass as though he would hurl it at the head of his + companion. Then he laughed in his loud, boisterous, insincere + fashion. + + "You're a queer card, for sure," said he. "Well, if you want reasons, + I'll give them. Did Morris say nothing to you against the lodge?" + + "No." + + "Nor against me?" + + "No." + + "Well, that's because he daren't trust you. But in his heart he is + not a loyal brother. We know that well. So we watch him and we wait + for the time to admonish him. I'm thinking that the time is drawing + near. There's no room for scabby sheep in our pen. But if you keep + company with a disloyal man, we might think that you were disloyal, + too. See?" + + "There's no chance of my keeping company with him; for I dislike the + man," McMurdo answered. "As to being disloyal, if it was any man but + you he would not use the word to me twice." + + "Well, that's enough," said McGinty, draining off his glass. "I came + down to give you a word in season, and you've had it." + + "I'd like to know," said McMurdo, "how you ever came to learn that I + had spoken with Morris at all?" + + McGinty laughed. "It's my business to know what goes on in this + township," said he. "I guess you'd best reckon on my hearing all that + passes. Well, time's up, and I'll just say--" + + But his leavetaking was cut short in a very unexpected fashion. With + a sudden crash the door flew open, and three frowning, intent faces + glared in at them from under the peaks of police caps. McMurdo sprang + to his feet and half drew his revolver; but his arm stopped midway as + he became conscious that two Winchester rifles were levelled at his + head. A man in uniform advanced into the room, a six-shooter in his + hand. It was Captain Marvin, once of Chicago, and now of the Mine + Constabulary. He shook his head with a half-smile at McMurdo. + + "I thought you'd be getting into trouble, Mr. Crooked McMurdo of + Chicago," said he. "Can't keep out of it, can you? Take your hat and + come along with us." + + "I guess you'll pay for this, Captain Marvin," said McGinty. "Who are + you, I'd like to know, to break into a house in this fashion and + molest honest, law-abiding men?" + + "You're standing out in this deal, Councillor McGinty," said the + police captain. "We are not out after you, but after this man + McMurdo. It is for you to help, not to hinder us in our duty," + + "He is a friend of mine, and I'll answer for his conduct," said the + Boss. + + "By all accounts, Mr. McGinty, you may have to answer for your own + conduct some of these days," the captain answered. "This man McMurdo + was a crook before ever he came here, and he's a crook still. Cover + him, Patrolman, while I disarm him." + + "There's my pistol," said McMurdo coolly. "Maybe, Captain Marvin, if + you and I were alone and face to face you would not take me so + easily." + + "Where's your warrant?" asked McGinty. "By Gar! a man might as well + live in Russia as in Vermissa while folk like you are running the + police. It's a capitalist outrage, and you'll hear more of it, I + reckon." + + "You do what you think is your duty the best way you can, Councillor. + We'll look after ours." + + "What am I accused of?" asked McMurdo. + + "Of being concerned in the beating of old Editor Stanger at the + Herald office. It wasn't your fault that it isn't a murder charge." + + "Well, if that's all you have against him," cried McGinty with a + laugh, "you can save yourself a deal of trouble by dropping it right + now. This man was with me in my saloon playing poker up to midnight, + and I can bring a dozen to prove it." + + "That's your affair, and I guess you can settle it in court + to-morrow. Meanwhile, come on, McMurdo, and come quietly if you don't + want a gun across your head. You stand wide, Mr. McGinty; for I warn + you I will stand no resistance when I am on duty!" + + So determined was the appearance of the captain that both McMurdo and + his boss were forced to accept the situation. The latter managed to + have a few whispered words with the prisoner before they parted. + + "What about--" he jerked his thumb upward to signify the coining + plant. + + "All right," whispered McMurdo, who had devised a safe hiding place + under the floor. + + "I'll bid you good-bye," said the Boss, shaking hands. "I'll see + Reilly the lawyer and take the defense upon myself. Take my word for + it that they won't be able to hold you." + + "I wouldn't bet on that. Guard the prisoner, you two, and shoot him + if he tries any games. I'll search the house before I leave." + + He did so; but apparently found no trace of the concealed plant. When + he had descended he and his men escorted McMurdo to headquarters. + Darkness had fallen, and a keen blizzard was blowing so that the + streets were nearly deserted; but a few loiterers followed the group, + and emboldened by invisibility shouted imprecations at the prisoner. + + "Lynch the cursed Scowrer!" they cried. "Lynch him!" They laughed and + jeered as he was pushed into the police station. After a short, + formal examination from the inspector in charge he was put into the + common cell. Here he found Baldwin and three other criminals of the + night before, all arrested that afternoon and waiting their trial + next morning. + + But even within this inner fortress of the law the long arm of the + Freemen was able to extend. Late at night there came a jailer with a + straw bundle for their bedding, out of which he extracted two bottles + of whisky, some glasses, and a pack of cards. They spent a hilarious + night, without an anxious thought as to the ordeal of the morning. + + Nor had they cause, as the result was to show. The magistrate could + not possibly, on the evidence, have held them for a higher court. On + the one hand the compositors and pressmen were forced to admit that + the light was uncertain, that they were themselves much perturbed, + and that it was difficult for them to swear to the identity of the + assailants; although they believed that the accused were among them. + Cross examined by the clever attorney who had been engaged by + McGinty, they were even more nebulous in their evidence. + + The injured man had already deposed that he was so taken by surprise + by the suddenness of the attack that he could state nothing beyond + the fact that the first man who struck him wore a moustache. He added + that he knew them to be Scowrers, since no one else in the community + could possibly have any enmity to him, and he had long been + threatened on account of his outspoken editorials. On the other hand, + it was clearly shown by the united and unfaltering evidence of six + citizens, including that high municipal official, Councillor McGinty, + that the men had been at a card party at the Union House until an + hour very much later than the commission of the outrage. + + Needless to say that they were discharged with something very near to + an apology from the bench for the inconvenience to which they had + been put, together with an implied censure of Captain Marvin and the + police for their officious zeal. + + The verdict was greeted with loud applause by a court in which + McMurdo saw many familiar faces. Brothers of the lodge smiled and + waved. But there were others who sat with compressed lips and + brooding eyes as the men filed out of the dock. One of them, a + little, dark-bearded, resolute fellow, put the thoughts of himself + and comrades into words as the ex-prisoners passed him. + + "You damned murderers!" he said. "We'll fix you yet!" + + + + + + CHAPTER V + The Darkest Hour + + + If anything had been needed to give an impetus to Jack McMurdo's + popularity among his fellows it would have been his arrest and + acquittal. That a man on the very night of joining the lodge should + have done something which brought him before the magistrate was a new + record in the annals of the society. Already he had earned the + reputation of a good boon companion, a cheery reveller, and withal a + man of high temper, who would not take an insult even from the + all-powerful Boss himself. But in addition to this he impressed his + comrades with the idea that among them all there was not one whose + brain was so ready to devise a bloodthirsty scheme, or whose hand + would be more capable of carrying it out. "He'll be the boy for the + clean job," said the oldsters to one another, and waited their time + until they could set him to his work. + + McGinty had instruments enough already; but he recognized that this + was a supremely able one. He felt like a man holding a fierce + bloodhound in leash. There were curs to do the smaller work; but some + day he would slip this creature upon its prey. A few members of the + lodge, Ted Baldwin among them, resented the rapid rise of the + stranger and hated him for it; but they kept clear of him, for he was + as ready to fight as to laugh. + + But if he gained favour with his fellows, there was another quarter, + one which had become even more vital to him, in which he lost it. + Ettie Shafter's father would have nothing more to do with him, nor + would he allow him to enter the house. Ettie herself was too deeply + in love to give him up altogether, and yet her own good sense warned + her of what would come from a marriage with a man who was regarded as + a criminal. + + One morning after a sleepless night she determined to see him, + possibly for the last time, and make one strong endeavour to draw him + from those evil influences which were sucking him down. She went to + his house, as he had often begged her to do, and made her way into + the room which he used as his sitting-room. He was seated at a table, + with his back turned and a letter in front of him. A sudden spirit of + girlish mischief came over her--she was still only nineteen. He had + not heard her when she pushed open the door. Now she tiptoed forward + and laid her hand lightly upon his bended shoulders. + + If she had expected to startle him, she certainly succeeded; but only + in turn to be startled herself. With a tiger spring he turned on her, + and his right hand was feeling for her throat. At the same instant + with the other hand he crumpled up the paper that lay before him. For + an instant he stood glaring. Then astonishment and joy took the place + of the ferocity which had convulsed his features--a ferocity which + had sent her shrinking back in horror as from something which had + never before intruded into her gentle life. + + "It's you!" said he, mopping his brow. "And to think that you should + come to me, heart of my heart, and I should find nothing better to do + than to want to strangle you! Come then, darling," and he held out + his arms, "let me make it up to you." + + But she had not recovered from that sudden glimpse of guilty fear + which she had read in the man's face. All her woman's instinct told + her that it was not the mere fright of a man who is startled. + Guilt--that was it--guilt and fear! + + "What's come over you, Jack?" she cried. "Why were you so scared of + me? Oh, Jack, if your conscience was at ease, you would not have + looked at me like that!" + + "Sure, I was thinking of other things, and when you came tripping so + lightly on those fairy feet of yours--" + + "No, no, it was more than that, Jack." Then a sudden suspicion seized + her. "Let me see that letter you were writing." + + "Ah, Ettie, I couldn't do that." + + Her suspicions became certainties. "It's to another woman," she + cried. "I know it! Why else should you hold it from me? Was it to + your wife that you were writing? How am I to know that you are not a + married man--you, a stranger, that nobody knows?" + + "I am not married, Ettie. See now, I swear it! You're the only one + woman on earth to me. By the cross of Christ I swear it!" + + He was so white with passionate earnestness that she could not but + believe him. + + "Well, then," she cried, "why will you not show me the letter?" + + "I'll tell you, acushla," said he. "I'm under oath not to show it, + and just as I wouldn't break my word to you so I would keep it to + those who hold my promise. It's the business of the lodge, and even + to you it's secret. And if I was scared when a hand fell on me, can't + you understand it when it might have been the hand of a detective?" + + She felt that he was telling the truth. He gathered her into his arms + and kissed away her fears and doubts. + + "Sit here by me, then. It's a queer throne for such a queen; but it's + the best your poor lover can find. He'll do better for you some of + these days, I'm thinking. Now your mind is easy once again, is it + not?" + + "How can it ever be at ease, Jack, when I know that you are a + criminal among criminals, when I never know the day that I may hear + you are in court for murder? 'McMurdo the Scowrer,' that's what one + of our boarders called you yesterday. It went through my heart like a + knife." + + "Sure, hard words break no bones." + + "But they were true." + + "Well, dear, it's not so bad as you think. We are but poor men that + are trying in our own way to get our rights." + + Ettie threw her arms round her lover's neck. "Give it up, Jack! For + my sake, for God's sake, give it up! It was to ask you that I came + here to-day. Oh, Jack, see--I beg it of you on my bended knees! + Kneeling here before you I implore you to give it up!" + + He raised her and soothed her with her head against his breast. + + "Sure, my darlin', you don't know what it is you are asking. How + could I give it up when it would be to break my oath and to desert my + comrades? If you could see how things stand with me you could never + ask it of me. Besides, if I wanted to, how could I do it? You don't + suppose that the lodge would let a man go free with all its secrets?" + + "I've thought of that, Jack. I've planned it all. Father has saved + some money. He is weary of this place where the fear of these people + darkens our lives. He is ready to go. We would fly together to + Philadelphia or New York, where we would be safe from them." + + McMurdo laughed. "The lodge has a long arm. Do you think it could not + stretch from here to Philadelphia or New York?" + + "Well, then, to the West, or to England, or to Germany, where father + came from--anywhere to get away from this Valley of Fear!" + + McMurdo thought of old Brother Morris. "Sure, it is the second time I + have heard the valley so named," said he. "The shadow does indeed + seem to lie heavy on some of you." + + "It darkens every moment of our lives. Do you suppose that Ted + Baldwin has ever forgiven us? If it were not that he fears you, what + do you suppose our chances would be? If you saw the look in those + dark, hungry eyes of his when they fall on me!" + + "By Gar! I'd teach him better manners if I caught him at it! But see + here, little girl. I can't leave here. I can't--take that from me + once and for all. But if you will leave me to find my own way, I will + try to prepare a way of getting honourably out of it." + + "There is no honour in such a matter." + + "Well, well, it's just how you look at it. But if you'll give me six + months, I'll work it so that I can leave without being ashamed to + look others in the face." + + The girl laughed with joy. "Six months!" she cried. "Is it a + promise?" + + "Well, it may be seven or eight. But within a year at the furthest we + will leave the valley behind us." + + It was the most that Ettie could obtain, and yet it was something. + There was this distant light to illuminate the gloom of the immediate + future. She returned to her father's house more light-hearted than + she had ever been since Jack McMurdo had come into her life. + + It might be thought that as a member, all the doings of the society + would be told to him; but he was soon to discover that the + organization was wider and more complex than the simple lodge. Even + Boss McGinty was ignorant as to many things; for there was an + official named the County Delegate, living at Hobson's Patch farther + down the line, who had power over several different lodges which he + wielded in a sudden and arbitrary way. Only once did McMurdo see him, + a sly, little gray-haired rat of a man, with a slinking gait and a + sidelong glance which was charged with malice. Evans Pott was his + name, and even the great Boss of Vermissa felt towards him something + of the repulsion and fear which the huge Danton may have felt for the + puny but dangerous Robespierre. + + One day Scanlan, who was McMurdo's fellow boarder, received a note + from McGinty inclosing one from Evans Pott, which informed him that + he was sending over two good men, Lawler and Andrews, who had + instructions to act in the neighbourhood; though it was best for the + cause that no particulars as to their objects should be given. Would + the Bodymaster see to it that suitable arrangements be made for their + lodgings and comfort until the time for action should arrive? McGinty + added that it was impossible for anyone to remain secret at the Union + House, and that, therefore, he would be obliged if McMurdo and + Scanlan would put the strangers up for a few days in their boarding + house. + + The same evening the two men arrived, each carrying his gripsack. + Lawler was an elderly man, shrewd, silent, and self-contained, clad + in an old black frock coat, which with his soft felt hat and ragged, + grizzled beard gave him a general resemblance to an itinerant + preacher. His companion Andrews was little more than a boy, + frank-faced and cheerful, with the breezy manner of one who is out + for a holiday and means to enjoy every minute of it. Both men were + total abstainers, and behaved in all ways as exemplary members of the + society, with the one simple exception that they were assassins who + had often proved themselves to be most capable instruments for this + association of murder. Lawler had already carried out fourteen + commissions of the kind, and Andrews three. + + They were, as McMurdo found, quite ready to converse about their + deeds in the past, which they recounted with the half-bashful pride + of men who had done good and unselfish service for the community. + They were reticent, however, as to the immediate job in hand. + + "They chose us because neither I nor the boy here drink," Lawler + explained. "They can count on us saying no more than we should. You + must not take it amiss, but it is the orders of the County Delegate + that we obey." + + "Sure, we are all in it together," said Scanlan, McMurdo's mate, as + the four sat together at supper. + + "That's true enough, and we'll talk till the cows come home of the + killing of Charlie Williams or of Simon Bird, or any other job in the + past. But till the work is done we say nothing." + + "There are half a dozen about here that I have a word to say to," + said McMurdo, with an oath. "I suppose it isn't Jack Knox of Ironhill + that you are after. I'd go some way to see him get his deserts." + + "No, it's not him yet." + + "Or Herman Strauss?" + + "No, nor him either." + + "Well, if you won't tell us we can't make you; but I'd be glad to + know." + + Lawler smiled and shook his head. He was not to be drawn. + + In spite of the reticence of their guests, Scanlan and McMurdo were + quite determined to be present at what they called "the fun." When, + therefore, at an early hour one morning McMurdo heard them creeping + down the stairs he awakened Scanlan, and the two hurried on their + clothes. When they were dressed they found that the others had stolen + out, leaving the door open behind them. It was not yet dawn, and by + the light of the lamps they could see the two men some distance down + the street. They followed them warily, treading noiselessly in the + deep snow. + + The boarding house was near the edge of the town, and soon they were + at the crossroads which is beyond its boundary. Here three men were + waiting, with whom Lawler and Andrews held a short, eager + conversation. Then they all moved on together. It was clearly some + notable job which needed numbers. At this point there are several + trails which lead to various mines. The strangers took that which led + to the Crow Hill, a huge business which was in strong hands which had + been able, thanks to their energetic and fearless New England + manager, Josiah H. Dunn, to keep some order and discipline during the + long reign of terror. + + Day was breaking now, and a line of workmen were slowly making their + way, singly and in groups, along the blackened path. + + McMurdo and Scanlan strolled on with the others, keeping in sight of + the men whom they followed. A thick mist lay over them, and from the + heart of it there came the sudden scream of a steam whistle. It was + the ten-minute signal before the cages descended and the day's labour + began. + + When they reached the open space round the mine shaft there were a + hundred miners waiting, stamping their feet and blowing on their + fingers; for it was bitterly cold. The strangers stood in a little + group under the shadow of the engine house. Scanlan and McMurdo + climbed a heap of slag from which the whole scene lay before them. + They saw the mine engineer, a great bearded Scotchman named Menzies, + come out of the engine house and blow his whistle for the cages to be + lowered. + + At the same instant a tall, loose-framed young man with a + clean-shaved, earnest face advanced eagerly towards the pit head. As + he came forward his eyes fell upon the group, silent and motionless, + under the engine house. The men had drawn down their hats and turned + up their collars to screen their faces. For a moment the presentiment + of Death laid its cold hand upon the manager's heart. At the next he + had shaken it off and saw only his duty towards intrusive strangers. + + "Who are you?" he asked as he advanced. "What are you loitering there + for?" + + There was no answer; but the lad Andrews stepped forward and shot him + in the stomach. The hundred waiting miners stood as motionless and + helpless as if they were paralyzed. The manager clapped his two hands + to the wound and doubled himself up. Then he staggered away; but + another of the assassins fired, and he went down sidewise, kicking + and clawing among a heap of clinkers. Menzies, the Scotchman, gave a + roar of rage at the sight and rushed with an iron spanner at the + murderers; but was met by two balls in the face which dropped him + dead at their very feet. + + There was a surge forward of some of the miners, and an inarticulate + cry of pity and of anger; but a couple of the strangers emptied their + six-shooters over the heads of the crowd, and they broke and + scattered, some of them rushing wildly back to their homes in + Vermissa. + + When a few of the bravest had rallied, and there was a return to the + mine, the murderous gang had vanished in the mists of morning, + without a single witness being able to swear to the identity of these + men who in front of a hundred spectators had wrought this double + crime. + + Scanlan and McMurdo made their way back; Scanlan somewhat subdued, + for it was the first murder job that he had seen with his own eyes, + and it appeared less funny than he had been led to believe. The + horrible screams of the dead manager's wife pursued them as they + hurried to the town. McMurdo was absorbed and silent; but he showed + no sympathy for the weakening of his companion. + + "Sure, it is like a war," he repeated. "What is it but a war between + us and them, and we hit back where we best can." + + There was high revel in the lodge room at the Union House that night, + not only over the killing of the manager and engineer of the Crow + Hill mine, which would bring this organization into line with the + other blackmailed and terror-stricken companies of the district, but + also over a distant triumph which had been wrought by the hands of + the lodge itself. + + It would appear that when the County Delegate had sent over five good + men to strike a blow in Vermissa, he had demanded that in return + three Vermissa men should be secretly selected and sent across to + kill William Hales of Stake Royal, one of the best known and most + popular mine owners in the Gilmerton district, a man who was believed + not to have an enemy in the world; for he was in all ways a model + employer. He had insisted, however, upon efficiency in the work, and + had, therefore, paid off certain drunken and idle employees who were + members of the all-powerful society. Coffin notices hung outside his + door had not weakened his resolution, and so in a free, civilized + country he found himself condemned to death. + + The execution had now been duly carried out. Ted Baldwin, who + sprawled now in the seat of honour beside the Bodymaster, had been + chief of the party. His flushed face and glazed, blood-shot eyes told + of sleeplessness and drink. He and his two comrades had spent the + night before among the mountains. They were unkempt and + weather-stained. But no heroes, returning from a forlorn hope, could + have had a warmer welcome from their comrades. + + The story was told and retold amid cries of delight and shouts of + laughter. They had waited for their man as he drove home at + nightfall, taking their station at the top of a steep hill, where his + horse must be at a walk. He was so furred to keep out the cold that + he could not lay his hand on his pistol. They had pulled him out and + shot him again and again. He had screamed for mercy. The screams were + repeated for the amusement of the lodge. + + "Let's hear again how he squealed," they cried. + + None of them knew the man; but there is eternal drama in a killing, + and they had shown the Scowrers of Gilmerton that the Vermissa men + were to be relied upon. + + There had been one contretemps; for a man and his wife had driven up + while they were still emptying their revolvers into the silent body. + It had been suggested that they should shoot them both; but they were + harmless folk who were not connected with the mines, so they were + sternly bidden to drive on and keep silent, lest a worse thing befall + them. And so the blood-mottled figure had been left as a warning to + all such hard-hearted employers, and the three noble avengers had + hurried off into the mountains where unbroken nature comes down to + the very edge of the furnaces and the slag heaps. Here they were, + safe and sound, their work well done, and the plaudits of their + companions in their ears. + + It had been a great day for the Scowrers. The shadow had fallen even + darker over the valley. But as the wise general chooses the moment of + victory in which to redouble his efforts, so that his foes may have + no time to steady themselves after disaster, so Boss McGinty, looking + out upon the scene of his operations with his brooding and malicious + eyes, had devised a new attack upon those who opposed him. That very + night, as the half-drunken company broke up, he touched McMurdo on + the arm and led him aside into that inner room where they had their + first interview. + + "See here, my lad," said he, "I've got a job that's worthy of you at + last. You'll have the doing of it in your own hands." + + "Proud I am to hear it," McMurdo answered. + + "You can take two men with you--Manders and Reilly. They have been + warned for service. We'll never be right in this district until + Chester Wilcox has been settled, and you'll have the thanks of every + lodge in the coal fields if you can down him." + + "I'll do my best, anyhow. Who is he, and where shall I find him?" + + McGinty took his eternal half-chewed, half-smoked cigar from the + corner of his mouth, and proceeded to draw a rough diagram on a page + torn from his notebook. + + "He's the chief foreman of the Iron Dike Company. He's a hard + citizen, an old colour sergeant of the war, all scars and grizzle. + We've had two tries at him; but had no luck, and Jim Carnaway lost + his life over it. Now it's for you to take it over. That's the + house--all alone at the Iron Dike crossroad, same as you see here on + the map--without another within earshot. It's no good by day. He's + armed and shoots quick and straight, with no questions asked. But at + night--well, there he is with his wife, three children, and a hired + help. You can't pick or choose. It's all or none. If you could get a + bag of blasting powder at the front door with a slow match to it--" + + "What's the man done?" + + "Didn't I tell you he shot Jim Carnaway?" + + "Why did he shoot him?" + + "What in thunder has that to do with you? Carnaway was about his + house at night, and he shot him. That's enough for me and you. You've + got to settle the thing right." + + "There's these two women and the children. Do they go up too?" + + "They have to--else how can we get him?" + + "It seems hard on them; for they've done nothing." + + "What sort of fool's talk is this? Do you back out?" + + "Easy, Councillor, easy! What have I ever said or done that you + should think I would be after standing back from an order of the + Bodymaster of my own lodge? If it's right or if it's wrong, it's for + you to decide." + + "You'll do it, then?" + + "Of course I will do it." + + "When?" + + "Well, you had best give me a night or two that I may see the house + and make my plans. Then--" + + "Very good," said McGinty, shaking him by the hand. "I leave it with + you. It will be a great day when you bring us the news. It's just the + last stroke that will bring them all to their knees." + + McMurdo thought long and deeply over the commission which had been so + suddenly placed in his hands. The isolated house in which Chester + Wilcox lived was about five miles off in an adjacent valley. That + very night he started off all alone to prepare for the attempt. It + was daylight before he returned from his reconnaissance. Next day he + interviewed his two subordinates, Manders and Reilly, reckless + youngsters who were as elated as if it were a deer-hunt. + + Two nights later they met outside the town, all three armed, and one + of them carrying a sack stuffed with the powder which was used in the + quarries. It was two in the morning before they came to the lonely + house. The night was a windy one, with broken clouds drifting swiftly + across the face of a three-quarter moon. They had been warned to be + on their guard against bloodhounds; so they moved forward cautiously, + with their pistols cocked in their hands. But there was no sound save + the howling of the wind, and no movement but the swaying branches + above them. + + McMurdo listened at the door of the lonely house; but all was still + within. Then he leaned the powder bag against it, ripped a hole in it + with his knife, and attached the fuse. When it was well alight he and + his two companions took to their heels, and were some distance off, + safe and snug in a sheltering ditch, before the shattering roar of + the explosion, with the low, deep rumble of the collapsing building, + told them that their work was done. No cleaner job had ever been + carried out in the bloodstained annals of the society. + + But alas that work so well organized and boldly carried out should + all have gone for nothing! Warned by the fate of the various victims, + and knowing that he was marked down for destruction, Chester Wilcox + had moved himself and his family only the day before to some safer + and less known quarters, where a guard of police should watch over + them. It was an empty house which had been torn down by the + gunpowder, and the grim old colour sergeant of the war was still + teaching discipline to the miners of Iron Dike. + + "Leave him to me," said McMurdo. "He's my man, and I'll get him sure + if I have to wait a year for him." + + A vote of thanks and confidence was passed in full lodge, and so for + the time the matter ended. When a few weeks later it was reported in + the papers that Wilcox had been shot at from an ambuscade, it was an + open secret that McMurdo was still at work upon his unfinished job. + + Such were the methods of the Society of Freemen, and such were the + deeds of the Scowrers by which they spread their rule of fear over + the great and rich district which was for so long a period haunted by + their terrible presence. Why should these pages be stained by further + crimes? Have I not said enough to show the men and their methods? + + These deeds are written in history, and there are records wherein one + may read the details of them. There one may learn of the shooting of + Policemen Hunt and Evans because they had ventured to arrest two + members of the society--a double outrage planned at the Vermissa + lodge and carried out in cold blood upon two helpless and disarmed + men. There also one may read of the shooting of Mrs. Larbey when she + was nursing her husband, who had been beaten almost to death by + orders of Boss McGinty. The killing of the elder Jenkins, shortly + followed by that of his brother, the mutilation of James Murdoch, the + blowing up of the Staphouse family, and the murder of the Stendals + all followed hard upon one another in the same terrible winter. + + Darkly the shadow lay upon the Valley of Fear. The spring had come + with running brooks and blossoming trees. There was hope for all + Nature bound so long in an iron grip; but nowhere was there any hope + for the men and women who lived under the yoke of the terror. Never + had the cloud above them been so dark and hopeless as in the early + summer of the year 1875. + + + + + + CHAPTER VI + Danger + + + It was the height of the reign of terror. McMurdo, who had already + been appointed Inner Deacon, with every prospect of some day + succeeding McGinty as Bodymaster, was now so necessary to the + councils of his comrades that nothing was done without his help and + advice. The more popular he became, however, with the Freemen, the + blacker were the scowls which greeted him as he passed along the + streets of Vermissa. In spite of their terror the citizens were + taking heart to band themselves together against their oppressors. + Rumours had reached the lodge of secret gatherings in the Herald + office and of distribution of firearms among the law-abiding people. + But McGinty and his men were undisturbed by such reports. They were + numerous, resolute, and well armed. Their opponents were scattered + and powerless. It would all end, as it had done in the past, in + aimless talk and possibly in impotent arrests. So said McGinty, + McMurdo, and all the bolder spirits. + + It was a Saturday evening in May. Saturday was always the lodge + night, and McMurdo was leaving his house to attend it when Morris, + the weaker brother of the order, came to see him. His brow was + creased with care, and his kindly face was drawn and haggard. + + "Can I speak with you freely, Mr. McMurdo?" + + "Sure." + + "I can't forget that I spoke my heart to you once, and that you kept + it to yourself, even though the Boss himself came to ask you about + it." + + "What else could I do if you trusted me? It wasn't that I agreed with + what you said." + + "I know that well. But you are the one that I can speak to and be + safe. I've a secret here," he put his hand to his breast, "and it is + just burning the life out of me. I wish it had come to any one of you + but me. If I tell it, it will mean murder, for sure. If I don't, it + may bring the end of us all. God help me, but I am near out of my + wits over it!" + + McMurdo looked at the man earnestly. He was trembling in every limb. + He poured some whisky into a glass and handed it to him. "That's the + physic for the likes of you," said he. "Now let me hear of it." + + Morris drank, and his white face took a tinge of colour. "I can tell + it to you all in one sentence," said he. "There's a detective on our + trail." + + McMurdo stared at him in astonishment. "Why, man, you're crazy," he + said. "Isn't the place full of police and detectives and what harm + did they ever do us?" + + "No, no, it's no man of the district. As you say, we know them, and + it is little that they can do. But you've heard of Pinkerton's?" + + "I've read of some folk of that name." + + "Well, you can take it from me you've no show when they are on your + trail. It's not a take-it-or-miss-it government concern. It's a dead + earnest business proposition that's out for results and keeps out + till by hook or crook it gets them. If a Pinkerton man is deep in + this business, we are all destroyed." + + "We must kill him." + + "Ah, it's the first thought that came to you! So it will be up at the + lodge. Didn't I say to you that it would end in murder?" + + "Sure, what is murder? Isn't it common enough in these parts?" + + "It is, indeed; but it's not for me to point out the man that is to + be murdered. I'd never rest easy again. And yet it's our own necks + that may be at stake. In God's name what shall I do?" He rocked to + and fro in his agony of indecision. + + But his words had moved McMurdo deeply. It was easy to see that he + shared the other's opinion as to the danger, and the need for meeting + it. He gripped Morris's shoulder and shook him in his earnestness. + + "See here, man," he cried, and he almost screeched the words in his + excitement, "you won't gain anything by sitting keening like an old + wife at a wake. Let's have the facts. Who is the fellow? Where is he? + How did you hear of him? Why did you come to me?" + + "I came to you; for you are the one man that would advise me. I told + you that I had a store in the East before I came here. I left good + friends behind me, and one of them is in the telegraph service. + Here's a letter that I had from him yesterday. It's this part from + the top of the page. You can read it yourself." + + This was what McMurdo read: + + How are the Scowrers getting on in your parts? We read plenty of them + in the papers. Between you and me I expect to hear news from you + before long. Five big corporations and the two railroads have taken + the thing up in dead earnest. They mean it, and you can bet they'll + get there! They are right deep down into it. Pinkerton has taken hold + under their orders, and his best man, Birdy Edwards, is operating. + The thing has got to be stopped right now. + + "Now read the postscript." + + Of course, what I give you is what I learned in business; so it goes + no further. It's a queer cipher that you handle by the yard every day + and can get no meaning from. + + McMurdo sat in silence for some time, with the letter in his listless + hands. The mist had lifted for a moment, and there was the abyss + before him. + + "Does anyone else know of this?" he asked. + + "I have told no one else." + + "But this man--your friend--has he any other person that he would be + likely to write to?" + + "Well, I dare say he knows one or two more." + + "Of the lodge?" + + "It's likely enough." + + "I was asking because it is likely that he may have given some + description of this fellow Birdy Edwards--then we could get on his + trail." + + "Well, it's possible. But I should not think he knew him. He is just + telling me the news that came to him by way of business. How would he + know this Pinkerton man?" + + McMurdo gave a violent start. + + "By Gar!" he cried, "I've got him. What a fool I was not to know it. + Lord! but we're in luck! We will fix him before he can do any harm. + See here, Morris, will you leave this thing in my hands?" + + "Sure, if you will only take it off mine." + + "I'll do that. You can stand right back and let me run it. Even your + name need not be mentioned. I'll take it all on myself, as if it were + to me that this letter has come. Will that content you?" + + "It's just what I would ask." + + "Then leave it at that and keep your head shut. Now I'll get down to + the lodge, and we'll soon make old man Pinkerton sorry for himself." + + "You wouldn't kill this man?" + + "The less you know, Friend Morris, the easier your conscience will + be, and the better you will sleep. Ask no questions, and let these + things settle themselves. I have hold of it now." + + Morris shook his head sadly as he left. "I feel that his blood is on + my hands," he groaned. + + "Self-protection is no murder, anyhow," said McMurdo, smiling grimly. + "It's him or us. I guess this man would destroy us all if we left him + long in the valley. Why, Brother Morris, we'll have to elect you + Bodymaster yet; for you've surely saved the lodge." + + And yet it was clear from his actions that he thought more seriously + of this new intrusion than his words would show. It may have been his + guilty conscience, it may have been the reputation of the Pinkerton + organization, it may have been the knowledge that great, rich + corporations had set themselves the task of clearing out the + Scowrers; but, whatever his reason, his actions were those of a man + who is preparing for the worst. Every paper which would incriminate + him was destroyed before he left the house. After that he gave a long + sigh of satisfaction; for it seemed to him that he was safe. And yet + the danger must still have pressed somewhat upon him; for on his way + to the lodge he stopped at old man Shafter's. The house was forbidden + him; but when he tapped at the window Ettie came out to him. The + dancing Irish deviltry had gone from her lover's eyes. She read his + danger in his earnest face. + + "Something has happened!" she cried. "Oh, Jack, you are in danger!" + + "Sure, it is not very bad, my sweetheart. And yet it may be wise that + we make a move before it is worse." + + "Make a move?" + + "I promised you once that I would go some day. I think the time is + coming. I had news to-night, bad news, and I see trouble coming." + + "The police?" + + "Well, a Pinkerton. But, sure, you wouldn't know what that is, + acushla, nor what it may mean to the likes of me. I'm too deep in + this thing, and I may have to get out of it quick. You said you would + come with me if I went." + + "Oh, Jack, it would be the saving of you!" + + "I'm an honest man in some things, Ettie. I wouldn't hurt a hair of + your bonny head for all that the world can give, nor ever pull you + down one inch from the golden throne above the clouds where I always + see you. Would you trust me?" + + She put her hand in his without a word. "Well, then, listen to what I + say, and do as I order you, for indeed it's the only way for us. + Things are going to happen in this valley. I feel it in my bones. + There may be many of us that will have to look out for ourselves. I'm + one, anyhow. If I go, by day or night, it's you that must come with + me!" + + "I'd come after you, Jack." + + "No, no, you shall come with me. If this valley is closed to me and I + can never come back, how can I leave you behind, and me perhaps in + hiding from the police with never a chance of a message? It's with me + you must come. I know a good woman in the place I come from, and it's + there I'd leave you till we can get married. Will you come?" + + "Yes, Jack, I will come." + + "God bless you for your trust in me! It's a fiend out of hell that I + should be if I abused it. Now, mark you, Ettie, it will be just a + word to you, and when it reaches you, you will drop everything and + come right down to the waiting room at the depot and stay there till + I come for you." + + "Day or night, I'll come at the word, Jack." + + Somewhat eased in mind, now that his own preparations for escape had + been begun, McMurdo went on to the lodge. It had already assembled, + and only by complicated signs and counter-signs could he pass through + the outer guard and inner guard who close-tiled it. A buzz of + pleasure and welcome greeted him as he entered. The long room was + crowded, and through the haze of tobacco smoke he saw the tangled + black mane of the Bodymaster, the cruel, unfriendly features of + Baldwin, the vulture face of Harraway, the secretary, and a dozen + more who were among the leaders of the lodge. He rejoiced that they + should all be there to take counsel over his news. + + "Indeed, it's glad we are to see you, Brother!" cried the chairman. + "There's business here that wants a Solomon in judgment to set it + right." + + "It's Lander and Egan," explained his neighbour as he took his seat. + "They both claim the head money given by the lodge for the shooting + of old man Crabbe over at Stylestown, and who's to say which fired + the bullet?" + + McMurdo rose in his place and raised his hand. The expression of his + face froze the attention of the audience. There was a dead hush of + expectation. + + "Eminent Bodymaster," he said, in a solemn voice, "I claim urgency!" + + "Brother McMurdo claims urgency," said McGinty. "It's a claim that by + the rules of this lodge takes precedence. Now Brother, we attend + you." + + McMurdo took the letter from his pocket. + + "Eminent Bodymaster and Brethren," he said, "I am the bearer of ill + news this day; but it is better that it should be known and + discussed, than that a blow should fall upon us without warning which + would destroy us all. I have information that the most powerful and + richest organizations in this state have bound themselves together + for our destruction, and that at this very moment there is a + Pinkerton detective, one Birdy Edwards, at work in the valley + collecting the evidence which may put a rope round the necks of many + of us, and send every man in this room into a felon's cell. That is + the situation for the discussion of which I have made a claim of + urgency." + + There was a dead silence in the room. It was broken by the chairman. + + "What is your evidence for this, Brother McMurdo?" he asked. + + "It is in this letter which has come into my hands," said McMurdo. He + read the passage aloud. "It is a matter of honour with me that I can + give no further particulars about the letter, nor put it into your + hands; but I assure you that there is nothing else in it which can + affect the interests of the lodge. I put the case before you as it + has reached me." + + "Let me say, Mr. Chairman," said one of the older brethren, "that I + have heard of Birdy Edwards, and that he has the name of being the + best man in the Pinkerton service." + + "Does anyone know him by sight?" asked McGinty. + + "Yes," said McMurdo, "I do." + + There was a murmur of astonishment through the hall. + + "I believe we hold him in the hollow of our hands," he continued with + an exulting smile upon his face. "If we act quickly and wisely, we + can cut this thing short. If I have your confidence and your help, it + is little that we have to fear." + + "What have we to fear, anyhow? What can he know of our affairs?" + + "You might say so if all were as stanch as you, Councillor. But this + man has all the millions of the capitalists at his back. Do you think + there is no weaker brother among all our lodges that could not be + bought? He will get at our secrets--maybe has got them already. + There's only one sure cure." + + "That he never leaves the valley," said Baldwin. + + McMurdo nodded. "Good for you, Brother Baldwin," he said. "You and I + have had our differences, but you have said the true word to-night." + + "Where is he, then? Where shall we know him?" + + "Eminent Bodymaster," said McMurdo, earnestly, "I would put it to you + that this is too vital a thing for us to discuss in open lodge. God + forbid that I should throw a doubt on anyone here; but if so much as + a word of gossip got to the ears of this man, there would be an end + of any chance of our getting him. I would ask the lodge to choose a + trusty committee, Mr. Chairman--yourself, if I might suggest it, and + Brother Baldwin here, and five more. Then I can talk freely of what I + know and of what I advise should be done." + + The proposition was at once adopted, and the committee chosen. + Besides the chairman and Baldwin there were the vulture-faced + secretary, Harraway, Tiger Cormac, the brutal young assassin, Carter, + the treasurer, and the brothers Willaby, fearless and desperate men + who would stick at nothing. + + The usual revelry of the lodge was short and subdued: for there was a + cloud upon the men's spirits, and many there for the first time began + to see the cloud of avenging Law drifting up in that serene sky under + which they had dwelt so long. The horrors they had dealt out to + others had been so much a part of their settled lives that the + thought of retribution had become a remote one, and so seemed the + more startling now that it came so closely upon them. They broke up + early and left their leaders to their council. + + "Now, McMurdo!" said McGinty when they were alone. The seven men sat + frozen in their seats. + + "I said just now that I knew Birdy Edwards," McMurdo explained. "I + need not tell you that he is not here under that name. He's a brave + man, but not a crazy one. He passes under the name of Steve Wilson, + and he is lodging at Hobson's Patch." + + "How do you know this?" + + "Because I fell into talk with him. I thought little of it at the + time, nor would have given it a second thought but for this letter; + but now I'm sure it's the man. I met him on the cars when I went down + the line on Wednesday--a hard case if ever there was one. He said he + was a reporter. I believed it for the moment. Wanted to know all he + could about the Scowrers and what he called 'the outrages' for a New + York paper. Asked me every kind of question so as to get something. + You bet I was giving nothing away. 'I'd pay for it and pay well,' + said he, 'if I could get some stuff that would suit my editor.' I + said what I thought would please him best, and he handed me a + twenty-dollar bill for my information. 'There's ten times that for + you,' said he, 'if you can find me all that I want.'" + + "What did you tell him, then?" + + "Any stuff I could make up." + + "How do you know he wasn't a newspaper man?" + + "I'll tell you. He got out at Hobson's Patch, and so did I. I chanced + into the telegraph bureau, and he was leaving it. + + "'See here,' said the operator after he'd gone out, 'I guess we + should charge double rates for this.'--'I guess you should,' said I. + He had filled the form with stuff that might have been Chinese, for + all we could make of it. 'He fires a sheet of this off every day,' + said the clerk. 'Yes,' said I; 'it's special news for his paper, and + he's scared that the others should tap it.' That was what the + operator thought and what I thought at the time; but I think + differently now." + + "By Gar! I believe you are right," said McGinty. "But what do you + allow that we should do about it?" + + "Why not go right down now and fix him?" someone suggested. + + "Ay, the sooner the better." + + "I'd start this next minute if I knew where we could find him," said + McMurdo. "He's in Hobson's Patch; but I don't know the house. I've + got a plan, though, if you'll only take my advice." + + "Well, what is it?" + + "I'll go to the Patch to-morrow morning. I'll find him through the + operator. He can locate him, I guess. Well, then I'll tell him that + I'm a Freeman myself. I'll offer him all the secrets of the lodge for + a price. You bet he'll tumble to it. I'll tell him the papers are at + my house, and that it's as much as my life would be worth to let him + come while folk were about. He'll see that that's horse sense. Let + him come at ten o'clock at night, and he shall see everything. That + will fetch him sure." + + "Well?" + + "You can plan the rest for yourselves. Widow MacNamara's is a lonely + house. She's as true as steel and as deaf as a post. There's only + Scanlan and me in the house. If I get his promise--and I'll let you + know if I do--I'd have the whole seven of you come to me by nine + o'clock. We'll get him in. If ever he gets out alive--well, he can + talk of Birdy Edwards's luck for the rest of his days!" + + "There's going to be a vacancy at Pinkerton's or I'm mistaken. Leave + it at that, McMurdo. At nine to-morrow we'll be with you. You once + get the door shut behind him, and you can leave the rest with us." + + + + + + CHAPTER VII + The Trapping of Birdy Edwards + + + As McMurdo had said, the house in which he lived was a lonely one and + very well suited for such a crime as they had planned. It was on the + extreme fringe of the town and stood well back from the road. In any + other case the conspirators would have simply called out their man, + as they had many a time before, and emptied their pistols into his + body; but in this instance it was very necessary to find out how much + he knew, how he knew it, and what had been passed on to his + employers. + + It was possible that they were already too late and that the work had + been done. If that was indeed so, they could at least have their + revenge upon the man who had done it. But they were hopeful that + nothing of great importance had yet come to the detective's + knowledge, as otherwise, they argued, he would not have troubled to + write down and forward such trivial information as McMurdo claimed to + have given him. However, all this they would learn from his own lips. + Once in their power, they would find a way to make him speak. It was + not the first time that they had handled an unwilling witness. + + McMurdo went to Hobson's Patch as agreed. The police seemed to take + particular interest in him that morning, and Captain Marvin--he who + had claimed the old acquaintance with him at Chicago--actually + addressed him as he waited at the station. McMurdo turned away and + refused to speak with him. He was back from his mission in the + afternoon, and saw McGinty at the Union House. + + "He is coming," he said. + + "Good!" said McGinty. The giant was in his shirt sleeves, with chains + and seals gleaming athwart his ample waistcoat and a diamond + twinkling through the fringe of his bristling beard. Drink and + politics had made the Boss a very rich as well as powerful man. The + more terrible, therefore, seemed that glimpse of the prison or the + gallows which had risen before him the night before. + + "Do you reckon he knows much?" he asked anxiously. + + McMurdo shook his head gloomily. "He's been here some time--six weeks + at the least. I guess he didn't come into these parts to look at the + prospect. If he has been working among us all that time with the + railroad money at his back, I should expect that he has got results, + and that he has passed them on." + + "There's not a weak man in the lodge," cried McGinty. "True as steel, + every man of them. And yet, by the Lord! there is that skunk Morris. + What about him? If any man gives us away, it would be he. I've a mind + to send a couple of the boys round before evening to give him a + beating up and see what they can get from him." + + "Well, there would be no harm in that," McMurdo answered. "I won't + deny that I have a liking for Morris and would be sorry to see him + come to harm. He has spoken to me once or twice over lodge matters, + and though he may not see them the same as you or I, he never seemed + the sort that squeals. But still it is not for me to stand between + him and you." + + "I'll fix the old devil!" said McGinty with an oath. "I've had my eye + on him this year past." + + "Well, you know best about that," McMurdo answered. "But whatever you + do must be to-morrow; for we must lie low until the Pinkerton affair + is settled up. We can't afford to set the police buzzing, to-day of + all days." + + "True for you," said McGinty. "And we'll learn from Birdy Edwards + himself where he got his news if we have to cut his heart out first. + Did he seem to scent a trap?" + + McMurdo laughed. "I guess I took him on his weak point," he said. "If + he could get on a good trail of the Scowrers, he's ready to follow it + into hell. I took his money," McMurdo grinned as he produced a wad of + dollar notes, "and as much more when he has seen all my papers." + + "What papers?" + + "Well, there are no papers. But I filled him up about constitutions + and books of rules and forms of membership. He expects to get right + down to the end of everything before he leaves." + + "Faith, he's right there," said McGinty grimly. "Didn't he ask you + why you didn't bring him the papers?" + + "As if I would carry such things, and me a suspected man, and Captain + Marvin after speaking to me this very day at the depot!" + + "Ay, I heard of that," said McGinty. "I guess the heavy end of this + business is coming on to you. We could put him down an old shaft when + we've done with him; but however we work it we can't get past the man + living at Hobson's Patch and you being there to-day." + + McMurdo shrugged his shoulders. "If we handle it right, they can + never prove the killing," said he. "No one can see him come to the + house after dark, and I'll lay to it that no one will see him go. Now + see here, Councillor, I'll show you my plan and I'll ask you to fit + the others into it. You will all come in good time. Very well. He + comes at ten. He is to tap three times, and me to open the door for + him. Then I'll get behind him and shut it. He's our man then." + + "That's all easy and plain." + + "Yes; but the next step wants considering. He's a hard proposition. + He's heavily armed. I've fooled him proper, and yet he is likely to + be on his guard. Suppose I show him right into a room with seven men + in it where he expected to find me alone. There is going to be + shooting, and somebody is going to be hurt." + + "That's so." + + "And the noise is going to bring every damned copper in the township + on top of it." + + "I guess you are right." + + "This is how I should work it. You will all be in the big room--same + as you saw when you had a chat with me. I'll open the door for him, + show him into the parlour beside the door, and leave him there while + I get the papers. That will give me the chance of telling you how + things are shaping. Then I will go back to him with some faked + papers. As he is reading them I will jump for him and get my grip on + his pistol arm. You'll hear me call and in you will rush. The quicker + the better; for he is as strong a man as I, and I may have more than + I can manage. But I allow that I can hold him till you come." + + "It's a good plan," said McGinty. "The lodge will owe you a debt for + this. I guess when I move out of the chair I can put a name to the + man that's coming after me." + + "Sure, Councillor, I am little more than a recruit," said McMurdo; + but his face showed what he thought of the great man's compliment. + + When he had returned home he made his own preparations for the grim + evening in front of him. First he cleaned, oiled, and loaded his + Smith & Wesson revolver. Then he surveyed the room in which the + detective was to be trapped. It was a large apartment, with a long + deal table in the centre, and the big stove at one side. At each of + the other sides were windows. There were no shutters on these: only + light curtains which drew across. McMurdo examined these attentively. + No doubt it must have struck him that the apartment was very exposed + for so secret a meeting. Yet its distance from the road made it of + less consequence. Finally he discussed the matter with his fellow + lodger. Scanlan, though a Scowrer, was an inoffensive little man who + was too weak to stand against the opinion of his comrades, but was + secretly horrified by the deeds of blood at which he had sometimes + been forced to assist. McMurdo told him shortly what was intended. + + "And if I were you, Mike Scanlan, I would take a night off and keep + clear of it. There will be bloody work here before morning." + + "Well, indeed then, Mac," Scanlan answered. "It's not the will but + the nerve that is wanting in me. When I saw Manager Dunn go down at + the colliery yonder it was just more than I could stand. I'm not made + for it, same as you or McGinty. If the lodge will think none the + worse of me, I'll just do as you advise and leave you to yourselves + for the evening." + + The men came in good time as arranged. They were outwardly + respectable citizens, well clad and cleanly; but a judge of faces + would have read little hope for Birdy Edwards in those hard mouths + and remorseless eyes. There was not a man in the room whose hands had + not been reddened a dozen times before. They were as hardened to + human murder as a butcher to sheep. + + Foremost, of course, both in appearance and in guilt, was the + formidable Boss. Harraway, the secretary, was a lean, bitter man with + a long, scraggy neck and nervous, jerky limbs, a man of incorruptible + fidelity where the finances of the order were concerned, and with no + notion of justice or honesty to anyone beyond. The treasurer, Carter, + was a middle-aged man, with an impassive, rather sulky expression, + and a yellow parchment skin. He was a capable organizer, and the + actual details of nearly every outrage had sprung from his plotting + brain. The two Willabys were men of action, tall, lithe young fellows + with determined faces, while their companion, Tiger Cormac, a heavy, + dark youth, was feared even by his own comrades for the ferocity of + his disposition. These were the men who assembled that night under + the roof of McMurdo for the killing of the Pinkerton detective. + + Their host had placed whisky upon the table, and they had hastened to + prime themselves for the work before them. Baldwin and Cormac were + already half-drunk, and the liquor had brought out all their + ferocity. Cormac placed his hands on the stove for an instant--it had + been lighted, for the nights were still cold. + + "That will do," said he, with an oath. + + "Ay," said Baldwin, catching his meaning. "If he is strapped to that, + we will have the truth out of him." + + "We'll have the truth out of him, never fear," said McMurdo. He had + nerves of steel, this man; for though the whole weight of the affair + was on him his manner was as cool and unconcerned as ever. The others + marked it and applauded. + + "You are the one to handle him," said the Boss approvingly. "Not a + warning will he get till your hand is on his throat. It's a pity + there are no shutters to your windows." + + McMurdo went from one to the other and drew the curtains tighter. + "Sure no one can spy upon us now. It's close upon the hour." + + "Maybe he won't come. Maybe he'll get a sniff of danger," said the + secretary. + + "He'll come, never fear," McMurdo answered. "He is as eager to come + as you can be to see him. Hark to that!" + + They all sat like wax figures, some with their glasses arrested + halfway to their lips. Three loud knocks had sounded at the door. + + "Hush!" McMurdo raised his hand in caution. An exulting glance went + round the circle, and hands were laid upon hidden weapons. + + "Not a sound, for your lives!" McMurdo whispered, as he went from the + room, closing the door carefully behind him. + + With strained ears the murderers waited. They counted the steps of + their comrade down the passage. Then they heard him open the outer + door. There were a few words as of greeting. Then they were aware of + a strange step inside and of an unfamiliar voice. An instant later + came the slam of the door and the turning of the key in the lock. + Their prey was safe within the trap. Tiger Cormac laughed horribly, + and Boss McGinty clapped his great hand across his mouth. + + "Be quiet, you fool!" he whispered. "You'll be the undoing of us + yet!" + + There was a mutter of conversation from the next room. It seemed + interminable. Then the door opened, and McMurdo appeared, his finger + upon his lip. + + He came to the end of the table and looked round at them. A subtle + change had come over him. His manner was as of one who has great work + to do. His face had set into granite firmness. His eyes shone with a + fierce excitement behind his spectacles. He had become a visible + leader of men. They stared at him with eager interest; but he said + nothing. Still with the same singular gaze he looked from man to man. + + "Well!" cried Boss McGinty at last. "Is he here? Is Birdy Edwards + here?" + + "Yes," McMurdo answered slowly. "Birdy Edwards is here. I am Birdy + Edwards!" + + There were ten seconds after that brief speech during which the room + might have been empty, so profound was the silence. The hissing of a + kettle upon the stove rose sharp and strident to the ear. Seven white + faces, all turned upward to this man who dominated them, were set + motionless with utter terror. Then, with a sudden shivering of glass, + a bristle of glistening rifle barrels broke through each window, + while the curtains were torn from their hangings. + + At the sight Boss McGinty gave the roar of a wounded bear and plunged + for the half-opened door. A levelled revolver met him there with the + stern blue eyes of Captain Marvin of the Mine Police gleaming behind + the sights. The Boss recoiled and fell back into his chair. + + "You're safer there, Councillor," said the man whom they had known as + McMurdo. "And you, Baldwin, if you don't take your hand off your + pistol, you'll cheat the hangman yet. Pull it out, or by the Lord + that made me--There, that will do. There are forty armed men round + this house, and you can figure it out for yourself what chance you + have. Take their pistols, Marvin!" + + There was no possible resistance under the menace of those rifles. + The men were disarmed. Sulky, sheepish, and amazed, they still sat + round the table. + + "I'd like to say a word to you before we separate," said the man who + had trapped them. "I guess we may not meet again until you see me on + the stand in the courthouse. I'll give you something to think over + between now and then. You know me now for what I am. At last I can + put my cards on the table. I am Birdy Edwards of Pinkerton's. I was + chosen to break up your gang. I had a hard and dangerous game to + play. Not a soul, not one soul, not my nearest and dearest, knew that + I was playing it. Only Captain Marvin here and my employers knew + that. But it's over to-night, thank God, and I am the winner!" + + The seven pale, rigid faces looked up at him. There was unappeasable + hatred in their eyes. He read the relentless threat. + + "Maybe you think that the game is not over yet. Well, I take my + chance of that. Anyhow, some of you will take no further hand, and + there are sixty more besides yourselves that will see a jail this + night. I'll tell you this, that when I was put upon this job I never + believed there was such a society as yours. I thought it was paper + talk, and that I would prove it so. They told me it was to do with + the Freemen; so I went to Chicago and was made one. Then I was surer + than ever that it was just paper talk; for I found no harm in the + society, but a deal of good. + + "Still, I had to carry out my job, and I came to the coal valleys. + When I reached this place I learned that I was wrong and that it + wasn't a dime novel after all. So I stayed to look after it. I never + killed a man in Chicago. I never minted a dollar in my life. Those I + gave you were as good as any others; but I never spent money better. + But I knew the way into your good wishes and so I pretended to you + that the law was after me. It all worked just as I thought. + + "So I joined your infernal lodge, and I took my share in your + councils. Maybe they will say that I was as bad as you. They can say + what they like, so long as I get you. But what is the truth? The + night I joined you beat up old man Stanger. I could not warn him, for + there was no time; but I held your hand, Baldwin, when you would have + killed him. If ever I have suggested things, so as to keep my place + among you, they were things which I knew I could prevent. I could not + save Dunn and Menzies, for I did not know enough; but I will see that + their murderers are hanged. I gave Chester Wilcox warning, so that + when I blew his house in he and his folk were in hiding. There was + many a crime that I could not stop; but if you look back and think + how often your man came home the other road, or was down in town when + you went for him, or stayed indoors when you thought he would come + out, you'll see my work." + + "You blasted traitor!" hissed McGinty through his closed teeth. + + "Ay, John McGinty, you may call me that if it eases your smart. You + and your like have been the enemy of God and man in these parts. It + took a man to get between you and the poor devils of men and women + that you held under your grip. There was just one way of doing it, + and I did it. You call me a traitor; but I guess there's many a + thousand will call me a deliverer that went down into hell to save + them. I've had three months of it. I wouldn't have three such months + again if they let me loose in the treasury at Washington for it. I + had to stay till I had it all, every man and every secret right here + in this hand. I'd have waited a little longer if it hadn't come to my + knowledge that my secret was coming out. A letter had come into the + town that would have set you wise to it all. Then I had to act and + act quickly. + + "I've nothing more to say to you, except that when my time comes I'll + die the easier when I think of the work I have done in this valley. + Now, Marvin, I'll keep you no more. Take them in and get it over." + + There is little more to tell. Scanlan had been given a sealed note to + be left at the address of Miss Ettie Shafter, a mission which he had + accepted with a wink and a knowing smile. In the early hours of the + morning a beautiful woman and a much muffled man boarded a special + train which had been sent by the railroad company, and made a swift, + unbroken journey out of the land of danger. It was the last time that + ever either Ettie or her lover set foot in the Valley of Fear. Ten + days later they were married in Chicago, with old Jacob Shafter as + witness of the wedding. + + The trial of the Scowrers was held far from the place where their + adherents might have terrified the guardians of the law. In vain they + struggled. In vain the money of the lodge--money squeezed by + blackmail out of the whole countryside--was spent like water in the + attempt to save them. That cold, clear, unimpassioned statement from + one who knew every detail of their lives, their organization, and + their crimes was unshaken by all the wiles of their defenders. At + last after so many years they were broken and scattered. The cloud + was lifted forever from the valley. + + McGinty met his fate upon the scaffold, cringing and whining when the + last hour came. Eight of his chief followers shared his fate. + Fifty-odd had various degrees of imprisonment. The work of Birdy + Edwards was complete. + + And yet, as he had guessed, the game was not over yet. There was + another hand to be played, and yet another and another. Ted Baldwin, + for one, had escaped the scaffold; so had the Willabys; so had + several others of the fiercest spirits of the gang. For ten years + they were out of the world, and then came a day when they were free + once more--a day which Edwards, who knew his men, was very sure would + be an end of his life of peace. They had sworn an oath on all that + they thought holy to have his blood as a vengeance for their + comrades. And well they strove to keep their vow! + + From Chicago he was chased, after two attempts so near success that + it was sure that the third would get him. From Chicago he went under + a changed name to California, and it was there that the light went + for a time out of his life when Ettie Edwards died. Once again he was + nearly killed, and once again under the name of Douglas he worked in + a lonely canyon, where with an English partner named Barker he + amassed a fortune. At last there came a warning to him that the + bloodhounds were on his track once more, and he cleared--only just in + time--for England. And thence came the John Douglas who for a second + time married a worthy mate, and lived for five years as a Sussex + county gentleman, a life which ended with the strange happenings of + which we have heard. + + + + + + CHAPTER VIII + Epilogue + + + The police trial had passed, in which the case of John Douglas was + referred to a higher court. So had the Quarter Sessions, at which he + was acquitted as having acted in self-defense. + + "Get him out of England at any cost," wrote Holmes to the wife. + "There are forces here which may be more dangerous than those he has + escaped. There is no safety for your husband in England." + + Two months had gone by, and the case had to some extent passed from + our minds. Then one morning there came an enigmatic note slipped into + our letter box. "Dear me, Mr. Holmes. Dear me!" said this singular + epistle. There was neither superscription nor signature. I laughed at + the quaint message; but Holmes showed unwonted seriousness. + + "Deviltry, Watson!" he remarked, and sat long with a clouded brow. + + Late last night Mrs. Hudson, our landlady, brought up a message that + a gentleman wished to see Holmes, and that the matter was of the + utmost importance. Close at the heels of his messenger came Cecil + Barker, our friend of the moated Manor House. His face was drawn and + haggard. + + "I've had bad news--terrible news, Mr. Holmes," said he. + + "I feared as much," said Holmes. + + "You have not had a cable, have you?" + + "I have had a note from someone who has." + + "It's poor Douglas. They tell me his name is Edwards; but he will + always be Jack Douglas of Benito Canyon to me. I told you that they + started together for South Africa in the Palmyra three weeks ago." + + "Exactly." + + "The ship reached Cape Town last night. I received this cable from + Mrs. Douglas this morning:-- + + "Jack has been lost overboard in gale off St. Helena. No one knows + how accident occurred. + "Ivy Douglas." + + "Ha! It came like that, did it?" said Holmes, thoughtfully. "Well, + I've no doubt it was well stage-managed." + + "You mean that you think there was no accident?" + + "None in the world." + + "He was murdered?" + + "Surely!" + + "So I think also. These infernal Scowrers, this cursed vindictive + nest of criminals--" + + "No, no, my good sir," said Holmes. "There is a master hand here. It + is no case of sawed-off shot-guns and clumsy six-shooters. You can + tell an old master by the sweep of his brush. I can tell a Moriarty + when I see one. This crime is from London, not from America." + + "But for what motive?" + + "Because it is done by a man who cannot afford to fail--one whose + whole unique position depends upon the fact that all he does must + succeed. A great brain and a huge organization have been turned to + the extinction of one man. It is crushing the nut with the hammer--an + absurd extravagance of energy--but the nut is very effectually + crushed all the same." + + "How came this man to have anything to do with it?" + + "I can only say that the first word that ever came to us of the + business was from one of his lieutenants. These Americans were well + advised. Having an English job to do, they took into partnership, as + any foreign criminal could do, this great consultant in crime. From + that moment their man was doomed. At first he would content himself + by using his machinery in order to find their victim. Then he would + indicate how the matter might be treated. Finally, when he read in + the reports of the failure of this agent, he would step in himself + with a master touch. You heard me warn this man at Birlstone Manor + House that the coming danger was greater than the past. Was I right?" + + Barker beat his head with his clenched fist in his impotent anger. + + "Do you tell me that we have to sit down under this? Do you say that + no one can ever get level with this king-devil?" + + "No, I don't say that," said Holmes, and his eyes seemed to be + looking far into the future. "I don't say that he can't be beat. But + you must give me time--you must give me time!" + + We all sat in silence for some minutes, while those fateful eyes + still strained to pierce the veil. + + + + + + + HIS LAST BOW + + + + + + PREFACE + + The friends of Mr. Sherlock Holmes will be glad to learn that he is + still alive and well, though somewhat crippled by occasional attacks + of rheumatism. He has, for many years, lived in a small farm upon the + downs five miles from Eastbourne, where his time is divided between + philosophy and agriculture. During this period of rest he has refused + the most princely offers to take up various cases, having determined + that his retirement was a permanent one. The approach of the German + war caused him, however, to lay his remarkable combination of + intellectual and practical activity at the disposal of the + government, with historical results which are recounted in His Last + Bow. Several previous experiences which have lain long in my + portfolio have been added to His Last Bow so as to complete the + volume. + + + John H. Watson, M. D. + + + + + + + THE ADVENTURE OF WISTERIA LODGE + + + + + + Table of contents + The Singular Experience of Mr. John Scott Eccles + The Tiger of San Pedro + + + + + + + + + + + + + + + + CHAPTER I + The Singular Experience of Mr. John Scott Eccles + + + I find it recorded in my notebook that it was a bleak and windy day + towards the end of March in the year 1892. Holmes had received a + telegram while we sat at our lunch, and he had scribbled a reply. He + made no remark, but the matter remained in his thoughts, for he stood + in front of the fire afterwards with a thoughtful face, smoking his + pipe, and casting an occasional glance at the message. Suddenly he + turned upon me with a mischievous twinkle in his eyes. + + "I suppose, Watson, we must look upon you as a man of letters," said + he. "How do you define the word 'grotesque'?" + + "Strange--remarkable," I suggested. + + He shook his head at my definition. + + "There is surely something more than that," said he; "some underlying + suggestion of the tragic and the terrible. If you cast your mind + back to some of those narratives with which you have afflicted a + long-suffering public, you will recognize how often the grotesque has + deepened into the criminal. Think of that little affair of the + red-headed men. That was grotesque enough in the outset, and yet it + ended in a desperate attempt at robbery. Or, again, there was that + most grotesque affair of the five orange pips, which let straight to + a murderous conspiracy. The word puts me on the alert." + + "Have you it there?" I asked. + + He read the telegram aloud. + + "Have just had most incredible and grotesque experience. May I + consult you? + "Scott Eccles, + "Post Office, Charing Cross." + + "Man or woman?" I asked. + + "Oh, man, of course. No woman would ever send a reply-paid telegram. + She would have come." + + "Will you see him?" + + "My dear Watson, you know how bored I have been since we locked up + Colonel Carruthers. My mind is like a racing engine, tearing itself + to pieces because it is not connected up with the work for which it + was built. Life is commonplace, the papers are sterile; audacity and + romance seem to have passed forever from the criminal world. Can you + ask me, then, whether I am ready to look into any new problem, + however trivial it may prove? But here, unless I am mistaken, is our + client." + + A measured step was heard upon the stairs, and a moment later a + stout, tall, gray-whiskered and solemnly respectable person was + ushered into the room. His life history was written in his heavy + features and pompous manner. From his spats to his gold-rimmed + spectacles he was a Conservative, a churchman, a good citizen, + orthodox and conventional to the last degree. But some amazing + experience had disturbed his native composure and left its traces in + his bristling hair, his flushed, angry cheeks, and his flurried, + excited manner. He plunged instantly into his business. + + "I have had a most singular and unpleasant experience, Mr. Holmes," + said he. "Never in my life have I been placed in such a situation. It + is most improper--most outrageous. I must insist upon some + explanation." He swelled and puffed in his anger. + + "Pray sit down, Mr. Scott Eccles," said Holmes in a soothing voice. + "May I ask, in the first place, why you came to me at all?" + + "Well, sir, it did not appear to be a matter which concerned the + police, and yet, when you have heard the facts, you must admit that I + could not leave it where it was. Private detectives are a class with + whom I have absolutely no sympathy, but none the less, having heard + your name--" + + "Quite so. But, in the second place, why did you not come at once?" + + "What do you mean?" + + Holmes glanced at his watch. + + "It is a quarter-past two," he said. "Your telegram was dispatched + about one. But no one can glance at your toilet and attire without + seeing that your disturbance dates from the moment of your waking." + + Our client smoothed down his unbrushed hair and felt his unshaven + chin. + + "You are right, Mr. Holmes. I never gave a thought to my toilet. I + was only too glad to get out of such a house. But I have been running + round making inquiries before I came to you. I went to the house + agents, you know, and they said that Mr. Garcia's rent was paid up + all right and that everything was in order at Wisteria Lodge." + + "Come, come, sir," said Holmes, laughing. "You are like my friend, + Dr. Watson, who has a bad habit of telling his stories wrong end + foremost. Please arrange your thoughts and let me know, in their due + sequence, exactly what those events are which have sent you out + unbrushed and unkempt, with dress boots and waistcoat buttoned awry, + in search of advice and assistance." + + Our client looked down with a rueful face at his own unconventional + appearance. + + "I'm sure it must look very bad, Mr. Holmes, and I am not aware that + in my whole life such a thing has ever happened before. But will tell + you the whole queer business, and when I have done so you will admit, + I am sure, that there has been enough to excuse me." + + But his narrative was nipped in the bud. There was a bustle outside, + and Mrs. Hudson opened the door to usher in two robust and + official-looking individuals, one of whom was well known to us as + Inspector Gregson of Scotland Yard, an energetic, gallant, and, + within his limitations, a capable officer. He shook hands with Holmes + and introduced his comrade as Inspector Baynes, of the Surrey + Constabulary. + + "We are hunting together, Mr. Holmes, and our trail lay in this + direction." He turned his bulldog eyes upon our visitor. "Are you Mr. + John Scott Eccles, of Popham House, Lee?" + + "I am." + + "We have been following you about all the morning." + + "You traced him through the telegram, no doubt," said Holmes. + + "Exactly, Mr. Holmes. We picked up the scent at Charing Cross + Post-Office and came on here." + + "But why do you follow me? What do you want?" + + "We wish a statement, Mr. Scott Eccles, as to the events which let up + to the death last night of Mr. Aloysius Garcia, of Wisteria Lodge, + near Esher." + + Our client had sat up with staring eyes and every tinge of colour + struck from his astonished face. + + "Dead? Did you say he was dead?" + + "Yes, sir, he is dead." + + "But how? An accident?" + + "Murder, if ever there was one upon earth." + + "Good God! This is awful! You don't mean--you don't mean that I am + suspected?" + + "A letter of yours was found in the dead man's pocket, and we know by + it that you had planned to pass last night at his house." + + "So I did." + + "Oh, you did, did you?" + + Out came the official notebook. + + "Wait a bit, Gregson," said Sherlock Holmes. "All you desire is a + plain statement, is it not?" + + "And it is my duty to warn Mr. Scott Eccles that it may be used + against him." + + "Mr. Eccles was going to tell us about it when you entered the room. + I think, Watson, a brandy and soda would do him no harm. Now, sir, I + suggest that you take no notice of this addition to your audience, + and that you proceed with your narrative exactly as you would have + done had you never been interrupted." + + Our visitor had gulped off the brandy and the colour had returned to + his face. With a dubious glance at the inspector's notebook, he + plunged at once into his extraordinary statement. + + "I am a bachelor," said he, "and being of a sociable turn I cultivate + a large number of friends. Among these are the family of a retired + brewer called Melville, living at Abermarle Mansion, Kensington. It + was at his table that I met some weeks ago a young fellow named + Garcia. He was, I understood, of Spanish descent and connected in + some way with the embassy. He spoke perfect English, was pleasing in + his manners, and as good-looking a man as ever I saw in my life. + + "In some way we struck up quite a friendship, this young fellow and + I. He seemed to take a fancy to me from the first, and within two + days of our meeting he came to see me at Lee. One thing led to + another, and it ended in his inviting me out to spend a few days at + his house, Wisteria Lodge, between Esher and Oxshott. Yesterday + evening I went to Esher to fulfil this engagement. + + "He had described his household to me before I went there. He lived + with a faithful servant, a countryman of his own, who looked after + all his needs. This fellow could speak English and did his + housekeeping for him. Then there was a wonderful cook, he said, a + half-breed whom he had picked up in his travels, who could serve an + excellent dinner. I remember that he remarked what a queer household + it was to find in the heart of Surrey, and that I agreed with him, + though it has proved a good deal queerer than I thought. + + "I drove to the place--about two miles on the south side of Esher. + The house was a fair-sized one, standing back from the road, with a + curving drive which was banked with high evergreen shrubs. It was an + old, tumbledown building in a crazy state of disrepair. When the trap + pulled up on the grass-grown drive in front of the blotched and + weather-stained door, I had doubts as to my wisdom in visiting a man + whom I knew so slightly. He opened the door himself, however, and + greeted me with a great show of cordiality. I was handed over to the + manservant, a melancholy, swarthy individual, who led the way, my bag + in his hand, to my bedroom. The whole place was depressing. Our + dinner was tête-à-tête, and though my host did his best to be + entertaining, his thoughts seemed to continually wander, and he + talked so vaguely and wildly that I could hardly understand him. He + continually drummed his fingers on the table, gnawed his nails, and + gave other signs of nervous impatience. The dinner itself was neither + well served nor well cooked, and the gloomy presence of the taciturn + servant did not help to enliven us. I can assure you that many times + in the course of the evening I wished that I could invent some excuse + which would take me back to Lee. + + "One thing comes back to my memory which may have a bearing upon the + business that you two gentlemen are investigating. I thought nothing + of it at the time. Near the end of dinner a note was handed in by the + servant. I noticed that after my host had read it he seemed even more + distrait and strange than before. He gave up all pretence at + conversation and sat, smoking endless cigarettes, lost in his own + thoughts, but he made no remark as to the contents. About eleven I + was glad to go to bed. Some time later Garcia looked in at my + door--the room was dark at the time--and asked me if I had rung. I + said that I had not. He apologized for having disturbed me so late, + saying that it was nearly one o'clock. I dropped off after this and + slept soundly all night. + + "And now I come to the amazing part of my tale. When I woke it was + broad daylight. I glanced at my watch, and the time was nearly nine. + I had particularly asked to be called at eight, so I was very much + astonished at this forgetfulness. I sprang up and rang for the + servant. There was no response. I rang again and again, with the same + result. Then I came to the conclusion that the bell was out of order. + I huddled on my clothes and hurried downstairs in an exceedingly bad + temper to order some hot water. You can imagine my surprise when I + found that there was no one there. I shouted in the hall. There was + no answer. Then I ran from room to room. All were deserted. My host + had shown me which was his bedroom the night before, so I knocked at + the door. No reply. I turned the handle and walked in. The room was + empty, and the bed had never been slept in. He had gone with the + rest. The foreign host, the foreign footman, the foreign cook, all + had vanished in the night! That was the end of my visit to Wisteria + Lodge." + + Sherlock Holmes was rubbing his hands and chuckling as he added this + bizarre incident to his collection of strange episodes. + + "Your experience is, so far as I know, perfectly unique," said he. + "May I ask, sir, what you did then?" + + "I was furious. My first idea was that I had been the victim of some + absurd practical joke. I packed my things, banged the hall door + behind me, and set off for Esher, with my bag in my hand. I called at + Allan Brothers', the chief land agents in the village, and found that + it was from this firm that the villa had been rented. It struck me + that the whole proceeding could hardly be for the purpose of making a + fool of me, and that the main objet must be to get out of the rent. + It is late in March, so quarter-day is at hand. But this theory would + not work. The agent was obliged to me for my warning, but told me + that the rent had been paid in advance. Then I made my way to town + and called at the Spanish embassy. The man was unknown there. After + this I went to see Melville, at whose house I had first met Garcia, + but I found that he really knew rather less about him than I did. + Finally when I got your reply to my wire I came out to you, since I + gather that you are a person who gives advice in difficult cases. But + now, Mr. Inspector, I understand, from what you said when you entered + the room, that you can carry the story on, and that some tragedy had + occurred. I can assure you that every word I have said is the truth, + and that, outside of what I have told you, I know absolutely nothing + about the fate of this man. My only desire is to help the law in + every possible way." + + "I am sure of it, Mr. Scott Eccles--I am sure of it," said Inspector + Gregson in a very amiable tone. "I am bound to say that everything + which you have said agrees very closely with the facts as they have + come to our notice. For example, there was that note which arrived + during dinner. Did you chance to observe what became of it?" + + "Yes, I did. Garcia rolled it up and threw it into the fire." + + "What do you say to that, Mr. Baynes?" + + The country detective was a stout, puffy, red man, whose face was + only redeemed from grossness by two extraordinarily bright eyes, + almost hidden behind the heavy creases of cheek and brow. With a slow + smile he drew a folded and discoloured scrap of paper from his + pocket. + + "It was a dog-grate, Mr. Holmes, and he overpitched it. I picked this + out unburned from the back of it." + + Holmes smiled his appreciation. + + "You must have examined the house very carefully to find a single + pellet of paper." + + "I did, Mr. Holmes. It's my way. Shall I read it, Mr. Gregson?" + + The Londoner nodded. + + "The note is written upon ordinary cream-laid paper without + watermark. It is a quarter-sheet. The paper is cut off in two snips + with a short-bladed scissors. It has been folded over three times and + sealed with purple wax, put on hurriedly and pressed down with some + flat oval object. It is addressed to Mr. Garcia, Wisteria Lodge. It + says: + + "Our own colours, green and white. Green open, white shut. Main + stair, first corridor, seventh right, green baize. Godspeed. + D. + + "It is a woman's writing, done with a sharp-pointed pen, but the + address is either done with another pen or by someone else. It is + thicker and bolder, as you see." + + "A very remarkable note," said Holmes, glancing it over. "I must + compliment you, Mr. Baynes, upon your attention to detail in your + examination of it. A few trifling points might perhaps be added. The + oval seal is undoubtedly a plain sleeve-link--what else is of such a + shape? The scissors were bent nail scissors. Short as the two snips + are, you can distinctly see the same slight curve in each." + + The country detective chuckled. + + "I thought I had squeezed all the juice out of it, but I see there + was a little over," he said. "I'm bound to say that I make nothing of + the note except that there was something on hand, and that a woman, + as usual, was at the bottom of it." + + Mr. Scott Eccles had fidgeted in his seat during this conversation. + + "I am glad you found the note, since it corroborates my story," said + he. "But I beg to point out that I have not yet heard what has + happened to Mr. Garcia, nor what has become of his household." + + "As to Garcia," said Gregson, "that is easily answered. He was found + dead this morning upon Oxshott Common, nearly a mile from his home. + His head had been smashed to pulp by heavy blows of a sandbag or some + such instrument, which had crushed rather than wounded. It is a + lonely corner, and there is no house within a quarter of a mile of + the spot. He had apparently been struck down first from behind, but + his assailant had gone on beating him long after he was dead. It was + a most furious assault. There are no footsteps nor any clue to the + criminals." + + "Robbed?" + + "No, there was no attempt at robbery." + + "This is very painful--very painful and terrible," said Mr. Scott + Eccles in a querulous voice, "but it is really uncommonly hard on me. + I had nothing to do with my host going off upon a nocturnal excursion + and meeting so sad an end. How do I come to be mixed up with the + case?" + + "Very simply, sir," Inspector Baynes answered. "The only document + found in the pocket of the deceased was a letter from you saying that + you would be with him on the night of his death. It was the envelope + of this letter which gave us the dead man's name and address. It was + after nine this morning when we reached his house and found neither + you nor anyone else inside it. I wired to Mr. Gregson to run you down + in London while I examined Wisteria Lodge. Then I came into town, + joined Mr. Gregson, and here we are." + + "I think now," said Gregson, rising, "we had best put this matter + into an official shape. You will come round with us to the station, + Mr. Scott Eccles, and let us have your statement in writing." + + "Certainly, I will come at once. But I retain your services, Mr. + Holmes. I desire you to spare no expense and no pains to get at the + truth." + + My friend turned to the country inspector. + + "I suppose that you have no objection to my collaborating with you, + Mr. Baynes?" + + "Highly honoured, sir, I am sure." + + "You appear to have been very prompt and businesslike in all that you + have done. Was there any clue, may I ask, as to the exact hour that + the man met his death?" + + "He had been there since one o'clock. There was rain about that time, + and his death had certainly been before the rain." + + "But that is perfectly impossible, Mr. Baynes," cried our client. + "His voice is unmistakable. I could swear to it that it was he who + addressed me in my bedroom at that very hour." + + "Remarkable, but by no means impossible," said Holmes, smiling. + + "You have a clue?" asked Gregson. + + "On the face of it the case is not a very complex one, though it + certainly presents some novel and interesting features. A further + knowledge of facts is necessary before I would venture to give a + final and definite opinion. By the way, Mr. Baynes, did you find + anything remarkable besides this note in your examination of the + house?" + + The detective looked at my friend in a singular way. + + "There were," said he, "one or two very remarkable things. Perhaps + when I have finished at the police-station you would care to come out + and give me your opinion of them." + + "In am entirely at your service," said Sherlock Holmes, ringing the + bell. "You will show these gentlemen out, Mrs. Hudson, and kindly + send the boy with this telegram. He is to pay a five-shilling reply." + + We sat for some time in silence after our visitors had left. Holmes + smoked hard, with his browns drawn down over his keen eyes, and his + head thrust forward in the eager way characteristic of the man. + + "Well, Watson," he asked, turning suddenly upon me, "what do you make + of it?" + + "I can make nothing of this mystification of Scott Eccles." + + "But the crime?" + + "Well, taken with the disappearance of the man's companions, I should + say that they were in some way concerned in the murder and had fled + from justice." + + "That is certainly a possible point of view. On the face of it you + must admit, however, that it is very strange that his two servants + should have been in a conspiracy against him and should have attacked + him on the one night when he had a guest. They had him alone at their + mercy every other night in the week." + + "Then why did they fly?" + + "Quite so. Why did they fly? There is a big fact. Another big fact is + the remarkable experience of our client, Scott Eccles. Now, my dear + Watson, is it beyond the limits of human ingenuity to furnish an + explanation which would cover both of these big facts? If it were one + which would also admit of the mysterious note with its very curious + phraseology, why, then it would be worth accepting as a temporary + hypothesis. If the fresh facts which come to our knowledge all fit + themselves into the scheme, then our hypothesis may gradually become + a solution." + + "But what is our hypothesis?" + + Holmes leaned back in his chair with half-closed eyes. + + "You must admit, my dear Watson, that the idea of a joke is + impossible. There were grave events afoot, as the sequel showed, and + the coaxing of Scott Eccles to Wisteria Lodge had some connection + with them." + + "But what possible connection?" + + "Let us take it link by link. There is, on the face of it, something + unnatural about this strange and sudden friendship between the young + Spaniard and Scott Eccles. It was the former who forced the pace. He + called upon Eccles at the other end of London on the very day after + he first met him, and he kept in close touch with him until he got + him down to Esher. Now, what did he want with Eccles? What could + Eccles supply? I see no charm in the man. He is not particulary + intelligent--not a man likely to be congenial to a quick-witted + Latin. Why, then, was he picked out from all the other people whom + Garcia met as particularly suited to his purpose? Has he any one + outstanding quality? I say that he has. He is the very type of + conventional British respectability, and the very man as a witness to + impress another Briton. You saw yourself how neither of the + inspectors dreamed of questioning his statement, extraordinary as it + was." + + "But what was he to witness?" + + "Nothing, as things turned out, but everything had they gone another + way. That is how I read the matter." + + "I see, he might have proved an alibi." + + "Exactly, my dear Watson; he might have proved an alibi. We will + suppose, for argument's sake, that the household of Wisteria Lodge + are confederates in some design. The attempt, whatever it may be, is + to come off, we will say, before one o'clock. By some juggling of the + clocks it is quite possible that they may have got Scott Eccles to + bed earlier than he thought, but in any case it is likely that when + Garcia went out of his way to tell him that it was one it was really + not more than twelve. If Garcia could do whatever he had to do and be + back by the hour mentioned he had evidently a powerful reply to any + accusation. Here was this irreproachable Englishman ready to swear in + any court of law that the accused was in the house all the time. It + was an insurance against the worst." + + "Yes, yes, I see that. But how about the disappearance of the + others?" + + "I have not all my facts yet, but I do not think there are any + insuperable difficulties. Still, it is an error to argue in front of + your data. You find yourself insensibly twisting them round to fit + your theories." + + "And the message?" + + "How did it run? 'Our own colours, green and white.' Sounds like + racing. 'Green open, white shut.' That is clearly a signal. 'Main + stair, first corridor, seventh right, green baize.' This is an + assignation. We may find a jealous husband at the bottom of it all. + It was clearly a dangerous quest. She would not have said 'Godspeed' + had it not been so. 'D'--that should be a guide." + + "The man was a Spaniard. I suggest that 'D' stands for Dolores, a + common female name in Spain." + + "Good, Watson, very good--but quite inadmissable. A Spaniard would + write to a Spaniard in Spanish. The writer of this note is certainly + English. Well, we can only possess our soul in patience until this + excellent inspector come back for us. Meanwhile we can thank our + lucky fate which has rescued us for a few short hours from the + insufferable fatigues of idleness." + + An answer had arrived to Holmes's telegram before our Surrey officer + had returned. Holmes read it and was about to place it in his + notebook when he caught a glimpse of my expectant face. He tossed it + across with a laugh. + + "We are moving in exalted circles," said he. + + The telegram was a list of names and addresses: + + Lord Harringby, The Dingle; Sir George Ffolliott, Oxshott Towers; Mr. + Hynes Hynes, J.P., Purdley Place; Mr. James Baker Williams, Forton + Old Hall; Mr. Henderson, High Gable; Rev. Joshua Stone, Nether + Walsling. + "This is a very obvious way of limiting our field of operations," + said Holmes. "No doubt Baynes, with his methodical mind, has already + adopted some similar plan." + + "I don't quite understand." + + "Well, my dear fellow, we have already arrived at the conclusion that + the massage received by Garcia at dinner was an appointment or an + assignation. Now, if the obvious reading of it is correct, and in + order to keep the tryst one has to ascend a main stair and seek the + seventh door in a corridor, it is perfectly clear that the house is a + very large one. It is equally certain that this house cannot be more + than a mile or two from Oxshott, since Garcia was walking in that + direction and hoped, according to my reading of the facts, to be back + in Wisteria Lodge in time to avail himself of an alibi, which would + only be valid up to one o'clock. As the number of large houses close + to Oxshott must be limited, I adopted the obvious method of sending + to the agents mentioned by Scott Eccles and obtaining a list of them. + Here they are in this telegram, and the other end of our tangled + skein must lie among them." + + It was nearly six o'clock before we found ourselves in the pretty + Surrey village of Esher, with Inspector Baynes as our companion. + + Holmes and I had taken things for the night, and found comfortable + quarters at the Bull. Finally we set out in the company of the + detective on our visit to Wisteria Lodge. It was a cold, dark March + evening, with a sharp wind and a fine rain beating upon our faces, a + fit setting for the wild common over which our road passed and the + tragic goal to which it led us. + + + + + + CHAPTER II + The Tiger of San Pedro + + + A cold and melancholy walk of a couple of miles brought us to a high + wooden gate, which opened into a gloomy avenue of chestnuts. The + curved and shadowed drive led us to a low, dark house, pitch-black + against a slate-coloured sky. From the front window upon the left of + the door there peeped a glimmer of a feeble light. + + "There's a constable in possession," said Baynes. "I'll knock at the + window." He stepped across the grass plot and tapped with his hand on + the pane. Through the fogged glass I dimly saw a man spring up from a + chair beside the fire, and heard a sharp cry from within the room. An + instant later a white-faced, hard-breathing policeman had opened the + door, the candle wavering in his trembling hand. + + "What's the matter, Walters?" asked Baynes sharply. + + The man mopped his forehead with his handkerchief and agave a long + sigh of relief. + + "I am glad you have come, sir. It has been a long evening, and I + don't think my nerve is as good as it was." + + "Your nerve, Walters? I should not have thought you had a nerve in + your body." + + "Well, sir, it's this lonely, silent house and the queer thing in the + kitchen. Then when you tapped at the window I thought it had come + again." + + "That what had come again?" + + "The devil, sir, for all I know. It was at the window." + + "What was at the window, and when?" + + "It was just about two hours ago. The light was just fading. I was + sitting reading in the chair. I don't know what made me look up, but + there was a face looking in at me through the lower pane. Lord, sir, + what a face it was! I'll see it in my dreams." + + "Tut, tut, Walters. This is not talk for a police-constable." + + "I know, sir, I know; but it shook me, sir, and there's no use to + deny it. It wasn't black, sir, nor was it white, nor any colour that + I know but a kind of queer shade like clay with a splash of milk in + it. Then there was the size of it--it was twice yours, sir. And the + look of it--the great staring goggle eyes, and the line of white + teeth like a hungry beast. I tell you, sir, I couldn't move a finger, + nor get my breath, till it whisked away and was gone. Out I ran and + through the shrubbery, but thank God there was no one there." + + "If I didn't know you were a good man, Walters, I should put a black + mark against you for this. If it were the devil himself a constable + on duty should never thank God that he could not lay his hands upon + him. I suppose the whole thing is not a vision and a touch of + nerves?" + + "That, at least, is very easily settled," said Holmes, lighting his + little pocket lantern. "Yes," he reported, after a short examination + of the grass bed, "a number twelve shoe, I should say. If he was all + on the same scale as his foot he must certainly have been a giant." + + "What became of him?" + + "He seems to have broken through the shrubbery and made for the + road." + + "Well," said the inspector with a grave and thoughtful face, "whoever + he may have been, and whatever he may have wanted, he's gone for the + present, and we have more immediate things to attend to. Now, Mr. + Holmes, with your permission, I will show you round the house." + + The various bedrooms and sitting-rooms had yielded nothing to a + careful search. Apparently the tenants had brought little or nothing + with them, and all the furniture down to the smallest details had + been taken over with the house. A good deal of clothing with the + stamp of Marx and Co., High Holborn, had been left behind. + Telegraphic inquiries had been already made which showed that Marx + knew nothing of his customer save that he was a good payer. Odds and + ends, some pipes, a few novels, two of them in Spanish, and + old-fashioned pinfire revolver, and a guitar were among the personal + property. + + "Nothing in all this," said Baynes, stalking, candle in hand, from + room to room. "But now, Mr. Holmes, I invite your attention to the + kitchen." + + It was a gloomy, high-ceilinged room at the back of the house, with a + straw litter in one corner, which served apparently as a bed for the + cook. The table was piled with half-eaten dishes and dirty plates, + the debris of last night's dinner. + + "Look at this," said Baynes. "What do you make of it?" + + He held up his candle before an extraordinary object which stood at + the back of the dresser. It was so wrinkled and shrunken and withered + that it was difficult to say what it might have been. One could but + say that it was black and leathery and that it bore some resemblance + to a dwarfish, human figure. At first, as I examined it, I thought + that it was a mummified negro baby, and then it seemed a very twisted + and ancient monkey. Finally I was left in doubt as to whether it was + animal or human. A double band of white shells were strung round the + centre of it. + + "Very interesting--very interesting, indeed!" said Holmes, peering at + this sinister relic. "Anything more?" + + In silence Baynes led the way to the sink and held forward his + candle. The limbs and body of some large, white bird, torn savagely + to pieces with the feathers still on, were littered all over it. + Holmes pointed to the wattles on the severed head. + + "A white cock," said he. "Most interesting! It is really a very + curious case." + + But Mr. Baynes had kept his most sinister exhibit to the last. From + under the sink he drew a zinc pail which contained a quantity of + blood. Then from the table he took a platter heaped with small pieces + of charred bone. + + "Something has been killed and something has been burned. We raked + all these out of the fire. We had a doctor in this morning. He says + that they are not human." + + Holmes smiled and rubbed his hands. + + "I must congratulate you, Inspector, on handling so distinctive and + instructive a case. Your powers, if I may say so without offence, + seem superior to your opportunities." + + Inspector Baynes's small eyes twinkled with pleasure. + + "You're right, Mr. Holmes. We stagnate in the provinces. A case of + this sort gives a man a chance, and I hope that I shall take it. What + do you make of these bones?" + + "A lamb, I should say, or a kid." + + "And the white cock?" + + "Curious, Mr. Baynes, very curious. I should say almost unique." + + "Yes, sir, there must have been some very strange people with some + very strange ways in this house. One of them is dead. Did his + companions follow him and kill him? If they did we should have them, + for every port is watched. But my own views are different. Yes, sir, + my own views are very different." + + "You have a theory then?" + + "And I'll work it myself, Mr. Holmes. It's only due to my own credit + to do so. Your name is made, but I have still to make mine. I should + be glad to be able to say afterwards that I had solved it without + your help." + + Holmes laughed good-humoredly. + + "Well, well, Inspector," said he. "Do you follow your path and I will + follow mine. My results are always very much at your service if you + care to apply to me for them. I think that I have seen all that I + wish in this house, and that my time may be more profitably employed + elsewhere. Au revoir and good luck!" + + I could tell by numerous subtle signs, which might have been lost + upon anyone but myself, that Holmes was on a hot scent. As impassive + as ever to the casual observer, there were none the less a subdued + eagerness and suggestion of tension in his brightened eyes and + brisker manner which assured me that the game was afoot. After his + habit he said nothing, and after mine I asked no questions. + Sufficient for me to share the sport and lend my humble help to the + capture without distracting that intent brain with needless + interruption. All would come round to me in due time. + + I waited, therefore--but to my ever-deepening disappointment I waited + in vain. Day succeeded day, and my friend took no step forward. One + morning he spent in town, and I learned from a casual reference that + he had visited the British Museum. Save for this one excursion, he + spent his days in long and often solitary walks, or in chatting with + a number of village gossips whose acquaintance he had cultivated. + + "I'm sure, Watson, a week in the country will be invaluable to you," + he remarked. "It is very pleasant to see the first green shoots upon + the hedges and the catkins on the hazels once again. With a spud, a + tin box, and an elementary book on botany, there are instructive days + to be spent." He prowled about with this equipment himself, but it + was a poor show of plants which he would bring back of an evening. + + Occasionally in our rambles we came across Inspector Baynes. His fat, + red face wreathed itself in smiles and his small eyes glittered as he + greeted my companion. He said little about the case, but from that + little we gathered that he also was not dissatisfied at the course of + events. I must admit, however, that I was somewhat surprised when, + some five days after the crime, I opened my morning paper to find in + large letters: + + The Oxshott Mystery + a solution + Arrest of Supposed Assassin + + Holmes sprang in his chair as if he had been stung when I read the + headlines. + + "By Jove!" he cried. "You don't mean that Baynes has got him?" + + "Apparently," said I as I read the following report: + + "Great excitement was caused in Esher and the neighbouring district + when it was learned late last night that an arrest had been effected + in connection with the Oxshott murder. It will be remembered that Mr. + Garcia, of Wisteria Lodge, was found dead on Oxshott Common, his body + showing signs of extreme violence, and that on the same night his + servant and his cook fled, which appeared to show their participation + in the crime. It was suggested, but never proved, that the deceased + gentleman may have had valuables in the house, and that their + abstraction was the motive of the crime. Every effort was made by + Inspector Baynes, who has the case in hand, to ascertain the hiding + place of the fugitives, and he had good reason to believe that they + had not gone far but were lurking in some retreat which had been + already prepared. It was certain from the first, however, that they + would eventually be detected, as the cook, from the evidence of one + or two tradespeople who have caught a glimpse of him through the + window, was a man of most remarkable appearance--being a huge and + hideous mulatto, with yellowish features of a pronounced negroid + type. This man has been seen since the crime, for he was detected and + pursued by Constable Walters on the same evening, when he had the + audacity to revisit Wisteria Lodge. Inspector Baynes, considering + that such a visit must have some purpose in view and was likely, + therefore, to be repeated, abandoned the house but left an ambuscade + in the shrubbery. The man walked into the trap and was captured last + night after a struggle in which Constable Downing was badly bitten by + the savage. We understand that when the prison is brought before the + magistrates a remand will be applied for by the police, and that + great developments are hoped from his capture." + + "Really we must see Baynes at once," cried Holmes, picking up his + hat. "We will just catch him before he starts." We hurried down the + village street and found, as we had expected, that the inspector was + just leaving his lodgings. + + "You've seen the paper, Mr. Holmes?" he asked, holding one out to us. + + "Yes, Baynes, I've seen it. Pray don't think it a liberty if I give + you a word of friendly warning." + + "Of warning, Mr. Holmes?" + + "I have looked into this case with some care, and I am not convinced + that you are on the right lines. I don't want you to commit yourself + too far unless you are sure." + + "You're very kind, Mr. Holmes." + + "I assure you I speak for your good." + + It seemed to me that something like a wink quivered for an instant + over one of Mr. Baynes's tiny eyes. + + "We agreed to work on our own lines, Mr. Holmes. That's what I am + doing." + + "Oh, very good," said Holmes. "Don't blame me." + + "No, sir; I believe you mean well by me. But we all have our own + systems, Mr. Holmes. You have yours, and maybe I have mine." + + "Let us say no more about it." + + "You're welcome always to my news. This fellow is a perfect savage, + as strong as a cart-horse and as fierce as the devil. He chewed + Downing's thumb nearly off before they could master him. He hardly + speaks a word of English, and we can get nothing out of him but + grunts." + + "And you think you have evidence that he murdered his late master?" + + "I didn't say so, Mr. Holmes; I didn't say so. We all have our little + ways. You try yours and I will try mine. That's the agreement." + + Holmes shrugged his shoulders as we walked away together. "I can't + make the man out. He seems to be riding for a fall. Well, as he says, + we must each try our own way and see what comes of it. But there's + something in Inspector Baynes which I can't quite understand." + + "Just sit down in that chair, Watson," said Sherlock Holmes when we + had returned to our apartment at the Bull. "I want to put you in + touch with the situation, as I may need your help to-night. Let me + show you the evolution of this case so far as I have been able to + follow it. Simple as it has been in its leading features, it has none + the less presented surprising difficulties in the way of an arrest. + There are gaps in that direction which we have still to fill. + + "We will go back to the note which was handed in to Garcia upon the + evening of his death. We may put aside this idea of Baynes's that + Garcia's servants were concerned in the matter. The proof of this + lies in the fact that it was he who had arranged for the presence of + Scott Eccles, which could only have been done for the purpose of an + alibi. It was Garcia, then, who had an enterprise, and apparently a + criminal enterprise, in hand that night in the course of which he met + his death. I say 'criminal' because only a man with a criminal + enterprise desires to establish an alibi. Who, then, is most likely + to have taken his life? Surely the person against whom the criminal + enterprise was directed. So far it seems to me that we are on safe + ground. + + "We can now see a reason for the disappearance of Garcia's household. + They were all confederates in the same unknown crime. If it came off + when Garcia returned, any possible suspicion would be warded off by + the Englishman's evidence, and all would be well. But the attempt was + a dangerous one, and if Garcia did not return by a certain hour it + was probable that his own life had been sacrificed. It had been + arranged, therefore, that in such a case his two subordinates were to + make for some prearranged spot where they could escape investigation + and be in a position afterwards to renew their attempt. That would + fully explain the facts, would it not?" + + The whole inexplicable tangle seemed to straighten out before me. I + wondered, as I always did, how it had not been obvious to me before. + + "But why should one servant return?" + + "We can imagine that in the confusion of flight something precious, + something which he could not bear to part with, had been left behind. + That would explain his persistence, would it not?" + + "Well, what is the next step?" + + "The next step is the note received by Garcia at the dinner. It + indicates a confederate at the other end. Now, where was the other + end? I have already shown you that it could only lie in some large + house, and that the number of large houses is limited. My first days + in this village were devoted to a series of walks in which in the + intervals of my botanical researches I made a reconnaissance of all + the large houses and an examination of the family history of the + occupants. One house, and only one, riveted my attention. It is the + famous old Jacobean grange of High Gable, one mile on the farther + side of Oxshott, and less than half a mile from the scene of the + tragedy. The other mansions belonged to prosaic and respectable + people who live far aloof from romance. But Mr. Henderson, of High + Gable, was by all accounts a curious man to whom curious adventures + might befall. I concentrated my attention, therefore, upon him and + his household. + + "A singular set of people, Watson--the man himself the most singular + of them all. I managed to see him on a plausible pretext, but I + seemed to read in his dark, deepset, brooding eyes that he was + perfectly aware of my true business. He is a man of fifty, strong, + active, with iron-gray hair, great bunched black eyebrows, the step + of a deer and the air of an emperor--a fierce, masterful man, with a + red-hot spirit behind his parchment face. He is either a foreigner or + has lived long in the tropics, for he is yellow and sapless, but + tough as whipcord. His friend and secretary, Mr. Lucas, is + undoubtedly a foreigner, chocolate brown, wily, suave, and catlike, + with a poisonous gentleness of speech. You see, Watson, we have come + already upon two sets of foreigners--one at Wisteria Lodge and one at + High Gable--so our gaps are beginning to close. + + "These two men, close and confidential friends, are the centre of the + household; but there is one other person who for our immediate + purpose may be even more important. Henderson has two children--girls + of eleven and thirteen. Their governess is a Miss Burnet, an + Englishwoman of forty or thereabouts. There is also one confidential + manservant. This little group forms the real family, for their travel + about together, and Henderson is a great traveller, always on the + move. It is only within the last weeks that he has returned, after a + year's absence, to High Gable. I may add that he is enormously rich, + and whatever his whims may be he can very easily satisfy them. For + the rest, his house is full of butlers, footmen, maidservants, and + the usual overfed, underworked staff of a large English country + house. + + "So much I learned partly from village gossip and partly from my own + observation. There are no better instruments than discharged servants + with a grievance, and I was lucky enough to find one. I call it luck, + but it would not have come my way had I not been looking out for it. + As Baynes remarks, we all have our systems. It was my system which + enabled me to find John Warner, late gardener of High Gable, sacked + in a moment of temper by his imperious employer. He in turn had + friends among the indoor servants who unite in their fear and dislike + of their master. So I had my key to the secrets of the establishment. + + "Curious people, Watson! I don't pretend to understand it all yet, + but very curious people anyway. It's a double-winged house, and the + servants live on one side, the family on the other. There's no link + between the two save for Henderson's own servant, who serves the + family's meals. Everything is carried to a certain door, which forms + the one connection. Governess and children hardly go out at all, + except into the garden. Henderson never by any chance walks alone. + His dark secretary is like his shadow. The gossip among the servants + is that their master is terribly afraid of something. 'Sold his soul + to the devil in exchange for money,' says Warner, 'and expects his + creditor to come up and claim his own.' Where they came from, or who + they are, nobody has an idea. They are very violent. Twice Henderson + has lashed at folk with his dog-whip, and only his long purse and + heavy compensation have kept him out of the courts. + + "Well, now, Watson, let us judge the situation by this new + information. We may take it that the letter came out of this strange + household and was an invitation to Garcia to carry out some attempt + which had already been planned. Who wrote the note? It was someone + within the citadel, and it was a woman. Who then but Miss Burnet, the + governess? All our reasoning seems to point that way. At any rate, we + may take it as a hypothesis and see what consequences it would + entail. I may add that Miss Burnet's age and character make it + certain that my first idea that there might be a love interest in our + story is out of the question. + + "If she wrote the note she was presumably the friend and confederate + of Garcia. What, then, might she be expected to do if she heard of + his death? If he met it in some nefarious enterprise her lips might + be sealed. Still, in her heart, she must retain bitterness and hatred + against those who had killed him and would presumably help so far as + she could to have revenge upon them. Could we see her, then and try + to use her? That was my first thought. But now we come to a sinister + fact. Miss Burnet has not been seen by any human eye since the night + of the murder. From that evening she has utterly vanished. Is she + alive? Has she perhaps met her end on the same night as the friend + whom she had summoned? Or is she merely a prisoner? There is the + point which we still have to decide. + + "You will appreciate the difficulty of the situation, Watson. There + is nothing upon which we can apply for a warrant. Our whole scheme + might seem fantastic if laid before a magistrate. The woman's + disappearance counts for nothing, since in that extraordinary + household any member of it might be invisible for a week. And yet she + may at the present moment be in danger of her life. All I can do is + to watch the house and leave my agent, Warner, on guard at the gates. + We can't let such a situation continue. If the law can do nothing we + must take the risk ourselves." + + "What do you suggest?" + + "I know which is her room. It is accessible from the top of an + outhouse. My suggestion is that you and I go to-night and see if we + can strike at the very heart of the mystery." + + It was not, I must confess, a very alluring prospect. The old house + with its atmosphere of murder, the singular and formidable + inhabitants, the unknown dangers of the approach, and the fact that + we were putting ourselves legally in a false position all combined to + damp my ardour. But there was something in the ice-cold reasoning of + Holmes which made it impossible to shrink from any adventure which he + might recommend. One knew that thus, and only thus, could a solution + be found. I clasped his hand in silence, and the die was cast. + + But it was not destined that our investigation should have so + adventurous an ending. It was about five o'clock, and the shadows of + the March evening were beginning to fall, when an excited rustic + rushed into our room. + + "They've gone, Mr. Holmes. They went by the last train. The lady + broke away, and I've got her in a cab downstairs." + + "Excellent, Warner!" cried Holmes, springing to his feet. "Watson, + the gaps are closing rapidly." + + In the cab was a woman, half-collapsed from nervous exhaustion. She + bore upon her aquiline and emaciated face the traces of some recent + tragedy. Her head hung listlessly upon her breast, but as she raised + it and turned her dull eyes upon us I saw that her pupils were dark + dots in the centre of the broad gray iris. She was drugged with + opium. + + "I watched at the gate, same as you advised, Mr. Holmes," said our + emissary, the discharged gardener. "When the carriage came out I + followed it to the station. She was like one walking in her sleep, + but when they tried to get her into the train she came to life and + struggled. They pushed her into the carriage. She fought her way out + again. I took her part, got her into a cab, and here we are. I shan't + forget the face at the carriage window as I led her away. I'd have a + short life if he had his way--the black-eyed, scowling, yellow + devil." + + We carried her upstairs, laid her on the sofa, and a couple of cups + of the strongest coffee soon cleared her brain from the mists of the + drug. Baynes had been summoned by Holmes, and the situation rapidly + explained to him. + + "Why, sir, you've got me the very evidence I want," said the + inspector warmly, shaking my friend by the hand. "I was on the same + scent as you from the first." + + "What! You were after Henderson?" + + "Why, Mr. Holmes, when you were crawling in the shrubbery at High + Gable I was up one of the trees in the plantation and saw you down + below. It was just who would get his evidence first." + + "Then why did you arrest the mulatto?" + + Baynes chuckled. + + "I was sure Henderson, as he calls himself, felt that he was + suspected, and that he would lie low and make no move so long as he + thought he was in any danger. I arrested the wrong man to make him + believe that our eyes were off him. I knew he would be likely to + clear off then and give us a chance of getting at Miss Burnet." + + Holmes laid his hand upon the inspector's shoulder. + + "You will rise high in your profession. You have instinct and + intuition," said he. + + Baynes flushed with pleasure. + + "I've had a plain-clothes man waiting at the station all the week. + Wherever the High Gable folk go he will keep them in sight. But he + must have been hard put to it when Miss Burnet broke away. However, + your man picked her up, and it all ends well. We can't arrest without + her evidence, that is clear, so the sooner we get a statement the + better." + + "Every minute she gets stronger," said Holmes, glancing at the + governess. "But tell me, Baynes, who is this man Henderson?" + + "Henderson," the inspector answered, "is Don Murillo, once called the + Tiger of San Pedro." + + The Tiger of San Pedro! The whole history of the man came back to me + in a flash. He had made his name as the most lewd and bloodthirsty + tyrant that had ever governed any country with a pretence to + civilization. Strong, fearless, and energetic, he had sufficient + virtue to enable him to impose his odious vices upon a cowering + people for ten or twelve years. His name was a terror through all + Central America. At the end of that time there was a universal rising + against him. But he was as cunning as he was cruel, and at the first + whisper of coming trouble he had secretly conveyed his treasures + aboard a ship which was manned by devoted adherents. It was an empty + palace which was stormed by the insurgents next day. The dictator, + his two children, his secretary, and his wealth had all escaped them. + From that moment he had vanished from the world, and his identity had + been a frequent subject for comment in the European press. + + "Yes, sir, Don Murillo, the Tiger of San Pedro," said Baynes. "If you + look it up you will find that the San Pedro colours are green and + white, same as in the note, Mr. Holmes. Henderson he called himself, + but I traced him back, Paris and Rome and Madrid to Barcelona, where + his ship came in in '86. They've been looking for him all the time + for their revenge, but it is only now that they have begun to find + him out." + + "They discovered him a year ago," said Miss Burnet, who had sat up + and was now intently following the conversation. "Once already his + life has been attempted, but some evil spirit shielded him. Now, + again, it is the noble, chivalrous Garcia who has fallen, while the + monster goes safe. But another will come, and yet another, until some + day justice will be done; that is as certain as the rise of + to-morrow's sun." Her thin hands clenched, and her worn face blanched + with the passion of her hatred. + + "But how come you into this matter, Miss Burnet?" asked Holmes. "How + can an English lady join in such a murderous affair?" + + "I join in it because there is no other way in the world by which + justice can be gained. What does the law of England care for the + rivers of blood shed years ago in San Pedro, or for the shipload of + treasure which this man has stolen? To you they are like crimes + committed in some other planet. But we know. We have learned the + truth in sorrow and in suffering. To us there is no fiend in hell + like Juan Murillo, and no peace in life while his victims still cry + for vengeance." + + "No doubt," said Holmes, "he was as you say. I have heard that he was + atrocious. But how are you affected?" + + "I will tell you it all. This villain's policy was to murder, on one + pretext or another, every man who showed such promise that he might + in time come to be a dangerous rival. My husband--yes, my real name + is Signora Victor Durando--was the San Pedro minister in London. He + met me and married me there. A nobler man never lived upon earth. + Unhappily, Murillo heard of his excellence, recalled him on some + pretext, and had him shot. With a premonition of his fate he had + refused to take me with him. His estates were confiscated, and I was + left with a pittance and a broken heart. + + "Then came the downfall of the tyrant. He escaped as you have just + described. But the many whose lives he had ruined, whose nearest and + dearest had suffered torture and death at his hands, would not let + the matter rest. They banded themselves into a society which should + never be dissolved until the work was done. It was my part after we + had discovered in the transformed Henderson the fallen despot, to + attach myself to his household and keep the others in touch with his + movements. This I was able to do by securing the position of + governess in his family. He little knew that the woman who faced him + at every meal was the woman whose husband he had hurried at an hour's + notice into eternity. I smiled on him, did my duty to his children, + and bided my time. An attempt was made in Paris and failed. We + zig-zagged swiftly here and there over Europe to throw off the + pursuers and finally returned to this house, which he had taken upon + his first arrival in England. + + "But here also the ministers of justice were waiting. Knowing that he + would return there, Garcia, who is the son of the former highest + dignitary in San Pedro, was waiting with two trusty companions of + humble station, all three fired with the same reasons for revenge. He + could do little during the day, for Murillo took every precaution and + never went out save with his satellite Lucas, or Lopez as he was + known in the days of his greatness. At night, however, he slept + alone, and the avenger might find him. On a certain evening, which + had been prearranged, I sent my friend final instructions, for the + man was forever on the alert and continually changed his room. I was + to see that the doors were open and the signal of a green or white + light in a window which faced the drive was to give notice if all was + safe or if the attempt had better be postponed. + + "But everything went wrong with us. In some way I had excited the + suspicion of Lopez, the secretary. He crept up behind me and sprang + upon me just as I had finished the note. He and his master dragged me + to my room and held judgment upon me as a convicted traitress. Then + and there they would have plunged their knives into me could they + have seen how to escape the consequences of the deed. Finally, after + much debate, they concluded that my murder was too dangerous. But + they determined to get rid forever of Garcia. They had gagged me, and + Murillo twisted my arm round until I gave him the address. I swear + that he might have twisted it off had I understood what it would mean + to Garcia. Lopez addressed the note which I had written, sealed it + with his sleeve-link, and sent it by the hand of the servant, Jose. + How they murdered him I do not know, save that it was Murillo's hand + who struck him down, for Lopez had remained to guard me. I believe he + must have waited among the gorse bushes through which the path winds + and struck him down as he passed. At first they were of a mind to let + him enter the house and to kill him as a detected burglar; but they + argued that if they were mixed up in an inquiry their own identity + would at once be publicly disclosed and they would be open to further + attacks. With the death of Garcia, the pursuit might cease, since + such a death might frighten others from the task. + + "All would now have been well for them had it not been for my + knowledge of what they had done. I have no doubt that there were + times when my life hung in the balance. I was confined to my room, + terrorized by the most horrible threats, cruelly ill-used to break my + spirit--see this stab on my shoulder and the bruises from end to end + of my arms--and a gag was thrust into my mouth on the one occasion + when I tried to call from the window. For five days this cruel + imprisonment continued, with hardly enough food to hold body and soul + together. This afternoon a good lunch was brought me, but the moment + after I took it I knew that I had been drugged. In a sort of dream I + remember being half-led, half-carried to the carriage; in the same + state I was conveyed to the train. Only then, when the wheels were + almost moving, did I suddenly realize that my liberty lay in my own + hands. I sprang out, they tried to drag me back, and had it not been + for the help of this good man, who led me to the cab, I should never + had broken away. Now, thank God, I am beyond their power forever." + + We had all listened intently to this remarkable statement. It was + Holmes who broke the silence. + + "Our difficulties are not over," he remarked, shaking his head. "Our + police work ends, but our legal work begins." + + "Exactly," said I. "A plausible lawyer could make it out as an act of + self-defence. There may be a hundred crimes in the background, but it + is only on this one that they can be tried." + + "Come, come," said Baynes cheerily, "I think better of the law than + that. Self-defence is one thing. To entice a man in cold blood with + the object of murdering him is another, whatever danger you may fear + from him. No, no, we shall all be justified when we see the tenants + of High Gable at the next Guildford Assizes." + + It is a matter of history, however, that a little time was still to + elapse before the Tiger of San Pedro should meet with his deserts. + Wily and bold, he and his companion threw their pursuer off their + track by entering a lodging-house in Edmonton Street and leaving by + the back-gate into Curzon Square. From that day they were seen no + more in England. Some six months afterwards the Marquess of Montalva + and Signor Rulli, his secretary, were both murdered in their rooms at + the Hotel Escurial at Madrid. The crime was ascribed to Nihilism, and + the murderers were never arrested. Inspector Baynes visited us at + Baker Street with a printed description of the dark face of the + secretary, and of the masterful features, the magnetic black eyes, + and the tufted brows of his master. We could not doubt that justice, + if belated, had come at last. + + "A chaotic case, my dear Watson," said Holmes over an evening pipe. + "It will not be possible for you to present in that compact form + which is dear to your heart. It covers two continents, concerns two + groups of mysterious persons, and is further complicated by the + highly respectable presence of our friend, Scott Eccles, whose + inclusion shows me that the deceased Garcia had a scheming mind and a + well-developed instinct of self-preservation. It is remarkable only + for the fact that amid a perfect jungle of possibilities we, with our + worthy collaborator, the inspector, have kept our close hold on the + essentials and so been guided along the crooked and winding path. Is + there any point which is not quite clear to you?" + + "The object of the mulatto cook's return?" + + "I think that the strange creature in the kitchen may account for it. + The man was a primitive savage from the backwoods of San Pedro, and + this was his fetish. When his companion and he had fled to some + prearranged retreat--already occupied, no doubt by a confederate--the + companion had persuaded him to leave so compromising an article of + furniture. But the mulatto's heart was with it, and he was driven + back to it next day, when, on reconnoitering through the window, he + found policeman Walters in possession. He waited three days longer, + and then his piety or his superstition drove him to try once more. + Inspector Baynes, who, with his usual astuteness, had minimized the + incident before me, had really recognized its importance and had left + a trap into which the creature walked. Any other point, Watson?" + + "The torn bird, the pail of blood, the charred bones, all the mystery + of that weird kitchen?" + + Holmes smiled as he turned up an entry in his note-book. + + "I spent a morning in the British Museum reading up on that and other + points. Here is a quotation from Eckermann's Voodooism and the + Negroid Religions: + + "'The true voodoo-worshipper attempts nothing of importance without + certain sacrifices which are intended to propitiate his unclean gods. + In extreme cases these rites take the form of human sacrifices + followed by cannibalism. The more usual victims are a white cock, + which is plucked in pieces alive, or a black goat, whose throat is + cut and body burned.' + + "So you see our savage friend was very orthodox in his ritual. It is + grotesque, Watson," Holmes added, as he slowly fastened his notebook, + "but, as I have had occasion to remark, there is but one step from + the grotesque to the horrible." + + + + + + + THE ADVENTURE OF THE CARDBOARD BOX + + In choosing a few typical cases which illustrate the remarkable + mental qualities of my friend, Sherlock Holmes, I have endeavoured, + as far as possible, to select those which presented the minimum of + sensationalism, while offering a fair field for his talents. It is, + however, unfortunately impossible entirely to separate the + sensational from the criminal, and a chronicler is left in the + dilemma that he must either sacrifice details which are essential to + his statement and so give a false impression of the problem, or he + must use matter which chance, and not choice, has provided him with. + With this short preface I shall turn to my notes of what proved to be + a strange, though a peculiarly terrible, chain of events. + + It was a blazing hot day in August. Baker Street was like an oven, + and the glare of the sunlight upon the yellow brickwork of the house + across the road was painful to the eye. It was hard to believe that + these were the same walls which loomed so gloomily through the fogs + of winter. Our blinds were half-drawn, and Holmes lay curled upon the + sofa, reading and re-reading a letter which he had received by the + morning post. For myself, my term of service in India had trained me + to stand heat better than cold, and a thermometer at ninety was no + hardship. But the morning paper was uninteresting. Parliament had + risen. Everybody was out of town, and I yearned for the glades of the + New Forest or the shingle of Southsea. A depleted bank account had + caused me to postpone my holiday, and as to my companion, neither the + country nor the sea presented the slightest attraction to him. He + loved to lie in the very center of five millions of people, with his + filaments stretching out and running through them, responsive to + every little rumour or suspicion of unsolved crime. Appreciation of + nature found no place among his many gifts, and his only change was + when he turned his mind from the evil-doer of the town to track down + his brother of the country. + + Finding that Holmes was too absorbed for conversation I had tossed + side the barren paper, and leaning back in my chair I fell into a + brown study. Suddenly my companion's voice broke in upon my thoughts: + + "You are right, Watson," said he. "It does seem a most preposterous + way of settling a dispute." + + "Most preposterous!" I exclaimed, and then suddenly realizing how he + had echoed the inmost thought of my soul, I sat up in my chair and + stared at him in blank amazement. + + "What is this, Holmes?" I cried. "This is beyond anything which I + could have imagined." + + He laughed heartily at my perplexity. + + "You remember," said he, "that some little time ago when I read you + the passage in one of Poe's sketches in which a close reasoner + follows the unspoken thoughts of his companion, you were inclined to + treat the matter as a mere tour-de-force of the author. On my + remarking that I was constantly in the habit of doing the same thing + you expressed incredulity." + + "Oh, no!" + + "Perhaps not with your tongue, my dear Watson, but certainly with + your eyebrows. So when I saw you throw down your paper and enter upon + a train of thought, I was very happy to have the opportunity of + reading it off, and eventually of breaking into it, as a proof that I + had been in rapport with you." + + But I was still far from satisfied. "In the example which you read to + me," said I, "the reasoner drew his conclusions from the actions of + the man whom he observed. If I remember right, he stumbled over a + heap of stones, looked up at the stars, and so on. But I have been + seated quietly in my chair, and what clues can I have given you?" + + "You do yourself an injustice. The features are given to man as the + means by which he shall express his emotions, and yours are faithful + servants." + + "Do you mean to say that you read my train of thoughts from my + features?" + + "Your features and especially your eyes. Perhaps you cannot yourself + recall how your reverie commenced?" + + "No, I cannot." + + "Then I will tell you. After throwing down your paper, which was the + action which drew my attention to you, you sat for half a minute with + a vacant expression. Then your eyes fixed themselves upon your newly + framed picture of General Gordon, and I saw by the alteration in your + face that a train of thought had been started. But it did not lead + very far. Your eyes flashed across to the unframed portrait of Henry + Ward Beecher which stands upon the top of your books. Then you + glanced up at the wall, and of course your meaning was obvious. You + were thinking that if the portrait were framed it would just cover + that bare space and correspond with Gordon's picture there." + + "You have followed me wonderfully!" I exclaimed. + + "So far I could hardly have gone astray. But now your thoughts went + back to Beecher, and you looked hard across as if you were studying + the character in his features. Then your eyes ceased to pucker, but + you continued to look across, and your face was thoughtful. You were + recalling the incidents of Beecher's career. I was well aware that + you could not do this without thinking of the mission which he + undertook on behalf of the North at the time of the Civil War, for I + remember your expressing your passionate indignation at the way in + which he was received by the more turbulent of our people. You felt + so strongly about it that I knew you could not think of Beecher + without thinking of that also. When a moment later I saw your eyes + wander away from the picture, I suspected that your mind had now + turned to the Civil War, and when I observed that your lips set, your + eyes sparkled, and your hands clenched I was positive that you were + indeed thinking of the gallantry which was shown by both sides in + that desperate struggle. But then, again, your face grew sadder, you + shook your head. You were dwelling upon the sadness and horror and + useless waste of life. Your hand stole towards your own old wound and + a smile quivered on your lips, which showed me that the ridiculous + side of this method of settling international questions had forced + itself upon your mind. At this point I agreed with you that it was + preposterous and was glad to find that all my deductions had been + correct." + + "Absolutely!" said I. "And now that you have explained it, I confess + that I am as amazed as before." + + "It was very superficial, my dear Watson, I assure you. I should not + have intruded it upon your attention had you not shown some + incredulity the other day. But I have in my hands here a little + problem which may prove to be more difficult of solution than my + small essay in thought reading. Have you observed in the paper a + short paragraph referring to the remarkable contents of a packet sent + through the post to Miss Cushing, of Cross Street, Croydon?" + + "No, I saw nothing." + + "Ah! then you must have overlooked it. Just toss it over to me. Here + it is, under the financial column. Perhaps you would be good enough + to read it aloud." + + I picked up the paper which he had thrown back to me and read the + paragraph indicated. It was headed, "A Gruesome Packet." + + "Miss Susan Cushing, living at Cross Street, Croydon, has been made + the victim of what must be regarded as a peculiarly revolting + practical joke unless some more sinister meaning should prove to be + attached to the incident. At two o'clock yesterday afternoon a small + packet, wrapped in brown paper, was handed in by the postman. A + cardboard box was inside, which was filled with coarse salt. On + emptying this, Miss Cushing was horrified to find two human ears, + apparently quite freshly severed. The box had been sent by parcel + post from Belfast upon the morning before. There is no indication as + to the sender, and the matter is the more mysterious as Miss Cushing, + who is a maiden lady of fifty, has led a most retired life, and has + so few acquaintances or correspondents that it is a rare event for + her to receive anything through the post. Some years ago, however, + when she resided at Penge, she let apartments in her house to three + young medical students, whom she was obliged to get rid of on account + of their noisy and irregular habits. The police are of opinion that + this outrage may have been perpetrated upon Miss Cushing by these + youths, who owed her a grudge and who hoped to frighten her by + sending her these relics of the dissecting-rooms. Some probability is + lent to the theory by the fact that one of these students came from + the north of Ireland, and, to the best of Miss Cushing's belief, from + Belfast. In the meantime, the matter is being actively investigated, + Mr. Lestrade, one of the very smartest of our detective officers, + being in charge of the case." + + "So much for the Daily Chronicle," said Holmes as I finished reading. + "Now for our friend Lestrade. I had a note from him this morning, in + which he says: + + "I think that this case is very much in your line. We have every hope + of clearing the matter up, but we find a little difficulty in getting + anything to work upon. We have, of course, wired to the Belfast + post-office, but a large number of parcels were handed in upon that + day, and they have no means of identifying this particular one, or of + remembering the sender. The box is a half-pound box of honeydew + tobacco and does not help us in any way. The medical student theory + still appears to me to be the most feasible, but if you should have a + few hours to spare I should be very happy to see you out here. I + shall be either at the house or in the police-station all day. + + "What say you, Watson? Can you rise superior to the heat and run down + to Croydon with me on the off chance of a case for your annals?" + + "I was longing for something to do." + + "You shall have it then. Ring for our boots and tell them to order a + cab. I'll be back in a moment when I have changed my dressing-gown + and filled my cigar-case." + + A shower of rain fell while we were in the train, and the heat was + far less oppressive in Croydon than in town. Holmes had sent on a + wire, so that Lestrade, as wiry, as dapper, and as ferret-like as + ever, was waiting for us at the station. A walk of five minutes took + us to Cross Street, where Miss Cushing resided. + + It was a very long street of two-story brick houses, neat and prim, + with whitened stone steps and little groups of aproned women + gossiping at the doors. Halfway down, Lestrade stopped and tapped at + a door, which was opened by a small servant girl. Miss Cushing was + sitting in the front room, into which we were ushered. She was a + placid-faced woman, with large, gentle eyes, and grizzled hair + curving down over her temples on each side. A worked antimacassar lay + upon her lap and a basket of coloured silks stood upon a stool beside + her. + + "They are in the outhouse, those dreadful things," said she as + Lestrade entered. "I wish that you would take them away altogether." + + "So I shall, Miss Cushing. I only kept them here until my friend, Mr. + Holmes, should have seen them in your presence." + + "Why in my presence, sir?" + + "In case he wished to ask any questions." + + "What is the use of asking me questions when I tell you I know + nothing whatever about it?" + + "Quite so, madam," said Holmes in his soothing way. "I have no doubt + that you have been annoyed more than enough already over this + business." + + "Indeed I have, sir. I am a quiet woman and live a retired life. It + is something new for me to see my name in the papers and to find the + police in my house. I won't have those things in here, Mr. Lestrade. + If you wish to see them you must go to the outhouse." + + It was a small shed in the narrow garden which ran behind the house. + Lestrade went in and brought out a yellow cardboard box, with a piece + of brown paper and some string. There was a bench at the end of the + path, and we all sat down while Homes examined one by one, the + articles which Lestrade had handed to him. + + "The string is exceedingly interesting," he remarked, holding it up + to the light and sniffing at it. "What do you make of this string, + Lestrade?" + + "It has been tarred." + + "Precisely. It is a piece of tarred twine. You have also, no doubt, + remarked that Miss Cushing has cut the cord with a scissors, as can + be seen by the double fray on each side. This is of importance." + + "I cannot see the importance," said Lestrade. + + "The importance lies in the fact that the knot is left intact, and + that this knot is of a peculiar character." + + "It is very neatly tied. I had already made a note of that effect," + said Lestrade complacently. + + "So much for the string, then," said Holmes, smiling, "now for the + box wrapper. Brown paper, with a distinct smell of coffee. What, did + you not observe it? I think there can be no doubt of it. Address + printed in rather straggling characters: 'Miss S. Cushing, Cross + Street, Croydon.' Done with a broad-pointed pen, probably a J, and + with very inferior ink. The word 'Croydon' has been originally + spelled with an 'i', which has been changed to 'y'. The parcel was + directed, then, by a man--the printing is distinctly masculine--of + limited education and unacquainted with the town of Croydon. So far, + so good! The box is a yellow, half-pound honeydew box, with nothing + distinctive save two thumb marks at the left bottom corner. It is + filled with rough salt of the quality used for preserving hides and + other of the coarser commercial purposes. And embedded in it are + these very singular enclosures." + + He took out the two ears as he spoke, and laying a board across his + knee he examined them minutely, while Lestrade and I, bending forward + on each side of him, glanced alternately at these dreadful relics and + at the thoughtful, eager face of our companion. Finally he returned + them to the box once more and sat for a while in deep meditation. + + "You have observed, of course," said he at last, "that the ears are + not a pair." + + "Yes, I have noticed that. But if this were the practical joke of + some students from the dissecting-rooms, it would be as easy for them + to send two odd ears as a pair." + + "Precisely. But this is not a practical joke." + + "You are sure of it?" + + "The presumption is strongly against it. Bodies in the + dissecting-rooms are injected with preservative fluid. These ears + bear no signs of this. They are fresh, too. They have been cut off + with a blunt instrument, which would hardly happen if a student had + done it. Again, carbolic or rectified spirits would be the + preservatives which would suggest themselves to the medical mind, + certainly not rough salt. I repeat that there is no practical joke + here, but that we are investigating a serious crime." + + A vague thrill ran through me as I listened to my companion's words + and saw the stern gravity which had hardened his features. This + brutal preliminary seemed to shadow forth some strange and + inexplicable horror in the background. Lestrade, however, shook his + head like a man who is only half convinced. + + "There are objections to the joke theory, no doubt," said he, "but + there are much stronger reasons against the other. We know that this + woman has led a most quiet and respectable life at Penge and here for + the last twenty years. She has hardly been away from her home for a + day during that time. Why on earth, then, should any criminal send + her the proofs of his guilt, especially as, unless she is a most + consummate actress, she understands quite as little of the matter as + we do?" + + "That is the problem which we have to solve," Holmes answered, "and + for my part I shall set about it by presuming that my reasoning is + correct, and that a double murder has been committed. One of these + ears is a woman's, small, finely formed, and pierced for an earring. + The other is a man's, sun-burned, discoloured, and also pierced for + an earring. These two people are presumably dead, or we should have + heard their story before now. To-day is Friday. The packet was posted + on Thursday morning. The tragedy, then, occurred on Wednesday or + Tuesday, or earlier. If the two people were murdered, who but their + murderer would have sent this sign of his work to Miss Cushing? We + may take it that the sender of the packet is the man whom we want. + But he must have some strong reason for sending Miss Cushing this + packet. What reason then? It must have been to tell her that the deed + was done; or to pain her, perhaps. But in that case she knows who it + is. Does she know? I doubt it. If she knew, why should she call the + police in? She might have buried the ears, and no one would have been + the wiser. That is what she would have done if she had wished to + shield the criminal. But if she does not wish to shield him she would + give his name. There is a tangle here which needs straightening out." + He had been talking in a high, quick voice, staring blankly up over + the garden fence, but now he sprang briskly to his feet and walked + towards the house. + + "I have a few questions to ask Miss Cushing," said he. + + "In that case I may leave you here," said Lestrade, "for I have + another small business on hand. I think that I have nothing further + to learn from Miss Cushing. You will find me at the police-station." + + "We shall look in on our way to the train," answered Holmes. A moment + later he and I were back in the front room, where the impassive lady + was still quietly working away at her antimacassar. She put it down + on her lap as we entered and looked at us with her frank, searching + blue eyes. + + "I am convinced, sir," she said, "that this matter is a mistake, and + that the parcel was never meant for me at all. I have said this + several times to the gentlemen from Scotland Yard, but he simply + laughs at me. I have not an enemy in the world, as far as I know, so + why should anyone play me such a trick?" + + "I am coming to be of the same opinion, Miss Cushing," said Holmes, + taking a seat beside her. "I think that it is more than probable--" + He paused, and I was surprised, on glancing round to see that he was + staring with singular intentness at the lady's profile. Surprise and + satisfaction were both for an instant to be read upon his eager face, + though when she glanced round to find out the cause of his silence he + had become as demure as ever. I stared hard myself at her flat, + grizzled hair, her trim cap, her little gilt earrings, her placid + features; but I could see nothing which could account for my + companion's evident excitement. + + "There were one or two questions--" + + "Oh, I am weary of questions!" cried Miss Cushing impatiently. + + "You have two sisters, I believe." + + "How could you know that?" + + "I observed the very instant that I entered the room that you have a + portrait group of three ladies upon the mantelpiece, one of whom is + undoubtedly yourself, while the others are so exceedingly like you + that there could be no doubt of the relationship." + + "Yes, you are quite right. Those are my sisters, Sarah and Mary." + + "And here at my elbow is another portrait, taken at Liverpool, of + your younger sister, in the company of a man who appears to be a + steward by his uniform. I observe that she was unmarried at the + time." + + "You are very quick at observing." + + "That is my trade." + + "Well, you are quite right. But she was married to Mr. Browner a few + days afterwards. He was on the South American line when that was + taken, but he was so fond of her that he couldn't abide to leave her + for so long, and he got into the Liverpool and London boats." + + "Ah, the Conqueror, perhaps?" + + "No, the May Day, when last I heard. Jim came down here to see me + once. That was before he broke the pledge; but afterwards he would + always take drink when he was ashore, and a little drink would send + him stark, staring mad. Ah! it was a bad day that ever he took a + glass in his hand again. First he dropped me, then he quarrelled with + Sarah, and now that Mary has stopped writing we don't know how things + are going with them." + + It was evident that Miss Cushing had come upon a subject on which she + felt very deeply. Like most people who lead a lonely life, she was + shy at first, but ended by becoming extremely communicative. She told + us many details about her brother-in-law the steward, and then + wandering off on the subject of her former lodgers, the medical + students, she gave us a long account of their delinquencies, with + their names and those of their hospitals. Holmes listened attentively + to everything, throwing in a question from time to time. + + "About your second sister, Sarah," said he. "I wonder, since you are + both maiden ladies, that you do not keep house together." + + "Ah! you don't know Sarah's temper or you would wonder no more. I + tried it when I came to Croydon, and we kept on until about two + months ago, when we had to part. I don't want to say a word against + my own sister, but she was always meddlesome and hard to please, was + Sarah." + + "You say that she quarrelled with your Liverpool relations." + + "Yes, and they were the best of friends at one time. Why, she went up + there to live in order to be near them. And now she has no word hard + enough for Jim Browner. The last six months that she was here she + would speak of nothing but his drinking and his ways. He had caught + her meddling, I suspect, and given her a bit of his mind, and that + was the start of it." + + "Thank you, Miss Cushing," said Holmes, rising and bowing. "Your + sister Sarah lives, I think you said, at New Street, Wallington? + Good-bye, and I am very sorry that you should have been troubled over + a case with which, as you say, you have nothing whatever to do." + + There was a cab passing as we came out, and Holmes hailed it. + + "How far to Wallington?" he asked. + + "Only about a mile, sir." + + "Very good. Jump in, Watson. We must strike while the iron is hot. + Simple as the case is, there have been one or two very instructive + details in connection with it. Just pull up at a telegraph office as + you pass, cabby." + + Holmes sent off a short wire and for the rest of the drive lay back + in the cab, with his hat tilted over his nose to keep the sun from + his face. Our drive pulled up at a house which was not unlike the one + which we had just quitted. My companion ordered him to wait, and had + his hand upon the knocker, when the door opened and a grave young + gentleman in black, with a very shiny hat, appeared on the step. + + "Is Miss Cushing at home?" asked Holmes. + + "Miss Sarah Cushing is extremely ill," said he. "She has been + suffering since yesterday from brain symptoms of great severity. As + her medical adviser, I cannot possibly take the responsibility of + allowing anyone to see her. I should recommend you to call again in + ten days." He drew on his gloves, closed the door, and marched off + down the street. + + "Well, if we can't we can't," said Holmes, cheerfully. + + "Perhaps she could not or would not have told you much." + + "I did not wish her to tell me anything. I only wanted to look at + her. However, I think that I have got all that I want. Drive us to + some decent hotel, cabby, where we may have some lunch, and + afterwards we shall drop down upon friend Lestrade at the + police-station." + + We had a pleasant little meal together, during which Holmes would + talk about nothing but violins, narrating with great exultation how + he had purchased his own Stradivarius, which was worth at least five + hundred guineas, at a Jew broker's in Tottenham Court Road for + fifty-five shillings. This led him to Paganini, and we sat for an + hour over a bottle of claret while he told me anecdote after anecdote + of that extraordinary man. The afternoon was far advanced and the hot + glare had softened into a mellow glow before we found ourselves at + the police-station. Lestrade was waiting for us at the door. + + "A telegram for you, Mr. Holmes," said he. + + "Ha! It is the answer!" He tore it open, glanced his eyes over it, + and crumpled it into his pocket. "That's all right," said he. + + "Have you found out anything?" + + "I have found out everything!" + + "What!" Lestrade stared at him in amazement. "You are joking." + + "I was never more serious in my life. A shocking crime has been + committed, and I think I have now laid bare every detail of it." + + "And the criminal?" + + Holmes scribbled a few words upon the back of one of his visiting + cards and threw it over to Lestrade. + + "That is the name," he said. "You cannot effect an arrest until + to-morrow night at the earliest. I should prefer that you do not + mention my name at all in connection with the case, as I choose to be + only associated with those crimes which present some difficulty in + their solution. Come on, Watson." We strode off together to the + station, leaving Lestrade still staring with a delighted face at the + card which Holmes had thrown him. + + "The case," said Sherlock Holmes as we chatted over or cigars that + night in our rooms at Baker Street, "is one where, as in the + investigations which you have chronicled under the names of 'A Study + in Scarlet' and of 'The Sign of Four,' we have been compelled to + reason backward from effects to causes. I have written to Lestrade + asking him to supply us with the details which are now wanting, and + which he will only get after he had secured his man. That he may be + safely trusted to do, for although he is absolutely devoid of reason, + he is as tenacious as a bulldog when he once understands what he has + to do, and indeed, it is just this tenacity which has brought him to + the top at Scotland Yard." + + "Your case is not complete, then?" I asked. + + "It is fairly complete in essentials. We know who the author of the + revolting business is, although one of the victims still escapes us. + Of course, you have formed your own conclusions." + + "I presume that this Jim Browner, the steward of a Liverpool boat, is + the man whom you suspect?" + + "Oh! it is more than a suspicion." + + "And yet I cannot see anything save very vague indications." + + "On the contrary, to my mind nothing could be more clear. Let me run + over the principal steps. We approached the case, you remember, with + an absolutely blank mind, which is always an advantage. We had formed + no theories. We were simply there to observe and to draw inferences + from our observations. What did we see first? A very placid and + respectable lady, who seemed quite innocent of any secret, and a + portrait which showed me that she had two younger sisters. It + instantly flashed across my mind that the box might have been meant + for one of these. I set the idea aside as one which could be + disproved or confirmed at our leisure. Then we went to the garden, as + you remember, and we saw the very singular contents of the little + yellow box. + + "The string was of the quality which is used by sail-makers aboard + ship, and at once a whiff of the sea was perceptible in our + investigation. When I observed that the knot was one which is popular + with sailors, that the parcel had been posted at a port, and that the + male ear was pierced for an earring which is so much more common + among sailors than landsmen, I was quite certain that all the actors + in the tragedy were to be found among our seafaring classes. + + "When I came to examine the address of the packet I observed that it + was to Miss S. Cushing. Now, the oldest sister would, of course, be + Miss Cushing, and although her initial was 'S' it might belong to one + of the others as well. In that case we should have to commence our + investigation from a fresh basis altogether. I therefore went into + the house with the intention of clearing up this point. I was about + to assure Miss Cushing that I was convinced that a mistake had been + made when you may remember that I came suddenly to a stop. The fact + was that I had just seen something which filled me with surprise and + at the same time narrowed the field of our inquiry immensely. + + "As a medical man, you are aware, Watson, that there is no part of + the body which varies so much as the human ear. Each ear is as a rule + quite distinctive and differs from all other ones. In last year's + Anthropological Journal you will find two short monographs from my + pen upon the subject. I had, therefore, examined the ears in the box + with the eyes of an expert and had carefully noted their anatomical + peculiarities. Imagine my surprise, then, when on looking at Miss + Cushing I perceived that her ear corresponded exactly with the female + ear which I had just inspected. The matter was entirely beyond + coincidence. There was the same shortening of the pinna, the same + broad curve of the upper lobe, the same convolution of the inner + cartilage. In all essentials it was the same ear. + + "In the first place, her sister's name was Sarah, and her address had + until recently been the same, so that it was quite obvious how the + mistake had occurred and for whom the packet was meant. Then we heard + of this steward, married to the third sister, and learned that he had + at one time been so intimate with Miss Sarah that she had actually + gone up to Liverpool to be near the Browners, but a quarrel had + afterwards divided them. This quarrel had put a stop to all + communications for some months, so that if Browner had occasion to + address a packet to Miss Sarah, he would undoubtedly have done so to + her old address. + + "And now the matter had begun to straighten itself out wonderfully. + We had learned of the existence of this steward, an impulsive man, of + strong passions--you remember that he threw up what must have been a + very superior berth in order to be nearer to his wife--subject, too, + to occasional fits of hard drinking. We had reason to believe that + his wife had been murdered, and that a man--presumably a seafaring + man--had been murdered at the same time. Jealousy, of course, at once + suggests itself as the motive for the crime. And why should these + proofs of the deed be sent to Miss Sarah Cushing? Probably because + during her residence in Liverpool she had some hand in bringing about + the events which led to the tragedy. You will observe that this line + of boats call at Belfast, Dublin, and Waterford; so that, presuming + that Browner had committed the deed and had embarked at once upon his + steamer, the May Day, Belfast would be the first place at which he + could post his terrible packet. + + "A second solution was at this stage obviously possible, and although + I thought it exceedingly unlikely, I was determined to elucidate it + before going further. An unsuccessful lover might have killed Mr. and + Mrs. Browner, and the male ear might have belonged to the husband. + There were many grave objections to this theory, but it was + conceivable. I therefore sent off a telegram to my friend Algar, of + the Liverpool force, and asked him to find out if Mrs. Browner were + at home, and if Browner had departed in the May Day. Then we went on + to Wallington to visit Miss Sarah. + + "I was curious, in the first place, to see how far the family ear had + been reproduced in her. Then, of course, she might give us very + important information, but I was not sanguine that she would. She + must have heard of the business the day before, since all Croydon was + ringing with it, and she alone could have understood for whom the + packet was meant. If she had been willing to help justice she would + probably have communicated with the police already. However, it was + clearly our duty to see her, so we went. We found that the news of + the arrival of the packet--for her illness dated from that time--had + such an effect upon her as to bring on brain fever. It was clearer + than ever that she understood its full significance, but equally + clear that we should have to wait some time for any assistance from + her. + + "However, we were really independent of her help. Our answers were + waiting for us at the police-station, where I had directed Algar to + send them. Nothing could be more conclusive. Mrs. Browner's house had + been closed for more than three days, and the neighbours were of + opinion that she had gone south to see her relatives. It had been + ascertained at the shipping offices that Browner had left aboard of + the May Day, and I calculate that she is due in the Thames tomorrow + night. When he arrives he will be met by the obtuse but resolute + Lestrade, and I have no doubt that we shall have all our details + filled in." + + Sherlock Holmes was not disappointed in his expectations. Two days + later he received a bulky envelope, which contained a short note from + the detective, and a typewritten document, which covered several + pages of foolscap. + + "Lestrade has got him all right," said Holmes, glancing up at me. + "Perhaps it would interest you to hear what he says. + + "My dear Mr. Holmes: + "In accordance with the scheme which we had formed in order to test + our theories" ["the 'we' is rather fine, Watson, is it not?"] "I went + down to the Albert Dock yesterday at 6 p.m., and boarded the S.S. May + Day, belonging to the Liverpool, Dublin, and London Steam Packet + Company. On inquiry, I found that there was a steward on board of the + name of James Browner and that he had acted during the voyage in such + an extraordinary manner that the captain had been compelled to + relieve him of his duties. On descending to his berth, I found him + seated upon a chest with his head sunk upon his hands, rocking + himself to and fro. He is a big, powerful chap, clean-shaven, and + very swarthy--something like Aldrige, who helped us in the bogus + laundry affair. He jumped up when he heard my business, and I had my + whistle to my lips to call a couple of river police, who were round + the corner, but he seemed to have no heart in him, and he held out + his hands quietly enough for the darbies. We brought him along to the + cells, and his box as well, for we thought there might be something + incriminating; but, bar a big sharp knife such as most sailors have, + we got nothing for our trouble. However, we find that we shall want + no more evidence, for on being brought before the inspector at the + station he asked leave to make a statement, which was, of course, + taken down, just as he made it, by our shorthand man. We had three + copies typewritten, one of which I enclose. The affair proves, as I + always thought it would, to be an extremely simple one, but I am + obliged to you for assisting me in my investigation. With kind + regards, + "Yours very truly, + "G. Lestrade. + + "Hum! The investigation really was a very simple one," remarked + Holmes, "but I don't think it struck him in that light when he first + called us in. However, let us see what Jim Browner has to say for + himself. This is his statement as made before Inspector Montgomery at + the Shadwell Police Station, and it has the advantage of being + verbatim." + + "'Have I anything to say? Yes, I have a deal to say. I have to make a + clean breast of it all. You can hang me, or you can leave me alone. I + don't care a plug which you do. I tell you I've not shut an eye in + sleep since I did it, and I don't believe I ever will again until I + get past all waking. Sometimes it's his face, but most generally it's + hers. I'm never without one or the other before me. He looks frowning + and black-like, but she has a kind o' surprise upon her face. Ay, the + white lamb, she might well be surprised when she read death on a face + that had seldom looked anything but love upon her before. + + "'But it was Sarah's fault, and may the curse of a broken man put a + blight on her and set the blood rotting in her veins! It's not that I + want to clear myself. I know that I went back to drink, like the + beast that I was. But she would have forgiven me; she would have + stuck as close to me as a rope to a block if that woman had never + darkened our door. For Sarah Cushing loved me--that's the root of the + business--she loved me until all her love turned to poisonous hate + when she knew that I thought more of my wife's footmark in the mud + than I did of her whole body and soul. + + "'There were three sisters altogether. The old one was just a good + woman, the second was a devil, and the third was an angel. Sarah was + thirty-three, and Mary was twenty-nine when I married. We were just + as happy as the day was long when we set up house together, and in + all Liverpool there was no better woman than my Mary. And then we + asked Sarah up for a week, and the week grew into a month, and one + thing led to another, until she was just one of ourselves. + + "'I was blue ribbon at that time, and we were putting a little money + by, and all was as bright as a new dollar. My God, whoever would have + thought that it could have come to this? Whoever would have dreamed + it? + + "'I used to be home for the week-ends very often, and sometimes if + the ship were held back for cargo I would have a whole week at a + time, and in this way I saw a deal of my sister-in-law, Sarah. She + was a fine tall woman, black and quick and fierce, with a proud way + of carrying her head, and a glint from her eye like a spark from a + flint. But when little Mary was there I had never a thought of her, + and that I swear as I hope for God's mercy. + + "'It had seemed to me sometimes that she liked to be alone with me, + or to coax me out for a walk with her, but I had never thought + anything of that. But one evening my eyes were opened. I had come up + from the ship and found my wife out, but Sarah at home. "Where's + Mary?" I asked. "Oh, she has gone to pay some accounts." I was + impatient and paced up and down the room. "Can't you be happy for + five minutes without Mary, Jim?" says she. "It's a bad compliment to + me that you can't be contented with my society for so short a time." + "That's all right, my lass," said I, putting out my hand towards her + in a kindly way, but she had it in both hers in an instant, and they + burned as if they were in a fever. I looked into her eyes and I read + it all there. There was no need for her to speak, nor for me either. + I frowned and drew my hand away. Then she stood by my side in silence + for a bit, and then put up her hand and patted me on the shoulder. + "Steady old Jim!" said she, and with a kind o' mocking laugh, she ran + out of the room. + + "'Well, from that time Sarah hated me with her whole heart and soul, + and she is a woman who can hate, too. I was a fool to let her go on + biding with us--a besotted fool--but I never said a word to Mary, for + I knew it would grieve her. Things went on much as before, but after + a time I began to find that there was a bit of a change in Mary + herself. She had always been so trusting and so innocent, but now she + became queer and suspicious, wanting to know where I had been and + what I had been doing, and whom my letters were from, and what I had + in my pockets, and a thousand such follies. Day by day she grew + queerer and more irritable, and we had ceaseless rows about nothing. + I was fairly puzzled by it all. Sarah avoided me now, but she and + Mary were just inseparable. I can see now how she was plotting and + scheming and poisoning my wife's mind against me, but I was such a + blind beetle that I could not understand it at the time. Then I broke + my blue ribbon and began to drink again, but I think I should not + have done it if Mary had been the same as ever. She had some reason + to be disgusted with me now, and the gap between us began to be wider + and wider. And then this Alec Fairbairn chipped in, and things became + a thousand times blacker. + + "'It was to see Sarah that he came to my house first, but soon it was + to see us, for he was a man with winning ways, and he made friends + wherever he went. He was a dashing, swaggering chap, smart and + curled, who had seen half the world and could talk of what he had + seen. He was good company, I won't deny it, and he had wonderful + polite ways with him for a sailor man, so that I think there must + have been a time when he knew more of the poop than the forecastle. + For a month he was in and out of my house, and never once did it + cross my mind that harm might come of his soft, tricky ways. And then + at last something made me suspect, and from that day my peace was + gone forever. + + "'It was only a little thing, too. I had come into the parlour + unexpected, and as I walked in at the door I saw a light of welcome + on my wife's face. But as she saw who it was it faded again, and she + turned away with a look of disappointment. That was enough for me. + There was no one but Alec Fairbairn whose step she could have + mistaken for mine. If I could have seen him then I should have killed + him, for I have always been like a madman when my temper gets loose. + Mary saw the devil's light in my eyes, and she ran forward with her + hands on my sleeve. "Don't, Jim, don't!" says she. "Where's Sarah?" I + asked. "In the kitchen," says she. "Sarah," says I as I went in, + "this man Fairbairn is never to darken my door again." "Why not?" + says she. "Because I order it." "Oh!" says she, "if my friends are + not good enough for this house, then I am not good enough for it + either." "You can do what you like," says I, "but if Fairbairn shows + his face here again I'll send you one of his ears for a keepsake." + She was frightened by my face, I think, for she never answered a + word, and the same evening she left my house. + + "'Well, I don't know now whether it was pure devilry on the part of + this woman, or whether she thought that she could turn me against my + wife by encouraging her to misbehave. Anyway, she took a house just + two streets off and let lodgings to sailors. Fairbairn used to stay + there, and Mary would go round to have tea with her sister and him. + How often she went I don't know, but I followed her one day, and as I + broke in at the door Fairbairn got away over the back garden wall, + like the cowardly skunk that he was. I swore to my wife that I would + kill her if I found her in his company again, and I led her back with + me, sobbing and trembling, and as white as a piece of paper. There + was no trace of love between us any longer. I could see that she + hated me and feared me, and when the thought of it drove me to drink, + then she despised me as well. + + "'Well, Sarah found that she could not make a living in Liverpool, so + she went back, as I understand, to live with her sister in Croydon, + and things jogged on much the same as ever at home. And then came + this week and all the misery and ruin. + + "'It was in this way. We had gone on the May Day for a round voyage + of seven days, but a hogshead got loose and started one of our + plates, so that we had to put back into port for twelve hours. I left + the ship and came home, thinking what a surprise it would be for my + wife, and hoping that maybe she would be glad to see me so soon. The + thought was in my head as I turned into my own street, and at that + moment a cab passed me, and there she was, sitting by the side of + Fairbairn, the two chatting and laughing, with never a thought for me + as I stood watching them from the footpath. + + "'I tell you, and I give you my word for it, that from that moment I + was not my own master, and it is all like a dim dream when I look + back on it. I had been drinking hard of late, and the two things + together fairly turned my brain. There's something throbbing in my + head now, like a docker's hammer, but that morning I seemed to have + all Niagara whizzing and buzzing in my ears. + + "'Well, I took to my heels, and I ran after the cab. I had a heavy + oak stick in my hand, and I tell you I saw red from the first; but as + I ran I got cunning, too, and hung back a little to see them without + being seen. They pulled up soon at the railway station. There was a + good crowd round the booking-office, so I got quite close to them + without being seen. They took tickets for New Brighton. So did I, but + I got in three carriages behind them. When we reached it they walked + along the Parade, and I was never more than a hundred yards from + them. At last I saw them hire a boat and start for a row, for it was + a very hot day, and they thought, no doubt, that it would be cooler + on the water. + + "'It was just as if they had been given into my hands. There was a + bit of a haze, and you could not see more than a few hundred yards. I + hired a boat for myself, and I pulled after them. I could see the + blur of their craft, but they were going nearly as fast as I, and + they must have been a long mile from the shore before I caught them + up. The haze was like a curtain all round us, and there were we three + in the middle of it. My God, shall I ever forget their faces when + they saw who was in the boat that was closing in upon them? She + screamed out. He swore like a madman and jabbed at me with an oar, + for he must have seen death in my eyes. I got past it and got one in + with my stick that crushed his head like an egg. I would have spared + her, perhaps, for all my madness, but she threw her arms round him, + crying out to him, and calling him "Alec." I struck again, and she + lay stretched beside him. I was like a wild beast then that had + tasted blood. If Sarah had been there, by the Lord, she should have + joined them. I pulled out my knife, and--well, there! I've said + enough. It gave me a kind of savage joy when I thought how Sarah + would feel when she had such signs as these of what her meddling had + brought about. Then I tied the bodies into the boat, stove a plank, + and stood by until they had sunk. I knew very well that the owner + would think that they had lost their bearings in the haze, and had + drifted off out to sea. I cleaned myself up, got back to land, and + joined my ship without a soul having a suspicion of what had passed. + That night I made up the packet for Sarah Cushing, and next day I + sent it from Belfast. + + "'There you have the whole truth of it. You can hang me, or do what + you like with me, but you cannot punish me as I have been punished + already. I cannot shut my eyes but I see those two faces staring at + me--staring at me as they stared when my boat broke through the haze. + I killed them quick, but they are killing me slow; and if I have + another night of it I shall be either mad or dead before morning. You + won't put me alone into a cell, sir? For pity's sake don't, and may + you be treated in your day of agony as you treat me now.' + + "What is the meaning of it, Watson?" said Holmes solemnly as he laid + down the paper. "What object is served by this circle of misery and + violence and fear? It must tend to some end, or else our universe is + ruled by chance, which is unthinkable. But what end? There is the + great standing perennial problem to which human reason is as far from + an answer as ever." + + + + + + + THE ADVENTURE OF THE RED CIRCLE + + + + + + Table of contents + Part One + Part Two + + + + + + + + + + + + + + + + CHAPTER I + Part One + + + "Well, Mrs. Warren, I cannot see that you have any particular cause + for uneasiness, nor do I understand why I, whose time is of some + value, should interfere in the matter. I really have other things to + engage me." So spoke Sherlock Holmes and turned back to the great + scrapbook in which he was arranging and indexing some of his recent + material. + + But the landlady had the pertinacity and also the cunning of her sex. + She held her ground firmly. + + "You arranged an affair for a lodger of mine last year," she + said--"Mr. Fairdale Hobbs." + + "Ah, yes--a simple matter." + + "But he would never cease talking of it--your kindness, sir, and the + way in which you brought light into the darkness. I remembered his + words when I was in doubt and darkness myself. I know you could if + you only would." + + Holmes was accessible upon the side of flattery, and also, to do him + justice, upon the side of kindliness. The two forces made him lay + down his gum-brush with a sigh of resignation and push back his + chair. + + "Well, well, Mrs. Warren, let us hear about it, then. You don't + object to tobacco, I take it? Thank you, Watson--the matches! You are + uneasy, as I understand, because your new lodger remains in his rooms + and you cannot see him. Why, bless you, Mrs. Warren, if I were your + lodger you often would not see me for weeks on end." + + "No doubt, sir; but this is different. It frightens me, Mr. Holmes. I + can't sleep for fright. To hear his quick step moving here and moving + there from early morning to late at night, and yet never to catch so + much as a glimpse of him--it's more than I can stand. My husband is + as nervous over it as I am, but he is out at his work all day, while + I get no rest from it. What is he hiding for? What has he done? + Except for the girl, I am all alone in the house with him, and it's + more than my nerves can stand." + + Holmes leaned forward and laid his long, thin fingers upon the + woman's shoulder. He had an almost hypnotic power of soothing when he + wished. The scared look faded from her eyes, and her agitated + features smoothed into their usual commonplace. She sat down in the + chair which he had indicated. + + "If I take it up I must understand every detail," said he. "Take time + to consider. The smallest point may be the most essential. You say + that the man came ten days ago and paid you for a fortnight's board + and lodging?" + + "He asked my terms, sir. I said fifty shillings a week. There is a + small sitting-room and bedroom, and all complete, at the top of the + house." + + "Well?" + + "He said, 'I'll pay you five pounds a week if I can have it on my own + terms.' I'm a poor woman, sir, and Mr. Warren earns little, and the + money meant much to me. He took out a ten-pound note, and he held it + out to me then and there. 'You can have the same every fortnight for + a long time to come if you keep the terms,' he said. 'If not, I'll + have no more to do with you.' + + "What were the terms?" + + "Well, sir, they were that he was to have a key of the house. That + was all right. Lodgers often have them. Also, that he was to be left + entirely to himself and never, upon any excuse, to be disturbed." + + "Nothing wonderful in that, surely?" + + "Not in reason, sir. But this is out of all reason. He has been there + for ten days, and neither Mr. Warren, nor I, nor the girl has once + set eyes upon him. We can hear that quick step of his pacing up and + down, up and down, night, morning, and noon; but except on that first + night he had never once gone out of the house." + + "Oh, he went out the first night, did he?" + + "Yes, sir, and returned very late--after we were all in bed. He told + me after he had taken the rooms that he would do so and asked me not + to bar the door. I heard him come up the stair after midnight." + + "But his meals?" + + "It was his particular direction that we should always, when he rang, + leave his meal upon a chair, outside his door. Then he rings again + when he has finished, and we take it down from the same chair. If he + wants anything else he prints it on a slip of paper and leaves it." + + "Prints it?" + + "Yes, sir; prints it in pencil. Just the word, nothing more. Here's + the one I brought to show you--soap. Here's another--match. This is + one he left the first morning--daily gazette. I leave that paper with + his breakfast every morning." + + "Dear me, Watson," said Homes, staring with great curiosity at the + slips of foolscap which the landlady had handed to him, "this is + certainly a little unusual. Seclusion I can understand; but why + print? Printing is a clumsy process. Why not write? What would it + suggest, Watson?" + + "That he desired to conceal his handwriting." + + "But why? What can it matter to him that his landlady should have a + word of his writing? Still, it may be as you say. Then, again, why + such laconic messages?" + + "I cannot imagine." + + "It opens a pleasing field for intelligent speculation. The words are + written with a broad-pointed, violet-tinted pencil of a not unusual + pattern. You will observe that the paper is torn away at the side + here after the printing was done, so that the 's' of 'soap' is partly + gone. Suggestive, Watson, is it not?" + + "Of caution?" + + "Exactly. There was evidently some mark, some thumbprint, something + which might give a clue to the person's identity. Now. Mrs. Warren, + you say that the man was of middle size, dark, and bearded. What age + would he be?" + + "Youngish, sir--not over thirty." + + "Well, can you give me no further indications?" + + "He spoke good English, sir, and yet I thought he was a foreigner by + his accent." + + "And he was well dressed?" + + "Very smartly dressed, sir--quite the gentleman. Dark + clothes--nothing you would note." + + "He gave no name?" + + "No, sir." + + "And has had no letters or callers?" + + "None." + + "But surely you or the girl enter his room of a morning?" + + "No, sir; he looks after himself entirely." + + "Dear me! that is certainly remarkable. What about his luggage?" + + "He had one big brown bag with him--nothing else." + + "Well, we don't seem to have much material to help us. Do you say + nothing has come out of that room--absolutely nothing?" + + The landlady drew an envelope from her bag; from it she shook out two + burnt matches and a cigarette-end upon the table. + + "They were on his tray this morning. I brought them because I had + heard that you can read great things out of small ones." + + Holmes shrugged his shoulders. + + "There is nothing here," said he. "The matches have, of course, been + used to light cigarettes. That is obvious from the shortness of the + burnt end. Half the match is consumed in lighting a pipe or cigar. + But, dear me! this cigarette stub is certainly remarkable. The + gentleman was bearded and moustached, you say?" + + "Yes, sir." + + "I don't understand that. I should say that only a clean-shaven man + could have smoked this. Why, Watson, even your modest moustache would + have been singed." + + "A holder?" I suggested. + + "No, no; the end is matted. I suppose there could not be two people + in your rooms, Mrs. Warren?" + + "No, sir. He eats so little that I often wonder it can keep life in + one." + + "Well, I think we must wait for a little more material. After all, + you have nothing to complain of. You have received your rent, and he + is not a troublesome lodger, though he is certainly an unusual one. + He pays you well, and if he chooses to lie concealed it is no direct + business of yours. We have no excuse for an intrusion upon his + privacy until we have some reason to think that there is a guilty + reason for it. I've taken up the matter, and I won't lose sight of + it. Report to me if anything fresh occurs, and rely upon my + assistance if it should be needed. + + "There are certainly some points of interest in this case, Watson," + he remarked when the landlady had left us. "It may, of course, be + trivial--individual eccentricity; or it may be very much deeper than + appears on the surface. The first thing that strike one is the + obvious possibility that the person now in the rooms may be entirely + different from the one who engaged them." + + "Why should you think so?" + + "Well, apart form this cigarette-end, was it not suggestive that the + only time the lodger went out was immediately after his taking the + rooms? He came back--or someone came back--when all witnesses were + out of the way. We have no proof that the person who came back was + the person who went out. Then, again, the man who took the rooms + spoke English well. This other, however, prints 'match' when it + should have been 'matches.' I can imagine that the word was taken out + of a dictionary, which would give the noun but not the plural. The + laconic style may be to conceal the absence of knowledge of English. + Yes, Watson, there are good reasons to suspect that there has been a + substitution of lodgers." + + "But for what possible end?" + + "Ah! there lies our problem. There is one rather obvious line of + investigation." He took down the great book in which, day by day, he + filed the agony columns of the various London journals. "Dear me!" + said he, turning over the pages, "what a chorus of groans, cries, and + bleatings! What a rag-bag of singular happenings! But surely the most + valuable hunting-ground that ever was given to a student of the + unusual! This person is alone and cannot be approached by letter + without a breach of that absolute secrecy which is desired. How is + any news or any message to reach him from without? Obviously by + advertisement through a newspaper. There seems no other way, and + fortunately we need concern ourselves with the one paper only. Here + are the Daily Gazette extracts of the last fortnight. 'Lady with a + black boa at Prince's Skating Club'--that we may pass. 'Surely Jimmy + will not break his mother's heart'--that appears to be irrelevant. + 'If the lady who fainted on Brixton bus'--she does not interest me. + 'Every day my heart longs--' Bleat, Watson--unmitigated bleat! Ah, + this is a little more possible. Listen to this: 'Be patient. Will + find some sure means of communications. Meanwhile, this column. G.' + That is two days after Mrs. Warren's lodger arrived. It sounds + plausible, does it not? The mysterious one could understand English, + even if he could not print it. Let us see if we can pick up the trace + again. Yes, here we are--three days later. 'Am making successful + arrangements. Patience and prudence. The clouds will pass. G.' + Nothing for a week after that. Then comes something much more + definite: 'The path is clearing. If I find chance signal message + remember code agreed--One A, two B, and so on. You will hear soon. + G.' That was in yesterday's paper, and there is nothing in to-day's. + It's all very appropriate to Mrs. Warren's lodger. If we wait a + little, Watson, I don't doubt that the affair will grow more + intelligible." + + So it proved; for in the morning I found my friend standing on the + hearthrug with his back to the fire and a smile of complete + satisfaction upon his face. + + "How's this, Watson?" he cried, picking up the paper from the table. + "'High red house with white stone facings. Third floor. Second window + left. After dusk. G.' That is definite enough. I think after + breakfast we must make a little reconnaissance of Mrs. Warren's + neighbourhood. Ah, Mrs. Warren! what news do you bring us this + morning?" + + Our client had suddenly burst into the room with an explosive energy + which told of some new and momentous development. + + "It's a police matter, Mr. Holmes!" she cried. "I'll have no more of + it! He shall pack out of there with his baggage. I would have gone + straight up and told him so, only I thought it was but fair to you to + take your opinion first. But I'm at the end of my patience, and when + it comes to knocking my old man about--" + + "Knocking Mr. Warren about?" + + "Using him roughly, anyway." + + "But who used him roughly?" + + "Ah! that's what we want to know! It was this morning, sir. Mr. + Warren is a timekeeper at Morton and Waylight's, in Tottenham Court + Road. He has to be out of the house before seven. Well, this morning + he had not gone ten paces down the road when two men came up behind + him, threw a coat over his head, and bundled him into a cab that was + beside the curb. They drove him an hour, and then opened the door and + shot him out. He lay in the roadway so shaken in his wits that he + never saw what became of the cab. When he picked himself up he found + he was on Hampstead Heath; so he took a bus home, and there he lies + now on his sofa, while I came straight round to tell you what had + happened." + + "Most interesting," said Holmes. "Did he observe the appearance of + these men--did he hear them talk?" + + "No; he is clean dazed. He just knows that he was lifted up as if by + magic and dropped as if by magic. Two a least were in it, and maybe + three." + + "And you connect this attack with your lodger?" + + "Well, we've lived there fifteen years and no such happenings ever + came before. I've had enough of him. Money's not everything. I'll + have him out of my house before the day is done." + + "Wait a bit, Mrs. Warren. Do nothing rash. I begin to think that this + affair may be very much more important than appeared at first sight. + It is clear now that some danger is threatening your lodger. It is + equally clear that his enemies, lying in wait for him near your door, + mistook your husband for him in the foggy morning light. On + discovering their mistake they released him. What they would have + done had it not been a mistake, we can only conjecture." + + "Well, what am I to do, Mr. Holmes?" + + "I have a great fancy to see this lodger of yours, Mrs. Warren." + + "I don't see how that is to be managed, unless you break in the door. + I always hear him unlock it as I go down the stair after I leave the + tray." + + "He has to take the tray in. Surely we could conceal ourselves and + see him do it." + + The landlady thought for a moment. + + "Well, sir, there's the box-room opposite. I could arrange a + looking-glass, maybe, and if you were behind the door--" + + "Excellent!" said Holmes. "When does he lunch?" + + "About one, sir." + + "Then Dr. Watson and I will come round in time. For the present, Mrs. + Warren, good-bye." + + At half-past twelve we found ourselves upon the steps of Mrs. + Warren's house--a high, thin, yellow-brick edifice in Great Orme + Street, a narrow thoroughfare at the northeast side of the British + Museum. Standing as it does near the corner of the street, it + commands a view down Howe Street, with its ore pretentious houses. + Holmes pointed with a chuckle to one of these, a row of residential + flats, which projected so that they could not fail to catch the eye. + + "See, Watson!" said he. "'High red house with stone facings.' There + is the signal station all right. We know the place, and we know the + code; so surely our task should be simple. There's a 'to let' card in + that window. It is evidently an empty flat to which the confederate + has access. Well, Mrs. Warren, what now?" + + "I have it all ready for you. If you will both come up and leave your + boots below on the landing, I'll put you there now." + + It was an excellent hiding-place which she had arranged. The mirror + was so placed that, seated in the dark, we could very plainly see the + door opposite. We had hardly settled down in it, and Mrs. Warren left + us, when a distant tinkle announced that our mysterious neighbour had + rung. Presently the landlady appeared with the tray, laid it down + upon a chair beside the closed door, and then, treading heavily, + departed. Crouching together in the angle of the door, we kept our + eyes fixed upon the mirror. Suddenly, as the landlady's footsteps + died away, there was the creak of a turning key, the handle revolved, + and two thin hands darted out and lifted the tray form the chair. An + instant later it was hurriedly replaced, and I caught a glimpse of a + dark, beautiful, horrified face glaring at the narrow opening of the + box-room. Then the door crashed to, the key turned once more, and all + was silence. Holmes twitched my sleeve, and together we stole down + the stair. + + "I will call again in the evening," said he to the expectant + landlady. "I think, Watson, we can discuss this business better in + our own quarters." + + "My surmise, as you saw, proved to be correct," said he, speaking + from the depths of his easy-chair. "There has been a substitution of + lodgers. What I did not foresee is that we should find a woman, and + no ordinary woman, Watson." + + "She saw us." + + "Well, she saw something to alarm her. That is certain. The general + sequence of events is pretty clear, is it not? A couple seek refuge + in London from a very terrible and instant danger. The measure of + that danger is the rigour of their precautions. The man, who has some + work which he must do, desires to leave the woman in absolute safety + while he does it. It is not an easy problem, but he solved it in an + original fashion, and so effectively that her presence was not even + known to the landlady who supplies her with food. The printed + messages, as is now evident, were to prevent her sex being discovered + by her writing. The man cannot come near the woman, or he will guide + their enemies to her. Since he cannot communicate with her direct, he + has recourse to the agony column of a paper. So far all is clear." + + "But what is at the root of it?" + + "Ah, yes, Watson--severely practical, as usual! What is at the root + of it all? Mrs. Warren's whimsical problem enlarges somewhat and + assumes a more sinister aspect as we proceed. This much we can say: + that it is no ordinary love escapade. You saw the woman's face at the + sign of danger. We have heard, too, of the attack upon the landlord, + which was undoubtedly meant for the lodger. These alarms, and the + desperate need for secrecy, argue that the matter is one of life or + death. The attack upon Mr. Warren further shows that the enemy, + whoever they are, are themselves not aware of the substitution of the + female lodger for the male. It is very curious and complex, Watson." + + "Why should you go further in it? What have you to gain from it?" + + "What, indeed? It is art for art's sake, Watson. I suppose when you + doctored you found yourself studying cases without thought of a fee?" + + "For my education, Holmes." + + "Education never ends, Watson. It is a series of lessons with the + greatest for the last. This is an instructive case. There is neither + money nor credit in it, and yet one would wish to tidy it up. When + dusk comes we should find ourselves one stage advanced in our + investigation." + + When we returned to Mrs. Warren's rooms, the gloom of a London winter + evening had thickened into one gray curtain, a dead monotone of + colour, broken only by the sharp yellow squares of the windows and + the blurred haloes of the gas-lamps. As we peered from the darkened + sitting-room of the lodging-house, one more dim light glimmered high + up through the obscurity. + + "Someone is moving in that room," said Holmes in a whisper, his gaunt + and eager face thrust forward to the window-pane. "Yes, I can see his + shadow. There he is again! He has a candle in his hand. Now he is + peering across. He wants to be sure that she is on the lookout. Now + he begins to flash. Take the message also, Watson, that we may check + each other. A single flash--that is A, surely. Now, then. How many + did you make it? Twenty. Do did In. That should mean T. AT--that's + intelligible enough. Another T. Surely this is the beginning of a + second word. Now, then--TENTA. Dead stop. That can't be all, Watson? + ATTENTA gives no sense. Nor is it any better as three words AT, TEN, + TA, unless T. A. are a person's initials. There it goes again! What's + that? ATTE--why, it is the same message over again. Curious, Watson, + very curious. Now he is off once more! AT--why he is repeating it for + the third time. ATTENTA three times! How often will he repeat it? No, + that seems to be the finish. He has withdrawn form the window. What + do you make of it, Watson?" + + "A cipher message, Holmes." + + My companion gave a sudden chuckle of comprehension. "And not a very + obscure cipher, Watson," said he. "Why, of course, it is Italian! The + A means that it is addressed to a woman. 'Beware! Beware! Beware!' + How's that, Watson? + + "I believe you have hit it." + + "Not a doubt of it. It is a very urgent message, thrice repeated to + make it more so. But beware of what? Wait a bit, he is coming to the + window once more." + + Again we saw the dim silhouette of a crouching man and the whisk of + the small flame across the window as the signals were renewed. They + came more rapidly than before--so rapid that it was hard to follow + them. + + "PERICOLO--pericolo--eh, what's that, Watson? 'Danger,' isn't it? + Yes, by Jove, it's a danger signal. There he goes again! PERI. + Halloa, what on earth--" + + The light had suddenly gone out, the glimmering square of window had + disappeared, and the third floor formed a dark band round the lofty + building, with its tiers of shining casements. That last warning cry + had been suddenly cut short. How, and by whom? The same thought + occurred on the instant to us both. Holmes sprang up from where he + crouched by the window. + + "This is serious, Watson," he cried. "There is some devilry going + forward! Why should such a message stop in such a way? I should put + Scotland Yard in touch with this business--and yet, it is too + pressing for us to leave." + + "Shall I go for the police?" + + "We must define the situation a little more clearly. It may bear some + more innocent interpretation. Come, Watson, let us go across + ourselves and see what we can make of it." + + + + + + CHAPTER II + Part Two + + + As we walked rapidly down Howe Street I glanced back at the building + which we had left. There, dimly outlined at the top window, I could + see the shadow of a head, a woman's head, gazing tensely, rigidly, + out into the night, waiting with breathless suspense for the renewal + of that interrupted message. At the doorway of the Howe Street flats + a man, muffled in a cravat and greatcoat, was leaning against the + railing. He started as the hall-light fell upon our faces. + + "Holmes!" he cried. + + "Why, Gregson!" said my companion as he shook hands with the Scotland + Yard detective. "Journeys end with lovers' meetings. What brings you + here?" + + "The same reasons that bring you, I expect," said Gregson. "How you + got on to it I can't imagine." + + "Different threads, but leading up to the same tangle. I've been + taking the signals." + + "Signals?" + + "Yes, from that window. They broke off in the middle. We came over to + see the reason. But since it is safe in your hands I see no object in + continuing this business." + + "Wait a bit!" cried Gregson eagerly. "I'll do you this justice, Mr. + Holmes, that I was never in a case yet that I didn't feel stronger + for having you on my side. There's only the one exit to these flats, + so we have him safe." + + "Who is he?" + + "Well, well, we score over you for once, Mr. Holmes. You must give us + best this time." He struck his stick sharply upon the ground, on + which a cabman, his whip in his hand, sauntered over from a + four-wheeler which stood on the far side of the street. "May I + introduce you to Mr. Sherlock Holmes?" he said to the cabman. "This + is Mr. Leverton, of Pinkerton's American Agency." + + "The hero of the Long Island cave mystery?" said Holmes. "Sir, I am + pleased to meet you." + + The American, a quiet, businesslike young man, with a clean-shaven, + hatchet face, flushed up at the words of commendation. "I am on the + trail of my life now, Mr. Holmes," said he. "If I can get Gorgiano--" + + "What! Gorgiano of the Red Circle?" + + "Oh, he has a European fame, has he? Well, we've learned all about + him in America. We know he is at the bottom of fifty murders, and yet + we have nothing positive we can take him on. I tracked him over from + New York, and I've been close to him for a week in London, waiting + some excuse to get my hand on his collar. Mr. Gregson and I ran him + to ground in that big tenement house, and there's only one door, so + he can't slip us. There's three folk come out since he went in, but + I'll swear he wasn't one of them." + + "Mr. Holmes talks of signals," said Gregson. "I expect, as usual, he + knows a good deal that we don't." + + In a few clear words Holmes explained the situation as it had + appeared to us. The American struck his hands together with vexation. + + "He's on to us!" he cried. + + "Why do you think so?" + + "Well, it figures out that way, does it not? Here he is, sending out + messages to an accomplice--there are several of his gang in London. + Then suddenly, just as by your own account he was telling them that + there was danger, he broke short off. What could it mean except that + from the window he had suddenly either caught sight of us in the + street, or in some way come to understand how close the danger was, + and that he must act right away if he was to avoid it? What do you + suggest, Mr. Holmes?" + + "That we go up at once and see for ourselves." + + "But we have no warrant for his arrest." + + "He is in unoccupied premises under suspicious circumstances," said + Gregson. "That is good enough for the moment. When we have him by the + heels we can see if New York can't help us to keep him. I'll take the + responsibility of arresting him now." + + Our official detectives may blunder in the matter of intelligence, + but never in that of courage. Gregson climbed the stair to arrest + this desperate murderer with the same absolutely quiet and + businesslike bearing with which he would have ascended the official + staircase of Scotland Yard. The Pinkerton man had tried to push past + him, but Gregson had firmly elbowed him back. London dangers were the + privilege of the London force. + + The door of the left-hand flat upon the third landing was standing + ajar. Gregson pushed it open. Within all was absolute silence and + darkness. I struck a match and lit the detective's lantern. As I did + so, and as the flicker steadied into a flame, we all gave a gasp of + surprise. On the deal boards of the carpetless floor there was + outlined a fresh track of blood. The red steps pointed towards us and + led away from an inner room, the door of which was closed. Gregson + flung it open and held his light full blaze in front of him, while we + all peered eagerly over his shoulders. + + In the middle of the floor of the empty room was huddled the figure + of an enormous man, his clean-shaven, swarthy face grotesquely + horrible in its contortion and his head encircled by a ghastly + crimson halo of blood, lying in a broad wet circle upon the white + woodwork. His knees were drawn up, his hands thrown out in agony, and + from the centre of his broad, brown, upturned throat there projected + the white haft of a knife driven blade-deep into his body. Giant as + he was, the man must have gone down like a pole-axed ox before that + terrific blow. Beside his right hand a most formidable horn-handled, + two-edged dagger lay upon the floor, and near it a black kid glove. + + "By George! it's Black Gorgiano himself!" cried the American + detective. "Someone has got ahead of us this time." + + "Here is the candle in the window, Mr. Holmes," said Gregson. "Why, + whatever are you doing?" + + Holmes had stepped across, had lit the candle, and was passing it + backward and forward across the window-panes. Then he peered into the + darkness, blew the candle out, and threw it on the floor. + + "I rather think that will be helpful," said he. He came over and + stood in deep thought while the two professionals were examining the + body. "You say that three people came out form the flat while you + were waiting downstairs," said he at last. "Did you observe them + closely?" + + "Yes, I did." + + "Was there a fellow about thirty, black-bearded, dark, of middle + size?" + + "Yes; he was the last to pass me." + + "That is your man, I fancy. I can give you his description, and we + have a very excellent outline of his footmark. That should be enough + for you." + + "Not much, Mr. Holmes, among the millions of London." + + "Perhaps not. That is why I thought it best to summon this lady to + your aid." + + We all turned round at the words. There, framed in the doorway, was a + tall and beautiful woman--the mysterious lodger of Bloomsbury. Slowly + she advanced, her face pale and drawn with a frightful apprehension, + her eyes fixed and staring, her terrified gaze riveted upon the dark + figure on the floor. + + "You have killed him!" she muttered. "Oh, Dio mio, you have killed + him!" Then I heard a sudden sharp intake of her breath, and she + sprang into the air with a cry of joy. Round and round the room she + danced, her hands clapping, her dark eyes gleaming with delighted + wonder, and a thousand pretty Italian exclamations pouring from her + lips. It was terrible and amazing to see such a woman so convulsed + with joy at such a sight. Suddenly she stopped and gazed at us all + with a questioning stare. + + "But you! You are police, are you not? You have killed Giuseppe + Gorgiano. Is it not so?" + + "We are police, madam." + + She looked round into the shadows of the room. + + "But where, then, is Gennaro?" she asked. "He is my husband, Gennaro + Lucca. I am Emilia Lucca, and we are both from New York. Where is + Gennaro? He called me this moment from this window, and I ran with + all my speed." + + "It was I who called," said Holmes. + + "You! How could you call?" + + "Your cipher was not difficult, madam. Your presence here was + desirable. I knew that I had only to flash 'Vieni' and you would + surely come." + + The beautiful Italian looked with awe at my companion. + + "I do not understand how you know these things," she said. "Giuseppe + Gorgiano--how did he--" She paused, and then suddenly her face lit up + with pride and delight. "Now I see it! My Gennaro! My splendid, + beautiful Gennaro, who has guarded me safe from all harm, he did it, + with his own strong hand he killed the monster! Oh, Gennaro, how + wonderful you are! What woman could every be worthy of such a man?" + + "Well, Mrs. Lucca," said the prosaic Gregson, laying his hand upon + the lady's sleeve with as little sentiment as if she were a Notting + Hill hooligan, "I am not very clear yet who you are or what you are; + but you've said enough to make it very clear that we shall want you + at the Yard." + + "One moment, Gregson," said Holmes. "I rather fancy that this lady + may be as anxious to give us information as we can be to get it. You + understand, madam, that your husband will be arrested and tried for + the death of the man who lies before us? What you say may be used in + evidence. But if you think that he has acted from motives which are + not criminal, and which he would wish to have known, then you cannot + serve him better than by telling us the whole story." + + "Now that Gorgiano is dead we fear nothing," said the lady. "He was a + devil and a monster, and there can be no judge in the world who would + punish my husband for having killed him." + + "In that case," said Holmes, "my suggestion is that we lock this + door, leave things as we found them, go with this lady to her room, + and form our opinion after we have heard what it is that she has to + say to us." + + Half an hour later we were seated, all four, in the small + sitting-room of Signora Lucca, listening to her remarkable narrative + of those sinister events, the ending of which we had chanced to + witness. She spoke in rapid and fluent but very unconventional + English, which, for the sake of clearness, I will make grammatical. + + "I was born in Posilippo, near Naples," said she, "and was the + daughter of Augusto Barelli, who was the chief lawyer and once the + deputy of that part. Gennaro was in my father's employment, and I + came to love him, as any woman must. He had neither money nor + position--nothing but his beauty and strength and energy--so my + father forbade the match. We fled together, were married at Bari, and + sold my jewels to gain the money which would take us to America. This + was four years ago, and we have been in New York ever since. + + "Fortune was very good to us at first. Gennaro was able to do a + service to an Italian gentleman--he saved him from some ruffians in + the place called the Bowery, and so made a powerful friend. His name + was Tito Castalotte, and he was the senior partner of the great firm + of Castalotte and Zamba, who are the chief fruit importers of New + York. Signor Zamba is an invalid, and our new friend Castalotte has + all power within the firm, which employs more than three hundred men. + He took my husband into his employment, made him head of a + department, and showed his good-will towards him in every way. Signor + Castalotte was a bachelor, and I believe that he felt as if Gennaro + was his son, and both my husband and I loved him as if he were our + father. We had taken and furnished a little house in Brooklyn, and + our whole future seemed assured when that black cloud appeared which + was soon to overspread our sky. + + "One night, when Gennaro returned from his work, he brought a + fellow-countryman back with him. His name was Gorgiano, and he had + come also from Posilippo. He was a huge man, as you can testify, for + you have looked upon his corpse. Not only was his body that of a + giant but everything about him was grotesque, gigantic, and + terrifying. His voice was like thunder in our little house. There was + scarce room for the whirl of his great arms as he talked. His + thoughts, his emotions, his passions, all were exaggerated and + monstrous. He talked, or rather roared, with such energy that others + could but sit and listen, cowed with the mighty stream of words. His + eyes blazed at you and held you at his mercy. He was a terrible and + wonderful man. I thank God that he is dead! + + "He came again and again. Yet I was aware that Gennaro was no more + happy than I was in his presence. My poor husband would sit pale and + listless, listening to the endless raving upon politics and upon + social questions which made up or visitor's conversation. Gennaro + said nothing, but I, who knew him so well, could read in his face + some emotion which I had never seen there before. At first I thought + that it was dislike. And then, gradually, I understood that it was + more than dislike. It was fear--a deep, secret, shrinking fear. That + night--the night that I read his terror--I put my arms round him and + I implored him by his love for me and by all that he held dear to + hold nothing from me, and to tell me why this huge man overshadowed + him so. + + "He told me, and my own heart grew cold as ice as I listened. My poor + Gennaro, in his wild and fiery days, when all the world seemed + against him and his mind was driven half mad by the injustices of + life, had joined a Neapolitan society, the Red Circle, which was + allied to the old Carbonari. The oaths and secrets of this + brotherhood were frightful, but once within its rule no escape was + possible. When we had fled to America Gennaro thought that he had + cast it all off forever. What was his horror one evening to meet in + the streets the very man who had initiated him in Naples, the giant + Gorgiano, a man who had earned the name of 'Death' in the south of + Italy, for he was red to the elbow in murder! He had come to New York + to avoid the Italian police, and he had already planted a branch of + this dreadful society in his new home. All this Gennaro told me and + showed me a summons which he had received that very day, a Red Circle + drawn upon the head of it telling him that a lodge would be held upon + a certain date, and that his presence at it was required and ordered. + + "That was bad enough, but worse was to come. I had noticed for some + time that when Gorgiano came to us, as he constantly did, in the + evening, he spoke much to me; and even when his words were to my + husband those terrible, glaring, wild-beast eyes of his were always + turned upon me. One night his secret came out. I had awakened what he + called 'love' within him--the love of a brute--a savage. Gennaro had + not yet returned when he came. He pushed his way in, seized me in his + mighty arms, hugged me in his bear's embrace, covered me with kisses, + and implored me to come away with him. I was struggling and screaming + when Gennaro entered and attacked him. He struck Gennaro senseless + and fled from the house which he was never more to enter. It was a + deadly enemy that we made that night. + + "A few days later came the meeting. Gennaro returned from it with a + face which told me that something dreadful had occurred. It was worse + than we could have imagined possible. The funds of the society were + raised by blackmailing rich Italians and threatening them with + violence should they refuse the money. It seems that Castalotte, our + dear friend and benefactor, had been approached. He had refused to + yield to threats, and he had handed the notices to the police. It was + resolved now that such an example should be made of them as would + prevent any other victim from rebelling. At the meeting it was + arranged that he and his house should be blown up with dynamite. + There was a drawing of lots as to who should carry out the deed. + Gennaro saw our enemy's cruel face smiling at him as he dipped his + hand in the bag. No doubt it had been prearranged in some fashion, + for it was the fatal disc with the Red Circle upon it, the mandate + for murder, which lay upon his palm. He was to kill his best friend, + or he was to expose himself and me to the vengeance of his comrades. + It was part of their fiendish system to punish those whom they feared + or hated by injuring not only their own persons but those whom they + loved, and it was the knowledge of this which hung as a terror over + my poor Gennaro's head and drove him nearly crazy with apprehension. + + "All that night we sat together, our arms round each other, each + strengthening each for the troubles that lay before us. The very next + evening had been fixed for the attempt. By midday my husband and I + were on our way to London, but not before he had given our benefactor + full warning of this danger, and had also left such information for + the police as would safeguard his life for the future. + + "The rest, gentlemen, you know for yourselves. We were sure that our + enemies would be behind us like our own shadows. Gorgiano had his + private reasons for vengeance, but in any case we knew how ruthless, + cunning, and untiring he could be. Both Italy and America are full of + stories of his dreadful powers. If ever they were exerted it would be + now. My darling made use of the few clear days which our start had + given us in arranging for a refuge for me in such a fashion that no + possible danger could reach me. For his own part, he wished to be + free that he might communicate both with the American and with the + Italian police. I do not myself know where he lived, or how. All that + I learned was through the columns of a newspaper. But once as I + looked through my window, I saw two Italians watching the house, and + I understood that in some way Gorgiano had found our retreat. Finally + Gennaro told me, through the paper, that he would signal to me from a + certain window, but when the signals came they were nothing but + warnings, which were suddenly interrupted. It is very clear to me now + that he knew Gorgiano to be close upon him, and that, thank God! he + was ready for him when he came. And now, gentleman, I would ask you + whether we have anything to fear from the law, or whether any judge + upon earth would condemn my Gennaro for what he has done?" + + "Well, Mr. Gregson," said the American, looking across at the + official, "I don't know what your British point of view may be, but I + guess that in New York this lady's husband will receive a pretty + general vote of thanks." + + "She will have to come with me and see the chief," Gregson answered. + "If what she says is corroborated, I do not think she or her husband + has much to fear. But what I can't make head or tail of, Mr. Holmes, + is how on earth you got yourself mixed up in the matter." + + "Education, Gregson, education. Still seeking knowledge at the old + university. Well, Watson, you have one more specimen of the tragic + and grotesque to add to your collection. By the way, it is not eight + o'clock, and a Wagner night at Covent Garden! If we hurry, we might + be in time for the second act." + + + + + + + THE ADVENTURE OF THE BRUCE-PARTINGTON PLANS + + In the third week of November, in the year 1895, a dense yellow fog + settled down upon London. From the Monday to the Thursday I doubt + whether it was ever possible from our windows in Baker Street to see + the loom of the opposite houses. The first day Holmes had spent in + cross-indexing his huge book of references. The second and third had + been patiently occupied upon a subject which he hand recently made + his hobby--the music of the Middle Ages. But when, for the fourth + time, after pushing back our chairs from breakfast we saw the greasy, + heavy brown swirl still drifting past us and condensing in oily drops + upon the window-panes, my comrade's impatient and active nature could + endure this drab existence no longer. He paced restlessly about our + sitting-room in a fever of suppressed energy, biting his nails, + tapping the furniture, and chafing against inaction. + + "Nothing of interest in the paper, Watson?" he said. + + In was aware that by anything of interest, Holmes meant anything of + criminal interest. There was the news of a revolution, of a possible + war, and of an impending change of government; but these did not come + within the horizon of my companion. I could see nothing recorded in + the shape of crime which was not commonplace and futile. Holmes + groaned and resumed hs restless meanderings. + + "The London criminal is certainly a dull fellow," said he in the + querulous voice of the sportsman whose game has failed him. "Look out + this window, Watson. See how the figures loom up, are dimly seen, and + then blend once more into the cloud-bank. The thief or the murderer + could roam London on such a day as the tiger does the jungle, unseen + until he pounces, and then evident only to his victim." + + "There have," said I, "been numerous petty thefts." + + Holmes snorted his contempt. + + "This great and sombre stage is set for something more worthy than + that," said he. "It is fortunate for this community that I am not a + criminal." + + "It is, indeed!" said I heartily. + + "Suppose that I were Brooks or Woodhouse, or any of the fifty men who + have good reason for taking my life, how long could I survive against + my own pursuit? A summons, a bogus appointment, and all would be + over. It is well they don't have days of fog in the Latin + countries--the countries of assassination. By Jove! here comes + something at last to break our dead monotony." + + It was the maid with a telegram. Holmes tore it open and burst out + laughing. + + "Well, well! What next?" said he. "Brother Mycroft is coming round." + + "Why not?" I asked. + + "Why not? It is as if you met a tram-car coming down a country lane. + Mycroft has his rails and he runs on them. His Pall Mall lodgings, + the Diogenes Club, Whitehall--that is his cycle. Once, and only once, + he has been here. What upheaval can possibly have derailed him?" + + "Does he not explain?" + + Holmes handed me his brother's telegram. + + Must see you over Cadogen West. Coming at once. + Mycroft. + + "Cadogen West? I have heard the name." + + "It recalls nothing to my mind. But that Mycroft should break out in + this erratic fashion! A planet might as well leave its orbit. By the + way, do you know what Mycroft is?" + + I had some vague recollection of an explanation at the time of the + Adventure of the Greek Interpreter. + + "You told me that he had some small office under the British + government." + + Holmes chuckled. + + "I did not know you quite so well in those days. One has to be + discreet when one talks of high matters of state. You are right in + thinking that he under the British government. You would also be + right in a sense if you said that occasionally he is the British + government." + + "My dear Holmes!" + + "I thought I might surprise you. Mycroft draws four hundred and fifty + pounds a year, remains a subordinate, has no ambitions of any kind, + will receive neither honour nor title, but remains the most + indispensable man in the country." + + "But how?" + + "Well, his position is unique. He has made it for himself. There has + never been anything like it before, nor will be again. He has the + tidiest and most orderly brain, with the greatest capacity for + storing facts, of any man living. The same great powers which I have + turned to the detection of crime he has used for this particular + business. The conclusions of every department are passed to him, and + he is the central exchange, the clearinghouse, which makes out the + balance. All other men are specialists, but his specialism is + omniscience. We will suppose that a minister needs information as to + a point which involves the Navy, India, Canada and the bimetallic + question; he could get his separate advices from various departments + upon each, but only Mycroft can focus them all, and say offhand how + each factor would affect the other. They began by using him as a + short-cut, a convenience; now he has made himself an essential. In + that great brain of his everything is pigeon-holed and can be handed + out in an instant. Again and again his word has decided the national + policy. He lives in it. He thinks of nothing else save when, as an + intellectual exercise, he unbends if I call upon him and ask him to + advise me on one of my little problems. But Jupiter is descending + to-day. What on earth can it mean? Who is Cadogan West, and what is + he to Mycroft?" + + "I have it," I cried, and plunged among the litter of papers upon the + sofa. "Yes, yes, here he is, sure enough! Cadogen West was the young + man who was found dead on the Underground on Tuesday morning." + + Holmes sat up at attention, his pipe halfway to his lips. + + "This must be serious, Watson. A death which has caused my brother to + alter his habits can be no ordinary one. What in the world can he + have to do with it? The case was featureless as I remember it. The + young man had apparently fallen out of the train and killed himself. + He had not been robbed, and there was no particular reason to suspect + violence. Is that not so?" + + "There has been an inquest," said I, "and a good many fresh facts + have come out. Looked at more closely, I should certainly say that it + was a curious case." + + "Judging by its effect upon my brother, I should think it must be a + most extraordinary one." He snuggled down in his armchair. "Now, + Watson, let us have the facts." + + "The man's name was Arthur Cadogan West. He was twenty-seven years of + age, unmarried, and a clerk at Woolwich Arsenal." + + "Government employ. Behold the link with Brother Mycroft!" + + "He left Woolwich suddenly on Monday night. Was last seen by his + fiancee, Miss Violet Westbury, whom he left abruptly in the fog about + 7.30 that evening. There was no quarrel between them and she can give + no motive for his action. The next thing heard of him was when his + dead body was discovered by a plate-layer named Mason, just outside + Aldgate Station on the Underground system in London." + + "When?" + + "The body was found at six on Tuesday morning. It was lying wide of + the metals upon the left hand of the track as one goes eastward, at a + point close to the station, where the line emerges from the tunnel in + which it runs. The head was badly crushed--an injury which might well + have been caused by a fall from the train. The body could only have + come on the line in that way. Had it been carried down from any + neighbouring street, it must have passed the station barriers, where + a collector is always standing. This point seems absolutely certain." + + "Very good. The case is definite enough. The man, dead or alive, + either fell or was precipitated from a train. So much is clear to me. + Continue." + + "The trains which traverse the lines of rail beside which the body + was found are those which run from west to east, some being purely + Metropolitan, and some from Willesden and outlying junctions. It can + be stated for certain that this young man, when he met his death, was + travelling in this direction at some late hour of the night, but at + what point he entered the train it is impossible to state." + + "His ticket, of course, would show that." + + "There was no ticket in his pockets." + + "No ticket! Dear me, Watson, this is really very singular. According + to my experience it is not possible to reach the platform of a + Metropolitan train without exhibiting one's ticket. Presumably, then, + the young man had one. Was it taken from him in order to conceal the + station from which he came? It is possible. Or did he drop it in the + carriage? That is also possible. But the point is of curious + interest. I understand that there was no sign of robbery?" + + "Apparently not. There is a list here of his possessions. His purse + contained two pounds fifteen. He had also a check-book on the + Woolwich branch of the Capital and Counties Bank. Through this his + identity was established. There were also two dress-circle tickets + for the Woolwich Theatre, dated for that very evening. Also a small + packet of technical papers." + + Holmes gave an exclamation of satisfaction. + + "There we have it at last, Watson! British government--Woolwich. + Arsenal--technical papers--Brother Mycroft, the chain is complete. + But here he comes, if I am not mistaken, to speak for himself." + + A moment later the tall and portly form of Mycroft Holmes was ushered + into the room. Heavily built and massive, there was a suggestion of + uncouth physical inertia in the figure, but above this unwieldy frame + there was perched a head so masterful in its brow, so alert in its + steel-gray, deep-set eyes, so firm in its lips, and so subtle in its + play of expression, that after the first glance one forgot the gross + body and remembered only the dominant mind. + + At his heels came our old friend Lestrade, of Scotland Yard--thin and + austere. The gravity of both their faces foretold some weighty quest. + The detective shook hands without a word. Mycroft Holmes struggled + out of his overcoat and subsided into an armchair. + + "A most annoying business, Sherlock," said he. "I extremely dislike + altering my habits, but the powers that be would take no denial. In + the present state of Siam it is most awkward that I should be away + from the office. But it is a real crisis. I have never seen the Prime + Minister so upset. As to the Admiralty--it is buzzing like an + overturned bee-hive. Have you read up the case?" + + "We have just done so. What were the technical papers?" + + "Ah, there's the point! Fortunately, it has not come out. The press + would be furious if it did. The papers which this wretched youth had + in his pocket were the plans of the Bruce-Partington submarine." + + Mycroft Holmes spoke with a solemnity which showed his sense of the + importance of the subject. His brother and I sat expectant. + + "Surely you have heard of it? I thought everyone had heard of it." + + "Only as a name." + + "Its importance can hardly be exaggerated. It has been the most + jealously guarded of all government secrets. You may take it from me + that naval warfare becomes impossible within the radius of a + Bruce-Partington's operation. Two years ago a very large sum was + smuggled through the Estimates and was expended in acquiring a + monopoly of the invention. Every effort has been made to keep the + secret. The plans, which are exceedingly intricate, comprising some + thirty separate patents, each essential to the working of the whole, + are kept in an elaborate safe in a confidential office adjoining the + arsenal, with burglar-proof doors and windows. Under no conceivable + circumstances were the plans to be taken from the office. If the + chief constructor of the Navy desired to consult them, even he was + forced to go to the Woolwich office for the purpose. And yet here we + find them in the pocket of a dead junior clerk in the heart of + London. From an official point of view it's simply awful." + + "But you have recovered them?" + + "No, Sherlock, no! That's the pinch. We have not. Ten papers were + taken from Woolwich. There were seven in the pocket of Cadogan West. + The three most essential are gone--stolen, vanished. You must drop + everything, Sherlock. Never mind your usual petty puzzles of the + police-court. It's a vital international problem that you have to + solve. Why did Cadogan West take the papers, where are the missing + ones, how did he die, how came his body where it was found, how can + the evil be set right? Find an answer to all these questions, and you + will have done good service for your country." + + "Why do you not solve it yourself, Mycroft? You can see as far as I." + + "Possibly, Sherlock. But it is a question of getting details. Give me + your details, and from an armchair I will return you an excellent + expert opinion. But to run here and run there, to cross-question + railway guards, and lie on my face with a lens to my eye--it is not + my métier. No, you are the one man who can clear the matter up. If + you have a fancy to see your name in the next honours list--" + + My friend smiled and shook his head. + + "I play the game for the game's own sake," said he. "But the problem + certainly presents some points of interest, and I shall be very + pleased to look into it. Some more facts, please." + + "I have jotted down the more essential ones upon this sheet of paper, + together with a few addresses which you will find of service. The + actual official guardian of the papers is the famous government + expert, Sir James Walter, whose decorations and sub-titles fill two + lines of a book of reference. He has grown gray in the service, is a + gentleman, a favoured guest in the most exalted houses, and, above + all, a man whose patriotism is beyond suspicion. He is one of two who + have a key of the safe. I may add that the papers were undoubtedly in + the office during working hours on Monday, and that Sir James left + for London about three o'clock taking his key with him. He was at the + house of Admiral Sinclair at Barclay Square during the whole of the + evening when this incident occurred." + + "Has the fact been verified?" + + "Yes; his brother, Colonel Valentine Walter, has testified to his + departure from Woolwich, and Admiral Sinclair to his arrival in + London; so Sir James is no longer a direct factor in the problem." + + "Who was the other man with a key?" + + "The senior clerk and draughtsman, Mr. Sidney Johnson. He is a man of + forty, married, with five children. He is a silent, morose man, but + he has, on the whole, an excellent record in the public service. He + is unpopular with his colleagues, but a hard worker. According to his + own account, corroborated only by the word of his wife, he was at + home the whole of Monday evening after office hours, and his key has + never left the watch-chain upon which it hangs." + + "Tell us about Cadogan West." + + "He has been ten years in the service and has done good work. He has + the reputation of being hot-headed and imperious, but a straight, + honest man. We have nothing against him. He was next Sidney Johnson + in the office. His duties brought him into daily, personal contact + with the plans. No one else had the handling of them." + + "Who locked up the plans that night?" + + "Mr. Sidney Johnson, the senior clerk." + + "Well, it is surely perfectly clear who took them away. They are + actually found upon the person of this junior clerk, Cadogan West. + That seems final, does it not?" + + "It does, Sherlock, and yet it leaves so much unexplained. In the + first place, why did he take them?" + + "I presume they were of value?" + + "He could have got several thousands for them very easily." + + "Can you suggest any possible motive for taking the papers to London + except to sell them?" + + "No, I cannot." + + "Then we must take that as our working hypothesis. Young West took + the papers. Now this could only be done by having a false key--" + + "Several false keys. He had to open the building and the room." + + "He had, then, several false keys. He took the papers to London to + sell the secret, intending, no doubt, to have the plans themselves + back in the safe next morning before they were missed. While in + London on this treasonable mission he met his end." + + "How?" + + "We will suppose that he was travelling back to Woolwich when he was + killed and thrown out of the compartment." + + "Aldgate, where the body was found, is considerably past the station + London Bridge, which would be his route to Woolwich." + + "Many circumstances could be imagined under which he would pass + London Bridge. There was someone in the carriage, for example, with + whom he was having an absorbing interview. This interview led to a + violent scene in which he lost his life. Possibly he tried to leave + the carriage, fell out on the line, and so met his end. The other + closed the door. There was a thick fog, and nothing could be seen." + + "No better explanation can be given with our present knowledge; and + yet consider, Sherlock, how much you leave untouched. We will + suppose, for argument's sake, that young Cadogan West had determined + to convey these papers to London. He would naturally have made an + appointment with the foreign agent and kept his evening clear. + Instead of that he took two tickets for the theatre, escorted his + fiancee halfway there, and then suddenly disappeared." + + "A blind," said Lestrade, who had sat listening with some impatience + to the conversation. + + "A very singular one. That is objection No. 1. Objection No. 2: We + will suppose that he reaches London and sees the foreign agent. He + must bring back the papers before morning or the loss will be + discovered. He took away ten. Only seven were in his pocket. What had + become of the other three? He certainly would not leave them of his + own free will. Then, again, where is the price of his treason? Once + would have expected to find a large sum of money in his pocket." + + "It seems to me perfectly clear," said Lestrade. "I have no doubt at + all as to what occurred. He took the papers to sell them. He saw the + agent. They could not agree as to price. He started home again, but + the agent went with him. In the train the agent murdered him, took + the more essential papers, and threw his body from the carriage. That + would account for everything, would it not?" + + "Why had he no ticket?" + + "The ticket would have shown which station was nearest the agent's + house. Therefore he took it from the murdered man's pocket." + + "Good, Lestrade, very good," said Holmes. "Your theory holds + together. But if this is true, then the case is at an end. On the one + hand, the traitor is dead. On the other, the plans of the + Bruce-Partington submarine are presumably already on the Continent. + What is there for us to do?" + + "To act, Sherlock--to act!" cried Mycroft, springing to his feet. + "All my instincts are against this explanation. Use your powers! Go + to the scene of the crime! See the people concerned! Leave no stone + unturned! In all your career you have never had so great a chance of + serving your country." + + "Well, well!" said Holmes, shrugging his shoulders. "Come, Watson! + And you, Lestrade, could you favour us with your company for an hour + or two? We will begin our investigation by a visit to Aldgate + Station. Good-bye, Mycroft. I shall let you have a report before + evening, but I warn you in advance that you have little to expect." + + An hour later Holmes, Lestrade and I stood upon the Underground + railroad at the point where it emerges from the tunnel immediately + before Aldgate Station. A courteous red-faced old gentleman + represented the railway company. + + "This is where the young man's body lay," said he, indicating a spot + about three feet from the metals. "It could not have fallen from + above, for these, as you see, are all blank walls. Therefore, it + could only have come from a train, and that train, so far as we can + trace it, must have passed about midnight on Monday." + + "Have the carriages been examined for any sign of violence?" + + "There are no such signs, and no ticket has been found." + + "No record of a door being found open?" + + "None." + + "We have had some fresh evidence this morning," said Lestrade. "A + passenger who passed Aldgate in an ordinary Metropolitan train about + 11.40 on Monday night declares that he heard a heavy thud, as of a + body striking the line, just before the train reached the station. + There was dense fog, however, and nothing could be seen. He made no + report of it at the time. Why, whatever is the matter with Mr. + Holmes?" + + My friend was standing with an expression of strained intensity upon + his face, staring at the railway metals where they curved out of the + tunnel. Aldgate is a junction, and there was a network of points. On + these his eager, questioning eyes were fixed, and I saw on his keen, + alert face that tightening of the lips, that quiver of the nostrils, + and concentration of the heavy, tufted brows which I knew so well. + + "Points," he muttered; "the points." + + "What of it? What do you mean?" + + "I suppose there are no great number of points on a system such as + this?" + + "No; they are very few." + + "And a curve, too. Points, and a curve. By Jove! if it were only so." + + "What is it, Mr. Holmes? Have you a clue?" + + "An idea--an indication, no more. But the case certainly grows in + interest. Unique, perfectly unique, and yet why not? I do not see any + indications of bleeding on the line." + + "There were hardly any." + + "But I understand that there was a considerable wound." + + "The bone was crushed, but there was no great external injury." + + "And yet one would have expected some bleeding. Would it be possible + for me to inspect the train which contained the passenger who heard + the thud of a fall in the fog?" + + "I fear not, Mr. Holmes. The train has been broken up before now, and + the carriages redistributed." + + "I can assure you, Mr. Holmes," said Lestrade, "that every carriage + has been carefully examined. I saw to it myself." + + It was one of my friend's most obvious weaknesses that he was + impatient with less alert intelligences than his own. + + "Very likely," said he, turning away. "As it happens, it was not the + carriages which I desired to examine. Watson, we have done all we can + here. We need not trouble you any further, Mr. Lestrade. I think our + investigations must now carry us to Woolwich." + + At London Bridge, Holmes wrote a telegram to his brother, which he + handed to me before dispatching it. It ran thus: + + See some light in the darkness, but it may possibly flicker out. + Meanwhile, please send by messenger, to await return at Baker Street, + a complete list of all foreign spies or international agents known to + be in England, with full address. + Sherlock. + + "That should be helpful, Watson," he remarked as we took our seats in + the Woolwich train. "We certainly owe Brother Mycroft a debt for + having introduced us to what promises to be a really very remarkable + case." + + His eager face still wore that expression of intense and high-strung + energy, which showed me that some novel and suggestive circumstance + had opened up a stimulating line of thought. See the foxhound with + hanging ears and drooping tail as it lolls about the kennels, and + compare it with the same hound as, with gleaming eyes and straining + muscles, it runs upon a breast-high scent--such was the change in + Holmes since the morning. He was a different man from the limp and + lounging figure in the mouse-coloured dressing-gown who had prowled + so restlessly only a few hours before round the fog-girt room. + + "There is material here. There is scope," said he. "I am dull indeed + not to have understood its possibilities." + + "Even now they are dark to me." + + "The end is dark to me also, but I have hold of one idea which may + lead us far. The man met his death elsewhere, and his body was on the + roof of a carriage." + + "On the roof!" + + "Remarkable, is it not? But consider the facts. Is it a coincidence + that it is found at the very point where the train pitches and sways + as it comes round on the points? Is not that the place where an + object upon the roof might be expected to fall off? The points would + affect no object inside the train. Either the body fell from the + roof, or a very curious coincidence has occurred. But now consider + the question of the blood. Of course, there was no bleeding on the + line if the body had bled elsewhere. Each fact is suggestive in + itself. Together they have a cumulative force." + + "And the ticket, too!" I cried. + + "Exactly. We could not explain the absence of a ticket. This would + explain it. Everything fits together." + + "But suppose it were so, we are still as far as ever from unravelling + the mystery of his death. Indeed, it becomes not simpler but + stranger." + + "Perhaps," said Holmes, thoughtfully, "perhaps." He relapsed into a + silent reverie, which lasted until the slow train drew up at last in + Woolwich Station. There he called a cab and drew Mycroft's paper from + his pocket. + + "We have quite a little round of afternoon calls to make," said he. + "I think that Sir James Walter claims our first attention." + + The house of the famous official was a fine villa with green lawns + stretching down to the Thames. As we reached it the fog was lifting, + and a thin, watery sunshine was breaking through. A butler answered + our ring. + + "Sir James, sir!" said he with solemn face. "Sir James died this + morning." + + "Good heavens!" cried Holmes in amazement. "How did he die?" + + "Perhaps you would care to step in, sir, and see his brother, Colonel + Valentine?" + + "Yes, we had best do so." + + We were ushered into a dim-lit drawing-room, where an instant later + we were joined by a very tall, handsome, light-beared man of fifty, + the younger brother of the dead scientist. His wild eyes, stained + cheeks, and unkempt hair all spoke of the sudden blow which had + fallen upon the household. He was hardly articulate as he spoke of + it. + + "It was this horrible scandal," said he. "My brother, Sir James, was + a man of very sensitive honour, and he could not survive such an + affair. It broke his heart. He was always so proud of the efficiency + of his department, and this was a crushing blow." + + "We had hoped that he might have given us some indications which + would have helped us to clear the matter up." + + "I assure you that it was all a mystery to him as it is to you and to + all of us. He had already put all his knowledge at the disposal of + the police. Naturally he had no doubt that Cadogan West was guilty. + But all the rest was inconceivable." + + "You cannot throw any new light upon the affair?" + + "I know nothing myself save what I have read or heard. I have no + desire to be discourteous, but you can understand, Mr. Holmes, that + we are much disturbed at present, and I must ask you to hasten this + interview to an end." + + "This is indeed an unexpected development," said my friend when we + had regained the cab. "I wonder if the death was natural, or whether + the poor old fellow killed himself! If the latter, may it be taken as + some sign of self-reproach for duty neglected? We must leave that + question to the future. Now we shall turn to the Cadogan Wests." + + A small but well-kept house in the outskirts of the town sheltered + the bereaved mother. The old lady was too dazed with grief to be of + any use to us, but at her side was a white-faced young lady, who + introduced herself as Miss Violet Westbury, the fiancee of the dead + man, and the last to see him upon that fatal night. + + "I cannot explain it, Mr. Holmes," she said. "I have not shut an eye + since the tragedy, thinking, thinking, thinking, night and day, what + the true meaning of it can be. Arthur was the most single-minded, + chivalrous, patriotic man upon earth. He would have cut his right + hand off before he would sell a State secret confided to his keeping. + It is absurd, impossible, preposterous to anyone who knew him." + + "But the facts, Miss Westbury?" + + "Yes, yes; I admit I cannot explain them." + + "Was he in any want of money?" + + "No; his needs were very simple and his salary ample. He had saved a + few hundreds, and we were to marry at the New Year." + + "No signs of any mental excitement? Come, Miss Westbury, be + absolutely frank with us." + + The quick eye of my companion had noted some change in her manner. + She coloured and hesitated. + + "Yes," she said at last, "I had a feeling that there was something on + his mind." + + "For long?" + + "Only for the last week or so. He was thoughtful and worried. Once I + pressed him about it. He admitted that there was something, and that + it was concerned with his official life. 'It is too serious for me to + speak about, even to you,' said he. I could get nothing more." + + Holmes looked grave. + + "Go on, Miss Westbury. Even if it seems to tell against him, go on. + We cannot say what it may lead to." + + "Indeed, I have nothing more to tell. Once or twice it seemed to me + that he was on the point of telling me something. He spoke one + evening of the importance of the secret, and I have some recollection + that he said that no doubt foreign spies would pay a great deal to + have it." + + My friend's face grew graver still. + + "Anything else?" + + "He said that we were slack about such matters--that it would be easy + for a traitor to get the plans." + + "Was it only recently that he made such remarks?" + + "Yes, quite recently." + + "Now tell us of that last evening." + + "We were to go to the theatre. The fog was so thick that a cab was + useless. We walked, and our way took us close to the office. Suddenly + he darted away into the fog." + + "Without a word?" + + "He gave an exclamation; that was all. I waited but he never + returned. Then I walked home. Next morning, after the office opened, + they came to inquire. About twelve o'clock we heard the terrible + news. Oh, Mr. Holmes, if you could only, only save his honour! It was + so much to him." + + Holmes shook his head sadly. + + "Come, Watson," said he, "our ways lie elsewhere. Our next station + must be the office from which the papers were taken. + + "It was black enough before against this young man, but our inquiries + make it blacker," he remarked as the cab lumbered off. "His coming + marriage gives a motive for the crime. He naturally wanted money. The + idea was in his head, since he spoke about it. He nearly made the + girl an accomplice in the treason by telling her his plans. It is all + very bad." + + "But surely, Holmes, character goes for something? Then, again, why + should he leave the girl in the street and dart away to commit a + felony?" + + "Exactly! There are certainly objections. But it is a formidable case + which they have to meet." + + Mr. Sidney Johnson, the senior clerk, met us at the office and + received us with that respect which my companion's card always + commanded. He was a thin, gruff, bespectacled man of middle age, his + cheeks haggard, and his hands twitching from the nervous strain to + which he had been subjected. + + "It is bad, Mr. Holmes, very bad! Have you heard of the death of the + chief?" + + "We have just come from his house." + + "The place is disorganized. The chief dead, Cadogan West dead, our + papers stolen. And yet, when we closed our door on Monday evening, we + were as efficient an office as any in the government service. Good + God, it's dreadful to think of! That West, of all men, should have + done such a thing!" + + "You are sure of his guilt, then?" + + "I can see no other way out of it. And yet I would have trusted him + as I trust myself." + + "At what hour was the office closed on Monday?" + + "At five." + + "Did you close it?" + + "I am always the last man out." + + "Where were the plans?" + + "In that safe. I put them there myself." + + "Is there no watchman to the building?" + + "There is, but he has other departments to look after as well. He is + an old soldier and a most trustworthy man. He saw nothing that + evening. Of course the fog was very thick." + + "Suppose that Cadogan West wished to make his way into the building + after hours; he would need three keys, would he not, before the could + reach the papers?" + + "Yes, he would. The key of the outer door, the key of the office, and + the key of the safe." + + "Only Sir James Walter and you had those keys?" + + "I had no keys of the doors--only of the safe." + + "Was Sir James a man who was orderly in his habits?" + + "Yes, I think he was. I know that so far as those three keys are + concerned he kept them on the same ring. I have often seen them + there." + + "And that ring went with him to London?" + + "He said so." + + "And your key never left your possession?" + + "Never." + + "Then West, if he is the culprit, must have had a duplicate. And yet + none was found upon his body. One other point: if a clerk in this + office desired to sell the plans, would it not be simply to copy the + plans for himself than to take the originals, as was actually done?" + + "It would take considerable technical knowledge to copy the plans in + an effective way." + + "But I suppose either Sir James, or you, or West has that technical + knowledge?" + + "No doubt we had, but I beg you won't try to drag me into the matter, + Mr. Holmes. What is the use of our speculating in this way when the + original plans were actually found on West?" + + "Well, it is certainly singular that he should run the risk of taking + originals if he could safely have taken copies, which would have + equally served his turn." + + "Singular, no doubt--and yet he did so." + + "Every inquiry in this case reveals something inexplicable. Now there + are three papers still missing. They are, as I understand, the vital + ones." + + "Yes, that is so." + + "Do you mean to say that anyone holding these three papers, and + without the seven others, could construct a Bruce-Partington + submarine?" + + "I reported to that effect to the Admiralty. But to-day I have been + over the drawings again, and I am not so sure of it. The double + valves with the automatic self-adjusting slots are drawn in one of + the papers which have been returned. Until the foreigners had + invented that for themselves they could not make the boat. Of course + they might soon get over the difficulty." + + "But the three missing drawings are the most important?" + + "Undoubtedly." + + "I think, with your permission, I will now take a stroll round the + premises. I do not recall any other question which I desired to ask." + + He examined the lock of the safe, the door of the room, and finally + the iron shutters of the window. It was only when we were on the lawn + outside that his interest was strongly excited. There was a laurel + bush outside the window, and several of the branches bore signs of + having been twisted or snapped. He examined them carefully with his + lens, and then some dim and vague marks upon the earth beneath. + Finally he asked the chief clerk to close the iron shutters, and he + pointed out to me that they hardly met in the centre, and that it + would be possible for anyone outside to see what was going on within + the room. + + "The indications are ruined by three days' delay. They may mean + something or nothing. Well, Watson, I do not think that Woolwich can + help us further. It is a small crop which we have gathered. Let us + see if we can do better in London." + + Yet we added one more sheaf to our harvest before we left Woolwich + Station. The clerk in the ticket office was able to say with + confidence that he saw Cadogan West--whom he knew well by sight--upon + the Monday night, and that he went to London by the 8.15 to London + Bridge. He was alone and took a single third-class ticket. The clerk + was struck at the time by his excited and nervous manner. So shaky + was he that he could hardly pick up his change, and the clerk had + helped him with it. A reference to the timetable showed that the 8.15 + was the first train which it was possible for West to take after he + had left the lady about 7.30. + + "Let us reconstruct, Watson," said Holmes after half an hour of + silence. "I am not aware that in all our joint researches we have + ever had a case which was more difficult to get at. Every fresh + advance which we make only reveals a fresh ridge beyond. And yet we + have surely made some appreciable progress. + + "The effect of our inquiries at Woolwich has in the main been against + young Cadogan West; but the indications at the window would lend + themselves to a more favourable hypothesis. Let us suppose, for + example, that he had been approached by some foreign agent. It might + have been done under such pledges as would have prevented him from + speaking of it, and yet would have affected his thoughts in the + direction indicated by his remarks to his fiancee. Very good. We will + now suppose that as he went to the theatre with the young lady he + suddenly, in the fog, caught a glimpse of this same agent going in + the direction of the office. He was an impetuous man, quick in his + decisions. Everything gave way to his duty. He followed the man, + reached the window, saw the abstraction of the documents, and pursued + the thief. In this way we get over the objection that no one would + take originals when he could make copies. This outsider had to take + originals. So far it holds together." + + "What is the next step?" + + "Then we come into difficulties. One would imagine that under such + circumstances the first act of young Cadogan West would be to seize + the villain and raise the alarm. Why did he not do so? Could it have + been an official superior who took the papers? That would explain + West's conduct. Or could the chief have given West the slip in the + fog, and West started at once to London to head him off from his own + rooms, presuming that he knew where the rooms were? The call must + have been very pressing, since he left his girl standing in the fog + and made no effort to communicate with her. Our scent runs cold here, + and there is a vast gap between either hypothesis and the laying of + West's body, with seven papers in his pocket, on the roof of a + Metropolitan train. My instinct now is to work form the other end. If + Mycroft has given us the list of addresses we may be able to pick our + man and follow two tracks instead of one." + + Surely enough, a note awaited us at Baker Street. A government + messenger had brought it post-haste. Holmes glanced at it and threw + it over to me. + + There are numerous small fry, but few who would handle so big an + affair. The only men worth considering are Adolph Mayer, of 13 Great + George Street, Westminster; Louis La Rothiere, of Campden Mansions, + Notting Hill; and Hugo Oberstein, 13 Caulfield Gardens, Kensington. + The latter was known to be in town on Monday and is now reported as + having left. Glad to hear you have seen some light. The Cabinet + awaits your final report with the utmost anxiety. Urgent + representations have arrived from the very highest quarter. The whole + force of the State is at your back if you should need it. + Mycroft. + + "I'm afraid," said Holmes, smiling, "that all the queen's horses and + all the queen's men cannot avail in this matter." He had spread out + his big map of London and leaned eagerly over it. "Well, well," said + he presently with an exclamation of satisfaction, "things are turning + a little in our direction at last. Why, Watson, I do honestly believe + that we are going to pull it off, after all." He slapped me on the + shoulder with a sudden burst of hilarity. "I am going out now. It is + only a reconnaissance. I will do nothing serious without my trusted + comrade and biographer at my elbow. Do you stay here, and the odds + are that you will see me again in an hour or two. If time hangs heavy + get foolscap and a pen, and begin your narrative of how we saved the + State." + + I felt some reflection of his elation in my own mind, for I knew well + that he would not depart so far from his usual austerity of demeanour + unless there was good cause for exultation. All the long November + evening I waited, filled with impatience for his return. At last, + shortly after nine o'clock, there arrived a messenger with a note: + + Am dining at Goldini's Restaurant, Gloucester Road, Kensington. + Please come at once and join me there. Bring with you a jemmy, a dark + lantern, a chisel, and a revolver. + S.H. + + It was a nice equipment for a respectable citizen to carry through + the dim, fog-draped streets. I stowed them all discreetly away in my + overcoat and drove straight to the address given. There sat my friend + at a little round table near the door of the garish Italian + restaurant. + + "Have you had something to eat? Then join me in a coffee and curacao. + Try one of the proprietor's cigars. They are less poisonous than one + would expect. Have you the tools?" + + "They are here, in my overcoat." + + "Excellent. Let me give you a short sketch of what I have done, with + some indication of what we are about to do. Now it must be evident to + you, Watson, that this young man's body was placed on the roof of the + train. That was clear from the instant that I determined the fact + that it was from the roof, and not from a carriage, that he had + fallen." + + "Could it not have been dropped from a bridge?" + + "I should say it was impossible. If you examine the roofs you will + find that they are slightly rounded, and there is no railing round + them. Therefore, we can say for certain that young Cadogan West was + placed on it." + + "How could he be placed there?" + + "That was the question which we had to answer. There is only one + possible way. You are aware that the Underground runs clear of + tunnels at some points in the West End. I had a vague memory that as + I have travelled by it I have occasionally seen windows just above my + head. Now, suppose that a train halted under such a window, would + there be any difficulty in laying a body upon the roof?" + + "It seems most improbable." + + "We must fall back upon the old axiom that when all other + contingencies fail, whatever remains, however improbable, must be the + truth. Here all other contingencies have failed. When I found that + the leading international agent, who had just left London, lived in a + row of houses which abutted upon the Underground, I was so pleased + that you were a little astonished at my sudden frivolity." + + "Oh, that was it, was it?" + + "Yes, that was it. Mr. Hugo Oberstein, of 13 Caulfield Gardens, had + become my objective. I began my operations at Gloucester Road + Station, where a very helpful official walked with me along the track + and allowed me to satisfy myself not only that the back-stair windows + of Caulfield Gardens open on the line but the even more essential + fact that, owing to the intersection of one of the larger railways, + the Underground trains are frequently held motionless for some + minutes at that very spot." + + "Splendid, Holmes! You have got it!" + + "So far--so far, Watson. We advance, but the goal is afar. Well, + having seen the back of Caulfield Gardens, I visited the front and + satisfied myself that the bird was indeed flown. It is a considerable + house, unfurnished, so far as I could judge, in the upper rooms. + Oberstein lived there with a single valet, who was probably a + confederate entirely in his confidence. We must bear in mind that + Oberstein has gone to the Continent to dispose of his booty, but not + with any idea of flight; for he had no reason to fear a warrant, and + the idea of an amateur domiciliary visit would certainly never occur + to him. Yet that is precisely what we are about to make." + + "Could we not get a warrant and legalize it?" + + "Hardly on the evidence." + + "What can we hope to do?" + + "We cannot tell what correspondence may be there." + + "I don't like it, Holmes." + + "My dear fellow, you shall keep watch in the street. I'll do the + criminal part. It's not a time to stick at trifles. Think of + Mycroft's note, of the Admiralty, the Cabinet, the exalted person who + waits for news. We are bound to go." + + My answer was to rise from the table. + + "You are right, Holmes. We are bound to go." + + He sprang up and shook me by the hand. + + "I knew you would not shrink at the last," said he, and for a moment + I saw something in his eyes which was nearer to tenderness than I had + ever seen. The next instant he was his masterful, practical self once + more. + + "It is nearly half a mile, but there is no hurry. Let us walk," said + he. "Don't drop the instruments, I beg. Your arrest as a suspicious + character would be a most unfortunate complication." + + Caulfield Gardens was one of those lines of flat-faced pillared, and + porticoed houses which are so prominent a product of the middle + Victorian epoch in the West End of London. Next door there appeared + to be a children's party, for the merry buzz of young voices and the + clatter of a piano resounded through the night. The fog still hung + about and screened us with its friendly shade. Holmes had lit his + lantern and flashed it upon the massive door. + + "This is a serious proposition," said he. "It is certainly bolted as + well as locked. We would do better in the area. There is an excellent + archway down yonder in case a too zealous policeman should intrude. + Give me a hand, Watson, and I'll do the same for you." + + A minute later we were both in the area. Hardly had we reached the + dark shadows before the step of the policeman was heard in the fog + above. As its soft rhythm died away, Holmes set to work upon the + lower door. I saw him stoop and strain until with a sharp crash it + flew open. We sprang through into the dark passage, closing the area + door behind us. Holmes let the way up the curving, uncarpeted stair. + His little fan of yellow light shone upon a low window. + + "Here we are, Watson--this must be the one." He threw it open, and as + he did so there was a low, harsh murmur, growing steadily into a loud + roar as a train dashed past us in the darkness. Holmes swept his + light along the window-sill. It was thickly coated with soot from the + passing engines, but the black surface was blurred and rubbed in + places. + + "You can see where they rested the body. Halloa, Watson! what is + this? There can be no doubt that it is a blood mark." He was pointing + to faint discolourations along the woodwork of the window. "Here it + is on the stone of the stair also. The demonstration is complete. Let + us stay here until a train stops." + + We had not long to wait. The very next train roared from the tunnel + as before, but slowed in the open, and then, with a creaking of + brakes, pulled up immediately beneath us. It was not four feet from + the window-ledge to the roof of the carriages. Holmes softly closed + the window. + + "So far we are justified," said he. "What do you think of it, + Watson?" + + "A masterpiece. You have never risen to a greater height." + + "I cannot agree with you there. From the moment that I conceived the + idea of the body being upon the roof, which surely was not a very + abstruse one, all the rest was inevitable. If it were not for the + grave interests involved the affair up to this point would be + insignificant. Our difficulties are still before us. But perhaps we + may find something here which may help us." + + We had ascended the kitchen stair and entered the suite of rooms upon + the first floor. One was a dining-room, severely furnished and + containing nothing of interest. A second was a bedroom, which also + drew blank. The remaining room appeared more promising, and my + companion settled down to a systematic examination. It was littered + with books and papers, and was evidently used as a study. Swiftly and + methodically Holmes turned over the contents of drawer after drawer + and cupboard after cupboard, but no gleam of success came to brighten + his austere face. At the end of an hour he was no further than when + he started. + + "The cunning dog has covered his tracks," said he. "He has left + nothing to incriminate him. His dangerous correspondence has been + destroyed or removed. This is our last chance." + + It was a small tin cash-box which stood upon the writing-desk. Holmes + pried it open with his chisel. Several rolls of paper were within, + covered with figures and calculations, without any note to show to + what they referred. The recurring words, "water pressure" and + "pressure to the square inch" suggested some possible relation to a + submarine. Holmes tossed them all impatiently aside. There only + remained an envelope with some small newspaper slips inside it. He + shook them out on the table, and at once I saw by his eager face that + his hopes had been raised. + + "What's this, Watson? Eh? What's this? Record of a series of messages + in the advertisements of a paper. Daily Telegraph agony column by the + print and paper. Right-hand top corner of a page. No dates--but + messages arrange themselves. This must be the first: + + "Hoped to hear sooner. Terms agreed to. Write fully to address given + on card. + Pierrot. + + "Next comes: + + "Too complex for description. Must have full report, Stuff awaits you + when goods delivered. + Pierrot. + + "Then comes: + + "Matter presses. Must withdraw offer unless contract completed. Make + appointment by letter. Will confirm by advertisement. + Pierrot. + + "Finally: + + "Monday night after nine. Two taps. Only ourselves. Do not be so + suspicious. Payment in hard cash when goods delivered. + Pierrot. + + "A fairly complete record, Watson! If we could only get at the man at + the other end!" He sat lost in thought, tapping his fingers on the + table. Finally he sprang to his feet. + + "Well, perhaps it won't be so difficult, after all. There is nothing + more to be done here, Watson. I think we might drive round to the + offices of the Daily Telegraph, and so bring a good day's work to a + conclusion." + + Mycroft Holmes and Lestrade had come round by appointment after + breakfast next day and Sherlock Holmes had recounted to them our + proceedings of the day before. The professional shook his head over + our confessed burglary. + + "We can't do these things in the force, Mr. Holmes," said he. "No + wonder you get results that are beyond us. But some of these days + you'll go too far, and you'll find yourself and your friend in + trouble." + + "For England, home and beauty--eh, Watson? Martyrs on the altar of + our country. But what do you think of it, Mycroft?" + + "Excellent, Sherlock! Admirable! But what use will you make of it?" + + Holmes picked up the Daily Telegraph which lay upon the table. + + "Have you seen Pierrot's advertisement to-day?" + + "What? Another one?" + + "Yes, here it is: + + "To-night. Same hour. Same place. Two taps. Most vitally important. + Your own safety at stake. + Pierrot. + + "By George!" cried Lestrade. "If he answers that we've got him!" + + "That was my idea when I put it in. I think if you could both make it + convenient to come with us about eight o'clock to Caulfield Gardens + we might possibly get a little nearer to a solution." + + One of the most remarkable characteristics of Sherlock Holmes was his + power of throwing his brain out of action and switching all his + thoughts on to lighter things whenever he had convinced himself that + he could no longer work to advantage. I remember that during the + whole of that memorable day he lost himself in a monograph which he + had undertaken upon the Polyphonic Motets of Lassus. For my own part + I had none of this power of detachment, and the day, in consequence, + appeared to be interminable. The great national importance of the + issue, the suspense in high quarters, the direct nature of the + experiment which we were trying--all combined to work upon my nerve. + It was a relief to me when at last, after a light dinner, we set out + upon our expedition. Lestrade and Mycroft met us by appointment at + the outside of Gloucester Road Station. The area door of Oberstein's + house had been left open the night before, and it was necessary for + me, as Mycroft Holmes absolutely and indignantly declined to climb + the railings, to pass in and open the hall door. By nine o'clock we + were all seated in the study, waiting patently for our man. + + An hour passed and yet another. When eleven struck, the measured beat + of the great church clock seemed to sound the dirge of our hopes. + Lestrade and Mycroft were fidgeting in their seats and looking twice + a minute at their watches. Holmes sat silent and composed, his + eyelids half shut, but every sense on the alert. He raised his head + with a sudden jerk. + + "He is coming," said he. + + There had been a furtive step past the door. Now it returned. We + heard a shuffling sound outside, and then two sharp taps with the + knocker. Holmes rose, motioning us to remain seated. The gas in the + hall was a mere point of light. He opened the outer door, and then as + a dark figure slipped past him he closed and fastened it. "This way!" + we heard him say, and a moment later our man stood before us. Holmes + had followed him closely, and as the man turned with a cry of + surprise and alarm he caught him by the collar and threw him back + into the room. Before our prisoner had recovered his balance the door + was shut and Holmes standing with his back against it. The man glared + round him, staggered, and fell senseless upon the floor. With the + shock, his broad-brimmed hat flew from his head, his cravat slipped + sown from his lips, and there were the long light beard and the soft, + handsome delicate features of Colonel Valentine Walter. + + Holmes gave a whistle of surprise. + + "You can write me down an ass this time, Watson," said he. "This was + not the bird that I was looking for." + + "Who is he?" asked Mycroft eagerly. + + "The younger brother of the late Sir James Walter, the head of the + Submarine Department. Yes, yes; I see the fall of the cards. He is + coming to. I think that you had best leave his examination to me." + + We had carried the prostrate body to the sofa. Now our prisoner sat + up, looked round him with a horror-stricken face, and passed his hand + over his forehead, like one who cannot believe his own senses. + + "What is this?" he asked. "I came here to visit Mr. Oberstein." + + "Everything is known, Colonel Walter," said Holmes. "How an English + gentleman could behave in such a manner is beyond my comprehension. + But your whole correspondence and relations with Oberstein are within + our knowledge. So also are the circumstances connected with the death + of young Cadogan West. Let me advise you to gain at least the small + credit for repentance and confession, since there are still some + details which we can only learn from your lips." + + The man groaned and sank his face in his hands. We waited, but he was + silent. + + "I can assure you," said Holmes, "that every essential is already + known. We know that you were pressed for money; that you took an + impress of the keys which your brother held; and that you entered + into a correspondence with Oberstein, who answered your letters + through the advertisement columns of the Daily Telegraph. We are + aware that you went down to the office in the fog on Monday night, + but that you were seen and followed by young Cadogan West, who had + probably some previous reason to suspect you. He saw your theft, but + could not give the alarm, as it was just possible that you were + taking the papers to your brother in London. Leaving all his private + concerns, like the good citizen that he was, he followed you closely + in the fog and kept at your heels until you reached this very house. + There he intervened, and then it was, Colonel Walter, that to treason + you added the more terrible crime of murder." + + "I did not! I did not! Before God I swear that I did not!" cried our + wretched prisoner. + + "Tell us, then, how Cadogan West met his end before you laid him upon + the roof of a railway carriage." + + "I will. I swear to you that I will. I did the rest. I confess it. It + was just as you say. A Stock Exchange debt had to be paid. I needed + the money badly. Oberstein offered me five thousand. It was to save + myself from ruin. But as to murder, I am as innocent as you." + + "What happened, then?" + + "He had his suspicions before, and he followed me as you describe. I + never knew it until I was at the very door. It was thick fog, and one + could not see three yards. I had given two taps and Oberstein had + come to the door. The young man rushed up and demanded to know what + we were about to do with the papers. Oberstein had a short + life-preserver. He always carried it with him. As West forced his way + after us into the house Oberstein struck him on the head. The blow + was a fatal one. He was dead within five minutes. There he lay in the + hall, and we were at our wit's end what to do. Then Oberstein had + this idea about the trains which halted under his back window. But + first he examined the papers which I had brought. He said that three + of them were essential, and that he must keep them. 'You cannot keep + them,' said I. 'There will be a dreadful row at Woolwich if they are + not returned.' 'I must keep them,' said he, 'for they are so + technical that it is impossible in the time to make copies.' 'Then + they must all go back together to-night,' said I. He thought for a + little, and then he cried out that he had it. 'Three I will keep,' + said he. 'The others we will stuff into the pocket of this young man. + When he is found the whole business will assuredly be put to his + account.' I could see no other way out of it, so we did as he + suggested. We waited half an hour at the window before a train + stopped. It was so thick that nothing could be seen, and we had no + difficulty in lowering West's body on to the train. That was the end + of the matter so far as I was concerned." + + "And your brother?" + + "He said nothing, but he had caught me once with his keys, and I + think that he suspected. I read in his eyes that he suspected. As you + know, he never held up his head again." + + There was silence in the room. It was broken by Mycroft Holmes. + + "Can you not make reparation? It would ease your conscience, and + possibly your punishment." + + "What reparation can I make?" + + "Where is Oberstein with the papers?" + + "I do not know." + + "Did he give you no address?" + + "He said that letters to the Hôtel du Louvre, Paris, would eventually + reach him." + + "Then reparation is still within your power," said Sherlock Holmes. + + "I will do anything I can. I owe this fellow no particular good-will. + He has been my ruin and my downfall." + + "Here are paper and pen. Sit at this desk and write to my dictation. + Direct the envelope to the address given. That is right. Now the + letter: + + "Dear Sir: + "With regard to our transaction, you will no doubt have observed by + now that one essential detail is missing. I have a tracing which will + make it complete. This has involved me in extra trouble, however, and + I must ask you for a further advance of five hundred pounds. I will + not trust it to the post, nor will I take anything but gold or notes. + I would come to you abroad, but it would excite remark if I left the + country at present. Therefore I shall expect to meet you in the + smoking-room of the Charing Cross Hotel at noon on Saturday. Remember + that only English notes, or gold, will be taken. + + "That will do very well. I shall be very much surprised if it does + not fetch our man." + + And it did! It is a matter of history--that secret history of a + nation which is often so much more intimate and interesting than its + public chronicles--that Oberstein, eager to complete the coup of his + lifetime, came to the lure and was safely engulfed for fifteen years + in a British prison. In his trunk were found the invaluable + Bruce-Partington plans, which he had put up for auction in all the + naval centres of Europe. + + Colonel Walter died in prison towards the end of the second year of + his sentence. As to Holmes, he returned refreshed to his monograph + upon the Polyphonic Motets of Lassus, which has since been printed + for private circulation, and is said by experts to be the last word + upon the subject. Some weeks afterwards I learned incidentally that + my friend spent a day at Windsor, whence be returned with a + remarkably fine emerald tie-pin. When I asked him if he had bought + it, he answered that it was a present from a certain gracious lady in + whose interests he had once been fortunate enough to carry out a + small commission. He said no more; but I fancy that I could guess at + that lady's august name, and I have little doubt that the emerald pin + will forever recall to my friend's memory the adventure of the + Bruce-Partington plans. + + + + + + + THE ADVENTURE OF THE DYING DETECTIVE + + Mrs. Hudson, the landlady of Sherlock Holmes, was a long-suffering + woman. Not only was her first-floor flat invaded at all hours by + throngs of singular and often undesirable characters but her + remarkable lodger showed an eccentricity and irregularity in his life + which must have sorely tried her patience. His incredible untidiness, + his addiction to music at strange hours, his occasional revolver + practice within doors, his weird and often malodorous scientific + experiments, and the atmosphere of violence and danger which hung + around him made him the very worst tenant in London. On the other + hand, his payments were princely. I have no doubt that the house + might have been purchased at the price which Holmes paid for his + rooms during the years that I was with him. + + The landlady stood in the deepest awe of him and never dared to + interfere with him, however outrageous his proceedings might seem. + She was fond of him, too, for he had a remarkable gentleness and + courtesy in his dealings with women. He disliked and distrusted the + sex, but he was always a chivalrous opponent. Knowing how genuine was + her regard for him, I listened earnestly to her story when she came + to my rooms in the second year of my married life and told me of the + sad condition to which my poor friend was reduced. + + "He's dying, Dr. Watson," said she. "For three days he has been + sinking, and I doubt if he will last the day. He would not let me get + a doctor. This morning when I saw his bones sticking out of his face + and his great bright eyes looking at me I could stand no more of it. + 'With your leave or without it, Mr. Holmes, I am going for a doctor + this very hour,' said I. 'Let it be Watson, then,' said he. I + wouldn't waste an hour in coming to him, sir, or you may not see him + alive." + + I was horrified for I had heard nothing of his illness. I need not + say that I rushed for my coat and my hat. As we drove back I asked + for the details. + + "There is little I can tell you, sir. He has been working at a case + down at Rotherhithe, in an alley near the river, and he has brought + this illness back with him. He took to his bed on Wednesday afternoon + and has never moved since. For these three days neither food nor + drink has passed his lips." + + "Good God! Why did you not call in a doctor?" + + "He wouldn't have it, sir. You know how masterful he is. I didn't + dare to disobey him. But he's not long for this world, as you'll see + for yourself the moment that you set eyes on him." + + He was indeed a deplorable spectacle. In the dim light of a foggy + November day the sick room was a gloomy spot, but it was that gaunt, + wasted face staring at me from the bed which sent a chill to my + heart. His eyes had the brightness of fever, there was a hectic flush + upon either cheek, and dark crusts clung to his lips; the thin hands + upon the coverlet twitched incessantly, his voice was croaking and + spasmodic. He lay listlessly as I entered the room, but the sight of + me brought a gleam of recognition to his eyes. + + "Well, Watson, we seem to have fallen upon evil days," said he in a + feeble voice, but with something of his old carelessness of manner. + + "My dear fellow!" I cried, approaching him. + + "Stand back! Stand right back!" said he with the sharp imperiousness + which I had associated only with moments of crisis. "If you approach + me, Watson, I shall order you out of the house." + + "But why?" + + "Because it is my desire. Is that not enough?" + + Yes, Mrs. Hudson was right. He was more masterful than ever. It was + pitiful, however, to see his exhaustion. + + "I only wished to help," I explained. + + "Exactly! You will help best by doing what you are told." + + "Certainly, Holmes." + + He relaxed the austerity of his manner. + + "You are not angry?" he asked, gasping for breath. + + Poor devil, how could I be angry when I saw him lying in such a + plight before me? + + "It's for your own sake, Watson," he croaked. + + "For my sake?" + + "I know what is the matter with me. It is a coolie disease from + Sumatra--a thing that the Dutch know more about than we, though they + have made little of it up to date. One thing only is certain. It is + infallibly deadly, and it is horribly contagious." + + He spoke now with a feverish energy, the long hands twitching and + jerking as he motioned me away. + + "Contagious by touch, Watson--that's it, by touch. Keep your distance + and all is well." + + "Good heavens, Holmes! Do you suppose that such a consideration + weighs with me of an instant? It would not affect me in the case of a + stranger. Do you imagine it would prevent me from doing my duty to so + old a friend?" + + Again I advanced, but he repulsed me with a look of furious anger. + + "If you will stand there I will talk. If you do not you must leave + the room." + + I have so deep a respect for the extraordinary qualities of Holmes + that I have always deferred to his wishes, even when I least + understood them. But now all my professional instincts were aroused. + Let him be my master elsewhere, I at least was his in a sick room. + + "Holmes," said I, "you are not yourself. A sick man is but a child, + and so I will treat you. Whether you like it or not, I will examine + your symptoms and treat you for them." + + He looked at me with venomous eyes. + + "If I am to have a doctor whether I will or not, let me at least have + someone in whom I have confidence," said he. + + "Then you have none in me?" + + "In your friendship, certainly. But facts are facts, Watson, and, + after all, you are only a general practitioner with very limited + experience and mediocre qualifications. It is painful to have to say + these things, but you leave me no choice." + + I was bitterly hurt. + + "Such a remark is unworthy of you, Holmes. It shows me very clearly + the state of your own nerves. But if you have no confidence in me I + would not intrude my services. Let me bring Sir Jasper Meek or + Penrose Fisher, or any of the best men in London. But someone you + must have, and that is final. If you think that I am going to stand + here and see you die without either helping you myself or bringing + anyone else to help you, then you have mistaken your man." + + "You mean well, Watson," said the sick man with something between a + sob and a groan. "Shall I demonstrate your own ignorance? What do you + know, pray, of Tapanuli fever? What do you know of the black Formosa + corruption?" + + "I have never heard of either." + + "There are many problems of disease, many strange pathological + possibilities, in the East, Watson." He paused after each sentence to + collect his failing strength. "I have learned so much during some + recent researches which have a medico-criminal aspect. It was in the + course of them that I contracted this complaint. You can do nothing." + + "Possibly not. But I happen to know that Dr. Ainstree, the greatest + living authority upon tropical disease, is now in London. All + remonstrance is useless, Holmes, I am going this instant to fetch + him." I turned resolutely to the door. + + Never have I had such a shock! In an instant, with a tiger-spring, + the dying man had intercepted me. I heard the sharp snap of a twisted + key. The next moment he had staggered back to his bed, exhausted and + panting after his one tremendous outflame of energy. + + "You won't take the key from be by force, Watson, I've got you, my + friend. Here you are, and here you will stay until I will otherwise. + But I'll humour you." (All this in little gasps, with terrible + struggles for breath between.) "You've only my own good at heart. Of + course I know that very well. You shall have your way, but give me + time to get my strength. Not now, Watson, not now. It's four o'clock. + At six you can go." + + "This is insanity, Holmes." + + "Only two hours, Watson. I promise you will go at six. Are you + content to wait?" + + "I seem to have no choice." + + "None in the world, Watson. Thank you, I need no help in arranging + the clothes. You will please keep your distance. Now, Watson, there + is one other condition that I would make. You will seek help, not + from the man you mention, but from the one that I choose." + + "By all means." + + "The first three sensible words that you have uttered since you + entered this room, Watson. You will find some books over there. I am + somewhat exhausted; I wonder how a battery feels when it pours + electricity into a non-conductor? At six, Watson, we resume our + conversation." + + But it was destined to be resumed long before that hour, and in + circumstances which gave me a shock hardly second to that caused by + his spring to the door. I had stood for some minutes looking at the + silent figure in the bed. His face was almost covered by the clothes + and he appeared to be asleep. Then, unable to settle down to reading, + I walked slowly round the room, examining the pictures of celebrated + criminals with which every wall was adorned. Finally, in my aimless + perambulation, I came to the mantelpiece. A litter of pipes, + tobacco-pouches, syringes, penknives, revolver-cartridges, and other + debris was scattered over it. In the midst of these was a small black + and white ivory box with a sliding lid. It was a neat little thing, + and I had stretched out my hand to examine it more closely when-- + + It was a dreadful cry that he gave--a yell which might have been + heard down the street. My skin went cold and my hair bristled at that + horrible scream. As I turned I caught a glimpse of a convulsed face + and frantic eyes. I stood paralyzed, with the little box in my hand. + + "Put it down! Down, this instant, Watson--this instant, I say!" His + head sank back upon the pillow and he gave a deep sigh of relief as I + replaced the box upon the mantelpiece. "I hate to have my things + touched, Watson. You know that I hate it. You fidget me beyond + endurance. You, a doctor--you are enough to drive a patient into an + asylum. Sit down, man, and let me have my rest!" + + The incident left a most unpleasant impression upon my mind. The + violent and causeless excitement, followed by this brutality of + speech, so far removed from his usual suavity, showed me how deep was + the disorganization of his mind. Of all ruins, that of a noble mind + is the most deplorable. I sat in silent dejection until the + stipulated time had passed. He seemed to have been watching the clock + as well as I, for it was hardly six before he began to talk with the + same feverish animation as before. + + "Now, Watson," said he. "Have you any change in your pocket?" + + "Yes." + + "Any silver?" + + "A good deal." + + "How many half-crowns?" + + "I have five." + + "Ah, too few! Too few! How very unfortunate, Watson! However, such as + they are you can put them in your watchpocket. And all the rest of + your money in your left trouser pocket. Thank you. It will balance + you so much better like that." + + This was raving insanity. He shuddered, and again made a sound + between a cough and a sob. + + "You will now light the gas, Watson, but you will be very careful + that not for one instant shall it be more than half on. I implore you + to be careful, Watson. Thank you, that is excellent. No, you need not + draw the blind. Now you will have the kindness to place some letters + and papers upon this table within my reach. Thank you. Now some of + that litter from the mantelpiece. Excellent, Watson! There is a + sugar-tongs there. Kindly raise that small ivory box with its + assistance. Place it here among the papers. Good! You can now go and + fetch Mr. Culverton Smith, of 13 Lower Burke Street." + + To tell the truth, my desire to fetch a doctor had somewhat weakened, + for poor Holmes was so obviously delirious that it seemed dangerous + to leave him. However, he was as eager now to consult the person + named as he had been obstinate in refusing. + + "I never heard the name," said I. + + "Possibly not, my good Watson. It may surprise you to know that the + man upon earth who is best versed in this disease is not a medical + man, but a planter. Mr. Culverton Smith is a well-known resident of + Sumatra, now visiting London. An outbreak of the disease upon his + plantation, which was distant from medical aid, caused him to study + it himself, with some rather far-reaching consequences. He is a very + methodical person, and I did not desire you to start before six, + because I was well aware that you would not find him in his study. If + you could persuade him to come here and give us the benefit of his + unique experience of this disease, the investigation of which has + been his dearest hobby, I cannot doubt that he could help me." + + I gave Holmes's remarks as a consecutive whole and will not attempt + to indicate how they were interrupted by gaspings for breath and + those clutchings of his hands which indicated the pain from which he + was suffering. His appearance had changed for the worse during the + few hours that I had been with him. Those hectic spots were more + pronounced, the eyes shone more brightly out of darker hollows, and a + cold sweat glimmered upon his brow. He still retained, however, the + jaunty gallantry of his speech. To the last gasp he would always be + the master. + + "You will tell him exactly how you have left me," said he. "You will + convey the very impression which is in your own mind--a dying man--a + dying and delirious man. Indeed, I cannot think why the whole bed of + the ocean is not one solid mass of oysters, so prolific the creatures + seem. Ah, I am wondering! Strange how the brain controls the brain! + What was I saying, Watson?" + + "My directions for Mr. Culverton Smith." + + "Ah, yes, I remember. My life depends upon it. Plead with him, + Watson. There is no good feeling between us. His nephew, Watson--I + had suspicions of foul play and I allowed him to see it. The boy died + horribly. He has a grudge against me. You will soften him, Watson. + Beg him, pray him, get him here by any means. He can save me--only + he!" + + "I will bring him in a cab, if I have to carry him down to it." + + "You will do nothing of the sort. You will persuade him to come. And + then you will return in front of him. Make any excuse so as not to + come with him. Don't forget, Watson. You won't fail me. You never did + fail me. No doubt there are natural enemies which limit the increase + of the creatures. You and I, Watson, we have done our part. Shall the + world, then, be overrun by oysters? No, no; horrible! You'll convey + all that is in your mind." + + I left him full of the image of this magnificent intellect babbling + like a foolish child. He had handed me the key, and with a happy + thought I took it with me lest he should lock himself in. Mrs. Hudson + was waiting, trembling and weeping, in the passage. Behind me as I + passed from the flat I heard Holmes's high, thin voice in some + delirious chant. Below, as I stood whistling for a cab, a man came on + me through the fog. + + "How is Mr. Holmes, sir?" he asked. + + It was an old acquaintance, Inspector Morton, of Scotland Yard, + dressed in unofficial tweeds. + + "He is very ill," I answered. + + He looked at me in a most singular fashion. Had it not been too + fiendish, I could have imagined that the gleam of the fanlight showed + exultation in his face. + + "I heard some rumour of it," said he. + + The cab had driven up, and I left him. + + Lower Burke Street proved to be a line of fine houses lying in the + vague borderland between Notting Hill and Kensington. The particular + one at which my cabman pulled up had an air of smug and demure + respectability in its old-fashioned iron railings, its massive + folding-door, and its shining brasswork. All was in keeping with a + solemn butler who appeared framed in the pink radiance of a tinted + electrical light behind him. + + "Yes, Mr. Culverton Smith is in. Dr. Watson! Very good, sir, I will + take up your card." + + My humble name and title did not appear to impress Mr. Culverton + Smith. Through the half-open door I heard a high, petulant, + penetrating voice. + + "Who is this person? What does he want? Dear me, Staples, how often + have I said that I am not to be disturbed in my hours of study?" + + There came a gentle flow of soothing explanation from the butler. + + "Well, I won't see him, Staples. I can't have my work interrupted + like this. I am not at home. Say so. Tell him to come in the morning + if he really must see me." + + Again the gentle murmur. + + "Well, well, give him that message. He can come in the morning, or he + can stay away. My work must not be hindered." + + I thought of Holmes tossing upon his bed of sickness and counting the + minutes, perhaps, until I could bring help to him. It was not a time + to stand upon ceremony. His life depended upon my promptness. Before + the apologetic butler had delivered his message I had pushed past him + and was in the room. + + With a shrill cry of anger a man rose from a reclining chair beside + the fire. I saw a great yellow face, coarse-grained and greasy, with + heavy, double-chin, and two sullen, menacing gray eyes which glared + at me from under tufted and sandy brows. A high bald head had a small + velvet smoking-cap poised coquettishly upon one side of its pink + curve. The skull was of enormous capacity, and yet as I looked down I + saw to my amazement that the figure of the man was small and frail, + twisted in the shoulders and back like one who has suffered from + rickets in his childhood. + + "What's this?" he cried in a high, screaming voice. "What is the + meaning of this intrusion? Didn't I send you word that I would see + you to-morrow morning?" + + "I am sorry," said I, "but the matter cannot be delayed. Mr. Sherlock + Holmes--" + + The mention of my friend's name had an extraordinary effect upon the + little man. The look of anger passed in an instant from his face. His + features became tense and alert. + + "Have you come from Holmes?" he asked. + + "I have just left him." + + "What about Holmes? How is he?" + + "He is desperately ill. That is why I have come." + + The man motioned me to a chair, and turned to resume his own. As he + did so I caught a glimpse of his face in the mirror over the + mantelpiece. I could have sworn that it was set in a malicious and + abominable smile. Yet I persuaded myself that it must have been some + nervous contraction which I had surprised, for he turned to me an + instant later with genuine concern upon his features. + + "I am sorry to hear this," said he. "I only know Mr. Holmes through + some business dealings which we have had, but I have every respect + for his talents and his character. He is an amateur of crime, as I am + of disease. For him the villain, for me the microbe. There are my + prisons," he continued, pointing to a row of bottles and jars which + stood upon a side table. "Among those gelatine cultivations some of + the very worst offenders in the world are now doing time." + + "It was on account of your special knowledge that Mr. Holmes desired + to see you. He has a high opinion of you and thought that you were + the one man in London who could help him." + + The little man started, and the jaunty smoking-cap slid to the floor. + + "Why?" he asked. "Why should Mr. Homes think that I could help him in + his trouble?" + + "Because of your knowledge of Eastern diseases." + + "But why should he think that this disease which he has contracted is + Eastern?" + + "Because, in some professional inquiry, he has been working among + Chinese sailors down in the docks." + + Mr. Culverton Smith smiled pleasantly and picked up his smoking-cap. + + "Oh, that's it--is it?" said he. "I trust the matter is not so grave + as you suppose. How long has he been ill?" + + "About three days." + + "Is he delirious?" + + "Occasionally." + + "Tut, tut! This sounds serious. It would be inhuman not to answer his + call. I very much resent any interruption to my work, Dr. Watson, but + this case is certainly exceptional. I will come with you at once." + + I remembered Holmes's injunction. + + "I have another appointment," said I. + + "Very good. I will go alone. I have a note of Mr. Holmes's address. + You can rely upon my being there within half an hour at most." + + It was with a sinking heart that I reentered Holmes's bedroom. For + all that I knew the worst might have happened in my absence. To my + enormous relief, he had improved greatly in the interval. His + appearance was as ghastly as ever, but all trace of delirium had left + him and he spoke in a feeble voice, it is true, but with even more + than his usual crispness and lucidity. + + "Well, did you see him, Watson?" + + "Yes; he is coming." + + "Admirable, Watson! Admirable! You are the best of messengers." + + "He wished to return with me." + + "That would never do, Watson. That would be obviously impossible. Did + he ask what ailed me?" + + "I told him about the Chinese in the East End." + + "Exactly! Well, Watson, you have done all that a good friend could. + You can now disappear from the scene." + + "I must wait and hear his opinion, Holmes." + + "Of course you must. But I have reasons to suppose that this opinion + would be very much more frank and valuable if he imagines that we are + alone. There is just room behind the head of my bed, Watson." + + "My dear Holmes!" + + "I fear there is no alternative, Watson. The room does not lend + itself to concealment, which is as well, as it is the less likely to + arouse suspicion. But just there, Watson, I fancy that it could be + done." Suddenly he sat up with a rigid intentness upon his haggard + face. "There are the wheels, Watson. Quick, man, if you love me! And + don't budge, whatever happens--whatever happens, do you hear? Don't + speak! Don't move! Just listen with all your ears." Then in an + instant his sudden access of strength departed, and his masterful, + purposeful talk droned away into the low, vague murmurings of a + semi-delirious man. + + From the hiding-place into which I had been so swiftly hustled I + heard the footfalls upon the stair, with the opening and the closing + of the bedroom door. Then, to my surprise, there came a long silence, + broken only by the heavy breathings and gaspings of the sick man. I + could imagine that our visitor was standing by the bedside and + looking down at the sufferer. At last that strange hush was broken. + + "Holmes!" he cried. "Holmes!" in the insistent tone of one who + awakens a sleeper. "Can't you hear me, Holmes?" There was a rustling, + as if he had shaken the sick man roughly by the shoulder. + + "Is that you, Mr. Smith?" Holmes whispered. "I hardly dared hope that + you would come." + + The other laughed. + + "I should imagine not," he said. "And yet, you see, I am here. Coals + of fire, Holmes--coals of fire!" + + "It is very good of you--very noble of you. I appreciate your special + knowledge." + + Our visitor sniggered. + + "You do. You are, fortunately, the only man in London who does. Do + you know what is the matter with you?" + + "The same," said Holmes. + + "Ah! You recognize the symptoms?" + + "Only too well." + + "Well, I shouldn't be surprised, Holmes. I shouldn't be surprised if + it were the same. A bad lookout for you if it is. Poor Victor was a + dead man on the fourth day--a strong, hearty young fellow. It was + certainly, as you said, very surprising that he should have + contracted and out-of-the-way Asiatic disease in the heart of + London--a disease, too, of which I had made such a very special + study. Singular coincidence, Holmes. Very smart of you to notice it, + but rather uncharitable to suggest that it was cause and effect." + + "I knew that you did it." + + "Oh, you did, did you? Well, you couldn't prove it, anyhow. But what + do you think of yourself spreading reports about me like that, and + then crawling to me for help the moment you are in trouble? What sort + of a game is that--eh?" + + I heard the rasping, laboured breathing of the sick man. "Give me the + water!" he gasped. + + "You're precious near your end, my friend, but I don't want you to go + till I have had a word with you. That's why I give you water. There, + don't slop it about! That's right. Can you understand what I say?" + + Holmes groaned. + + "Do what you can for me. Let bygones be bygones," he whispered. "I'll + put the words out of my head--I swear I will. Only cure me, and I'll + forget it." + + "Forget what?" + + "Well, about Victor Savage's death. You as good as admitted just now + that you had done it. I'll forget it." + + "You can forget it or remember it, just as you like. I don't see you + in the witnessbox. Quite another shaped box, my good Holmes, I assure + you. It matters nothing to me that you should know how my nephew + died. It's not him we are talking about. It's you." + + "Yes, yes." + + "The fellow who came for me--I've forgotten his name--said that you + contracted it down in the East End among the sailors." + + "I could only account for it so." + + "You are proud of your brains, Holmes, are you not? Think yourself + smart, don't you? You came across someone who was smarter this time. + Now cast your mind back, Holmes. Can you think of no other way you + could have got this thing?" + + "I can't think. My mind is gone. For heaven's sake help me!" + + "Yes, I will help you. I'll help you to understand just where you are + and how you got there. I'd like you to know before you die." + + "Give me something to ease my pain." + + "Painful, is it? Yes, the coolies used to do some squealing towards + the end. Takes you as cramp, I fancy." + + "Yes, yes; it is cramp." + + "Well, you can hear what I say, anyhow. Listen now! Can you remember + any unusual incident in your life just about the time your symptoms + began?" + + "No, no; nothing." + + "Think again." + + "I'm too ill to think." + + "Well, then, I'll help you. Did anything come by post?" + + "By post?" + + "A box by chance?" + + "I'm fainting--I'm gone!" + + "Listen, Holmes!" There was a sound as if he was shaking the dying + man, and it was all that I could do to hold myself quiet in my + hiding-place. "You must hear me. You shall hear me. Do you remember a + box--an ivory box? It came on Wednesday. You opened it--do you + remember?" + + "Yes, yes, I opened it. There was a sharp spring inside it. Some + joke--" + + "It was no joke, as you will find to your cost. You fool, you would + have it and you have got it. Who asked you to cross my path? If you + had left me alone I would not have hurt you." + + "I remember," Holmes gasped. "The spring! It drew blood. This + box--this on the table." + + "The very one, by George! And it may as well leave the room in my + pocket. There goes your last shred of evidence. But you have the + truth now, Holmes, and you can die with the knowledge that I killed + you. You knew too much of the fate of Victor Savage, so I have sent + you to share it. You are very near your end, Holmes. I will sit here + and I will watch you die." + + Holmes's voice had sunk to an almost inaudible whisper. + + "What is that?" said Smith. "Turn up the gas? Ah, the shadows begin + to fall, do they? Yes, I will turn it up, that I may see you the + better." He crossed the room and the light suddenly brightened. "Is + there any other little service that I can do you, my friend?" + + "A match and a cigarette." + + I nearly called out in my joy and my amazement. He was speaking in + his natural voice--a little weak, perhaps, but the very voice I knew. + There was a long pause, and I felt that Culverton Smith was standing + in silent amazement looking down at his companion. + + "What's the meaning of this?" I heard him say at last in a dry, + rasping tone. + + "The best way of successfully acting a part is to be it," said + Holmes. "I give you my word that for three days I have tasted neither + food nor drink until you were good enough to pour me out that glass + of water. But it is the tobacco which I find most irksome. Ah, here + are some cigarettes." I heard the striking of a match. "That is very + much better. Halloa! halloa! Do I hear the step of a friend?" + + There were footfalls outside, the door opened, and Inspector Morton + appeared. + + "All is in order and this is your man," said Holmes. + + The officer gave the usual cautions. + + "I arrest you on the charge of the murder of one Victor Savage," he + concluded. + + "And you might add of the attempted murder of one Sherlock Holmes," + remarked my friend with a chuckle. "To save an invalid trouble, + Inspector, Mr. Culverton Smith was good enough to give our signal by + turning up the gas. By the way, the prisoner has a small box in the + right-hand pocket of his coat which it would be as well to remove. + Thank you. I would handle it gingerly if I were you. Put it down + here. It may play its part in the trial." + + There was a sudden rush and a scuffle, followed by the clash of iron + and a cry of pain. + + "You'll only get yourself hurt," said the inspector. "Stand still, + will you?" There was the click of the closing handcuffs. + + "A nice trap!" cried the high, snarling voice. "It will bring you + into the dock, Holmes, not me. He asked me to come here to cure him. + I was sorry for him and I came. Now he will pretend, no doubt, that I + have said anything which he may invent which will corroborate his + insane suspicions. You can lie as you like, Holmes. My word is + always as good as yours." + + "Good heavens!" cried Holmes. "I had totally forgotten him. My dear + Watson, I owe you a thousand apologies. To think that I should have + overlooked you! I need not introduce you to Mr. Culverton Smith, + since I understand that you met somewhat earlier in the evening. Have + you the cab below? I will follow you when I am dressed, for I may be + of some use at the station. + + "I never needed it more," said Holmes as he refreshed himself with a + glass of claret and some biscuits in the intervals of his toilet. + "However, as you know, my habits are irregular, and such a feat means + less to me than to most men. It was very essential that I should + impress Mrs. Hudson with the reality of my condition, since she was + to convey it to you, and you in turn to him. You won't be offended, + Watson? You will realize that among your many talents dissimulation + finds no place, and that if you had shared my secret you would never + have been able to impress Smith with the urgent necessity of his + presence, which was the vital point of the whole scheme. Knowing his + vindictive nature, I was perfectly certain that he would come to look + upon his handiwork." + + "But your appearance, Holmes--your ghastly face?" + + "Three days of absolute fast does not improve one's beauty, Watson. + For the rest, there is nothing which a sponge may not cure. With + vaseline upon one's forehead, belladonna in one's eyes, rouge over + the cheek-bones, and crusts of beeswax round one's lips, a very + satisfying effect can be produced. Malingering is a subject upon + which I have sometimes thought of writing a monograph. A little + occasional talk about half-crowns, oysters, or any other extraneous + subject produces a pleasing effect of delirium." + + "But why would you not let me near you, since there was in truth no + infection?" + + "Can you ask, my dear Watson? Do you imagine that I have no respect + for your medical talents? Could I fancy that your astute judgment + would pass a dying man who, however weak, had no rise of pulse or + temperature? At four yards, I could deceive you. If I failed to do + so, who would bring my Smith within my grasp? No, Watson, I would not + touch that box. You can just see if you look at it sideways where the + sharp spring like a viper's tooth emerges as you open it. I dare say + it was by some such device that poor Savage, who stood between this + monster and a reversion, was done to death. My correspondence, + however, is, as you know, a varied one, and I am somewhat upon my + guard against any packages which reach me. It was clear to me, + however, that by pretending that he had really succeeded in his + design I might surprise a confession. That pretence I have carried + out with the thoroughness of the true artist. Thank you, Watson, you + must help me on with my coat. When we have finished at the + police-station I think that something nutritious at Simpson's would + not be out of place." + + + + + + + THE DISAPPEARANCE OF LADY FRANCES CARFAX + + "But why Turkish?" asked Mr. Sherlock Holmes, gazing fixedly at my + boots. I was reclining in a cane-backed chair at the moment, and my + protruded feet had attracted his ever-active attention. + + "English," I answered in some surprise. "I got them at Latimer's, in + Oxford Street." + + Holmes smiled with an expression of weary patience. + + "The bath!" he said; "the bath! Why the relaxing and expensive + Turkish rather than the invigorating home-made article?" + + "Because for the last few days I have been feeling rheumatic and old. + A Turkish bath is what we call an alterative in medicine--a fresh + starting-point, a cleanser of the system. + + "By the way, Holmes," I added, "I have no doubt the connection + between my boots and a Turkish bath is a perfectly self-evident one + to a logical mind, and yet I should be obliged to you if you would + indicate it." + + "The train of reasoning is not very obscure, Watson," said Holmes + with a mischievous twinkle. "It belongs to the same elementary class + of deduction which I should illustrate if I were to ask you who + shared your cab in your drive this morning." + + "I don't admit that a fresh illustration is an explanation," said I + with some asperity. + + "Bravo, Watson! A very dignified and logical remonstrance. Let me + see, what were the points? Take the last one first--the cab. You + observe that you have some splashes on the left sleeve and shoulder + of your coat. Had you sat in the centre of a hansom you would + probably have had no splashes, and if you had they would certainly + have been symmetrical. Therefore it is clear that you sat at the + side. Therefore it is equally clear that you had a companion." + + "That is very evident." + + "Absurdly commonplace, is it not?" + + "But the boots and the bath?" + + "Equally childish. You are in the habit of doing up your boots in a + certain way. I see them on this occasion fastened with an elaborate + double bow, which is not your usual method of tying them. You have, + therefore, had them off. Who has tied them? A bootmaker--or the boy + at the bath. It is unlikely that it is the bootmaker, since your + boots are nearly new. Well, what remains? The bath. Absurd, is it + not? But, for all that, the Turkish bath has served a purpose." + + "What is that?" + + "You say that you have had it because you need a change. Let me + suggest that you take one. How would Lausanne do, my dear + Watson--first-class tickets and all expenses paid on a princely + scale?" + + "Splendid! But why?" + + Holmes leaned back in his armchair and took his notebook from his + pocket. + + "One of the most dangerous classes in the world," said he, "is the + drifting and friendless woman. She is the most harmless and often the + most useful of mortals, but she is the inevitable inciter of crime in + others. She is helpless. She is migratory. She has sufficient means + to take her from country to country and from hotel to hotel. She is + lost, as often as not, in a maze of obscure pensions and + boardinghouses. She is a stray chicken in a world of foxes. When she + is gobbled up she is hardly missed. I much fear that some evil has + come to the Lady Frances Carfax." + + I was relieved at this sudden descent from the general to the + particular. Holmes consulted his notes. + + "Lady Frances," he continued, "is the sole survivor of the direct + family of the late Earl of Rufton. The estates went, as you may + remember, in the male line. She was left with limited means, but with + some very remarkable old Spanish jewellery of silver and curiously + cut diamonds to which she was fondly attached--too attached, for she + refused to leave them with her banker and always carried them about + with her. A rather pathetic figure, the Lady Frances, a beautiful + woman, still in fresh middle age, and yet, by a strange change, the + last derelict of what only twenty years ago was a goodly fleet." + + "What has happened to her, then?" + + "Ah, what has happened to the Lady Frances? Is she alive or dead? + There is our problem. She is a lady of precise habits, and for four + years it has been her invariable custom to write every second week to + Miss Dobney, her old governess, who has long retired and lives in + Camberwell. It is this Miss Dobney who has consulted me. Nearly five + weeks have passed without a word. The last letter was from the Hotel + National at Lausanne. Lady Frances seems to have left there and given + no address. The family are anxious, and as they are exceedingly + wealthy no sum will be spared if we can clear the matter up." + + "Is Miss Dobney the only source of information? Surely she had other + correspondents?" + + "There is one correspondent who is a sure draw, Watson. That is the + bank. Single ladies must live, and their passbooks are compressed + diaries. She banks at Silvester's. I have glanced over her account. + The last check but one paid her bill at Lausanne, but it was a large + one and probably left her with cash in hand. Only one check has been + drawn since." + + "To whom, and where?" + + "To Miss Marie Devine. There is nothing to show where the check was + drawn. It was cashed at the Credit Lyonnais at Montpellier less than + three weeks ago. The sum was fifty pounds." + + "And who is Miss Marie Devine?" + + "That also I have been able to discover. Miss Marie Devine was the + maid of Lady Frances Carfax. Why she should have paid her this check + we have not yet determined. I have no doubt, however, that your + researches will soon clear the matter up." + + "My researches!" + + "Hence the health-giving expedition to Lausanne. You know that I + cannot possibly leave London while old Abrahams is in such mortal + terror of his life. Besides, on general principles it is best that I + should not leave the country. Scotland Yard feels lonely without me, + and it causes an unhealthy excitement among the criminal classes. Go, + then, my dear Watson, and if my humble counsel can ever be valued at + so extravagant a rate as two pence a word, it waits your disposal + night and day at the end of the Continental wire." + + Two days later found me at the Hotel National at Lausanne, where I + received every courtesy at the hands of M. Moser, the well-known + manager. Lady Frances, as he informed me, had stayed there for + several weeks. She had been much liked by all who met her. Her age + was not more than forty. She was still handsome and bore every sign + of having in her youth been a very lovely woman. M. Moser knew + nothing of any valuable jewellery, but it had been remarked by the + servants that the heavy trunk in the lady's bedroom was always + scrupulously locked. Marie Devine, the maid, was as popular as her + mistress. She was actually engaged to one of the head waiters in the + hotel, and there was no difficulty in getting her address. It was 11 + Rue de Trajan, Montpellier. All this I jotted down and felt that + Holmes himself could not have been more adroit in collecting his + facts. + + Only one corner still remained in the shadow. No light which I + possessed could clear up the cause for the lady's sudden departure. + She was very happy at Lausanne. There was every reason to believe + that she intended to remain for the season in her luxurious rooms + overlooking the lake. And yet she had left at a single day's notice, + which involved her in the useless payment of a week's rent. Only + Jules Vibart, the lover of the maid, had any suggestion to offer. He + connected the sudden departure with the visit to the hotel a day or + two before of a tall, dark, bearded man. "Un sauvage--un véritable + sauvage!" cried Jules Vibart. The man had rooms somewhere in the + town. He had been seen talking earnestly to Madame on the promenade + by the lake. Then he had called. She had refused to see him. He was + English, but of his name there was no record. Madame had left the + place immediately afterwards. Jules Vibart, and, what was of more + importance, Jules Vibart's sweetheart, thought that this call and the + departure were cause and effect. Only one thing Jules would not + discuss. That was the reason why Marie had left her mistress. Of that + he could or would say nothing. If I wished to know, I must go to + Montpellier and ask her. + + So ended the first chapter of my inquiry. The second was devoted to + the place which Lady Frances Carfax had sought when she left + Lausanne. Concerning this there had been some secrecy, which + confirmed the idea that she had gone with the intention of throwing + someone off her track. Otherwise why should not her luggage have been + openly labelled for Baden? Both she and it reached the Rhenish spa by + some circuitous route. This much I gathered from the manager of + Cook's local office. So to Baden I went, after dispatching to Holmes + an account of all my proceedings and receiving in reply a telegram of + half-humorous commendation. + + At Baden the track was not difficult to follow. Lady Frances had + stayed at the Englischer Hof for a fortnight. While there she had + made the acquaintance of a Dr. Shlessinger and his wife, a missionary + from South America. Like most lonely ladies, Lady Frances found her + comfort and occupation in religion. Dr. Shlessinger's remarkable + personality, his whole hearted devotion, and the fact that he was + recovering from a disease contracted in the exercise of his apostolic + duties affected her deeply. She had helped Mrs. Shlessinger in the + nursing of the convalescent saint. He spent his day, as the manager + described it to me, upon a lounge-chair on the veranda, with an + attendant lady upon either side of him. He was preparing a map of the + Holy Land, with special reference to the kingdom of the Midianites, + upon which he was writing a monograph. Finally, having improved much + in health, he and his wife had returned to London, and Lady Frances + had started thither in their company. This was just three weeks + before, and the manager had heard nothing since. As to the maid, + Marie, she had gone off some days beforehand in floods of tears, + after informing the other maids that she was leaving service forever. + Dr. Shlessinger had paid the bill of the whole party before his + departure. + + "By the way," said the landlord in conclusion, "you are not the only + friend of Lady Frances Carfax who is inquiring after her just now. + Only a week or so ago we had a man here upon the same errand." + + "Did he give a name?" I asked. + + "None; but he was an Englishman, though of an unusual type." + + "A savage?" said I, linking my facts after the fashion of my + illustrious friend. + + "Exactly. That describes him very well. He is a bulky, bearded, + sunburned fellow, who looks as if he would be more at home in a + farmers' inn than in a fashionable hotel. A hard, fierce man, I + should think, and one whom I should be sorry to offend." + + Already the mystery began to define itself, as figures grow clearer + with the lifting of a fog. Here was this good and pious lady pursued + from place to place by a sinister and unrelenting figure. She feared + him, or she would not have fled from Lausanne. He had still followed. + Sooner or later he would overtake her. Had he already overtaken her? + Was that the secret of her continued silence? Could the good people + who were her companions not screen her from his violence or his + blackmail? What horrible purpose, what deep design, lay behind this + long pursuit? There was the problem which I had to solve. + + To Holmes I wrote showing how rapidly and surely I had got down to + the roots of the matter. In reply I had a telegram asking for a + description of Dr. Shlessinger's left ear. Holmes's ideas of humour + are strange and occasionally offensive, so I took no notice of his + ill-timed jest--indeed, I had already reached Montpellier in my + pursuit of the maid, Marie, before his message came. + + I had no difficulty in finding the ex-servant and in learning all + that she could tell me. She was a devoted creature, who had only left + her mistress because she was sure that she was in good hands, and + because her own approaching marriage made a separation inevitable in + any case. Her mistress had, as she confessed with distress, shown + some irritability of temper towards her during their stay in Baden, + and had even questioned her once as if she had suspicions of her + honesty, and this had made the parting easier than it would otherwise + have been. Lady Frances had given her fifty pounds as a + wedding-present. Like me, Marie viewed with deep distrust the + stranger who had driven her mistress from Lausanne. With her own eyes + she had seen him seize the lady's wrist with great violence on the + public promenade by the lake. He was a fierce and terrible man. She + believed that it was out of dread of him that Lady Frances had + accepted the escort of the Shlessingers to London. She had never + spoken to Marie about it, but many little signs had convinced the + maid that her mistress lived in a state of continual nervous + apprehension. So far she had got in her narrative, when suddenly she + sprang from her chair and her face was convulsed with surprise and + fear. "See!" she cried. "The miscreant follows still! There is the + very man of whom I speak." + + Through the open sitting-room window I saw a huge, swarthy man with a + bristling black beard walking slowly down the centre of the street + and staring eagerly at he numbers of the houses. It was clear that, + like myself, he was on the track of the maid. Acting upon the impulse + of the moment, I rushed out and accosted him. + + "You are an Englishman," I said. + + "What if I am?" he asked with a most villainous scowl. + + "May I ask what your name is?" + + "No, you may not," said he with decision. + + The situation was awkward, but the most direct way is often the best. + + "Where is the Lady Frances Carfax?" I asked. + + He stared at me with amazement. + + "What have you done with her? Why have you pursued her? I insist upon + an answer!" said I. + + The fellow gave a below of anger and sprang upon me like a tiger. I + have held my own in many a struggle, but the man had a grip of iron + and the fury of a fiend. His hand was on my throat and my senses were + nearly gone before an unshaven French ouvrier in a blue blouse darted + out from a cabaret opposite, with a cudgel in his hand, and struck my + assailant a sharp crack over the forearm, which made him leave go his + hold. He stood for an instant fuming with rage and uncertain whether + he should not renew his attack. Then, with a snarl of anger, he left + me and entered the cottage from which I had just come. I turned to + thank my preserver, who stood beside me in the roadway. + + "Well, Watson," said he, "a very pretty hash you have made of it! I + rather think you had better come back with me to London by the night + express." + + An hour afterwards, Sherlock Holmes, in his usual garb and style, was + seated in my private room at the hotel. His explanation of his sudden + and opportune appearance was simplicity itself, for, finding that he + could get away from London, he determined to head me off at the next + obvious point of my travels. In the disguise of a workingman he had + sat in the cabaret waiting for my appearance. + + "And a singularly consistent investigation you have made, my dear + Watson," said he. "I cannot at the moment recall any possible blunder + which you have omitted. The total effect of your proceeding has been + to give the alarm everywhere and yet to discover nothing." + + "Perhaps you would have done no better," I answered bitterly. + + "There is no 'perhaps' about it. I have done better. Here is the Hon. + Philip Green, who is a fellow-lodger with you in this hotel, and we + may find him the starting-point for a more successful investigation." + + A card had come up on a salver, and it was followed by the same + bearded ruffian who had attacked me in the street. He started when he + saw me. + + "What is this, Mr. Holmes?" he asked. "I had your note and I have + come. But what has this man to do with the matter?" + + "This is my old friend and associate, Dr. Watson, who is helping us + in this affair." + + The stranger held out a huge, sunburned hand, with a few words of + apology. + + "I hope I didn't harm you. When you accused me of hurting her I lost + my grip of myself. Indeed, I'm not responsible in these days. My + nerves are like live wires. But this situation is beyond me. What I + want to know, in the first place, Mr. Holmes, is, how in the world + you came to hear of my existence at all." + + "I am in touch with Miss Dobney, Lady Frances's governess." + + "Old Susan Dobney with the mob cap! I remember her well." + + "And she remembers you. It was in the days before--before you found + it better to go to South Africa." + + "Ah, I see you know my whole story. I need hide nothing from you. I + swear to you, Mr. Holmes, that there never was in this world a man + who loved a woman with a more wholehearted love than I had for + Frances. I was a wild youngster, I know--not worse than others of my + class. But her mind was pure as snow. She could not bear a shadow of + coarseness. So, when she came to hear of things that I had done, she + would have no more to say to me. And yet she loved me--that is the + wonder of it!--loved me well enough to remain single all her sainted + days just for my sake alone. When the years had passed and I had made + my money at Barberton I thought perhaps I could seek her out and + soften her. I had heard that she was still unmarried, I found her at + Lausanne and tried all I knew. She weakened, I think, but her will + was strong, and when next I called she had left the town. I traced + her to Baden, and then after a time heard that her maid was here. I'm + a rough fellow, fresh from a rough life, and when Dr. Watson spoke to + me as he did I lost hold of myself for a moment. But for God's sake + tell me what has become of the Lady Frances." + + "That is for us to find out," said Sherlock Holmes with peculiar + gravity. "What is your London address, Mr. Green?" + + "The Langham Hotel will find me." + + "Then may I recommend that you return there and be on hand in case I + should want you? I have no desire to encourage false hopes, but you + may rest assured that all that can be done will be done for the + safety of Lady Frances. I can say no more for the instant. I will + leave you this card so that you may be able to keep in touch with us. + Now, Watson, if you will pack your bag I will cable to Mrs. Hudson to + make one of her best efforts for two hungry travellers at 7.30 + to-morrow." + + A telegram was awaiting us when we reached our Baker Street rooms, + which Holmes read with an exclamation of interest and threw across to + me. "Jagged or torn," was the message, and the place of origin, + Baden. + + "What is this?" I asked. + + "It is everything," Holmes answered. "You may remember my seemingly + irrelevant question as to this clerical gentleman's left ear. You did + not answer it." + + "I had left Baden and could not inquire." + + "Exactly. For this reason I sent a duplicate to the manager of the + Englischer Hof, whose answer lies here." + + "What does it show?" + + "It shows, my dear Watson, that we are dealing with an exceptionally + astute and dangerous man. The Rev. Dr. Shlessinger, missionary from + South America, is none other than Holy Peters, one of the most + unscrupulous rascals that Australia has ever evolved--and for a young + country it has turned out some very finished types. His particular + specialty is the beguiling of lonely ladies by playing upon their + religious feelings, and his so-called wife, an Englishwoman named + Fraser, is a worthy helpmate. The nature of his tactics suggested his + identity to me, and this physical peculiarity--he was badly bitten in + a saloon-fight at Adelaide in '89--confirmed my suspicion. This poor + lady is in the hands of a most infernal couple, who will stick at + nothing, Watson. That she is already dead is a very likely + supposition. If not, she is undoubtedly in some sort of confinement + and unable to write to Miss Dobney or her other friends. It is always + possible that she never reached London, or that she has passed + through it, but the former is improbable, as, with their system of + registration, it is not easy for foreigners to play tricks with the + Continental police; and the latter is also unlikely, as these rouges + could not hope to find any other place where it would be as easy to + keep a person under restraint. All my instincts tell me that she is + in London, but as we have at present no possible means of telling + where, we can only take the obvious steps, eat our dinner, and + possess our souls in patience. Later in the evening I will stroll + down and have a word with friend Lestrade at Scotland Yard." + + But neither the official police nor Holmes's own small but very + efficient organization sufficed to clear away the mystery. Amid the + crowded millions of London the three persons we sought were as + completely obliterated as if they had never lived. Advertisements + were tried, and failed. Clues were followed, and led to nothing. + Every criminal resort which Shlessinger might frequent was drawn in + vain. His old associates were watched, but they kept clear of him. + And then suddenly, after a week of helpless suspense there came a + flash of light. A silver-and-brilliant pendant of old Spanish design + had been pawned at Bovington's, in Westminster Road. The pawner was a + large, clean-shaven man of clerical appearance. His name and address + were demonstrably false. The ear had escaped notice, but the + description was surely that of Shlessinger. + + Three times had our bearded friend from the Langham called for + news--the third time within an hour of this fresh development. His + clothes were getting looser on his great body. He seemed to be + wilting away in his anxiety. "If you will only give me something to + do!" was his constant wail. At last Holmes could oblige him. + + "He has begun to pawn the jewels. We should get him now." + + "But does this mean that any harm has befallen the Lady Frances?" + + Holmes shook his head very gravely. + + "Supposing that they have held her prisoner up to now, it is clear + that they cannot let her loose without their own destruction. We must + prepare for the worst." + + "What can I do?" + + "These people do not know you by sight?" + + "No." + + "It is possible that he will go to some other pawnbroker in the + future. in that case, we must begin again. On the other hand, he has + had a fair price and no questions asked, so if he is in need of + ready-money he will probably come back to Bovington's. I will give + you a note to them, and they will let you wait in the shop. If the + fellow comes you will follow him home. But no indiscretion, and, + above all, no violence. I put you on your honour that you will take + no step without my knowledge and consent." + + For two days the Hon. Philip Green (he was, I may mention, the son of + the famous admiral of that name who commanded the Sea of Azof fleet + in the Crimean War) brought us no news. On the evening of the third + he rushed into our sitting-room, pale, trembling, with every muscle + of his powerful frame quivering with excitement. + + "We have him! We have him!" he cried. + + He was incoherent in his agitation. Holmes soothed him with a few + words and thrust him into an armchair. + + "Come, now, give us the order of events," said he. + + "She came only an hour ago. It was the wife, this time, but the + pendant she brought was the fellow of the other. She is a tall, pale + woman, with ferret eyes." + + "That is the lady," said Holmes. + + "She left the office and I followed her. She walked up the Kennington + Road, and I kept behind her. Presently she went into a shop. Mr. + Holmes, it was an undertaker's." + + My companion started. "Well?" he asked in that vibrant voice which + told of the fiery soul behind the cold gray face. + + "She was talking to the woman behind the counter. I entered as well. + 'It is late,' I heard her say, or words to that effect. The woman was + excusing herself. 'It should be there before now,' she answered. 'It + took longer, being out of the ordinary.' They both stopped and looked + at me, so I asked some questions and then left the shop." + + "You did excellently well. What happened next?" + + "The woman came out, but I had hid myself in a doorway. Her + suspicions had been aroused, I think, for she looked round her. Then + she called a cab and got in. I was lucky enough to get another and so + to follow her. She got down at last at No. 36, Poultney Square, + Brixton. I drove past, left my cab at the corner of the square, and + watched the house." + + "Did you see anyone?" + + "The windows were all in darkness save one on the lower floor. The + blind was down, and I could not see in. I was standing there, + wondering what I should do next, when a covered van drove up with two + men in it. They descended, took something out of the van, and carried + it up the steps to the hall door. Mr. Holmes, it was a coffin." + + "Ah!" + + "For an instant I was on the point of rushing in. The door had been + opened to admit the men and their burden. It was the woman who had + opened it. But as I stood there she caught a glimpse of me, and I + think that she recognized me. I saw her start, and she hastily closed + the door. I remembered my promise to you, and here I am." + + "You have done excellent work," said Holmes, scribbling a few words + upon a half-sheet of paper. "We can do nothing legal without a + warrant, and you can serve the cause best by taking this note down to + the authorities and getting one. There may be some difficulty, but I + should think that the sale of the jewellery should be sufficient. + Lestrade will see to all details." + + "But they may murder her in the meanwhile. What could the coffin + mean, and for whom could it be but for her?" + + "We will do all that can be done, Mr. Green. Not a moment will be + lost. Leave it in our hands. Now Watson," he added as our client + hurried away, "he will set the regular forces on the move. We are, as + usual, the irregulars, and we must take our own line of action. The + situation strikes me as so desperate that the most extreme measures + are justified. Not a moment is to be lost in getting to Poultney + Square. + + "Let us try to reconstruct the situation," said he as we drove + swiftly past the Houses of Parliament and over Westminster Bridge. + "These villains have coaxed this unhappy lady to London, after first + alienating her from her faithful maid. If she has written any letters + they have been intercepted. Through some confederate they have + engaged a furnished house. Once inside it, they have made her a + prisoner, and they have become possessed of the valuable jewellery + which has been their object from the first. Already they have begun + to sell part of it, which seems safe enough to them, since they have + no reason to think that anyone is interested in the lady's fate. When + she is released she will, of course, denounce them. Therefore, she + must not be released. But they cannot keep her under lock and key + forever. So murder is their only solution." + + "That seems very clear." + + "Now we will take another line of reasoning. When you follow two + separate chains of thought, Watson, you will find some point of + intersection which should approximate to the truth. We will start + now, not from the lady but from the coffin and argue backward. That + incident proves, I fear, beyond all doubt that the lady is dead. It + points also to an orthodox burial with proper accompaniment of + medical certificate and official sanction. Had the lady been + obviously murdered, they would have buried her in a hole in the back + garden. But here all is open and regular. What does this mean? Surely + that they have done her to death in some way which has deceived the + doctor and simulated a natural end--poisoning, perhaps. And yet how + strange that they should ever let a doctor approach her unless he + were a confederate, which is hardly a credible proposition." + + "Could they have forged a medical certificate?" + + "Dangerous, Watson, very dangerous. No, I hardly see them doing that. + Pull up, cabby! This is evidently the undertaker's, for we have just + passed the pawnbroker's. Would go in, Watson? Your appearance + inspires confidence. Ask what hour the Poultney Square funeral takes + place to-morrow." + + The woman in the shop answered me without hesitation that it was to + be at eight o'clock in the morning. "You see, Watson, no mystery; + everything above-board! In some way the legal forms have undoubtedly + been complied with, and they think that they have little to fear. + Well, there's nothing for it now but a direct frontal attack. Are you + armed?" + + "My stick!" + + "Well, well, we shall be strong enough. 'Thrice is he armed who hath + his quarrel just.' We simply can't afford to wait for the police or + to keep within the four corners of the law. You can drive off, cabby. + Now, Watson, we'll just take our luck together, as we have + occasionally in the past." + + He had rung loudly at the door of a great dark house in the centre of + Poultney Square. It was opened immediately, and the figure of a tall + woman was outlined against the dim-lit hall. + + "Well, what do you want?" she asked sharply, peering at us through + the darkness. + + "I want to speak to Dr. Shlessinger," said Holmes. + + "There is no such person here," she answered, and tried to close the + door, but Holmes had jammed it with his foot. + + "Well, I want to see the man who lives here, whatever he may call + himself," said Holmes firmly. + + She hesitated. Then she threw open the door. "Well, come in!" said + she. "My husband is not afraid to face any man in the world." She + closed the door behind us and showed us into a sitting-room on the + right side of the hall, turning up the gas as she left us. "Mr. + Peters will be with you in an instant," she said. + + Her words were literally true, for we had hardly time to look around + the dusty and moth-eaten apartment in which we found ourselves before + the door opened and a big, clean-shaven bald-headed man stepped + lightly into the room. He had a large red face, with pendulous + cheeks, and a general air of superficial benevolence which was marred + by a cruel, vicious mouth. + + "There is surely some mistake here, gentlemen," he said in an + unctuous, make-everything-easy voice. "I fancy that you have been + misdirected. Possibly if you tried farther down the street--" + + "That will do; we have no time to waste," said my companion firmly. + "You are Henry Peters, of Adelaide, late the Rev. Dr. Shlessinger, of + Baden and South America. I am as sure of that as that my own name is + Sherlock Holmes." + + Peters, as I will now call him, started and stared hard at his + formidable pursuer. "I guess your name does not frighten me, Mr. + Holmes," said he coolly. "When a man's conscience is easy you can't + rattle him. What is your business in my house?" + + "I want to know what you have done with the Lady Frances Carfax, whom + you brought away with you from Baden." + + "I'd be very glad if you could tell me where that lady may be," + Peters answered coolly. "I've a bill against her for a nearly a + hundred pounds, and nothing to show for it but a couple of trumpery + pendants that the dealer would hardly look at. She attached herself + to Mrs. Peters and me at Baden--it is a fact that I was using another + name at the time--and she stuck on to us until we came to London. I + paid her bill and her ticket. Once in London, she gave us the slip, + and, as I say, left these out-of-date jewels to pay her bills. You + find her, Mr. Holmes, and I'm your debtor." + + In mean to find her," said Sherlock Holmes. "I'm going through this + house till I do find her." + + "Where is your warrant?" + + Holmes half drew a revolver from his pocket. "This will have to serve + till a better one comes." + + "Why, you're a common burglar." + + "So you might describe me," said Holmes cheerfully. "My companion is + also a dangerous ruffian. And together we are going through your + house." + + Our opponent opened the door. + + "Fetch a policeman, Annie!" said he. There was a whisk of feminine + skirts down the passage, and the hall door was opened and shut. + + "Our time is limited, Watson," said Holmes. "If you try to stop us, + Peters, you will most certainly get hurt. Where is that coffin which + was brought into your house?" + + "What do you want with the coffin? It is in use. There is a body in + it." + + "I must see the body." + + "Never with my consent." + + "Then without it." With a quick movement Holmes pushed the fellow to + one side and passed into the hall. A door half opened stood + immediately before us. We entered. It was the dining-room. On the + table, under a half-lit chandelier, the coffin was lying. Holmes + turned up the gas and raised the lid. Deep down in the recesses of + the coffin lay an emaciated figure. The glare from the lights above + beat down upon an aged and withered face. By no possible process of + cruelty, starvation, or disease could this wornout wreck be the still + beautiful Lady Frances. Holmes's face showed his amazement, and also + his relief. + + "Thank God!" he muttered. "It's someone else." + + "Ah, you've blundered badly for once, Mr. Sherlock Holmes," said + Peters, who had followed us into the room. + + "Who is the dead woman?" + + "Well, if you really must know, she is an old nurse of my wife's, + Rose Spender by name, whom we found in the Brixton Workhouse + Infirmary. We brought her round here, called in Dr. Horsom, of 13 + Firbank Villas--mind you take the address, Mr. Holmes--and had her + carefully tended, as Christian folk should. On the third day she + died--certificate says senile decay--but that's only the doctor's + opinion, and of course you know better. We ordered her funeral to be + carried out by Stimson and Co., of the Kennington Road, who will bury + her at eight o'clock to-morrow morning. Can you pick any hole in + that, Mr. Holmes? You've made a silly blunder, and you may as well + own up to it. I'd give something for a photograph of your gaping, + staring face when you pulled aside that lid expecting to see the Lady + Frances Carfax and only found a poor old woman of ninety." + + Holmes's expression was as impassive as ever under the jeers of his + antagonist, but his clenched hands betrayed his acute annoyance. + + "I am going through your house," said he. + + "Are you, though!" cried Peters as a woman's voice and heavy steps + sounded in the passage. "We'll soon see about that. This way, + officers, if you please. These men have forced their way into my + house, and I cannot get rid of them. Help me to put them out." + + A sergeant and a constable stood in the doorway. Holmes drew his card + from his case. + + "This is my name and address. This is my friend, Dr. Watson." + + "Bless you, sir, we know you very well," said the sergeant, "but you + can't stay here without a warrant." + + "Of course not. I quite understand that." + + "Arrest him!" cried Peters. + + "We know where to lay our hands on this gentleman if he is wanted," + said the sergeant majestically, "but you'll have to go, Mr. Holmes." + + "Yes, Watson, we shall have to go." + + A minute later we were in the street once more. Holmes was as cool as + ever, but I was hot with anger and humiliation. The sergeant had + followed us. + + "Sorry, Mr. Holmes, but that's the law." + + "Exactly, Sergeant, you could not do otherwise." + + "I expect there was good reason for your presence there. If there is + anything I can do--" + + "It's a missing lady, Sergeant, and we think she is in that house. I + expect a warrant presently." + + "Then I'll keep my eye on the parties, Mr. Holmes. If anything comes + along, I will surely let you know." + + It was only nine o'clock, and we were off full cry upon the trail at + once. First we drove to Brixton Workhoused Infirmary, where we found + that it was indeed the truth that a charitable couple had called some + days before, that they had claimed an imbecile old woman as a former + servant, and that they had obtained permission to take her away with + them. No surprise was expressed at the news that she had since died. + + The doctor was our next goal. He had been called in, had found the + woman dying of pure senility, had actually seen her pass away, and + had signed the certificate in due form. "I assure you that everything + was perfectly normal and there was no room for foul play in the + matter," said he. Nothing in the house had struck him as suspicious + save that for people of their class it was remarkable that they + should have no servant. So far and no further went the doctor. + + Finally we found our way to Scotland Yard. There had been + difficulties of procedure in regard to the warrant. Some delay was + inevitable. The magistrate's signature might not be obtained until + next morning. If Holmes would call about nine he could go down with + Lestrade and see it acted upon. So ended the day, save that near + midnight our friend, the sergeant, called to say that he had seen + flickering lights here and there in the windows of the great dark + house, but that no one had left it and none had entered. We could but + pray for patience and wait for the morrow. + + Sherlock Holmes was too irritable for conversation and too restless + for sleep. I left him smoking hard, with his heavy, dark brows + knotted together, and his long, nervous fingers tapping upon the arms + of his chair, as he turned over in his mind every possible solution + of the mystery. Several times in the course of the night I heard him + prowling about the house. Finally, just after I had been called in + the morning, he rushed into my room. He was in his dressing-gown, but + his pale, hollow-eyed face told me that his night had been a + sleepless one. + + "What time was the funeral? Eight, was it not?" he asked eagerly. + "Well, it is 7.20 now. Good heavens, Watson, what has become of any + brains that God has given me? Quick, man, quick! It's life or + death--a hundred chances on death to one on life. I'll never forgive + myself, never, if we are too late!" + + Five minutes had not passed before we were flying in a hansom down + Baker Street. But even so it was twenty-five to eight as we passed + Big Ben, and eight struck as we tore down the Brixton Road. But + others were late as well as we. Ten minutes after the hour the hearse + was still standing at the door of the house, and even as our foaming + horse came to a halt the coffin, supported by three men, appeared on + the threshold. Holmes darted forward and barred their way. + + "Take it back!" he cried, laying his hand on the breast of the + foremost. "Take it back this instant!" + + "What the devil do you mean? Once again I ask you, where is your + warrant?" shouted the furious Peters, his big red face glaring over + the farther end of the coffin. + + "The warrant is on its way. The coffin shall remain in the house + until it comes." + + The authority in Holmes's voice had its effect upon the bearers. + Peters had suddenly vanished into the house, and they obeyed these + new orders. "Quick, Watson, quick! Here is a screw-driver!" he + shouted as the coffin was replaced upon the table. "Here's one for + you, my man! A sovreign if the lid comes off in a minute! Ask no + questions--work away! That's good! Another! And another! Now pull all + together! It's giving! It's giving! Ah, that does it at last." + + With a united effort we tore off the coffin-lid. As we did so there + came from the inside a stupefying and overpowering smell of + chloroform. A body lay within, its head all wreathed in cotton-wool, + which had been soaked in the narcotic. Holmes plucked it off and + disclosed the statuesque face of a handsome and spiritual woman of + middle age. In an instant he had passed his arm round the figure and + raised her to a sitting position. + + "Is she gone, Watson? Is there a spark left? Surely we are not too + late!" + + For half an hour it seemed that we were. What with actual + suffocation, and what with the poisonous fumes of the chloroform, the + Lady Frances seemed to have passed the last point of recall. And + then, at last, with artificial respiration, with injected ether, and + with every device that science could suggest, some flutter of life, + some quiver of the eyelids, some dimming of a mirror, spoke of the + slowly returning life. A cab had driven up, and Holmes, parting the + blind, looked out at it. "Here is Lestrade with his warrant," said + he. "He will find that his birds have flown. And here," he added as a + heavy step hurried along the passage, "is someone who has a better + right to nurse this lady than we have. Good morning, Mr. Green; I + think that the sooner we can move the Lady Frances the better. + Meanwhile, the funeral may proceed, and the poor old woman who still + lies in that coffin may go to her last resting-place alone." + + "Should you care to add the case to your annals, my dear Watson," + said Holmes that evening, "it can only be as an example of that + temporary eclipse to which even the best-balanced mind may be + exposed. Such slips are common to all mortals, and the greatest is he + who can recognize and repair them. To this modified credit I may, + perhaps, make some claim. My night was haunted by the thought that + somewhere a clue, a strange sentence, a curious observation, had come + under my notice and had been too easily dismissed. Then, suddenly, in + the gray of the morning, the words came back to me. It was the remark + of the undertaker's wife, as reported by Philip Green. She had said, + 'It should be there before now. It took longer, being out of the + ordinary.' It was the coffin of which she spoke. It had been out of + the ordinary. That could only mean that it had been made to some + special measurement. But why? Why? Then in an instant I remembered + the deep sides, and the little wasted figure at the bottom. Why so + large a coffin for so small a body? To leave room for another body. + Both would be buried under the one certificate. It had all been so + clear, if only my own sight had not been dimmed. At eight the Lady + Frances would be buried. Our one chance was to stop the coffin before + it left the house. + + "It was a desperate chance that we might find her alive, but it was a + chance, as the result showed. These people had never, to my + knowledge, done a murder. They might shrink from actual violence at + the last. The could bury her with no sign of how she met her end, and + even if she were exhumed there was a chance for them. I hoped that + such considerations might prevail with them. You can reconstruct the + scene well enough. You saw the horrible den upstairs, where the poor + lady had been kept so long. They rushed in and overpowered her with + their chloroform, carried her down, poured more into the coffin to + insure against her waking, and then screwed down the lid. A clever + device, Watson. It is new to me in the annals of crime. If our + ex-missionary friends escape the clutches of Lestrade, I shall expect + to hear of some brilliant incidents in their future career." + + + + + + + THE ADVENTURE OF THE DEVIL'S FOOT + + In recording from time to time some of the curious experiences and + interesting recollections which I associate with my long and intimate + friendship with Mr. Sherlock Holmes, I have continually been faced by + difficulties caused by his own aversion to publicity. To his sombre + and cynical spirit all popular applause was always abhorrent, and + nothing amused him more at the end of a successful case than to hand + over the actual exposure to some orthodox official, and to listen + with a mocking smile to the general chorus of misplaced + congratulation. It was indeed this attitude upon the part of my + friend and certainly not any lack of interesting material which has + caused me of late years to lay very few of my records before the + public. My participation in some if his adventures was always a + privilege which entailed discretion and reticence upon me. + + It was, then, with considerable surprise that I received a telegram + from Homes last Tuesday--he has never been known to write where a + telegram would serve--in the following terms: + + Why not tell them of the Cornish horror--strangest case I have + handled. + I have no idea what backward sweep of memory had brought the matter + fresh to his mind, or what freak had caused him to desire that I + should recount it; but I hasten, before another cancelling telegram + may arrive, to hunt out the notes which give me the exact details of + the case and to lay the narrative before my readers. + + It was, then, in the spring of the year 1897 that Holmes's iron + constitution showed some symptoms of giving way in the face of + constant hard work of a most exacting kind, aggravated, perhaps, by + occasional indiscretions of his own. In March of that year Dr. Moore + Agar, of Harley Street, whose dramatic introduction to Holmes I may + some day recount, gave positive injunctions that the famous private + agent lay aside all his cases and surrender himself to complete rest + if he wished to avert an absolute breakdown. The state of his health + was not a matter in which he himself took the faintest interest, for + his mental detachment was absolute, but he was induced at last, on + the threat of being permanently disqualified from work, to give + himself a complete change of scene and air. Thus it was that in the + early spring of that year we found ourselves together in a small + cottage near Poldhu Bay, at the further extremity of the Cornish + peninsula. + + It was a singular spot, and one peculiarly well suited to the grim + humour of my patient. From the windows of our little whitewashed + house, which stood high upon a grassy headland, we looked down upon + the whole sinister semicircle of Mounts Bay, that old death trap of + sailing vessels, with its fringe of black cliffs and surge-swept + reefs on which innumerable seamen have met their end. With a + northerly breeze it lies placid and sheltered, inviting the + storm-tossed craft to tack into it for rest and protection. + + Then come the sudden swirl round of the wind, the blistering gale + from the south-west, the dragging anchor, the lee shore, and the last + battle in the creaming breakers. The wise mariner stands far out from + that evil place. + + On the land side our surroundings were as sombre as on the sea. It + was a country of rolling moors, lonely and dun-colored, with an + occasional church tower to mark the site of some old-world village. + In every direction upon these moors there were traces of some + vanished race which had passed utterly away, and left as it sole + record strange monuments of stone, irregular mounds which contained + the burned ashes of the dead, and curious earthworks which hinted at + prehistoric strife. The glamour and mystery of the place, with its + sinister atmosphere of forgotten nations, appealed to the imagination + of my friend, and he spent much of his time in long walks and + solitary meditations upon the moor. The ancient Cornish language had + also arrested his attention, and he had, I remember, conceived the + idea that it was akin to the Chaldean, and had been largely derived + from the Phoenician traders in tin. He had received a consignment of + books upon philology and was settling down to develop this thesis + when suddenly, to my sorrow and to his unfeigned delight, we found + ourselves, even in that land of dreams, plunged into a problem at our + very doors which was more intense, more engrossing, and infinitely + more mysterious than any of those which had driven us from London. + Our simple life and peaceful, healthy routine were violently + interrupted, and we were precipitated into the midst of a series of + events which caused the utmost excitement not only in Cornwall but + throughout the whole west of England. Many of my readers may retain + some recollection of what was called at the time "The Cornish + Horror," though a most imperfect account of the matter reached the + London press. Now, after thirteen years, I will give the true details + of this inconceivable affair to the public. + + I have said that scattered towers marked the villages which dotted + this part of Cornwall. The nearest of these was the hamlet of + Tredannick Wollas, where the cottages of a couple of hundred + inhabitants clustered round an ancient, moss-grown church. The vicar + of the parish, Mr. Roundhay, was something of an archaeologist, and + as such Holmes had made his acquaintance. He was a middle-aged man, + portly and affable, with a considerable fund of local lore. At his + invitation we had taken tea at the vicarage and had come to know, + also, Mr. Mortimer Tregennis, an independent gentleman, who increased + the clergyman's scanty resources by taking rooms in his large, + straggling house. The vicar, being a bachelor, was glad to come to + such an arrangement, though he had little in common with his lodger, + who was a thin, dark, spectacled man, with a stoop which gave the + impression of actual, physical deformity. I remember that during our + short visit we found the vicar garrulous, but his lodger strangely + reticent, a sad-faced, introspective man, sitting with averted eyes, + brooding apparently upon his own affairs. + + These were the two men who entered abruptly into our little + sitting-room on Tuesday, March the 16th, shortly after our breakfast + hour, as we were smoking together, preparatory to our daily excursion + upon the moors. + + "Mr. Holmes," said the vicar in an agitated voice, "the most + extraordinary and tragic affair has occurred during the night. It is + the most unheard-of business. We can only regard it as a special + Providence that you should chance to be here at the time, for in all + England you are the one man we need." + + I glared at the intrusive vicar with no very friendly eyes; but + Holmes took his pipe from his lips and sat up in his chair like an + old hound who hears the view-halloa. He waved his hand to the sofa, + and our palpitating visitor with his agitated companion sat side by + side upon it. Mr. Mortimer Tregennis was more self-contained than the + clergyman, but the twitching of his thin hands and the brightness of + his dark eyes showed that they shared a common emotion. + + "Shall I speak or you?" he asked of the vicar. + + "Well, as you seem to have made the discovery, whatever it may be, + and the vicar to have had it second-hand, perhaps you had better do + the speaking," said Holmes. + + I glanced at the hastily clad clergyman, with the formally dressed + lodger seated beside him, and was amused at the surprise which + Holmes's simple deduction had brought to their faces. + + "Perhaps I had best say a few words first," said the vicar, "and then + you can judge if you will listen to the details from Mr. Tregennis, + or whether we should not hasten at once to the scene of this + mysterious affair. I may explain, then, that our friend here spent + last evening in the company of his two brothers, Owen and George, and + of his sister Brenda, at their house of Tredannick Wartha, which is + near the old stone cross upon the moor. He left them shortly after + ten o'clock, playing cards round the dining-room table, in excellent + health and spirits. This morning, being an early riser, he walked in + that direction before breakfast and was overtaken by the carriage of + Dr. Richards, who explained that he had just been sent for on a most + urgent call to Tredannick Wartha. Mr. Mortimer Tregennis naturally + went with him. When he arrived at Tredannick Wartha he found an + extraordinary state of things. His two brothers and his sister were + seated round the table exactly as he had left them, the cards still + spread in front of them and the candles burned down to their sockets. + The sister lay back stone-dead in her chair, while the two brothers + sat on each side of her laughing, shouting, and singing, the senses + stricken clean out of them. All three of them, the dead woman and the + two demented men, retained upon their faces an expression of the + utmost horror--a convulsion of terror which was dreadful to look + upon. There was no sign of the presence of anyone in the house, + except Mrs. Porter, the old cook and housekeeper, who declared that + she had slept deeply and heard no sound during the night. Nothing had + been stolen or disarranged, and there is absolutely no explanation of + what the horror can be which has frightened a woman to death and two + strong men out of their senses. There is the situation, Mr. Holmes, + in a nutshell, and if you can help us to clear it up you will have + done a great work." + + I had hoped that in some way I could coax my companion back into the + quiet which had been the object of our journey; but one glance at his + intense face and contracted eyebrows told me how vain was now the + expectation. He sat for some little time in silence, absorbed in the + strange drama which had broken in upon our peace. + + "I will look into this matter," he said at last. "On the face of it, + it would appear to be a case of a very exceptional nature. Have you + been there yourself, Mr. Roundhay?" + + "No, Mr. Holmes. Mr. Tregennis brought back the account to the + vicarage, and I at once hurried over with him to consult you." + + "How far is it to the house where this singular tragedy occurred?" + + "About a mile inland." + + "Then we shall walk over together. But before we start I must ask you + a few questions, Mr. Mortimer Tregennis." + + The other had been silent all this time, but I had observed that his + more controlled excitement was even greater than the obtrusive + emotion of the clergyman. He sat with a pale, drawn face, his anxious + gaze fixed upon Holmes, and his thin hands clasped convulsively + together. His pale lips quivered as he listened to the dreadful + experience which had befallen his family, and his dark eyes seemed to + reflect something of the horror of the scene. + + "Ask what you like, Mr. Holmes," said he eagerly. "It is a bad thing + to speak of, but I will answer you the truth." + + "Tell me about last night." + + "Well, Mr. Holmes, I supped there, as the vicar has said, and my + elder brother George proposed a game of whist afterwards. We sat down + about nine o'clock. It was a quarter-past ten when I moved to go. I + left them all round the table, as merry as could be." + + "Who let you out?" + + "Mrs. Porter had gone to bed, so I let myself out. I shut the hall + door behind me. The window of the room in which they sat was closed, + but the blind was not drawn down. There was no change in door or + window this morning, or any reason to think that any stranger had + been to the house. Yet there they sat, driven clean mad with terror, + and Brenda lying dead of fright, with her head hanging over the arm + of the chair. I'll never get the sight of that room out of my mind so + long as I live." + + "The facts, as you state them, are certainly most remarkable," said + Holmes. "I take it that you have no theory yourself which can in any + way account for them?" + + "It's devilish, Mr. Holmes, devilish!" cried Mortimer Tregennis. "It + is not of this world. Something has come into that room which has + dashed the light of reason from their minds. What human contrivance + could do that?" + + "I fear," said Holmes, "that if the matter is beyond humanity it is + certainly beyond me. Yet we must exhaust all natural explanations + before we fall back upon such a theory as this. As to yourself, Mr. + Tregennis, I take it you were divided in some way from your family, + since they lived together and you had rooms apart?" + + "That is so, Mr. Holmes, though the matter is past and done with. We + were a family of tin-miners at Redruth, but we sold our venture to a + company, and so retired with enough to keep us. I won't deny that + there was some feeling about the division of the money and it stood + between us for a time, but it was all forgiven and forgotten, and we + were the best of friends together." + + "Looking back at the evening which you spent together, does anything + stand out in your memory as throwing any possible light upon the + tragedy? Think carefully, Mr. Tregennis, for any clue which can help + me." + + "There is nothing at all, sir." + + "Your people were in their usual spirits?" + + "Never better." + + "Were they nervous people? Did they ever show any apprehension of + coming danger?" + + "Nothing of the kind." + + "You have nothing to add then, which could assist me?" + + Mortimer Tregennis considered earnestly for a moment. + + "There is one thing occurs to me," said he at last. "As we sat at the + table my back was to the window, and my brother George, he being my + partner at cards, was facing it. I saw him once look hard over my + shoulder, so I turned round and looked also. The blind was up and the + window shut, but I could just make out the bushes on the lawn, and it + seemed to me for a moment that I saw something moving among them. I + couldn't even say if it was man or animal, but I just thought there + was something there. When I asked him what he was looking at, he told + me that he had the same feeling. That is all that I can say." + + "Did you not investigate?" + + "No; the matter passed as unimportant." + + "You left them, then, without any premonition of evil?" + + "None at all." + + "I am not clear how you came to hear the news so early this morning." + + "I am an early riser and generally take a walk before breakfast. This + morning I had hardly started when the doctor in his carriage overtook + me. He told me that old Mrs. Porter had sent a boy down with an + urgent message. I sprang in beside him and we drove on. When we got + there we looked into that dreadful room. The candles and the fire + must have burned out hours before, and they had been sitting there in + the dark until dawn had broken. The doctor said Brenda must have been + dead at least six hours. There were no signs of violence. She just + lay across the arm of the chair with that look on her face. George + and Owen were singing snatches of songs and gibbering like two great + apes. Oh, it was awful to see! I couldn't stand it, and the doctor + was as white as a sheet. Indeed, he fell into a chair in a sort of + faint, and we nearly had him on our hands as well." + + "Remarkable--most remarkable!" said Holmes, rising and taking his + hat. "I think, perhaps, we had better go down to Tredannick Wartha + without further delay. I confess that I have seldom known a case + which at first sight presented a more singular problem." + + Our proceedings of that first morning did little to advance the + investigation. It was marked, however, at the outset by an incident + which left the most sinister impression upon my mind. The approach to + the spot at which the tragedy occurred is down a narrow, winding, + country lane. While we made our way along it we heard the rattle of a + carriage coming towards us and stood aside to let it pass. As it + drove by us I caught a glimpse through the closed window of a + horribly contorted, grinning face glaring out at us. Those staring + eyes and gnashing teeth flashed past us like a dreadful vision. + + "My brothers!" cried Mortimer Tregennis, white to his lips. "They are + taking them to Helston." + + We looked with horror after the black carriage, lumbering upon its + way. Then we turned our steps towards this ill-omened house in which + they had met their strange fate. + + It was a large and bright dwelling, rather a villa than a cottage, + with a considerable garden which was already, in that Cornish air, + well filled with spring flowers. Towards this garden the window of + the sitting-room fronted, and from it, according to Mortimer + Tregennis, must have come that thing of evil which had by sheer + horror in a single instant blasted their minds. Holmes walked slowly + and thoughtfully among the flower-plots and along the path before we + entered the porch. So absorbed was he in his thoughts, I remember, + that he stumbled over the watering-pot, upset its contents, and + deluged both our feet and the garden path. Inside the house we were + met by the elderly Cornish housekeeper, Mrs. Porter, who, with the + aid of a young girl, looked after the wants of the family. She + readily answered all Holmes's questions. She had heard nothing in the + night. Her employers had all been in excellent spirits lately, and + she had never known them more cheerful and prosperous. She had + fainted with horror upon entering the room in the morning and seeing + that dreadful company round the table. She had, when she recovered, + thrown open the window to let the morning air in, and had run down to + the lane, whence she sent a farm-lad for the doctor. The lady was on + her bed upstairs if we cared to see her. It took four strong men to + get the brothers into the asylum carriage. She would not herself stay + in the house another day and was starting that very afternoon to + rejoin her family at St. Ives. + + We ascended the stairs and viewed the body. Miss Brenda Tregennis had + been a very beautiful girl, though now verging upon middle age. Her + dark, clear-cut face was handsome, even in death, but there still + lingered upon it something of that convulsion of horror which had + been her last human emotion. From her bedroom we descended to the + sitting-room, where this strange tragedy had actually occurred. The + charred ashes of the overnight fire lay in the grate. On the table + were the four guttered and burned-out candles, with the cards + scattered over its surface. The chairs had been moved back against + the walls, but all else was as it had been the night before. Holmes + paced with light, swift steps about the room; he sat in the various + chairs, drawing them up and reconstructing their positions. He tested + how much of the garden was visible; he examined the floor, the + ceiling, and the fireplace; but never once did I see that sudden + brightening of his eyes and tightening of his lips which would have + told me that he saw some gleam of light in this utter darkness. + + "Why a fire?" he asked once. "Had they always a fire in this small + room on a spring evening?" + + Mortimer Tregennis explained that the night was cold and damp. For + that reason, after his arrival, the fire was lit. "What are you going + to do now, Mr. Holmes?" he asked. + + My friend smiled and laid his hand upon my arm. "I think, Watson, + that I shall resume that course of tobacco-poisoning which you have + so often and so justly condemned," said he. "With your permission, + gentlemen, we will now return to our cottage, for I am not aware that + any new factor is likely to come to our notice here. I will turn the + facts over in my mid, Mr, Tregennis, and should anything occur to me + I will certainly ommunicate with you and the vicar. In the meantime I + wish you both good-morning." + + It was not until long after we were back in Poldhu Cottage that + Holmes broke his complete and absorbed silence. He sat coiled in his + armchair, his haggard and ascetic face hardly visible amid the blue + swirl of his tobacco smoke, his black brows drawn down, his forehead + contracted, his eyes vacant and far away. Finally he laid down his + pipe and sprang to his feet. + + "It won't do, Watson!" said he with a laugh. "Let us walk along the + cliffs together and search for flint arrows. We are more likely to + find them than clues to this problem. To let the brain work without + sufficient material is like racing an engine. It racks itself to + pieces. The sea air, sunshine, and patience, Watson--all else will + come. + + "Now, let us calmly define our position, Watson," he continued as we + skirted the cliffs together. "Let us get a firm grip of the very + little which we do know, so that when fresh facts arise we may be + ready to fit them into their places. I take it, in the first place, + that neither of us is prepared to admit diabolical intrusions into + the affairs of men. Let us begin by ruling that entirely out of our + minds. Very good. There remain three persons who have been grievously + stricken by some conscious or unconscious human agency. That is firm + ground. Now, when did this occur? Evidently, assuming his narrative + to be true, it was immediately after Mr. Mortimer Tregennis had left + the room. That is a very important point. The presumption is that it + was within a few minutes afterwards. The cards still lay upon the + table. It was already past their usual hour for bed. Yet they had not + changed their position or pushed back their chairs. I repeat, then, + that the occurrence was immediately after his departure, and not + later than eleven o'clock last night. + + "Our next obvious step is to check, so far as we can, the movements + of Mortimer Tregennis after he left the room. In this there is no + difficulty, and they seem to be above suspicion. Knowing my methods + as you do, you were, of course, conscious of the somewhat clumsy + water-pot expedient by which I obtained a clearer impress of his foot + than might otherwise have been possible. The wet, sandy path took it + admirably. Last night was also wet, you will remember, and it was not + difficult--having obtained a sample print--to pick out his track + among others and to follow his movements. He appears to have walked + away swiftly in the direction of the vicarage. + + "If, then, Mortimer Tregennis disappeared from the scene, and yet + some outside person affected the card-players, how can we reconstruct + that person, and how was such an impression of horror conveyed? Mrs. + Porter may be eliminated. She is evidently harmless. Is there any + evidence that someone crept up to the garden window and in some + manner produced so terrific an effect that he drove those who saw it + out of their senses? The only suggestion in this direction comes from + Mortimer Tregennis himself, who says that his brother spoke about + some movement in the garden. That is certainly remarkable, as the + night was rainy, cloudy, and dark. Anyone who had the design to alarm + these people would be compelled to place his very face against the + glass before he could be seen. There is a three-foot flower-border + outside this window, but no indication of a footmark. It is difficult + to imagine, then, how an outsider could have made so terrible an + impression upon the company, nor have we found any possible motive + for so strange and elaborate an attempt. You perceive our + difficulties, Watson?" + + "They are only too clear," I answered with conviction. + + "And yet, with a little more material, we may prove that they are not + insurmountable," said Holmes. "I fancy that among your extensive + archives, Watson, you may find some which were nearly as obscure. + Meanwhile, we shall put the case aside until more accurate data are + available, and devote the rest of our morning to the pursuit of + neolithic man." + + I may have commented upon my friend's power of mental detachment, but + never have I wondered at it more than upon that spring morning in + Cornwall when for two hours he discoursed upon celts, arrowheads, and + shards, as lightly as if no sinister mystery were waiting for his + solution. It was not until we had returned in the afternoon to our + cottage that we found a visitor awaiting us, who soon brought our + minds back to the matter in hand. Neither of us needed to be told who + that visitor was. The huge body, the craggy and deeply seamed face + with the fierce eyes and hawk-like nose, the grizzled hair which + nearly brushed our cottage ceiling, the beard--golden at the fringes + and white near the lips, save for the nicotine stain from his + perpetual cigar--all these were as well known in London as in Africa, + and could only be associated with the tremendous personality of Dr. + Leon Sterndale, the great lion-hunter and explorer. + + We had heard of his presence in the district and had once or twice + caught sight of his tall figure upon the moorland paths. He made no + advances to us, however, nor would we have dreamed of doing so to + him, as it was well known that it was his love of seclusion which + caused him to spend the greater part of the intervals between his + journeys in a small bungalow buried in the lonely wood of Beauchamp + Arriance. Here, amid his books and his maps, he lived an absolutely + lonely life, attending to his own simple wants and paying little + apparent heed to the affairs of his neighbours. It was a surprise to + me, therefore, to hear him asking Holmes in an eager voice whether he + had made any advance in his reconstruction of this mysterious + episode. "The county police are utterly at fault," said he, "but + perhaps your wider experience has suggested some conceivable + explanation. My only claim to being taken into your confidence is + that during my many residences here I have come to know this family + of Tregennis very well--indeed, upon my Cornish mother's side I could + call them cousins--and their strange fate has naturally been a great + shock to me. I may tell you that I had got as far as Plymouth upon my + way to Africa, but the news reached me this morning, and I came + straight back again to help in the inquiry." + + Holmes raised his eyebrows. + + "Did you lose your boat through it?" + + "I will take the next." + + "Dear me! that is friendship indeed." + + "I tell you they were relatives." + + "Quite so--cousins of your mother. Was your baggage aboard the ship?" + + "Some of it, but the main part at the hotel." + + "I see. But surely this event could not have found its way into the + Plymouth morning papers." + + "No, sir; I had a telegram." + + "Might I ask from whom?" + + A shadow passed over the gaunt face of the explorer. + + "You are very inquisitive, Mr. Holmes." + + "It is my business." + + With an effort Dr. Sterndale recovered his ruffled composure. + + "I have no objection to telling you," he said. "It was Mr. Roundhay, + the vicar, who sent me the telegram which recalled me." + + "Thank you," said Holmes. "I may say in answer to your original + question that I have not cleared my mind entirely on the subject of + this case, but that I have every hope of reaching some conclusion. It + would be premature to say more." + + "Perhaps you would not mind telling me if your suspicions point in + any particular direction?" + + "No, I can hardly answer that." + + "Then I have wasted my time and need not prolong my visit." The + famous doctor strode out of our cottage in considerable ill-humour, + and within five minutes Holmes had followed him. I saw him no more + until the evening, when he returned with a slow step and haggard face + which assured me that he had made no great progress with his + investigation. He glanced at a telegram which awaited him and threw + it into the grate. + + "From the Plymouth hotel, Watson," he said. "I learned the name of it + from the vicar, and I wired to make certain that Dr. Leon Sterndale's + account was true. It appears that he did indeed spend last night + there, and that he has actually allowed some of his baggage to go on + to Africa, while he returned to be present at this investigation. + What do you make of that, Watson?" + + "He is deeply interested." + + "Deeply interested--yes. There is a thread here which we had not yet + grasped and which might lead us through the tangle. Cheer up, Watson, + for I am very sure that our material has not yet all come to hand. + When it does we may soon leave our difficulties behind us." + + Little did I think how soon the words of Holmes would be realized, or + how strange and sinister would be that new development which opened + up an entirely fresh line of investigation. I was shaving at my + window in the morning when I heard the rattle of hoofs and, looking + up, saw a dog-cart coming at a gallop down the road. It pulled up at + our door, and our friend, the vicar, sprang from it and rushed up our + garden path. Holmes was already dressed, and we hastened down to meet + him. + + Our visitor was so excited that he could hardly articulate, but at + last in gasps and bursts his tragic story came out of him. + + "We are devil-ridden, Mr. Holmes! My poor parish is devil-ridden!" he + cried. "Satan himself is loose in it! We are given over into his + hands!" He danced about in his agitation, a ludicrous object if it + were not for his ashy face and startled eyes. Finally he shot out his + terrible news. + + "Mr. Mortimer Tregennis died during the night, and with exactly the + same symptoms as the rest of his family." + + Holmes sprang to his feet, all energy in an instant. + + "Can you fit us both into your dog-cart?" + + "Yes, I can." + + "Then, Watson, we will postpone our breakfast. Mr. Roundhay, we are + entirely at your disposal. Hurry--hurry, before things get + disarranged." + + The lodger occupied two rooms at the vicarage, which were in an angle + by themselves, the one above the other. Below was a large + sitting-room; above, his bedroom. They looked out upon a croquet lawn + which came up to the windows. We had arrived before the doctor or the + police, so that everything was absolutely undisturbed. Let me + describe exactly the scene as we saw it upon that misty March + morning. It has left an impression which can never be effaced from my + mind. + + The atmosphere of the room was of a horrible and depressing + stuffiness. The servant who had first entered had thrown up the + window, or it would have been even more intolerable. This might + partly be due to the fact that a lamp stood flaring and smoking on + the centre table. Beside it sat the dead man, leaning back in his + chair, his thin beard projecting, his spectacles pushed up on to his + forehead, and his lean dark face turned towards the window and + twisted into the same distortion of terror which had marked the + features of his dead sister. His limbs were convulsed and his fingers + contorted as though he had died in a very paroxysm of fear. He was + fully clothed, though there were signs that his dressing had been + done in a hurry. We had already learned that his bed had been slept + in, and that the tragic end had come to him in the early morning. + + One realized the red-hot energy which underlay Holmes's phlegmatic + exterior when one saw the sudden change which came over him from the + moment that he entered the fatal apartment. In an instant he was + tense and alert, his eyes shining, his face set, his limbs quivering + with eager activity. He was out on the lawn, in through the window, + round the room, and up into the bedroom, for all the world like a + dashing foxhound drawing a cover. In the bedroom he made a rapid cast + around and ended by throwing open the window, which appeared to give + him some fresh cause for excitement, for he leaned out of it with + loud ejaculations of interest and delight. Then he rushed down the + stair, out through the open window, threw himself upon his face on + the lawn, sprang up and into the room once more, all with the energy + of the hunter who is at the very heels of his quarry. The lamp, which + was an ordinary standard, he examined with minute care, making + certain measurements upon its bowl. He carefully scrutinized with his + lens the talc shield which covered the top of the chimney and scraped + off some ashes which adhered to its upper surface, putting some of + them into an envelope, which he placed in his pocketbook. Finally, + just as the doctor and the official police put in an appearance, he + beckoned to the vicar and we all three went out upon the lawn. + + "I am glad to say that my investigation has not been entirely + barren," he remarked. "I cannot remain to discuss the matter with the + police, but I should be exceedingly obliged, Mr. Roundhay, if you + would give the inspector my compliments and direct his attention to + the bedroom window and to the sitting-room lamp. Each is suggestive, + and together they are almost conclusive. If the police would desire + further information I shall be happy to see any of them at the + cottage. And now, Watson, I think that, perhaps, we shall be better + employed elsewhere." + + It may be that the police resented the intrusion of an amateur, or + that they imagined themselves to be upon some hopeful line of + investigation; but it is certain that we heard nothing from them for + the next two days. During this time Holmes spent some of his time + smoking and dreaming in the cottage; but a greater portion in country + walks which he undertook alone, returning after many hours without + remark as to where he had been. One experiment served to show me the + line of his investigation. He had bought a lamp which was the + duplicate of the one which had burned in the room of Mortimer + Tregennis on the morning of the tragedy. This he filled with the same + oil as that used at the vicarage, and he carefully timed the period + which it would take to be exhausted. Another experiment which he made + was of a more unpleasant nature, and one which I am not likely ever + to forget. + + "You will remember, Watson," he remarked one afternoon, "that there + is a single common point of resemblance in the varying reports which + have reached us. This concerns the effect of the atmosphere of the + room in each case upon those who had first entered it. You will + recollect that Mortimer Tregennis, in describing the episode of his + last visit to his brother's house, remarked that the doctor on + entering the room fell into a chair? You had forgotten? Well I can + answer for it that it was so. Now, you will remember also that Mrs. + Porter, the housekeeper, told us that she herself fainted upon + entering the room and had afterwards opened the window. In the second + case--that of Mortimer Tregennis himself--you cannot have forgotten + the horrible stuffiness of the room when we arrived, though the + servant had thrown open the window. That servant, I found upon + inquiry, was so ill that she had gone to her bed. You will admit, + Watson, that these facts are very suggestive. In each case there is + evidence of a poisonous atmosphere. In each case, also, there is + combustion going on in the room--in the one case a fire, in the other + a lamp. The fire was needed, but the lamp was lit--as a comparison of + the oil consumed will show--long after it was broad daylight. Why? + Surely because there is some connection between three things--the + burning, the stuffy atmosphere, and, finally, the madness or death of + those unfortunate people. That is clear, is it not?" + + "It would appear so." + + "At least we may accept it as a working hypothesis. We will suppose, + then, that something was burned in each case which produced an + atmosphere causing strange toxic effects. Very good. In the first + instance--that of the Tregennis family--this substance was placed in + the fire. Now the window was shut, but the fire would naturally carry + fumes to some extent up the chimney. Hence one would expect the + effects of the poison to be less than in the second case, where there + was less escape for the vapour. The result seems to indicate that it + was so, since in the first case only the woman, who had presumably + the more sensitive organism, was killed, the others exhibiting that + temporary or permanent lunacy which is evidently the first effect of + the drug. In the second case the result was complete. The facts, + therefore, seem to bear out the theory of a poison which worked by + combustion. + + "With this train of reasoning in my head I naturally looked about in + Mortimer Tregennis's room to find some remains of this substance. The + obvious place to look was the talc shelf or smoke-guard of the lamp. + There, sure enough, I perceived a number of flaky ashes, and round + the edges a fringe of brownish powder, which had not yet been + consumed. Half of this I took, as you saw, and I placed it in an + envelope." + + "Why half, Holmes?" + + "It is not for me, my dear Watson, to stand in the way of the + official police force. I leave them all the evidence which I found. + The poison still remained upon the talc had they the wit to find it. + Now, Watson, we will light our lamp; we will, however, take the + precaution to open our window to avoid the premature decease of two + deserving members of society, and you will seat yourself near that + open window in an armchair unless, like a sensible man, you determine + to have nothing to do with the affair. Oh, you will see it out, will + you? I thought I knew my Watson. This chair I will place opposite + yours, so that we may be the same distance from the poison and face + to face. The door we will leave ajar. Each is now in a position to + watch the other and to bring the experiment to an end should the + symptoms seem alarming. Is that all clear? Well, then, I take our + powder--or what remains of it--from the envelope, and I lay it above + the burning lamp. So! Now, Watson, let us sit down and await + developments." + + They were not long in coming. I had hardly settled in my chair before + I was conscious of a thick, musky odour, subtle and nauseous. At the + very first whiff of it my brain and my imagination were beyond all + control. A thick, black cloud swirled before my eyes, and my mind + told me that in this cloud, unseen as yet, but about to spring out + upon my appalled senses, lurked all that was vaguely horrible, all + that was monstrous and inconceivably wicked in the universe. Vague + shapes swirled and swam amid the dark cloud-bank, each a menace and a + warning of something coming, the advent of some unspeakable dweller + upon the threshold, whose very shadow would blast my soul. A freezing + horror took possession of me. I felt that my hair was rising, that my + eyes were protruding, that my mouth was opened, and my tongue like + leather. The turmoil within my brain was such that something must + surely snap. I tried to scream and was vaguely aware of some hoarse + croak which was my own voice, but distant and detached from myself. + At the same moment, in some effort of escape, I broke through that + cloud of despair and had a glimpse of Holmes's face, white, rigid, + and drawn with horror--the very look which I had seen upon the + features of the dead. It was that vision which gave me an instant of + sanity and of strength. I dashed from my chair, threw my arms round + Holmes, and together we lurched through the door, and an instant + afterwards had thrown ourselves down upon the grass plot and were + lying side by side, conscious only of the glorious sunshine which was + bursting its way through the hellish cloud of terror which had girt + us in. Slowly it rose from our souls like the mists from a landscape + until peace and reason had returned, and we were sitting upon the + grass, wiping our clammy foreheads, and looking with apprehension at + each other to mark the last traces of that terrific experience which + we had undergone. + + "Upon my word, Watson!" said Holmes at last with an unsteady voice, + "I owe you both my thanks and an apology. It was an unjustifiable + experiment even for one's self, and doubly so for a friend. I am + really very sorry." + + "You know," I answered with some emotion, for I have never seen so + much of Holmes's heart before, "that it is my greatest joy and + privilege to help you." + + He relapsed at once into the half-humorous, half-cynical vein which + was his habitual attitude to those about him. "It would be + superfluous to drive us mad, my dear Watson," said he. "A candid + observer would certainly declare that we were so already before we + embarked upon so wild an experiment. I confess that I never imagined + that the effect could be so sudden and so severe." He dashed into the + cottage, and, reappearing with the burning lamp held at full arm's + length, he threw it among a bank of brambles. "We must give the room + a little time to clear. I take it, Watson, that you have no longer a + shadow of a doubt as to how these tragedies were produced?" + + "None whatever." + + "But the cause remains as obscure as before. Come into the arbour + here and let us discuss it together. That villainous stuff seems + still to linger round my throat. I think we must admit that all the + evidence points to this man, Mortimer Tregennis, having been the + criminal in the first tragedy, though he was the victim in the second + one. We must remember, in the first place, that there is some story + of a family quarrel, followed by a reconciliation. How bitter that + quarrel may have been, or how hollow the reconciliation we cannot + tell. When I think of Mortimer Tregennis, with the foxy face and the + small shrewd, beady eyes behind the spectacles, he is not a man whom + I should judge to be of a particularly forgiving disposition. Well, + in the next place, you will remember that this idea of someone moving + in the garden, which took our attention for a moment from the real + cause of the tragedy, emanated from him. He had a motive in + misleading us. Finally, if he did not throw the substance into the + fire at the moment of leaving the room, who did do so? The affair + happened immediately after his departure. Had anyone else come in, + the family would certainly have risen from the table. Besides, in + peaceful Cornwall, visitors did not arrive after ten o'clock at + night. We may take it, then, that all the evidence points to Mortimer + Tregennis as the culprit." + + "Then his own death was suicide!" + + "Well, Watson, it is on the face of it a not impossible supposition. + The man who had the guilt upon his soul of having brought such a fate + upon his own family might well be driven by remorse to inflict it + upon himself. There are, however, some cogent reasons against it. + Fortunately, there is one man in England who knows all about it, and + I have made arrangements by which we shall hear the facts this + afternoon from his own lips. Ah! he is a little before his time. + Perhaps you would kindly step this way, Dr. Leon Sterndale. We have + been conducing a chemical experiment indoors which has left our + little room hardly fit for the reception of so distinguished a + visitor." + + I had heard the click of the garden gate, and now the majestic figure + of the great African explorer appeared upon the path. He turned in + some surprise towards the rustic arbour in which we sat. + + "You sent for me, Mr. Holmes. I had your note about an hour ago, and + I have come, though I really do not know why I should obey your + summons." + + "Perhaps we can clear the point up before we separate," said Holmes. + "Meanwhile, I am much obliged to you for your courteous acquiescence. + You will excuse this informal reception in the open air, but my + friend Watson and I have nearly furnished an additional chapter to + what the papers call the Cornish Horror, and we prefer a clear + atmosphere for the present. Perhaps, since the matters which we have + to discuss will affect you personally in a very intimate fashion, it + is as well that we should talk where there can be no eavesdropping." + + The explorer took his cigar from his lips and gazed sternly at my + companion. + + "I am at a loss to know, sir," he said, "what you can have to speak + about which affects me personally in a very intimate fashion." + + "The killing of Mortimer Tregennis," said Holmes. + + For a moment I wished that I were armed. Sterndale's fierce face + turned to a dusky red, his eyes glared, and the knotted, passionate + veins started out in his forehead, while he sprang forward with + clenched hands towards my companion. Then he stopped, and with a + violent effort he resumed a cold, rigid calmness, which was, perhaps, + more suggestive of danger than his hot-headed outburst. + + "I have lived so long among savages and beyond the law," said he, + "that I have got into the way of being a law to myself. You would do + well, Mr. Holmes, not to forget it, for I have no desire to do you an + injury." + + "Nor have I any desire to do you an injury, Dr. Sterndale. Surely the + clearest proof of it is that, knowing what I know, I have sent for + you and not for the police." + + Sterndale sat down with a gasp, overawed for, perhaps, the first time + in his adventurous life. There was a calm assurance of power in + Holmes's manner which could not be withstood. Our visitor stammered + for a moment, his great hands opening and shutting in his agitation. + + "What do you mean?" he asked at last. "If this is bluff upon your + part, Mr. Holmes, you have chosen a bad man for your experiment. Let + us have no more beating about the bush. What do you mean?" + + "I will tell you," said Holmes, "and the reason why I tell you is + that I hope frankness may beget frankness. What my next step may be + will depend entirely upon the nature of your own defence." + + "My defence?" + + "Yes, sir." + + "My defence against what?" + + "Against the charge of killing Mortimer Tregennis." + + Sterndale mopped his forehead with his handkerchief. "Upon my word, + you are getting on," said he. "Do all your successes depend upon this + prodigious power of bluff?" + + "The bluff," said Holmes sternly, "is upon your side, Dr. Leon + Sterndale, and not upon mine. As a proof I will tell you some of the + facts upon which my conclusions are based. Of your return from + Plymouth, allowing much of your property to go on to Africa, I will + say nothing save that it first informed me that you were one of the + factors which had to be taken into account in reconstructing this + drama--" + + "I came back--" + + "I have heard your reasons and regard them as unconvincing and + inadequate. We will pass that. You came down here to ask me whom I + suspected. I refused to answer you. You then went to the vicarage, + waited outside it for some time, and finally returned to your + cottage." + + "How do you know that?" + + "I followed you." + + "I saw no one." + + "That is what you may expect to see when I follow you. You spent a + restless night at your cottage, and you formed certain plans, which + in the early morning you proceeded to put into execution. Leaving + your door just as day was breaking, you filled your pocket with some + reddish gravel that was lying heaped beside your gate." + + Sterndale gave a violent start and looked at Holmes in amazement. + + "You then walked swiftly for the mile which separated you from the + vicarage. You were wearing, I may remark, the same pair of ribbed + tennis shoes which are at the present moment upon your feet. At the + vicarage you passed through the orchard and the side hedge, coming + out under the window of the lodger Tregennis. It was now daylight, + but the household was not yet stirring. You drew some of the gravel + from your pocket, and you threw it up at the window above you." + + Sterndale sprang to his feet. + + "I believe that you are the devil himself!" he cried. + + Holmes smiled at the compliment. "It took two, or possibly three, + handfuls before the lodger came to the window. You beckoned him to + come down. He dressed hurriedly and descended to his sitting-room. + You entered by the window. There was an interview--a short + one--during which you walked up and down the room. Then you passed + out and closed the window, standing on the lawn outside smoking a + cigar and watching what occurred. Finally, after the death of + Tregennis, you withdrew as you had come. Now, Dr. Sterndale, how do + you justify such conduct, and what were the motives for your actions? + If you prevaricate or trifle with me, I give you my assurance that + the matter will pass out of my hands forever." + + Our visitor's face had turned ashen gray as he listened to the words + of his accuser. Now he sat for some time in thought with his face + sunk in his hands. Then with a sudden impulsive gesture he plucked a + photograph from his breast-pocket and threw it on the rustic table + before us. + + "That is why I have done it," said he. + + It showed the bust and face of a very beautiful woman. Holmes stooped + over it. + + "Brenda Tregennis," said he. + + "Yes, Brenda Tregennis," repeated our visitor. "For years I have + loved her. For years she has loved me. There is the secret of that + Cornish seclusion which people have marvelled at. It has brought me + close to the one thing on earth that was dear to me. I could not + marry her, for I have a wife who has left me for years and yet whom, + by the deplorable laws of England, I could not divorce. For years + Brenda waited. For years I waited. And this is what we have waited + for." A terrible sob shook his great frame, and he clutched his + throat under his brindled beard. Then with an effort he mastered + himself and spoke on: + + "The vicar knew. He was in our confidence. He would tell you that she + was an angel upon earth. That was why he telegraphed to me and I + returned. What was my baggage or Africa to me when I learned that + such a fate had come upon my darling? There you have the missing clue + to my action, Mr. Holmes." + + "Proceed," said my friend. + + Dr. Sterndale drew from his pocket a paper packet and laid it upon + the table. On the outside was written "Radix pedis diaboli" with a + red poison label beneath it. He pushed it towards me. "I understand + that you are a doctor, sir. Have you ever heard of this preparation?" + + "Devil's-foot root! No, I have never heard of it." + + "It is no reflection upon your professional knowledge," said he, "for + I believe that, save for one sample in a laboratory at Buda, there is + no other specimen in Europe. It has not yet found its way either into + the pharmacopoeia or into the literature of toxicology. The root is + shaped like a foot, half human, half goatlike; hence the fanciful + name given by a botanical missionary. It is used as an ordeal poison + by the medicine-men in certain districts of West Africa and is kept + as a secret among them. This particular specimen I obtained under + very extraordinary circumstances in the Ubangi country." He opened + the paper as he spoke and disclosed a heap of reddish-brown, + snuff-like powder. + + "Well, sir?" asked Holmes sternly. + + "I am about to tell you, Mr. Holmes, all that actually occurred, for + you already know so much that it is clearly to my interest that you + should know all. I have already explained the relationship in which I + stood to the Tregennis family. For the sake of the sister I was + friendly with the brothers. There was a family quarrel about money + which estranged this man Mortimer, but it was supposed to be made up, + and I afterwards met him as I did the others. He was a sly, subtle, + scheming man, and several things arose which gave me a suspicion of + him, but I had no cause for any positive quarrel. + + "One day, only a couple of weeks ago, he came down to my cottage and + I showed him some of my African curiosities. Among other things I + exhibited this powder, and I told him of its strange properties, how + it stimulates those brain centres which control the emotion of fear, + and how either madness or death is the fate of the unhappy native who + is subjected to the ordeal by the priest of his tribe. I told him + also how powerless European science would be to detect it. How he + took it I cannot say, for I never left the room, but there is no + doubt that it was then, while I was opening cabinets and stooping to + boxes, that he managed to abstract some of the devil's-foot root. I + well remember how he plied me with questions as to the amount and the + time that was needed for its effect, but I little dreamed that he + could have a personal reason for asking. + + "I thought no more of the matter until the vicar's telegram reached + me at Plymouth. This villain had thought that I would be at sea + before the news could reach me, and that I should be lost for years + in Africa. But I returned at once. Of course, I could not listen to + the details without feeling assured that my poison had been used. I + came round to see you on the chance that some other explanation had + suggested itself to you. But there could be none. I was convinced + that Mortimer Tregennis was the murderer; that for the sake of money, + and with the idea, perhaps, that if the other members of his family + were all insane he would be the sole guardian of their joint + property, he had used the devil's-foot powder upon them, driven two + of them out of their senses, and killed his sister Brenda, the one + human being whom I have ever loved or who has ever loved me. There + was his crime; what was to be his punishment? + + "Should I appeal to the law? Where were my proofs? I knew that the + facts were true, but could I help to make a jury of countrymen + believe so fantastic a story? I might or I might not. But I could not + afford to fail. My soul cried out for revenge. I have said to you + once before, Mr. Holmes, that I have spent much of my life outside + the law, and that I have come at last to be a law to myself. So it + was even now. I determined that the fate which he had given to others + should be shared by himself. Either that or I would do justice upon + him with my own hand. In all England there can be no man who sets + less value upon his own life than I do at the present moment. + + "Now I have told you all. You have yourself supplied the rest. I did, + as you say, after a restless night, set off early from my cottage. I + foresaw the difficulty of arousing him, so I gathered some gravel + from the pile which you have mentioned, and I used it to throw up to + his window. He came down and admitted me through the window of the + sitting-room. I laid his offence before him. I told him that I had + come both as judge and executioner. The wretch sank into a chair, + paralyzed at the sight of my revolver. I lit the lamp, put the powder + above it, and stood outside the window, ready to carry out my threat + to shoot him should he try to leave the room. In five minutes he + died. My God! how he died! But my heart was flint, for he endured + nothing which my innocent darling had not felt before him. There is + my story, Mr. Holmes. Perhaps, if you loved a woman, you would have + done as much yourself. At any rate, I am in your hands. You can take + what steps you like. As I have already said, there is no man living + who can fear death less than I do." + + Holmes sat for some little time in silence. + + "What were your plans?" he asked at last. + + "I had intended to bury myself in central Africa. My work there is + but half finished." + + "Go and do the other half," said Holmes. "I, at least, am not + prepared to prevent you." + + Dr. Sterndale raised his giant figure, bowed gravely, and walked from + the arbour. Holmes lit his pipe and handed me his pouch. + + "Some fumes which are not poisonous would be a welcome change," said + he. "I think you must agree, Watson, that it is not a case in which + we are called upon to interfere. Our investigation has been + independent, and our action shall be so also. You would not denounce + the man?" + + "Certainly not," I answered. + + "I have never loved, Watson, but if I did and if the woman I loved + had met such an end, I might act even as our lawless lion-hunter has + done. Who knows? Well, Watson, I will not offend your intelligence by + explaining what is obvious. The gravel upon the window-sill was, of + course, the starting-point of my research. It was unlike anything in + the vicarage garden. Only when my attention had been drawn to Dr. + Sterndale and his cottage did I find its counterpart. The lamp + shining in broad daylight and the remains of powder upon the shield + were successive links in a fairly obvious chain. And now, my dear + Watson, I think we may dismiss the matter from our mind and go back + with a clear conscience to the study of those Chaldean roots which + are surely to be traced in the Cornish branch of the great Celtic + speech." + + + + + + + HIS LAST BOW + An Epilogue of Sherlock Holmes + + It was nine o'clock at night upon the second of August--the most + terrible August in the history of the world. One might have thought + already that God's curse hung heavy over a degenerate world, for + there was an awesome hush and a feeling of vague expectancy in the + sultry and stagnant air. The sun had long set, but one blood-red gash + like an open wound lay low in the distant west. Above, the stars were + shining brightly, and below, the lights of the shipping glimmered in + the bay. The two famous Germans stood beside the stone parapet of the + garden walk, with the long, low, heavily gabled house behind them, + and they looked down upon the broad sweep of the beach at the foot of + the great chalk cliff in which Von Bork, like some wandering eagle, + had perched himself four years before. They stood with their heads + close together, talking in low, confidential tones. From below the + two glowing ends of their cigars might have been the smouldering eyes + of some malignant fiend looking down in the darkness. + + A remarkable man this Von Bork--a man who could hardly be matched + among all the devoted agents of the Kaiser. It was his talents which + had first recommended him for the English mission, the most important + mission of all, but since he had taken it over those talents had + become more and more manifest to the half-dozen people in the world + who were really in touch with the truth. One of these was his present + companion, Baron Von Herling, the chief secretary of the legation, + whose huge 100-horse-power Benz car was blocking the country lane as + it waited to waft its owner back to London. + + "So far as I can judge the trend of events, you will probably be back + in Berlin within the week," the secretary was saying. "When you get + there, my dear Von Bork, I think you will be surprised at the welcome + you will receive. I happen to know what is thought in the highest + quarters of your work in this country." He was a huge man, the + secretary, deep, broad, and tall, with a slow, heavy fashion of + speech which had been his main asset in his political career. + + Von Bork laughed. + + "They are not very hard to deceive," he remarked. "A more docile, + simple folk could not be imagined." + + "I don't know about that," said the other thoughtfully. "They have + strange limits and one must learn to observe them. It is that surface + simplicity of theirs which makes a trap for the stranger. One's first + impression is that they are entirely soft. Then one comes suddenly + upon something very hard, and you know that you have reached the + limit and must adapt yourself to the fact. They have, for example, + their insular conventions which simply must be observed." + + "Meaning 'good form' and that sort of thing?" Von Bork sighed as one + who had suffered much. + + "Meaning British prejudice in all its queer manifestations. As an + example I may quote one of my own worst blunders--I can afford to + talk of my blunders, for you know my work well enough to be aware of + my successes. It was on my first arrival. I was invited to a week-end + gathering at the country house of a cabinet minister. The + conversation was amazingly indiscreet." + + Von Bork nodded. "I've been there," said he dryly. + + "Exactly. Well, I naturally sent a resume of the information to + Berlin. Unfortunately our good chancellor is a little heavy-handed in + these matters, and he transmitted a remark which showed that he was + aware of what had been said. This, of course, took the trail straight + up to me. You've no idea the harm that it did me. There was nothing + soft about our British hosts on that occasion, I can assure you. I + was two years living it down. Now you, with this sporting pose of + yours--" + + "No, no, don't call it a pose. A pose is an artificial thing. This is + quite natural. I am a born sportsman. I enjoy it." + + "Well, that makes it the more effective. You yacht against them, you + hunt with them, you play polo, you match them in every game, your + four-in-hand takes the prize at Olympia. I have even heard that you + go the length of boxing with the young officers. What is the result? + Nobody takes you seriously. You are a 'good old sport,' 'quite a + decent fellow for a German,' a hard-drinking, night-club, + knock-about-town, devil-may-care young fellow. And all the time this + quiet country house of yours is the centre of half the mischief in + England, and the sporting squire the most astute secret-service man + in Europe. Genius, my dear Von Bork--genius!" + + "You flatter me, Baron. But certainly I may claim my four years in + this country have not been unproductive. I've never shown you my + little store. Would you mind stepping in for a moment?" + + The door of the study opened straight on to the terrace. Von Bork + pushed it back, and, leading the way, he clicked the switch of the + electric light. He then closed the door behind the bulky form which + followed him and carefully adjusted the heavy curtain over the + latticed window. Only when all these precautions had been taken and + tested did he turn his sunburned aquiline face to his guest. + + "Some of my papers have gone," said he. "When my wife and the + household left yesterday for Flushing they took the less important + with them. I must, of course, claim the protection of the embassy for + the others." + + "Your name has already been filed as one of the personal suite. There + will be no difficulties for you or your baggage. Of course, it is + just possible that we may not have to go. England may leave France to + her fate. We are sure that there is no binding treaty between them." + + "And Belgium?" + + "Yes, and Belgium, too." + + Von Bork shook his head. "I don't see how that could be. There is a + definite treaty there. She could never recover from such a + humiliation." + + "She would at least have peace for the moment." + + "But her honor?" + + "Tut, my dear sir, we live in a utilitarian age. Honour is a + mediaeval conception. Besides England is not ready. It is an + inconceivable thing, but even our special war tax of fifty million, + which one would think made our purpose as clear as if we had + advertised it on the front page of the Times, has not roused these + people from their slumbers. Here and there one hears a question. It + is my business to find an answer. Here and there also there is an + irritation. It is my business to soothe it. But I can assure you that + so far as the essentials go--the storage of munitions, the + preparation for submarine attack, the arrangements for making high + explosives--nothing is prepared. How, then, can England come in, + especially when we have stirred her up such a devil's brew of Irish + civil war, window-breaking Furies, and God knows what to keep her + thoughts at home." + + "She must think of her future." + + "Ah, that is another matter. I fancy that in the future we have our + own very definite plans about England, and that your information will + be very vital to us. It is to-day or to-morrow with Mr. John Bull. If + he prefers to-day we are perfectly ready. If it is to-morrow we shall + be more ready still. I should think they would be wiser to fight with + allies than without them, but that is their own affair. This week is + their week of destiny. But you were speaking of your papers." He sat + in the armchair with the light shining upon his broad bald head, + while he puffed sedately at his cigar. + + The large oak-panelled, book-lined room had a curtain hung in the + future corner. When this was drawn it disclosed a large, brass-bound + safe. Von Bork detached a small key from his watch chain, and after + some considerable manipulation of the lock he swung open the heavy + door. + + "Look!" said he, standing clear, with a wave of his hand. + + The light shone vividly into the opened safe, and the secretary of + the embassy gazed with an absorbed interest at the rows of stuffed + pigeon-holes with which it was furnished. Each pigeon-hole had its + label, and his eyes as he glanced along them read a long series of + such titles as "Fords," "Harbour-defences," "Aeroplanes," "Ireland," + "Egypt," "Portsmouth forts," "The Channel," "Rosythe," and a score of + others. Each compartment was bristling with papers and plans. + + "Colossal!" said the secretary. Putting down his cigar he softly + clapped his fat hands. + + "And all in four years, Baron. Not such a bad show for the + hard-drinking, hard-riding country squire. But the gem of my + collection is coming and there is the setting all ready for it." He + pointed to a space over which "Naval Signals" was printed. + + "But you have a good dossier there already." + + "Out of date and waste paper. The Admiralty in some way got the alarm + and every code has been changed. It was a blow, Baron--the worst + setback in my whole campaign. But thanks to my check-book and the + good Altamont all will be well to-night." + + The Baron looked at his watch and gave a guttural exclamation of + disappointment. + + "Well, I really can wait no longer. You can imagine that things are + moving at present in Carlton Terrace and that we have all to be at + our posts. I had hoped to be able to bring news of your great coup. + Did Altamont name no hour?" + + Von Bork pushed over a telegram. + + Will come without fail to-night and bring new sparking plugs. + --Altamont. + + "Sparking plugs, eh?" + + "You see he poses as a motor expert and I keep a full garage. In our + code everything likely to come up is named after some spare part. If + he talks of a radiator it is a battleship, of an oil pump a cruiser, + and so on. Sparking plugs are naval signals." + + "From Portsmouth at midday," said the secretary, examining the + superscription. "By the way, what do you give him?" + + "Five hundred pounds for this particular job. Of course he has a + salary as well." + + "The greedy rouge. They are useful, these traitors, but I grudge them + their blood money." + + "I grudge Altamont nothing. He is a wonderful worker. If I pay him + well, at least he delivers the goods, to use his own phrase. Besides + he is not a traitor. I assure you that our most pan-Germanic Junker + is a sucking dove in his feelings towards England as compared with a + real bitter Irish-American." + + "Oh, an Irish-American?" + + "If you heard him talk you would not doubt it. Sometimes I assure you + I can hardly understand him. He seems to have declared war on the + King's English as well as on the English king. Must you really go? He + may be here any moment." + + "No. I'm sorry, but I have already overstayed my time. We shall + expect you early to-morrow, and when you get that signal book through + the little door on the Duke of York's steps you can put a triumphant + finis to your record in England. What! Tokay!" He indicated a heavily + sealed dust-covered bottle which stood with two high glasses upon a + salver. + + "May I offer you a glass before your journey?" + + "No, thanks. But it looks like revelry." + + "Altamont has a nice taste in wines, and he took a fancy to my Tokay. + He is a touchy fellow and needs humouring in small things. I have to + study him, I assure you." They had strolled out on to the terrace + again, and along it to the further end where at a touch from the + Baron's chauffeur the great car shivered and chuckled. "Those are the + lights of Harwich, I suppose," said the secretary, pulling on his + dust coat. "How still and peaceful it all seems. There may be other + lights within the week, and the English coast a less tranquil place! + The heavens, too, may not be quite so peaceful if all that the good + Zeppelin promises us comes true. By the way, who is that?" + + Only one window showed a light behind them; in it there stood a lamp, + and beside it, seated at a table, was a dear old ruddy-faced woman in + a country cap. She was bending over her knitting and stopping + occasionally to stroke a large black cat upon a stool beside her. + + "That is Martha, the only servant I have left." + + The secretary chuckled. + + "She might almost personify Britannia," said he, "with her complete + self-absorption and general air of comfortable somnolence. Well, au + revoir, Von Bork!" With a final wave of his hand he sprang into the + car, and a moment later the two golden cones from the headlights shot + through the darkness. The secretary lay back in the cushions of the + luxurious limousine, with his thoughts so full of the impending + European tragedy that he hardly observed that as his car swung round + the village street it nearly passed over a little Ford coming in the + opposite direction. + + Von Bork walked slowly back to the study when the last gleams of the + motor lamps had faded into the distance. As he passed he observed + that his old housekeeper had put out her lamp and retired. It was a + new experience to him, the silence and darkness of his widespread + house, for his family and household had been a large one. It was a + relief to him, however, to think that they were all in safety and + that, but for that one old woman who had lingered in the kitchen, he + had the whole place to himself. There was a good deal of tidying up + to do inside his study and he set himself to do it until his keen, + handsome face was flushed with the heat of the burning papers. A + leather valise stood beside his table, and into this he began to pack + very neatly and systematically the precious contents of his safe. He + had hardly got started with the work, however, when his quick ears + caught the sounds of a distant car. Instantly he gave an exclamation + of satisfaction, strapped up the valise, shut the safe, locked it, + and hurried out on to the terrace. He was just in time to see the + lights of a small car come to a halt at the gate. A passenger sprang + out of it and advanced swiftly towards him, while the chauffeur, a + heavily built, elderly man with a gray moustache, settled down like + one who resigns himself to a long vigil. + + "Well?" asked Von Bork eagerly, running forward to meet his visitor. + + For answer the man waved a small brown-paper parcel triumphantly + above his head. + + "You can give me the glad hand to-night, mister," he cried. "I'm + bringing home the bacon at last." + + "The signals?" + + "Same as I said in my cable. Every last one of them, semaphore, lamp + code, Marconi--a copy, mind you, not the original. That was too + dangerous. But it's the real goods, and you can lay to that." He + slapped the German upon the shoulder with a rough familiarity from + which the other winced. + + "Come in," he said. "I'm all alone in the house. I was only waiting + for this. Of course a copy is better than the original. If an + original were missing they would change the whole thing. You think + it's all safe about the copy?" + + The Irish-American had entered the study and stretched his long limbs + from the armchair. He was a tall, gaunt man of sixty, with clear-cut + features and a small goatee beard which gave him a general + resemblance to the caricatures of Uncle Sam. A half-smoked, sodden + cigar hung from the corner of his mouth, and as he sat down he struck + a match and relit it. "Making ready for a move?" he remarked as he + looked round him. "Say, mister," he added, as his eyes fell upon the + safe from which the curtain was now removed, "you don't tell me you + keep your papers in that?" + + "Why not?" + + "Gosh, in a wide-open contraption like that! And they reckon you to + be some spy. Why, a Yankee crook would be into that with a + can-opener. If I'd known that any letter of mine was goin' to lie + loose in a thing like that I'd have been a mug to write to you at + all." + + "It would puzzle any crook to force that safe," Von Bork answered. + "You won't cut that metal with any tool." + + "But the lock?" + + "No, it's a double combination lock. You know what that is?" + + "Search me," said the American. + + "Well, you need a word as well as a set of figures before you can get + the lock to work." He rose and showed a double-radiating disc round + the keyhole. "This outer one is for the letters, the inner one for + the figures." + + "Well, well, that's fine." + + "So it's not quite as simple as you thought. It was four years ago + that I had it made, and what do you think I chose for the word and + figures?" + + "It's beyond me." + + "Well, I chose August for the word, and 1914 for the figures, and + here we are." + + The American's face showed his surprise and admiration. + + "My, but that was smart! You had it down to a fine thing." + + "Yes, a few of us even then could have guessed the date. Here it is, + and I'm shutting down to-morrow morning." + + "Well, I guess you'll have to fix me up also. I'm not staying is this + gol-darned country all on my lonesome. In a week or less, from what I + see, John Bull will be on his hind legs and fair ramping. I'd rather + watch him from over the water." + + "But you're an American citizen?" + + "Well, so was Jack James an American citizen, but he's doing time in + Portland all the same. It cuts no ice with a British copper to tell + him you're an American citizen. 'It's British law and order over + here,' says he. By the way, mister, talking of Jack James, it seems + to me you don't do much to cover your men." + + "What do you mean?" Von Bork asked sharply. + + "Well, you are their employer, ain't you? It's up to you to see that + they don't fall down. But they do fall down, and when did you ever + pick them up? There's James--" + + "It was James's own fault. You know that yourself. He was too + self-willed for the job." + + "James was a bonehead--I give you that. Then there was Hollis." + + "The man was mad." + + "Well, he went a bit woozy towards the end. It's enough to make a man + bug-house when he has to play a part from morning to night with a + hundred guys all ready to set the coppers wise to him. But now there + is Steiner--" + + Von Bork started violently, and his ruddy face turned a shade paler. + + "What about Steiner?" + + "Well, they've got him, that's all. They raided his store last night, + and he and his papers are all in Portsmouth jail. You'll go off and + he, poor devil, will have to stand the racket, and lucky if he gets + off with his life. That's why I want to get over the water as soon as + you do." + + Von Bork was a strong, self-contained man, but it was easy to see + that the news had shaken him. + + "How could they have got on to Steiner?" he muttered. "That's the + worst blow yet." + + "Well, you nearly had a worse one, for I believe they are not far off + me." + + "You don't mean that!" + + "Sure thing. My landlady down Fratton way had some inquiries, and + when I heard of it I guessed it was time for me to hustle. But what I + want to know, mister, is how the coppers know these things? Steiner + is the fifth man you've lost since I signed on with you, and I know + the name of the sixth if I don't get a move on. How do you explain + it, and ain't you ashamed to see your men go down like this?" + + Von Bork flushed crimson. + + "How dare you speak in such a way!" + + "If I didn't dare things, mister, I wouldn't be in your service. But + I'll tell you straight what is in my mind. I've heard that with you + German politicians when an agent has done his work you are not sorry + to see him put away." + + Von Bork sprang to his feet. + + "Do you dare to suggest that I have given away my own agents!" + + "I don't stand for that, mister, but there's a stool pigeon or a + cross somewhere, and it's up to you to find out where it is. Anyhow I + am taking no more chances. It's me for little Holland, and the sooner + the better." + + Von Bork had mastered his anger. + + "We have been allies too long to quarrel now at the very hour of + victory," he said. "You've done splendid work and taken risks, and I + can't forget it. By all means go to Holland, and you can get a boat + from Rotterdam to New York. No other line will be safe a week from + now. I'll take that book and pack it with the rest." + + The American held the small parcel in his hand, but made no motion to + give it up. + + "What about the dough?" he asked. + + "The what?" + + "The boodle. The reward. The £500. The gunner turned damned nasty at + the last, and I had to square him with an extra hundred dollars or it + would have been nitsky for you and me. 'Nothin' doin'!' says he, and + he meant it, too, but the last hundred did it. It's cost me two + hundred pound from first to last, so it isn't likely I'd give it up + without gettin' my wad." + + Von Bork smiled with some bitterness. "You don't seem to have a very + high opinion of my honour," said he, "you want the money before you + give up the book." + + "Well, mister, it is a business proposition." + + "All right. Have your way." He sat down at the table and scribbled a + check, which he tore from the book, but he refrained from handing it + to his companion. "After all, since we are to be on such terms, Mr. + Altamont," said he, "I don't see why I should trust you any more than + you trust me. Do you understand?" he added, looking back over his + shoulder at the American. "There's the check upon the table. I claim + the right to examine that parcel before you pick the money up." + + The American passed it over without a word. Von Bork undid a winding + of string and two wrappers of paper. Then he sat dazing for a moment + in silent amazement at a small blue book which lay before him. Across + the cover was printed in golden letters Practical Handbook of Bee + Culture. Only for one instant did the master spy glare at this + strangely irrelevant inscription. The next he was gripped at the back + of his neck by a grasp of iron, and a chloroformed sponge was held in + front of his writhing face. + + "Another glass, Watson!" said Mr. Sherlock Holmes as he extended the + bottle of Imperial Tokay. + + The thickset chauffeur, who had seated himself by the table, pushed + forward his glass with some eagerness. + + "It is a good wine, Holmes." + + "A remarkable wine, Watson. Our friend upon the sofa has assured me + that it is from Franz Josef's special cellar at the Schoenbrunn + Palace. Might I trouble you to open the window, for chloroform vapour + does not help the palate." + + The safe was ajar, and Holmes standing in front of it was removing + dossier after dossier, swiftly examining each, and then packing it + neatly in Von Bork's valise. The German lay upon the sofa sleeping + stertorously with a strap round his upper arms and another round his + legs. + + "We need not hurry ourselves, Watson. We are safe from interruption. + Would you mind touching the bell? There is no one in the house except + old Martha, who has played her part to admiration. I got her the + situation here when first I took the matter up. Ah, Martha, you will + be glad to hear that all is well." + + The pleasant old lady had appeared in the doorway. She curtseyed with + a smile to Mr. Holmes, but glanced with some apprehension at the + figure upon the sofa. + + "It is all right, Martha. He has not been hurt at all." + + "I am glad of that, Mr. Holmes. According to his lights he has been a + kind master. He wanted me to go with his wife to Germany yesterday, + but that would hardly have suited your plans, would it, sir?" + + "No, indeed, Martha. So long as you were here I was easy in my mind. + We waited some time for your signal to-night." + + "It was the secretary, sir." + + "I know. His car passed ours." + + "I thought he would never go. I knew that it would not suit your + plans, sir, to find him here." + + "No, indeed. Well, it only meant that we waited half an hour or so + until I saw your lamp go out and knew that the coast was clear. You + can report to me to-morrow in London, Martha, at Claridge's Hotel." + + "Very good, sir." + + "I suppose you have everything ready to leave." + + "Yes, sir. He posted seven letters to-day. I have the addresses as + usual." + + "Very good, Martha. I will look into them to-morrow. Good-night. + These papers," he continued as the old lady vanished, "are not of + very great importance, for, of course, the information which they + represent has been sent off long ago to the German government. These + are the originals which cold not safely be got out of the country." + + "Then they are of no use." + + "I should not go so far as to say that, Watson. They will at least + show our people what is known and what is not. I may say that a good + many of these papers have come through me, and I need not add are + thoroughly untrustworthy. It would brighten my declining years to see + a German cruiser navigating the Solent according to the mine-field + plans which I have furnished. But you, Watson"--he stopped his work + and took his old friend by the shoulders--"I've hardly seen you in + the light yet. How have the years used you? You look the same blithe + boy as ever." + + "I feel twenty years younger, Holmes. I have seldom felt so happy as + when I got your wire asking me to meet you at Harwich with the car. + But you, Holmes--you have changed very little--save for that horrible + goatee." + + "These are the sacrifices one makes for one's country, Watson," said + Holmes, pulling at his little tuft. "To-morrow it will be but a + dreadful memory. With my hair cut and a few other superficial changes + I shall no doubt reappear at Claridge's to-morrow as I was before + this American stunt--I beg your pardon, Watson, my well of English + seems to be permanently defiled--before this American job came my + way." + + "But you have retired, Holmes. We heard of you as living the life of + a hermit among your bees and your books in a small farm upon the + South Downs." + + "Exactly, Watson. Here is the fruit of my leisured ease, the magnum + opus of my latter years!" He picked up the volume from the table and + read out the whole title, Practical Handbook of Bee Culture, with + Some Observations upon the Segregation of the Queen. "Alone I did it. + Behold the fruit of pensive nights and laborious days when I watched + the little working gangs as once I watched the criminal world of + London." + + "But how did you get to work again?" + + "Ah, I have often marvelled at it myself. The Foreign Minister alone + I could have withstood, but when the Premier also deigned to visit my + humble roof--! The fact is, Watson, that this gentleman upon the sofa + was a bit too good for our people. He was in a class by himself. + Things were going wrong, and no one could understand why they were + going wrong. Agents were suspected or even caught, but there was + evidence of some strong and secret central force. It was absolutely + necessary to expose it. Strong pressure was brought upon me to look + into the matter. It has cost me two years, Watson, but they have not + been devoid of excitement. When I say that I started my pilgrimage at + Chicago, graduated in an Irish secret society at Buffalo, gave + serious trouble to the constabulary at Skibbareen, and so eventually + caught the eye of a subordinate agent of Von Bork, who recommended me + as a likely man, you will realize that the matter was complex. Since + then I have been honoured by his confidence, which has not prevented + most of his plans going subtly wrong and five of his best agents + being in prison. I watched them, Watson, and I picked them as they + ripened. Well, sir, I hope that you are none the worse!" + + The last remark was addressed to Von Bork himself, who after much + gasping and blinking had lain quietly listening to Holmes's + statement. He broke out now into a furious stream of German + invective, his face convulsed with passion. Holmes continued his + swift investigation of documents while his prisoner cursed and swore. + + "Though unmusical, German is the most expressive of all languages," + he observed when Von Bork had stopped from pure exhaustion. "Hullo! + Hullo!" he added as he looked hard at the corner of a tracing before + putting it in the box. "This should put another bird in the cage. I + had no idea that the paymaster was such a rascal, though I have long + had an eye upon him. Mister Von Bork, you have a great deal to answer + for." + + The prisoner had raised himself with some difficulty upon the sofa + and was staring with a strange mixture of amazement and hatred at his + captor. + + "I shall get level with you, Altamont," he said, speaking with slow + deliberation. "If it takes me all my life I shall get level with + you!" + + "The old sweet song," said Holmes. "How often have I heard it in days + gone by. It was a favorite ditty of the late lamented Professor + Moriarty. Colonel Sebastian Moran has also been known to warble it. + And yet I live and keep bees upon the South Downs." + + "Curse you, you double traitor!" cried the German, straining against + his bonds and glaring murder from his furious eyes. + + "No, no, it is not so bad as that," said Holmes, smiling. "As my + speech surely shows you, Mr. Altamont of Chicago had no existence in + fact. I used him and he is gone." + + "Then who are you?" + + "It is really immaterial who I am, but since the matter seems to + interest you, Mr. Von Bork, I may say that this is not my first + acquaintance with the members of your family. I have done a good deal + of business in Germany in the past and my name is probably familiar + to you." + + "I would wish to know it," said the Prussian grimly. + + "It was I who brought about the separation between Irene Adler and + the late King of Bohemia when your cousin Heinrich was the Imperial + Envoy. It was I also who saved from murder, by the Nihilist Klopman, + Count Von und Zu Grafenstein, who was your mother's elder brother. It + was I--" + + Von Bork sat up in amazement. + + "There is only one man," he cried. + + "Exactly," said Holmes. + + Von Bork groaned and sank back on the sofa. "And most of that + information came through you," he cried. "What is it worth? What have + I done? It is my ruin forever!" + + "It is certainly a little untrustworthy," said Holmes. "It will + require some checking and you have little time to check it. Your + admiral may find the new guns rather larger than he expects, and the + cruisers perhaps a trifle faster." + + Von Bork clutched at his own throat in despair. + + "There are a good many other points of detail which will, no doubt, + come to light in good time. But you have one quality which is very + rare in a German, Mr. Von Bork: you are a sportsman and you will bear + me no ill-will when you realize that you, who have outwitted so many + other people, have at last been outwitted yourself. After all, you + have done your best for your country, and I have done my best for + mine, and what could be more natural? Besides," he added, not + unkindly, as he laid his hand upon the shoulder of the prostrate man, + "it is better than to fall before some ignoble foe. These papers are + now ready, Watson. If you will help me with our prisoner, I think + that we may get started for London at once." + + It was no easy task to move Von Bork, for he was a strong and a + desperate man. Finally, holding either arm, the two friends walked + him very slowly down the garden walk which he had trod with such + proud confidence when he received the congratulations of the famous + diplomatist only a few hours before. After a short, final struggle he + was hoisted, still bound hand and foot, into the spare seat of the + little car. His precious valise was wedged in beside him. + + "I trust that you are as comfortable as circumstances permit," said + Holmes when the final arrangements were made. "Should I be guilty of + a liberty if I lit a cigar and placed it between your lips?" + + But all amenities were wasted upon the angry German. + + "I suppose you realize, Mr. Sherlock Holmes," said he, "that if your + government bears you out in this treatment it becomes an act of war." + + "What about your government and all this treatment?" said Holmes, + tapping the valise. + + "You are a private individual. You have no warrant for my arrest. The + whole proceeding is absolutely illegal and outrageous." + + "Absolutely," said Holmes. + + "Kidnapping a German subject." + + "And stealing his private papers." + + "Well, you realize your position, you and your accomplice here. If I + were to shout for help as we pass through the village--" + + "My dear sir, if you did anything so foolish you would probably + enlarge the two limited titles of our village inns by giving us 'The + Dangling Prussian' as a signpost. The Englishman is a patient + creature, but at present his temper is a little inflamed, and it + would be as well not to try him too far. No, Mr. Von Bork, you will + go with us in a quiet, sensible fashion to Scotland Yard, whence you + can send for your friend, Baron Von Herling, and see if even now you + may not fill that place which he has reserved for you in the + ambassadorial suite. As to you, Watson, you are joining us with your + old service, as I understand, so London won't be out of your way. + Stand with me here upon the terrace, for it may be the last quiet + talk that we shall ever have." + + The two friends chatted in intimate converse for a few minutes, + recalling once again the days of the past, while their prisoner + vainly wriggled to undo the bonds that held him. As they turned to + the car Holmes pointed back to the moonlit sea and shook a thoughtful + head. + + "There's an east wind coming, Watson." + + "I think not, Holmes. It is very warm." + + "Good old Watson! You are the one fixed point in a changing age. + There's an east wind coming all the same, such a wind as never blew + on England yet. It will be cold and bitter, Watson, and a good many + of us may wither before its blast. But it's God's own wind none the + less, and a cleaner, better, stronger land will lie in the sunshine + when the storm has cleared. Start her up, Watson, for it's time that + we were on our way. I have a check for five hundred pounds which + should be cashed early, for the drawer is quite capable of stopping + it if he can." + + + + + + + THE CASE-BOOK OF SHERLOCK HOLMES + + + + + + PREFACE + + I fear that Mr. Sherlock Holmes may become like one of those popular + tenors who, having outlived their time, are still tempted to make + repeated farewell bows to their indulgent audiences. This must cease + and he must go the way of all flesh, material or imaginary. One likes + to think that there is some fantastic limbo for the children of + imagination, some strange, impossible place where the beaux of + Fielding may still make love to the belles of Richardson, where + Scott's heroes still may strut, Dickens's delightful Cockneys still + raise a laugh, and Thackeray's worldlings continue to carry on their + reprehensible careers. Perhaps in some humble corner of such a + Valhalla, Sherlock and his Watson may for a time find a place, while + some more astute sleuth with some even less astute comrade may fill + the stage which they have vacated. + + His career has been a long one--though it is possible to exaggerate + it; decrepit gentlemen who approach me and declare that his + adventures formed the reading of their boyhood do not meet the + response from me which they seem to expect. One is not anxious to + have one's personal dates handled so unkindly. As a matter of cold + fact, Holmes made his debut in A Study in Scarlet and in The Sign of + Four, two small booklets which appeared between 1887 and 1889. It was + in 1891 that "A Scandal in Bohemia," the first of the long series of + short stories, appeared in The Strand Magazine. The public seemed + appreciative and desirous of more, so that from that date, + thirty-nine years ago, they have been produced in a broken series + which now contains no fewer than fifty-six stories, republished in + The Adventures, The Memoirs, The Return, and His Last Bow. And there + remain these twelve published during the last few years which are + here produced under the title of The Case Book of Sherlock Holmes. He + began his adventures in the very heart of the later Victorian era, + carried it through the all-too-short reign of Edward, and has managed + to hold his own little niche even in these feverish days. Thus it + would be true to say that those who first read of him, as young men, + have lived to see their own grown-up children following the same + adventures in the same magazine. It is a striking example of the + patience and loyalty of the British public. + + I had fully determined at the conclusion of The Memoirs to bring + Holmes to an end, as I felt that my literary energies should not be + directed too much into one channel. That pale, clear-cut face and + loose-limbed figure were taking up an undue share of my imagination. + I did the deed, but fortunately no coroner had pronounced upon the + remains, and so, after a long interval, it was not difficult for me + to respond to the flattering demand and to explain my rash act away. + I have never regretted it, for I have not in actual practice found + that these lighter sketches have prevented me from exploring and + finding my limitations in such varied branches of literature as + history, poetry, historical novels, psychic research, and the drama. + Had Holmes never existed I could not have done more, though he may + perhaps have stood a little in the way of the recognition of my more + serious literary work. + + And so, reader, farewell to Sherlock Holmes! I thank you for your + past constancy, and can but hope that some return has been made in + the shape of that distraction from the worries of life and + stimulating change of thought which can only be found in the fairy + kingdom of romance. + + + Arthur Conan Doyle + + + + + + + THE ILLUSTRIOUS CLIENT + + "It can't hurt now," was Mr. Sherlock Holmes's comment when, for the + tenth time in as many years, I asked his leave to reveal the + following narrative. So it was that at last I obtained permission to + put on record what was, in some ways, the supreme moment of my + friend's career. + + Both Holmes and I had a weakness for the Turkish bath. It was over a + smoke in the pleasant lassitude of the drying-room that I have found + him less reticent and more human than anywhere else. On the upper + floor of the Northumberland Avenue establishment there is an isolated + corner where two couches lie side by side, and it was on these that + we lay upon September 3, 1902, the day when my narrative begins. I + had asked him whether anything was stirring, and for answer he had + shot his long, thin, nervous arm out of the sheets which enveloped + him and had drawn an envelope from the inside pocket of the coat + which hung beside him. + + "It may be some fussy, self-important fool; it may be a matter of + life or death," said he as he handed me the note. "I know no more + than this message tells me." + + It was from the Carlton Club and dated the evening before. This is + what I read: + + Sir James Damery presents his compliments to Mr. Sherlock Holmes and + will call upon him at 4.30 to-morrow. Sir James begs to say that the + matter upon which he desires to consult Mr. Holmes is very delicate + and also very important. He trusts, therefore, that Mr. Holmes will + make every effort to grant this interview, and that he will confirm + it over the telephone to the Carlton Club. + + "I need not say that I have confirmed it, Watson," said Holmes as I + returned the paper. "Do you know anything of this man Damery?" + + "Only that this name is a household word in society." + + "Well, I can tell you a little more than that. He has rather a + reputation for arranging delicate matters which are to be kept out of + the papers. You may remember his negotiations with Sir George Lewis + over the Hammerford Will case. He is a man of the world with a + natural turn for diplomacy. I am bound, therefore, to hope that it is + not a false scent and that he has some real need for our assistance." + + "Our?" + + "Well, if you will be so good, Watson." + + "I shall be honoured." + + "Then you have the hour--4.30. Until then we can put the matter out + of our heads." + + I was living in my own rooms in Queen Anne Street at the time, but I + was round at Baker Street before the time named. Sharp to the + half-hour, Colonel Sir James Damery was announced. It is hardly + necessary to describe him, for many will remember that large, bluff, + honest personality, that broad, clean-shaven face, and, above all, + that pleasant, mellow voice. Frankness shone from his gray Irish + eyes, and good humour played round his mobile, smiling lips. His + lucent top-hat, his dark frock-coat, indeed, every detail, from the + pearl pin in the black satin cravat to the lavender spats over the + varnished shoes, spoke of the meticulous care in dress for which he + was famous. The big, masterful aristocrat dominated the little room. + + "Of course, I was prepared to find Dr. Watson," he remarked with a + courteous bow. "His collaboration may be very necessary, for we are + dealing on this occasion, Mr. Holmes, with a man to whom violence is + familiar and who will, literally, stick at nothing. I should say that + there is no more dangerous man in Europe." + + "I have had several opponents to whom that flattering term has been + applied," said Holmes with a smile. "Don't you smoke? Then you will + excuse me if I light my pipe. If your man is more dangerous than the + late Professor Moriarty, or than the living Colonel Sebastian Moran, + then he is indeed worth meeting. May I ask his name?" + + "Have you ever heard of Baron Gruner?" + + "You mean the Austrian murderer?" + + Colonel Damery threw up his kid-gloved hands with a laugh. "There is + no getting past you, Mr. Holmes! Wonderful! So you have already sized + him up as a murderer?" + + "It is my business to follow the details of Continental crime. Who + could possibly have read what happened at Prague and have any doubts + as to the man's guilt! It was a purely technical legal point and the + suspicious death of a witness that saved him! I am as sure that he + killed his wife when the so-called 'accident' happened in the Splugen + Pass as if I had seen him do it. I knew, also, that he had come to + England and had a presentiment that sooner or later he would find me + some work to do. Well, what has Baron Gruner been up to? I presume it + is not this old tragedy which has come up again?" + + "No, it is more serious than that. To revenge crime is important, but + to prevent it is more so. It is a terrible thing, Mr. Holmes, to see + a dreadful event, an atrocious situation, preparing itself before + your eyes, to clearly understand whither it will lead and yet to be + utterly unable to avert it. Can a human being be placed in a more + trying position?" + + "Perhaps not." + + "Then you will sympathize with the client in whose interests I am + acting." + + "I did not understand that you were merely an intermediary. Who is + the principal?" + + "Mr. Holmes, I must beg you not to press that question. It is + important that I should be able to assure him that his honoured name + has been in no way dragged into the matter. His motives are, to the + last degree, honourable and chivalrous, but he prefers to remain + unknown. I need not say that your fees will be assured and that you + will be given a perfectly free hand. Surely the actual name of your + client is immaterial?" + + "I am sorry," said Holmes. "I am accustomed to have mystery at one + end of my cases, but to have it at both ends is too confusing. I + fear, Sir James, that I must decline to act." + + Our visitor was greatly disturbed. His large, sensitive face was + darkened with emotion and disappointment. + + "You hardly realize the effect of your own action, Mr. Holmes," said + he. "You place me in a most serious dilemma, for I am perfectly + certain that you would be proud to take over the case if I could give + you the facts, and yet a promise forbids me from revealing them all. + May I, at least, lay all that I can before you?" + + "By all means, so long as it is understood that I commit myself to + nothing." + + "That is understood. In the first place, you have no doubt heard of + General de Merville?" + + "De Merville of Khyber fame? Yes, I have heard of him." + + "He has a daughter, Violet de Merville, young, rich, beautiful, + accomplished, a wonder-woman in every way. It is this daughter, this + lovely, innocent girl, whom we are endeavouring to save from the + clutches of a fiend." + + "Baron Gruner has some hold over her, then?" + + "The strongest of all holds where a woman is concerned--the hold of + love. The fellow is, as you may have heard, extraordinarily handsome, + with a most fascinating manner, a gentle voice, and that air of + romance and mystery which means so much to a woman. He is said to + have the whole sex at his mercy and to have made ample use of the + fact." + + "But how came such a man to meet a lady of the standing of Miss + Violet de Merville?" + + "It was on a Mediterranean yachting voyage. The company, though + select, paid their own passages. No doubt the promoters hardly + realized the Baron's true character until it was too late. The + villain attached himself to the lady, and with such effect that he + has completely and absolutely won her heart. To say that she loves + him hardly expresses it. She dotes upon him; she is obsessed by him. + Outside of him there is nothing on earth. She will not hear one word + against him. Everything has been done to cure her of her madness, but + in vain. To sum up, she proposes to marry him next month. As she is + of age and has a will of iron, it is hard to know how to prevent + her." + + "Does she know about the Austrian episode?" + + "The cunning devil has told her every unsavoury public scandal of his + past life, but always in such a way as to make himself out to be an + innocent martyr. She absolutely accepts his version and will listen + to no other." + + "Dear me! But surely you have inadvertently let out the name of your + client? It is no doubt General de Merville." + + Our visitor fidgeted in his chair. + + "I could deceive you by saying so, Mr. Holmes, but it would not be + true. De Merville is a broken man. The strong soldier has been + utterly demoralized by this incident. He has lost the nerve which + never failed him on the battlefield and has become a weak, doddering + old man, utterly incapable of contending with a brilliant, forceful + rascal like this Austrian. My client, however, is an old friend, one + who has known the General intimately for many years and taken a + paternal interest in this young girl since she wore short frocks. He + cannot see this tragedy consummated without some attempt to stop it. + There is nothing in which Scotland Yard can act. It was his own + suggestion that you should be called in, but it was, as I have said, + on the express stipulation that he should not be personally involved + in the matter. I have no doubt, Mr. Holmes, with your great powers + you could easily trace my client back through me, but I must ask you, + as a point of honour, to refrain from doing so, and not to break in + upon his incognito." + + Holmes gave a whimsical smile. + + "I think I may safely promise that," said he. "I may add that your + problem interests me, and that I shall be prepared to look into it. + How shall I keep in touch with you?" + + "The Carlton Club will find me. But in case of emergency, there is a + private telephone call, 'XX.31.'" + + Holmes noted it down and sat, still smiling, with the open + memorandum-book upon his knee. + + "The Baron's present address, please?" + + "Vernon Lodge, near Kingston. It is a large house. He has been + fortunate in some rather shady speculations and is a rich man, which + naturally makes him a more dangerous antagonist." + + "Is he at home at present?" + + "Yes." + + "Apart from what you have told me, can you give me any further + information about the man?" + + "He has expensive tastes. He is a horse fancier. For a short time he + played polo at Hurlingham, but then this Prague affair got noised + about and he had to leave. He collects books and pictures. He is a + man with a considerable artistic side to his nature. He is, I + believe, a recognized authority upon Chinese pottery and has written + a book upon the subject." + + "A complex mind," said Holmes. "All great criminals have that. My old + friend Charlie Peace was a violin virtuoso. Wainwright was no mean + artist. I could quote many more. Well, Sir James, you will inform + your client that I am turning my mind upon Baron Gruner. I can say no + more. I have some sources of information of my own, and I dare say we + may find some means of opening the matter up." + + When our visitor had left us Holmes sat so long in deep thought that + it seemed to me that he had forgotten my presence. At last, however, + he came briskly back to earth. + + "Well, Watson, any views?" he asked. + + "I should think you had better see the young lady herself." + + "My dear Watson, if her poor old broken father cannot move her, how + shall I, a stranger, prevail? And yet there is something in the + suggestion if all else fails. But I think we must begin from a + different angle. I rather fancy that Shinwell Johnson might be a + help." + + I have not had occasion to mention Shinwell Johnson in these memoirs + because I have seldom drawn my cases from the latter phases of my + friend's career. During the first years of the century he became a + valuable assistant. Johnson, I grieve to say, made his name first as + a very dangerous villain and served two terms at Parkhurst. Finally + he repented and allied himself to Holmes, acting as his agent in the + huge criminal underworld of London and obtaining information which + often proved to be of vital importance. Had Johnson been a "nark" of + the police he would soon have been exposed, but as he dealt with + cases which never came directly into the courts, his activities were + never realized by his companions. With the glamour of his two + convictions upon him, he had the entree of every night-club, doss + house, and gambling-den in the town, and his quick observation and + active brain made him an ideal agent for gaining information. It was + to him that Sherlock Holmes now proposed to turn. + + It was not possible for me to follow the immediate steps taken by my + friend, for I had some pressing professional business of my own, but + I met him by appointment that evening at Simpson's, where, sitting at + a small table in the front window and looking down at the rushing + stream of life in the Strand, he told me something of what had + passed. + + "Johnson is on the prowl," said he. "He may pick up some garbage in + the darker recesses of the underworld, for it is down there, amid the + black roots of crime, that we must hunt for this man's secrets." + + "But if the lady will not accept what is already known, why should + any fresh discovery of yours turn her from her purpose?" + + "Who knows, Watson? Woman's heart and mind are insoluble puzzles to + the male. Murder might be condoned or explained, and yet some smaller + offence might rankle. Baron Gruner remarked to me--" + + "He remarked to you!" + + "Oh, to be sure, I had not told you of my plans. Well, Watson, I love + to come to close grips with my man. I like to meet him eye to eye and + read for myself the stuff that he is made of. When I had given + Johnson his instructions I took a cab out to Kingston and found the + Baron in a most affable mood." + + "Did he recognize you?" + + "There was no difficulty about that, for I simply sent in my card. He + is an excellent antagonist, cool as ice, silky voiced and soothing as + one of your fashionable consultants, and poisonous as a cobra. He has + breeding in him--a real aristocrat of crime, with a superficial + suggestion of afternoon tea and all the cruelty of the grave behind + it. Yes, I am glad to have had my attention called to Baron Adelbert + Gruner." + + "You say he was affable?" + + "A purring cat who thinks he sees prospective mice. Some people's + affability is more deadly than the violence of coarser souls. His + greeting was characteristic. 'I rather thought I should see you + sooner or later, Mr. Holmes,' said he. 'You have been engaged, no + doubt by General de Merville, to endeavour to stop my marriage with + his daughter, Violet. That is so, is it not?' + + "I acquiesced. + + "'My dear man,' said he, 'you will only ruin your own well-deserved + reputation. It is not a case in which you can possibly succeed. You + will have barren work, to say nothing of incurring some danger. Let + me very strongly advise you to draw off at once.' + + "'It is curious,' I answered, 'but that was the very advice which I + had intended to give you. I have a respect for your brains, Baron, + and the little which I have seen of your personality has not lessened + it. Let me put it to you as man to man. No one wants to rake up your + past and make you unduly uncomfortable. It is over, and you are now + in smooth waters, but if you persist in this marriage you will raise + up a swarm of powerful enemies who will never leave you alone until + they have made England too hot to hold you. Is the game worth it? + Surely you would be wiser if you left the lady alone. It would not be + pleasant for you if these facts of your past were brought to her + notice.' + + "The Baron has little waxed tips of hair under his nose, like the + short antennae of an insect. These quivered with amusement as he + listened, and he finally broke into a gentle chuckle. + + "'Excuse my amusement, Mr. Holmes,' said he, 'but it is really funny + to see you trying to play a hand with no cards in it. I don't think + anyone could do it better, but it is rather pathetic, all the same. + Not a colour card there, Mr. Holmes, nothing but the smallest of the + small.' + + "'So you think.' + + "'So I know. Let me make the thing clear to you, for my own hand is + so strong that I can afford to show it. I have been fortunate enough + to win the entire affection of this lady. This was given to me in + spite of the fact that I told her very clearly of all the unhappy + incidents in my past life. I also told her that certain wicked and + designing persons--I hope you recognize yourself--would come to her + and tell her these things, and I warned her how to treat them. You + have heard of post-hypnotic suggestion, Mr. Holmes? Well, you will + see how it works, for a man of personality can use hypnotism without + any vulgar passes or tomfoolery. So she is ready for you and, I have + no doubt, would give you an appointment, for she is quite amenable to + her father's will--save only in the one little matter.' + + "Well, Watson, there seemed to be no more to say, so I took my leave + with as much cold dignity as I could summon, but, as I had my hand on + the door-handle, he stopped me. + + "'By the way, Mr. Holmes,' said he, 'did you know Le Brun, the French + agent?' + + "'Yes,' said I. + + "'Do you know what befell him?' + + "'I heard that he was beaten by some Apaches in the Montmartre + district and crippled for life.' + + "'Quite true, Mr. Holmes. By a curious coincidence he had been + inquiring into my affairs only a week before. Don't do it, Mr. + Holmes; it's not a lucky thing to do. Several have found that out. My + last word to you is, go your own way and let me go mine. Good-bye!' + + "So there you are, Watson. You are up to date now." + + "The fellow seems dangerous." + + "Mighty dangerous. I disregard the blusterer, but this is the sort of + man who says rather less than he means." + + "Must you interfere? Does it really matter if he marries the girl?" + + "Considering that he undoubtedly murdered his last wife, I should say + it mattered very much. Besides, the client! Well, well, we need not + discuss that. When you have finished your coffee you had best come + home with me, for the blithe Shinwell will be there with his report." + + We found him sure enough, a huge, coarse, red-faced, scorbutic man, + with a pair of vivid black eyes which were the only external sign of + the very cunning mind within. It seems that he had dived down into + what was peculiarly his kingdom, and beside him on the settee was a + brand which he had brought up in the shape of a slim, flame-like + young woman with a pale, intense face, youthful, and yet so worn with + sin and sorrow that one read the terrible years which had left their + leprous mark upon her. + + "This is Miss Kitty Winter," said Shinwell Johnson, waving his fat + hand as an introduction. "What she don't know--well, there, she'll + speak for herself. Put my hand right on her, Mr. Holmes, within an + hour of your message." + + "I'm easy to find," said the young woman. "Hell, London, gets me + every time. Same address for Porky Shinwell. We're old mates, Porky, + you and I. But, by cripes! there is another who ought to be down in a + lower hell than we if there was any justice in the world! That is the + man you are after, Mr. Holmes." + + Holmes smiled. "I gather we have your good wishes, Miss Winter." + + "If I can help to put him where he belongs, I'm yours to the rattle," + said our visitor with fierce energy. There was an intensity of hatred + in her white, set face and her blazing eyes such as woman seldom and + man never can attain. "You needn't go into my past, Mr. Holmes. + That's neither here nor there. But what I am Adelbert Gruner made me. + If I could pull him down!" She clutched frantically with her hands + into the air. "Oh, if I could only pull him into the pit where he has + pushed so many!" + + "You know how the matter stands?" + + "Porky Shinwell has been telling me. He's after some other poor fool + and wants to marry her this time. You want to stop it. Well, you + surely know enough about this devil to prevent any decent girl in her + senses wanting to be in the same parish with him." + + "She is not in her senses. She is madly in love. She has been told + all about him. She cares nothing." + + "Told about the murder?" + + "Yes." + + "My Lord, she must have a nerve!" + + "She puts them all down as slanders." + + "Couldn't you lay proofs before her silly eyes?" + + "Well, can you help us do so?" + + "Ain't I a proof myself? If I stood before her and told her how he + used me--" + + "Would you do this?" + + "Would I? Would I not!" + + "Well, it might be worth trying. But he has told her most of his sins + and had pardon from her, and I understand she will not reopen the + question." + + "I'll lay he didn't tell her all," said Miss Winter. "I caught a + glimpse of one or two murders besides the one that made such a fuss. + He would speak of someone in his velvet way and then look at me with + a steady eye and say: 'He died within a month.' It wasn't hot air, + either. But I took little notice--you see, I loved him myself at that + time. Whatever he did went with me, same as with this poor fool! + There was just one thing that shook me. Yes, by cripes! if it had not + been for his poisonous, lying tongue that explains and soothes, I'd + have left him that very night. It's a book he has--a brown leather + book with a lock, and his arms in gold on the outside. I think he was + a bit drunk that night, or he would not have shown it to me." + + "What was it, then?" + + "I tell you, Mr. Holmes, this man collects women, and takes a pride + in his collection, as some men collect moths or butterflies. He had + it all in that book. Snapshot photographs, names, details, everything + about them. It was a beastly book--a book no man, even if he had come + from the gutter, could have put together. But it was Adelbert + Gruner's book all the same. 'Souls I have ruined.' He could have put + that on the outside if he had been so minded. However, that's neither + here nor there, for the book would not serve you, and, if it would, + you can't get it." + + "Where is it?" + + "How can I tell you where it is now? It's more than a year since I + left him. I know where he kept it then. He's a precise, tidy cat of a + man in many of his ways, so maybe it is still in the pigeon-hole of + the old bureau in the inner study. Do you know his house?" + + "I've been in the study," said Holmes. + + "Have you, though? You haven't been slow on the job if you only + started this morning. Maybe dear Adelbert has met his match this + time. The outer study is the one with the Chinese crockery in it--big + glass cupboard between the windows. Then behind his desk is the door + that leads to the inner study--a small room where he keeps papers and + things." + + "Is he not afraid of burglars?" + + "Adelbert is no coward. His worst enemy couldn't say that of him. He + can look after himself. There's a burglar alarm at night. Besides, + what is there for a burglar--unless they got away with all this fancy + crockery?" + + "No good," said Shinwell Johnson with the decided voice of the + expert. "No fence wants stuff of that sort that you can neither melt + nor sell." + + "Quite so," said Holmes. "Well, now, Miss Winter, if you would call + here to-morrow evening at five, I would consider in the meanwhile + whether your suggestion of seeing this lady personally may not be + arranged. I am exceedingly obliged to you for your cooperation. I + need not say that my clients will consider liberally--" + + "None of that, Mr. Holmes," cried the young woman. "I am not out for + money. Let me see this man in the mud, and I've got all I've worked + for--in the mud with my foot on his cursed face. That's my price. I'm + with you to-morrow or any other day so long as you are on his track. + Porky here can tell you always where to find me." + + I did not see Holmes again until the following evening when we dined + once more at our Strand restaurant. He shrugged his shoulders when I + asked him what luck he had had in his interview. Then he told the + story, which I would repeat in this way. His hard, dry statement + needs some little editing to soften it into the terms of real life. + + "There was no difficulty at all about the appointment," said Holmes, + "for the girl glories in showing abject filial obedience in all + secondary things in an attempt to atone for her flagrant breach of it + in her engagement. The General 'phoned that all was ready, and the + fiery Miss W. turned up according to schedule, so that at half-past + five a cab deposited us outside 104 Berkeley Square, where the old + soldier resides--one of those awful gray London castles which would + make a church seem frivolous. A footman showed us into a great + yellow-curtained drawing-room, and there was the lady awaiting us, + demure, pale, self-contained, as inflexible and remote as a snow + image on a mountain. + + "I don't quite know how to make her clear to you, Watson. Perhaps you + may meet her before we are through, and you can use your own gift of + words. She is beautiful, but with the ethereal other-world beauty of + some fanatic whose thoughts are set on high. I have seen such faces + in the pictures of the old masters of the Middle Ages. How a beastman + could have laid his vile paws upon such a being of the beyond I + cannot imagine. You may have noticed how extremes call to each other, + the spiritual to the animal, the cave-man to the angel. You never saw + a worse case than this. + + "She knew what we had come for, of course--that villain had lost no + time in poisoning her mind against us. Miss Winter's advent rather + amazed her, I think, but she waved us into our respective chairs like + a reverend abbess receiving two rather leprous mendicants. If your + head is inclined to swell, my dear Watson, take a course of Miss + Violet de Merville. + + "'Well, sir,' said she in a voice like the wind from an iceberg, + 'your name is familiar to me. You have called, as I understand, to + malign my fiancé, Baron Gruner. It is only by my father's request + that I see you at all, and I warn you in advance that anything you + can say could not possibly have the slightest effect upon my mind.' + + "I was sorry for her, Watson. I thought of her for the moment as I + would have thought of a daughter of my own. I am not often eloquent. + I use my head, not my heart. But I really did plead with her with all + the warmth of words that I could find in my nature. I pictured to her + the awful position of the woman who only wakes to a man's character + after she is his wife--a woman who has to submit to be caressed by + bloody hands and lecherous lips. I spared her nothing--the shame, the + fear, the agony, the hopelessness of it all. All my hot words could + not bring one tinge of colour to those ivory cheeks or one gleam of + emotion to those abstracted eyes. I thought of what the rascal had + said about a post-hypnotic influence. One could really believe that + she was living above the earth in some ecstatic dream. Yet there was + nothing indefinite in her replies. + + "'I have listened to you with patience, Mr. Holmes,' said she. 'The + effect upon my mind is exactly as predicted. I am aware that + Adelbert, that my fiancé, has had a stormy life in which he has + incurred bitter hatreds and most unjust aspersions. You are only the + last of a series who have brought their slanders before me. Possibly + you mean well, though I learn that you are a paid agent who would + have been equally willing to act for the Baron as against him. But in + any case I wish you to understand once for all that I love him and + that he loves me, and that the opinion of all the world is no more to + me than the twitter of those birds outside the window. If his noble + nature has ever for an instant fallen, it may be that I have been + specially sent to raise it to its true and lofty level. I am not + clear'--here she turned eyes upon my companion--'who this young lady + may be.' + + "I was about to answer when the girl broke in like a whirlwind. If + ever you saw flame and ice face to face, it was those two women. + + "'I'll tell you who I am,' she cried, springing out of her chair, her + mouth all twisted with passion--'I am his last mistress. I am one of + a hundred that he has tempted and used and ruined and thrown into the + refuse heap, as he will you also. Your refuse heap is more likely to + be a grave, and maybe that's the best. I tell you, you foolish woman, + if you marry this man he'll be the death of you. It may be a broken + heart or it may be a broken neck, but he'll have you one way or the + other. It's not out of love for you I'm speaking. I don't care a + tinker's curse whether you live or die. It's out of hate for him and + to spite him and to get back on him for what he did to me. But it's + all the same, and you needn't look at me like that, my fine lady, for + you may be lower than I am before you are through with it.' + + "'I should prefer not to discuss such matters,' said Miss de Merville + coldly. 'Let me say once for all that I am aware of three passages in + my fiancé's life in which he became entangled with designing women, + and that I am assured of his hearty repentance for any evil that he + may have done.' + + "'Three passages!' screamed my companion. 'You fool! You unutterable + fool!' + + "'Mr. Holmes, I beg that you will bring this interview to an end,' + said the icy voice. 'I have obeyed my father's wish in seeing you, + but I am not compelled to listen to the ravings of this person.' + + "With an oath Miss Winter darted forward, and if I had not caught her + wrist she would have clutched this maddening woman by the hair. I + dragged her towards the door and was lucky to get her back into the + cab without a public scene, for she was beside herself with rage. In + a cold way I felt pretty furious myself, Watson, for there was + something indescribably annoying in the calm aloofness and supreme + self-complaisance of the woman whom we were trying to save. So now + once again you know exactly how we stand, and it is clear that I must + plan some fresh opening move, for this gambit won't work. I'll keep + in touch with you, Watson, for it is more than likely that you will + have your part to play, though it is just possible that the next move + may lie with them rather than with us." + + And it did. Their blow fell--or his blow rather, for never could I + believe that the lady was privy to it. I think I could show you the + very paving-stone upon which I stood when my eyes fell upon the + placard, and a pang of horror passed through my very soul. It was + between the Grand Hotel and Charing Cross Station, where a one-legged + news-vender displayed his evening papers. The date was just two days + after the last conversation. There, black upon yellow, was the + terrible news-sheet: + + Murderous Attack Upon Sherlock Holmes + + I think I stood stunned for some moments. Then I have a confused + recollection of snatching at a paper, of the remonstrance of the man, + whom I had not paid, and, finally, of standing in the doorway of a + chemist's shop while I turned up the fateful paragraph. This was how + it ran: + + We learn with regret that Mr. Sherlock Holmes, the well-known private + detective, was the victim this morning of a murderous assault which + has left him in a precarious position. There are no exact details to + hand, but the event seems to have occurred about twelve o'clock in + Regent Street, outside the Cafe Royal. The attack was made by two men + armed with sticks, and Mr. Holmes was beaten about the head and body, + receiving injuries which the doctors describe as most serious. He was + carried to Charing Cross Hospital and afterwards insisted upon being + taken to his rooms in Baker Street. The miscreants who attacked him + appear to have been respectably dressed men, who escaped from the + bystanders by passing through the Cafe Royal and out into Glasshouse + Street behind it. No doubt they belonged to that criminal fraternity + which has so often had occasion to bewail the activity and ingenuity + of the injured man. + + I need not say that my eyes had hardly glanced over the paragraph + before I had sprung into a hansom and was on my way to Baker Street. + I found Sir Leslie Oakshott, the famous surgeon, in the hall and his + brougham waiting at the curb. + + "No immediate danger," was his report. "Two lacerated scalp wounds + and some considerable bruises. Several stitches have been necessary. + Morphine has been injected and quiet is essential, but an interview + of a few minutes would not be absolutely forbidden." + + With this permission I stole into the darkened room. The sufferer was + wide awake, and I heard my name in a hoarse whisper. The blind was + three-quarters down, but one ray of sunlight slanted through and + struck the bandaged head of the injured man. A crimson patch had + soaked through the white linen compress. I sat beside him and bent my + head. + + "All right, Watson. Don't look so scared," he muttered in a very weak + voice. "It's not as bad as it seems." + + "Thank God for that!" + + "I'm a bit of a single-stick expert, as you know. I took most of them + on my guard. It was the second man that was too much for me." + + "What can I do, Holmes? Of course, it was that damned fellow who set + them on. I'll go and thrash the hide off him if you give the word." + + "Good old Watson! No, we can do nothing there unless the police lay + their hands on the men. But their get-away had been well prepared. We + may be sure of that. Wait a little. I have my plans. The first thing + is to exaggerate my injuries. They'll come to you for news. Put it on + thick, Watson. Lucky if I live the week + out--concussion--delirium--what you like! You can't overdo it." + + "But Sir Leslie Oakshott?" + + "Oh, he's all right. He shall see the worst side of me. I'll look + after that." + + "Anything else?" + + "Yes. Tell Shinwell Johnson to get that girl out of the way. Those + beauties will be after her now. They know, of course, that she was + with me in the case. If they dared to do me in it is not likely they + will neglect her. That is urgent. Do it to-night." + + "I'll go now. Anything more?" + + "Put my pipe on the table--and the tobacco-slipper. Right! Come in + each morning and we will plan our campaign." + + I arranged with Johnson that evening to take Miss Winter to a quiet + suburb and see that she lay low until the danger was past. + + For six days the public were under the impression that Holmes was at + the door of death. The bulletins were very grave and there were + sinister paragraphs in the papers. My continual visits assured me + that it was not so bad as that. His wiry constitution and his + determined will were working wonders. He was recovering fast, and I + had suspicions at times that he was really finding himself faster + than he pretended even to me. There was a curious secretive streak in + the man which led to many dramatic effects, but left even his closest + friend guessing as to what his exact plans might be. He pushed to an + extreme the axiom that the only safe plotter was he who plotted + alone. I was nearer him than anyone else, and yet I was always + conscious of the gap between. + + On the seventh day the stitches were taken out, in spite of which + there was a report of erysipelas in the evening papers. The same + evening papers had an announcement which I was bound, sick or well, + to carry to my friend. It was simply that among the passengers on the + Cunard boat Ruritania, starting from Liverpool on Friday, was the + Baron Adelbert Gruner, who had some important financial business to + settle in the States before his impending wedding to Miss Violet de + Merville, only daughter of, etc., etc. Holmes listened to the news + with a cold, concentrated look upon his pale face, which told me that + it hit him hard. + + "Friday!" he cried. "Only three clear days. I believe the rascal + wants to put himself out of danger's way. But he won't, Watson! By + the Lord Harry, he won't! Now, Watson, I want you to do something for + me." + + "I am here to be used, Holmes." + + "Well, then, spend the next twenty-four hours in an intensive study + of Chinese pottery." + + He gave no explanations and I asked for none. By long experience I + had learned the wisdom of obedience. But when I had left his room I + walked down Baker Street, revolving in my head how on earth I was to + carry out so strange an order. Finally I drove to the London Library + in St. James's Square, put the matter to my friend Lomax, the + sublibrarian, and departed to my rooms with a goodly volume under my + arm. + + It is said that the barrister who crams up a case with such care that + he can examine an expert witness upon the Monday has forgotten all + his forced knowledge before the Saturday. Certainly I should not like + now to pose as an authority upon ceramics. And yet all that evening, + and all that night with a short interval for rest, and all next + morning, I was sucking in knowledge and committing names to memory. + There I learned of the hall-marks of the great artist-decorators, of + the mystery of cyclical dates, the marks of the Hung-wu and the + beauties of the Yung-lo, the writings of Tang-ying, and the glories + of the primitive period of the Sung and the Yuan. I was charged with + all this information when I called upon Holmes next evening. He was + out of bed now, though you would not have guessed it from the + published reports, and he sat with his much-bandaged head resting + upon his hand in the depth of his favourite armchair. + + "Why, Holmes," I said, "if one believed the papers, you are dying." + + "That," said he, "is the very impression which I intended to convey. + And now, Watson, have you learned your lessons?" + + "At least I have tried to." + + "Good. You could keep up an intelligent conversation on the subject?" + + "I believe I could." + + "Then hand me that little box from the mantelpiece." + + He opened the lid and took out a small object most carefully wrapped + in some fine Eastern silk. This he unfolded, and disclosed a delicate + little saucer of the most beautiful deep-blue colour. + + "It needs careful handling, Watson. This is the real egg-shell + pottery of the Ming dynasty. No finer piece ever passed through + Christie's. A complete set of this would be worth a king's ransom--in + fact, it is doubtful if there is a complete set outside the imperial + palace of Peking. The sight of this would drive a real connoisseur + wild." + + "What am I to do with it?" + + Holmes handed me a card upon which was printed: "Dr. Hill Barton, 369 + Half Moon Street." + + "That is your name for the evening, Watson. You will call upon Baron + Gruner. I know something of his habits, and at half-past eight he + would probably be disengaged. A note will tell him in advance that + you are about to call, and you will say that you are bringing him a + specimen of an absolutely unique set of Ming china. You may as well + be a medical man, since that is a part which you can play without + duplicity. You are a collector, this set has come your way, you have + heard of the Baron's interest in the subject, and you are not averse + to selling at a price." + + "What price?" + + "Well asked, Watson. You would certainly fall down badly if you did + not know the value of your own wares. This saucer was got for me by + Sir James, and comes, I understand, from the collection of his + client. You will not exaggerate if you say that it could hardly be + matched in the world." + + "I could perhaps suggest that the set should be valued by an expert." + + "Excellent, Watson! You scintillate to-day. Suggest Christie or + Sotheby. Your delicacy prevents your putting a price for yourself." + + "But if he won't see me?" + + "Oh, yes, he will see you. He has the collection mania in its most + acute form--and especially on this subject, on which he is an + acknowledged authority. Sit down, Watson, and I will dictate the + letter. No answer needed. You will merely say that you are coming, + and why." + + It was an admirable document, short, courteous, and stimulating to + the curiosity of the connoisseur. A district messenger was duly + dispatched with it. On the same evening, with the precious saucer in + my hand and the card of Dr. Hill Barton in my pocket, I set off on my + own adventure. + + The beautiful house and grounds indicated that Baron Gruner was, as + Sir James had said, a man of considerable wealth. A long winding + drive, with banks of rare shrubs on either side, opened out into a + great gravelled square adorned with statues. The place had been built + by a South African gold king in the days of the great boom, and the + long, low house with the turrets at the corners, though an + architectural nightmare, was imposing in its size and solidity. A + butler, who would have adorned a bench of bishops, showed me in and + handed me over to a plush-clad footman, who ushered me into the + Baron's presence. + + He was standing at the open front of a great case which stood between + the windows and which contained part of his Chinese collection. He + turned as I entered with a small brown vase in his hand. + + "Pray sit down, Doctor," said he. "I was looking over my own + treasures and wondering whether I could really afford to add to them. + This little Tang specimen, which dates from the seventh century, + would probably interest you. I am sure you never saw finer + workmanship or a richer glaze. Have you the Ming saucer with you of + which you spoke?" + + I carefully unpacked it and handed it to him. He seated himself at + his desk, pulled over the lamp, for it was growing dark, and set + himself to examine it. As he did so the yellow light beat upon his + own features, and I was able to study them at my ease. + + He was certainly a remarkably handsome man. His European reputation + for beauty was fully deserved. In figure he was not more than of + middle size, but was built upon graceful and active lines. His face + was swarthy, almost Oriental, with large, dark, languorous eyes which + might easily hold an irresistible fascination for women. His hair and + moustache were raven black, the latter short, pointed, and carefully + waxed. His features were regular and pleasing, save only his + straight, thin-lipped mouth. If ever I saw a murderer's mouth it was + there--a cruel, hard gash in the face, compressed, inexorable, and + terrible. He was ill-advised to train his moustache away from it, for + it was Nature's danger-signal, set as a warning to his victims. His + voice was engaging and his manners perfect. In age I should have put + him at little over thirty, though his record afterwards showed that + he was forty-two. + + "Very fine--very fine indeed!" he said at last. "And you say you have + a set of six to correspond. What puzzles me is that I should not have + heard of such magnificent specimens. I only know of one in England to + match this, and it is certainly not likely to be in the market. Would + it be indiscreet if I were to ask you, Dr. Hill Barton, how you + obtained this?" + + "Does it really matter?" I asked with as careless an air as I could + muster. "You can see that the piece is genuine, and, as to the value, + I am content to take an expert's valuation." + + "Very mysterious," said he with a quick, suspicious flash of his dark + eyes. "In dealing with objects of such value, one naturally wishes to + know all about the transaction. That the piece is genuine is certain. + I have no doubts at all about that. But suppose--I am bound to take + every possibility into account--that it should prove afterwards that + you had no right to sell?" + + "I would guarantee you against any claim of the sort." + + "That, of course, would open up the question as to what your + guarantee was worth." + + "My bankers would answer that." + + "Quite so. And yet the whole transaction strikes me as rather + unusual." + + "You can do business or not," said I with indifference. "I have given + you the first offer as I understood that you were a connoisseur, but + I shall have no difficulty in other quarters." + + "Who told you I was a connoisseur?" + + "I was aware that you had written a book upon the subject." + + "Have you read the book?" + + "No." + + "Dear me, this becomes more and more difficult for me to understand! + You are a connoisseur and collector with a very valuable piece in + your collection, and yet you have never troubled to consult the one + book which would have told you of the real meaning and value of what + you held. How do you explain that?" + + "I am a very busy man. I am a doctor in practice." + + "That is no answer. If a man has a hobby he follows it up, whatever + his other pursuits may be. You said in your note that you were a + connoisseur." + + "So I am." + + "Might I ask you a few questions to test you? I am obliged to tell + you, Doctor--if you are indeed a doctor--that the incident becomes + more and more suspicious. I would ask you what do you know of the + Emperor Shomu and how do you associate him with the Shoso-in near + Nara? Dear me, does that puzzle you? Tell me a little about the + Northern Wei dynasty and its place in the history of ceramics." + + I sprang from my chair in simulated anger. + + "This is intolerable, sir," said I. "I came here to do you a favour, + and not to be examined as if I were a schoolboy. My knowledge on + these subjects may be second only to your own, but I certainly shall + not answer questions which have been put in so offensive a way." + + He looked at me steadily. The languor had gone from his eyes. They + suddenly glared. There was a gleam of teeth from between those cruel + lips. + + "What is the game? You are here as a spy. You are an emissary of + Holmes. This is a trick that you are playing upon me. The fellow is + dying I hear, so he sends his tools to keep watch upon me. You've + made your way in here without leave, and, by God! you may find it + harder to get out than to get in." + + He had sprung to his feet, and I stepped back, bracing myself for an + attack, for the man was beside himself with rage. He may have + suspected me from the first; certainly this cross-examination had + shown him the truth; but it was clear that I could not hope to + deceive him. He dived his hand into a side-drawer and rummaged + furiously. Then something struck upon his ear, for he stood listening + intently. + + "Ah!" he cried. "Ah!" and dashed into the room behind him. + + Two steps took me to the open door, and my mind will ever carry a + clear picture of the scene within. The window leading out to the + garden was wide open. Beside it, looking like some terrible ghost, + his head girt with bloody bandages, his face drawn and white, stood + Sherlock Holmes. The next instant he was through the gap, and I heard + the crash of his body among the laurel bushes outside. With a howl of + rage the master of the house rushed after him to the open window. + + And then! It was done in an instant, and yet I clearly saw it. An + arm--a woman's arm--shot out from among the leaves. At the same + instant the Baron uttered a horrible cry--a yell which will always + ring in my memory. He clapped his two hands to his face and rushed + round the room, beating his head horribly against the walls. Then he + fell upon the carpet, rolling and writhing, while scream after scream + resounded through the house. + + "Water! For God's sake, water!" was his cry. + + I seized a carafe from a side-table and rushed to his aid. At the + same moment the butler and several footmen ran in from the hall. I + remember that one of them fainted as I knelt by the injured man and + turned that awful face to the light of the lamp. The vitriol was + eating into it everywhere and dripping from the ears and the chin. + One eye was already white and glazed. The other was red and inflamed. + The features which I had admired a few minutes before were now like + some beautiful painting over which the artist has passed a wet and + foul sponge. They were blurred, discoloured, inhuman, terrible. + + In a few words I explained exactly what had occurred, so far as the + vitriol attack was concerned. Some had climbed through the window and + others had rushed out on to the lawn, but it was dark and it had + begun to rain. Between his screams the victim raged and raved against + the avenger. "It was that hell-cat, Kitty Winter!" he cried. "Oh, the + she-devil! She shall pay for it! She shall pay! Oh, God in heaven, + this pain is more than I can bear!" + + I bathed his face in oil, put cotton wadding on the raw surfaces, and + administered a hypodermic of morphia. All suspicion of me had passed + from his mind in the presence of this shock, and he clung to my hands + as if I might have the power even yet to clear those dead-fish eyes + which gazed up at me. I could have wept over the ruin had I not + remembered very clearly the vile life which had led up to so hideous + a change. It was loathsome to feel the pawing of his burning hands, + and I was relieved when his family surgeon, closely followed by a + specialist, came to relieve me of my charge. An inspector of police + had also arrived, and to him I handed my real card. It would have + been useless as well as foolish to do otherwise, for I was nearly as + well known by sight at the Yard as Holmes himself. Then I left that + house of gloom and terror. Within an hour I was at Baker Street. + + Holmes was seated in his familiar chair, looking very pale and + exhausted. Apart from his injuries, even his iron nerves had been + shocked by the events of the evening, and he listened with horror to + my account of the Baron's transformation. + + "The wages of sin, Watson--the wages of sin!" said he. "Sooner or + later it will always come. God knows, there was sin enough," he + added, taking up a brown volume from the table. "Here is the book the + woman talked of. If this will not break off the marriage, nothing + ever could. But it will, Watson. It must. No self-respecting woman + could stand it." + + "It is his love diary?" + + "Or his lust diary. Call it what you will. The moment the woman told + us of it I realized what a tremendous weapon was there if we could + but lay our hands on it. I said nothing at the time to indicate my + thoughts, for this woman might have given it away. But I brooded over + it. Then this assault upon me gave me the chance of letting the Baron + think that no precautions need be taken against me. That was all to + the good. I would have waited a little longer, but his visit to + America forced my hand. He would never have left so compromising a + document behind him. Therefore we had to act at once. Burglary at + night is impossible. He takes precautions. But there was a chance in + the evening if I could only be sure that his attention was engaged. + That was where you and your blue saucer came in. But I had to be sure + of the position of the book, and I knew I had only a few minutes in + which to act, for my time was limited by your knowledge of Chinese + pottery. Therefore I gathered the girl up at the last moment. How + could I guess what the little packet was that she carried so + carefully under her cloak? I thought she had come altogether on my + business, but it seems she had some of her own." + + "He guessed I came from you." + + "I feared he would. But you held him in play just long enough for me + to get the book, though not long enough for an unobserved escape. Ah, + Sir James, I am very glad you have come!" + + Our courtly friend had appeared in answer to a previous summons. He + listened with the deepest attention to Holmes's account of what had + occurred. + + "You have done wonders--wonders!" he cried when he had heard the + narrative. "But if these injuries are as terrible as Dr. Watson + describes, then surely our purpose of thwarting the marriage is + sufficiently gained without the use of this horrible book." + + Holmes shook his head. + + "Women of the De Merville type do not act like that. She would love + him the more as a disfigured martyr. No, no. It is his moral side, + not his physical, which we have to destroy. That book will bring her + back to earth--and I know nothing else that could. It is in his own + writing. She cannot get past it." + + Sir James carried away both it and the precious saucer. As I was + myself overdue, I went down with him into the street. A brougham was + waiting for him. He sprang in, gave a hurried order to the cockaded + coachman, and drove swiftly away. He flung his overcoat half out of + the window to cover the armorial bearings upon the panel, but I had + seen them in the glare of our fanlight none the less. I gasped with + surprise. Then I turned back and ascended the stair to Holmes's room. + + "I have found out who our client is," I cried, bursting with my great + news. "Why, Holmes, it is--" + + "It is a loyal friend and a chivalrous gentleman," said Holmes, + holding up a restraining hand. "Let that now and forever be enough + for us." + + I do not know how the incriminating book was used. Sir James may have + managed it. Or it is more probable that so delicate a task was + entrusted to the young lady's father. The effect, at any rate, was + all that could be desired. Three days later appeared a paragraph in + the Morning Post to say that the marriage between Baron Adelbert + Gruner and Miss Violet de Merville would not take place. The same + paper had the first police-court hearing of the proceedings against + Miss Kitty Winter on the grave charge of vitriol-throwing. Such + extenuating circumstances came out in the trial that the sentence, as + will be remembered, was the lowest that was possible for such an + offence. Sherlock Holmes was threatened with a prosecution for + burglary, but when an object is good and a client is sufficiently + illustrious, even the rigid British law becomes human and elastic. My + friend has not yet stood in the dock. + + + + + + + THE BLANCHED SOLDIER + + The ideas of my friend Watson, though limited, are exceedingly + pertinacious. For a long time he has worried me to write an + experience of my own. Perhaps I have rather invited this persecution, + since I have often had occasion to point out to him how superficial + are his own accounts and to accuse him of pandering to popular taste + instead of confining himself rigidly to facts and figures. "Try it + yourself, Holmes!" he has retorted, and I am compelled to admit that, + having taken my pen in my hand, I do begin to realize that the matter + must be presented in such a way as may interest the reader. The + following case can hardly fail to do so, as it is among the strangest + happenings in my collection, though it chanced that Watson had no + note of it in his collection. Speaking of my old friend and + biographer, I would take this opportunity to remark that if I burden + myself with a companion in my various little inquiries it is not done + out of sentiment or caprice, but it is that Watson has some + remarkable characteristics of his own to which in his modesty he has + given small attention amid his exaggerated estimates of my own + performances. A confederate who foresees your conclusions and course + of action is always dangerous, but one to whom each development comes + as a perpetual surprise, and to whom the future is always a closed + book, is indeed an ideal helpmate. + + I find from my notebook that it was in January, 1903, just after the + conclusion of the Boer War, that I had my visit from Mr. James M. + Dodd, a big, fresh, sunburned, upstanding Briton. The good Watson had + at that time deserted me for a wife, the only selfish action which I + can recall in our association. I was alone. + + It is my habit to sit with my back to the window and to place my + visitors in the opposite chair, where the light falls full upon them. + Mr. James M. Dodd seemed somewhat at a loss how to begin the + interview. I did not attempt to help him, for his silence gave me + more time for observation. I have found it wise to impress clients + with a sense of power, and so I gave him some of my conclusions. + + "From South Africa, sir, I perceive." + + "Yes, sir," he answered, with some surprise. + + "Imperial Yeomanry, I fancy." + + "Exactly." + + "Middlesex Corps, no doubt." + + "That is so. Mr. Holmes, you are a wizard." + + I smiled at his bewildered expression. + + "When a gentleman of virile appearance enters my room with such tan + upon his face as an English sun could never give, and with his + handkerchief in his sleeve instead of in his pocket, it is not + difficult to place him. You wear a short beard, which shows that you + were not a regular. You have the cut of a riding-man. As to + Middlesex, your card has already shown me that you are a stockbroker + from Throgmorton Street. What other regiment would you join?" + + "You see everything." + + "I see no more than you, but I have trained myself to notice what I + see. However, Mr. Dodd, it was not to discuss the science of + observation that you called upon me this morning. What has been + happening at Tuxbury Old Park?" + + "Mr. Holmes--!" + + "My dear sir, there is no mystery. Your letter came with that + heading, and as you fixed this appointment in very pressing terms it + was clear that something sudden and important had occurred." + + "Yes, indeed. But the letter was written in the afternoon, and a good + deal has happened since then. If Colonel Emsworth had not kicked me + out--" + + "Kicked you out!" + + "Well, that was what it amounted to. He is a hard nail, is Colonel + Emsworth. The greatest martinet in the Army in his day, and it was a + day of rough language, too. I couldn't have stuck the colonel if it + had not been for Godfrey's sake." + + I lit my pipe and leaned back in my chair. + + "Perhaps you will explain what you are talking about." + + My client grinned mischievously. + + "I had got into the way of supposing that you knew everything without + being told," said he. "But I will give you the facts, and I hope to + God that you will be able to tell me what they mean. I've been awake + all night puzzling my brain, and the more I think the more incredible + does it become. + + "When I joined up in January, 1901--just two years ago--young Godfrey + Emsworth had joined the same squadron. He was Colonel Emsworth's only + son--Emsworth, the Crimean V. C.--and he had the fighting blood in + him, so it is no wonder he volunteered. There was not a finer lad in + the regiment. We formed a friendship--the sort of friendship which + can only be made when one lives the same life and shares the same + joys and sorrows. He was my mate--and that means a good deal in the + Army. We took the rough and the smooth together for a year of hard + fighting. Then he was hit with a bullet from an elephant gun in the + action near Diamond Hill outside Pretoria. I got one letter from the + hospital at Cape Town and one from Southampton. Since then not a + word--not one word, Mr. Holmes, for six months and more, and he my + closest pal. + + "Well, when the war was over, and we all got back, I wrote to his + father and asked where Godfrey was. No answer. I waited a bit and + then I wrote again. This time I had a reply, short and gruff. Godfrey + had gone on a voyage round the world, and it was not likely that he + would be back for a year. That was all. + + "I wasn't satisfied, Mr. Holmes. The whole thing seemed to me so + damned unnatural. He was a good lad, and he would not drop a pal like + that. It was not like him. Then, again, I happened to know that he + was heir to a lot of money, and also that his father and he did not + always hit it off too well. The old man was sometimes a bully, and + young Godfrey had too much spirit to stand it. No, I wasn't + satisfied, and I determined that I would get to the root of the + matter. It happened, however, that my own affairs needed a lot of + straightening out, after two years' absence, and so it is only this + week that I have been able to take up Godfrey's case again. But since + I have taken it up I mean to drop everything in order to see it + through." + + Mr. James M. Dodd appeared to be the sort of person whom it would be + better to have as a friend than as an enemy. His blue eyes were stern + and his square jaw had set hard as he spoke. + + "Well, what have you done?" I asked. + + "My first move was to get down to his home, Tuxbury Old Park, near + Bedford, and to see for myself how the ground lay. I wrote to the + mother, therefore--I had had quite enough of the curmudgeon of a + father--and I made a clean frontal attack: Godfrey was my chum, I had + a great deal of interest which I might tell her of our common + experiences, I should be in the neighbourhood, would there be any + objection, et cetera? In reply I had quite an amiable answer from her + and an offer to put me up for the night. That was what took me down + on Monday. + + "Tuxbury Old Hall is inaccessible--five miles from anywhere. There + was no trap at the station, so I had to walk, carrying my suitcase, + and it was nearly dark before I arrived. It is a great wandering + house, standing in a considerable park. I should judge it was of all + sorts of ages and styles, starting on a half-timbered Elizabethan + foundation and ending in a Victorian portico. Inside it was all + panelling and tapestry and half-effaced old pictures, a house of + shadows and mystery. There was a butler, old Ralph, who seemed about + the same age as the house, and there was his wife, who might have + been older. She had been Godfrey's nurse, and I had heard him speak + of her as second only to his mother in his affections, so I was drawn + to her in spite of her queer appearance. The mother I liked also--a + gentle little white mouse of a woman. It was only the colonel himself + whom I barred. + + "We had a bit of barney right away, and I should have walked back to + the station if I had not felt that it might be playing his game for + me to do so. I was shown straight into his study, and there I found + him, a huge, bow-backed man with a smoky skin and a straggling gray + beard, seated behind his littered desk. A red-veined nose jutted out + like a vulture's beak, and two fierce gray eyes glared at me from + under tufted brows. I could understand now why Godfrey seldom spoke + of his father. + + "'Well, sir,' said he in a rasping voice, 'I should be interested to + know the real reasons for this visit.' + + "I answered that I had explained them in my letter to his wife. + + "'Yes, yes, you said that you had known Godfrey in Africa. We have, + of course, only your word for that.' + + "'I have his letters to me in my pocket.' + + "'Kindly let me see them.' + + "He glanced at the two which I handed him, and then he tossed them + back. + + "'Well, what then?' he asked. + + "'I was fond of your son Godfrey, sir. Many ties and memories united + us. Is it not natural that I should wonder at his sudden silence and + should wish to know what has become of him?' + + "'I have some recollections, sir, that I had already corresponded + with you and had told you what had become of him. He has gone upon a + voyage round the world. His health was in a poor way after his + African experiences, and both his mother and I were of opinion that + complete rest and change were needed. Kindly pass that explanation on + to any other friends who may be interested in the matter.' + + "'Certainly,' I answered. 'But perhaps you would have the goodness to + let me have the name of the steamer and of the line by which he + sailed, together with the date. I have no doubt that I should be able + to get a letter through to him.' + + "My request seemed both to puzzle and to irritate my host. His great + eyebrows came down over his eyes, and he tapped his fingers + impatiently on the table. He looked up at last with the expression of + one who has seen his adversary make a dangerous move at chess, and + has decided how to meet it. + + "'Many people, Mr. Dodd,' said he, 'would take offence at your + infernal pertinacity and would think that this insistence had reached + the point of damned impertinence.' + + "'You must put it down, sir, to my real love for your son.' + + "'Exactly. I have already made every allowance upon that score. I + must ask you, however, to drop these inquiries. Every family has its + own inner knowledge and its own motives, which cannot always be made + clear to outsiders, however well-intentioned. My wife is anxious to + hear something of Godfrey's past which you are in a position to tell + her, but I would ask you to let the present and the future alone. + Such inquiries serve no useful purpose, sir, and place us in a + delicate and difficult position.' + + "So I came to a dead end, Mr. Holmes. There was no getting past it. I + could only pretend to accept the situation and register a vow + inwardly that I would never rest until my friend's fate had been + cleared up. It was a dull evening. We dined quietly, the three of us, + in a gloomy, faded old room. The lady questioned me eagerly about her + son, but the old man seemed morose and depressed. I was so bored by + the whole proceeding that I made an excuse as soon as I decently + could and retired to my bedroom. It was a large, bare room on the + ground floor, as gloomy as the rest of the house, but after a year of + sleeping upon the veldt, Mr. Holmes, one is not too particular about + one's quarters. I opened the curtains and looked out into the garden, + remarking that it was a fine night with a bright half-moon. Then I + sat down by the roaring fire with the lamp on a table beside me, and + endeavoured to distract my mind with a novel. I was interrupted, + however, by Ralph, the old butler, who came in with a fresh supply of + coals. + + "'I thought you might run short in the night-time, sir. It is bitter + weather and these rooms are cold.' + + "He hesitated before leaving the room, and when I looked round he was + standing facing me with a wistful look upon his wrinkled face. + + "'Beg your pardon, sir, but I could not help hearing what you said of + young Master Godfrey at dinner. You know, sir, that my wife nursed + him, and so I may say I am his foster-father. It's natural we should + take an interest. And you say he carried himself well, sir?' + + "'There was no braver man in the regiment. He pulled me out once from + under the rifles of the Boers, or maybe I should not be here.' + + "The old butler rubbed his skinny hands. + + "'Yes, sir, yes, that is Master Godfrey all over. He was always + courageous. There's not a tree in the park, sir, that he has not + climbed. Nothing would stop him. He was a fine boy--and oh, sir, he + was a fine man.' + + "I sprang to my feet. + + "'Look here!' I cried. 'You say he was. You speak as if he were dead. + What is all this mystery? What has become of Godfrey Emsworth?' + + "I gripped the old man by the shoulder, but he shrank away. + + "'I don't know what you mean, sir. Ask the master about Master + Godfrey. He knows. It is not for me to interfere.' + + "He was leaving the room, but I held his arm. + + "'Listen,' I said. 'You are going to answer one question before you + leave if I have to hold you all night. Is Godfrey dead?' + + "He could not face my eyes. He was like a man hypnotized. The answer + was dragged from his lips. It was a terrible and unexpected one. + + "'I wish to God he was!' he cried, and, tearing himself free, he + dashed from the room. + + "You will think, Mr. Holmes, that I returned to my chair in no very + happy state of mind. The old man's words seemed to me to bear only + one interpretation. Clearly my poor friend had become involved in + some criminal or, at the least, disreputable transaction which + touched the family honour. That stern old man had sent his son away + and hidden him from the world lest some scandal should come to light. + Godfrey was a reckless fellow. He was easily influenced by those + around him. No doubt he had fallen into bad hands and been misled to + his ruin. It was a piteous business, if it was indeed so, but even + now it was my duty to hunt him out and see if I could aid him. I was + anxiously pondering the matter when I looked up, and there was + Godfrey Emsworth standing before me." + + My client had paused as one in deep emotion. + + "Pray continue," I said. "Your problem presents some very unusual + features." + + "He was outside the window, Mr. Holmes, with his face pressed against + the glass. I have told you that I looked out at the night. When I did + so I left the curtains partly open. His figure was framed in this + gap. The window came down to the ground and I could see the whole + length of it, but it was his face which held my gaze. He was deadly + pale--never have I seen a man so white. I reckon ghosts may look like + that; but his eyes met mine, and they were the eyes of a living man. + He sprang back when he saw that I was looking at him, and he vanished + into the darkness. + + "There was something shocking about the man, Mr. Holmes. It wasn't + merely that ghastly face glimmering as white as cheese in the + darkness. It was more subtle than that--something slinking, something + furtive, something guilty-- something very unlike the frank, manly + lad that I had known. It left a feeling of horror in my mind. + + "But when a man has been soldiering for a year or two with brother + Boer as a playmate, he keeps his nerve and acts quickly. Godfrey had + hardly vanished before I was at the window. There was an awkward + catch, and I was some little time before I could throw it up. Then I + nipped through and ran down the garden path in the direction that I + thought he might have taken. + + "It was a long path and the light was not very good, but it seemed to + me something was moving ahead of me. I ran on and called his name, + but it was no use. When I got to the end of the path there were + several others branching in different directions to various + outhouses. I stood hesitating, and as I did so I heard distinctly the + sound of a closing door. It was not behind me in the house, but ahead + of me, somewhere in the darkness. That was enough, Mr. Holmes, to + assure me that what I had seen was not a vision. Godfrey had run away + from me, and he had shut a door behind him. Of that I was certain. + + "There was nothing more I could do, and I spent an uneasy night + turning the matter over in my mind and trying to find some theory + which would cover the facts. Next day I found the colonel rather more + conciliatory, and as his wife remarked that there were some places of + interest in the neighbourhood, it gave me an opening to ask whether + my presence for one more night would incommode them. A somewhat + grudging acquiescence from the old man gave me a clear day in which + to make my observations. I was already perfectly convinced that + Godfrey was in hiding somewhere near, but where and why remained to + be solved. + + "The house was so large and so rambling that a regiment might be hid + away in it and no one the wiser. If the secret lay there it was + difficult for me to penetrate it. But the door which I had heard + close was certainly not in the house. I must explore the garden and + see what I could find. There was no difficulty in the way, for the + old people were busy in their own fashion and left me to my own + devices. + + "There were several small outhouses, but at the end of the garden + there was a detached building of some size--large enough for a + gardener's or a gamekeeper's residence. Could this be the place + whence the sound of that shutting door had come? I approached it in a + careless fashion as though I were strolling aimlessly round the + grounds. As I did so, a small, brisk, bearded man in a black coat and + bowler hat--not at all the gardener type--came out of the door. To my + surprise, he locked it after him and put the key in his pocket. Then + he looked at me with some surprise on his face. + + "'Are you a visitor here?' he asked. + + "I explained that I was and that I was a friend of Godfrey's. + + "'What a pity that he should be away on his travels, for he would + have so liked to see me,' I continued. + + "'Quite so. Exactly,' said he with a rather guilty air. 'No doubt you + will renew your visit at some more propitious time.' He passed on, + but when I turned I observed that he was standing watching me, + half-concealed by the laurels at the far end of the garden. + + "I had a good look at the little house as I passed it, but the + windows were heavily curtained, and, so far as one could see, it was + empty. I might spoil my own game and even be ordered off the premises + if I were too audacious, for I was still conscious that I was being + watched. Therefore, I strolled back to the house and waited for night + before I went on with my inquiry. When all was dark and quiet I + slipped out of my window and made my way as silently as possible to + the mysterious lodge. + + "I have said that it was heavily curtained, but now I found that the + windows were shuttered as well. Some light, however, was breaking + through one of them, so I concentrated my attention upon this. I was + in luck, for the curtain had not been quite closed, and there was a + crack in the shutter, so that I could see the inside of the room. It + was a cheery place enough, a bright lamp and a blazing fire. Opposite + to me was seated the little man whom I had seen in the morning. He + was smoking a pipe and reading a paper." + + "What paper?" I asked. + + My client seemed annoyed at the interruption of his narrative. + + "Can it matter?" he asked. + + "It is most essential." + + "I really took no notice." + + "Possibly you observed whether it was a broad-leafed paper or of that + smaller type which one associates with weeklies." + + "Now that you mention it, it was not large. It might have been the + Spectator. However, I had little thought to spare upon such details, + for a second man was seated with his back to the window, and I could + swear that this second man was Godfrey. I could not see his face, but + I knew the familiar slope of his shoulders. He was leaning upon his + elbow in an attitude of great melancholy, his body turned towards the + fire. I was hesitating as to what I should do when there was a sharp + tap on my shoulder, and there was Colonel Emsworth beside me. + + "'This way, sir!' said he in a low voice. He walked in silence to the + house, and I followed him into my own bedroom. He had picked up a + time-table in the hall. + + "'There is a train to London at 8.30,' said he. 'The trap will be at + the door at eight.' + + "He was white with rage, and, indeed, I felt myself in so difficult a + position that I could only stammer out a few incoherent apologies in + which I tried to excuse myself by urging my anxiety for my friend. + + "'The matter will not bear discussion,' said he abruptly. 'You have + made a most damnable intrusion into the privacy of our family. You + were here as a guest and you have become a spy. I have nothing more + to say, sir, save that I have no wish ever to see you again.' + + "At this I lost my temper, Mr. Holmes, and I spoke with some warmth. + + "'I have seen your son, and I am convinced that for some reason of + your own you are concealing him from the world. I have no idea what + your motives are in cutting him off in this fashion, but I am sure + that he is no longer a free agent. I warn you, Colonel Emsworth, that + until I am assured as to the safety and well-being of my friend I + shall never desist in my efforts to get to the bottom of the mystery, + and I shall certainly not allow myself to be intimidated by anything + which you may say or do.' + + "The old fellow looked diabolical, and I really thought he was about + to attack me. I have said that he was a gaunt, fierce old giant, and + though I am no weakling I might have been hard put to it to hold my + own against him. However, after a long glare of rage he turned upon + his heel and walked out of the room. For my part, I took the + appointed train in the morning, with the full intention of coming + straight to you and asking for your advice and assistance at the + appointment for which I had already written." + + Such was the problem which my visitor laid before me. It presented, + as the astute reader will have already perceived, few difficulties in + its solution, for a very limited choice of alternatives must get to + the root of the matter. Still, elementary as it was, there were + points of interest and novelty about it which may excuse my placing + it upon record. I now proceeded, using my familiar method of logical + analysis, to narrow down the possible solutions. + + "The servants," I asked; "how many were in the house?" + + "To the best of my belief there were only the old butler and his + wife. They seemed to live in the simplest fashion." + + "There was no servant, then, in the detached house?" + + "None, unless the little man with the beard acted as such. He seemed, + however, to be quite a superior person." + + "That seems very suggestive. Had you any indication that food was + conveyed from the one house to the other?" + + "Now that you mention it, I did see old Ralph carrying a basket down + the garden walk and going in the direction of this house. The idea of + food did not occur to me at the moment." + + "Did you make any local inquiries?" + + "Yes, I did. I spoke to the station-master and also to the innkeeper + in the village. I simply asked if they knew anything of my old + comrade, Godfrey Emsworth. Both of them assured me that he had gone + for a voyage round the world. He had come home and then had almost at + once started off again. The story was evidently universally + accepted." + + "You said nothing of your suspicions?" + + "Nothing." + + "That was very wise. The matter should certainly be inquired into. I + will go back with you to Tuxbury Old Park." + + "To-day?" + + It happened that at the moment I was clearing up the case which my + friend Watson has described as that of the Abbey School, in which the + Duke of Greyminster was so deeply involved. I had also a commission + from the Sultan of Turkey which called for immediate action, as + political consequences of the gravest kind might arise from its + neglect. Therefore it was not until the beginning of the next week, + as my diary records, that I was able to start forth on my mission to + Bedfordshire in company with Mr. James M. Dodd. As we drove to Euston + we picked up a grave and taciturn gentleman of iron-gray aspect, with + whom I had made the necessary arrangements. + + "This is an old friend," said I to Dodd. "It is possible that his + presence may be entirely unnecessary, and, on the other hand, it may + be essential. It is not necessary at the present stage to go further + into the matter." + + The narratives of Watson have accustomed the reader, no doubt, to the + fact that I do not waste words or disclose my thoughts while a case + is actually under consideration. Dodd seemed surprised, but nothing + more was said, and the three of us continued our journey together. In + the train I asked Dodd one more question which I wished our companion + to hear. + + "You say that you saw your friend's face quite clearly at the window, + so clearly that you are sure of his identity?" + + "I have no doubt about it whatever. His nose was pressed against the + glass. The lamplight shone full upon him." + + "It could not have been someone resembling him?" + + "No, no, it was he." + + "But you say he was changed?" + + "Only in colour. His face was--how shall I describe it?--it was of a + fish-belly whiteness. It was bleached." + + "Was it equally pale all over?" + + "I think not. It was his brow which I saw so clearly as it was + pressed against the window." + + "Did you call to him?" + + "I was too startled and horrified for the moment. Then I pursued him, + as I have told you, but without result." + + My case was practically complete, and there was only one small + incident needed to round it off. When, after a considerable drive, we + arrived at the strange old rambling house which my client had + described, it was Ralph, the elderly butler, who opened the door. I + had requisitioned the carriage for the day and had asked my elderly + friend to remain within it unless we should summon him. Ralph, a + little wrinkled old fellow, was in the conventional costume of black + coat and pepper-and-salt trousers, with only one curious variant. He + wore brown leather gloves, which at sight of us he instantly shuffled + off, laying them down on the hall-table as we passed in. I have, as + my friend Watson may have remarked, an abnormally acute set of + senses, and a faint but incisive scent was apparent. It seemed to + centre on the hall-table. I turned, placed my hat there, knocked it + off, stooped to pick it up, and contrived to bring my nose within a + foot of the gloves. Yes, it was undoubtedly from them that the + curious tarry odour was oozing. I passed on into the study with my + case complete. Alas, that I should have to show my hand so when I + tell my own story! It was by concealing such links in the chain that + Watson was enabled to produce his meretricious finales. + + Colonel Emsworth was not in his room, but he came quickly enough on + receipt of Ralph's message. We heard his quick, heavy step in the + passage. The door was flung open and he rushed in with bristling + beard and twisted features, as terrible an old man as ever I have + seen. He held our cards in his hand, and he tore them up and stamped + on the fragments. + + "Have I not told you, you infernal busybody, that you are warned off + the premises? Never dare to show your damned face here again. If you + enter again without my leave I shall be within my rights if I use + violence. I'll shoot you, sir! By God, I will! As to you, sir," + turning upon me, "I extend the same warning to you. I am familiar + with your ignoble profession, but you must take your reputed talents + to some other field. There is no opening for them here." + + "I cannot leave here," said my client firmly, "until I hear from + Godfrey's own lips that he is under no restraint." + + Our involuntary host rang the bell. + + "Ralph," he said, "telephone down to the county police and ask the + inspector to send up two constables. Tell him there are burglars in + the house." + + "One moment," said I. "You must be aware, Mr. Dodd, that Colonel + Emsworth is within his rights and that we have no legal status within + his house. On the other hand, he should recognize that your action is + prompted entirely by solicitude for his son. I venture to hope that + if I were allowed to have five minutes' conversation with Colonel + Emsworth I could certainly alter his view of the matter." + + "I am not so easily altered," said the old soldier. "Ralph, do what I + have told you. What the devil are you waiting for? Ring up the + police!" + + "Nothing of the sort," I said, putting my back to the door. "Any + police interference would bring about the very catastrophe which you + dread." I took out my notebook and scribbled one word upon a loose + sheet. "That," said I as I handed it to Colonel Emsworth, "is what + has brought us here." + + He stared at the writing with a face from which every expression save + amazement had vanished. + + "How do you know?" he gasped, sitting down heavily in his chair. + + "It is my business to know things. That is my trade." + + He sat in deep thought, his gaunt hand tugging at his straggling + beard. Then he made a gesture of resignation. + + "Well, if you wish to see Godfrey, you shall. It is no doing of mine, + but you have forced my hand. Ralph, tell Mr. Godfrey and Mr. Kent + that in five minutes we shall be with them." + + At the end of that time we passed down the garden path and found + ourselves in front of the mystery house at the end. A small bearded + man stood at the door with a look of considerable astonishment upon + his face. + + "This is very sudden, Colonel Emsworth," said he. "This will + disarrange all our plans." + + "I can't help it, Mr. Kent. Our hands have been forced. Can Mr. + Godfrey see us?" + + "Yes, he is waiting inside." He turned and led us into a large, + plainly furnished front room. A man was standing with his back to the + fire, and at the sight of him my client sprang forward with + outstretched hand. + + "Why, Godfrey, old man, this is fine!" + + But the other waved him back. + + "Don't touch me, Jimmie. Keep your distance. Yes, you may well stare! + I don't quite look the smart Lance-Corporal Emsworth, of B Squadron, + do I?" + + His appearance was certainly extraordinary. One could see that he had + indeed been a handsome man with clear-cut features sunburned by an + African sun, but mottled in patches over this darker surface were + curious whitish patches which had bleached his skin. + + "That's why I don't court visitors," said he. "I don't mind you, + Jimmie, but I could have done without your friend. I suppose there is + some good reason for it, but you have me at a disadvantage." + + "I wanted to be sure that all was well with you, Godfrey. I saw you + that night when you looked into my window, and I could not let the + matter rest till I had cleared things up." + + "Old Ralph told me you were there, and I couldn't help taking a peep + at you. I hoped you would not have seen me, and I had to run to my + burrow when I heard the window go up." + + "But what in heaven's name is the matter?" + + "Well, it's not a long story to tell," said he, lighting a cigarette. + "You remember that morning fight at Buffelsspruit, outside Pretoria, + on the Eastern railway line? You heard I was hit?" + + "Yes, I heard that, but I never got particulars." + + "Three of us got separated from the others. It was very broken + country, you may remember. There was Simpson--the fellow we called + Baldy Simpson-- and Anderson, and I. We were clearing brother Boer, + but he lay low and got the three of us. The other two were killed. I + got an elephant bullet through my shoulder. I stuck on to my horse, + however, and he galloped several miles before I fainted and rolled + off the saddle. + + "When I came to myself it was nightfall, and I raised myself up, + feeling very weak and ill. To my surprise there was a house close + beside me, a fairly large house with a broad stoep and many windows. + It was deadly cold. You remember the kind of numb cold which used to + come at evening, a deadly, sickening sort of cold, very different + from a crisp healthy frost. Well, I was chilled to the bone, and my + only hope seemed to lie in reaching that house. I staggered to my + feet and dragged myself along, hardly conscious of what I did. I have + a dim memory of slowly ascending the steps, entering a wide-opened + door, passing into a large room which contained several beds, and + throwing myself down with a gasp of satisfaction upon one of them. It + was unmade, but that troubled me not at all. I drew the clothes over + my shivering body and in a moment I was in a deep sleep. + + "It was morning when I wakened, and it seemed to me that instead of + coming out into a world of sanity I had emerged into some + extraordinary nightmare. The African sun flooded through the big, + curtainless windows, and every detail of the great, bare, whitewashed + dormitory stood out hard and clear. In front of me was standing a + small, dwarf-like man with a huge, bulbous head, who was jabbering + excitedly in Dutch, waving two horrible hands which looked to me like + brown sponges. Behind him stood a group of people who seemed to be + intensely amused by the situation, but a chill came over me as I + looked at them. Not one of them was a normal human being. Every one + was twisted or swollen or disfigured in some strange way. The + laughter of these strange monstrosities was a dreadful thing to hear. + + "It seemed that none of them could speak English, but the situation + wanted clearing up, for the creature with the big head was growing + furiously angry, and, uttering wild-beast cries, he had laid his + deformed hands upon me and was dragging me out of bed, regardless of + the fresh flow of blood from my wound. The little monster was as + strong as a bull, and I don't know what he might have done to me had + not an elderly man who was clearly in authority been attracted to the + room by the hubbub. He said a few stern words in Dutch, and my + persecutor shrank away. Then he turned upon me, gazing at me in the + utmost amazement. + + "'How in the world did you come here?' he asked in amazement. 'Wait a + bit! I see that you are tired out and that wounded shoulder of yours + wants looking after. I am a doctor, and I'll soon have you tied up. + But, man alive! you are in far greater danger here than ever you were + on the battlefield. You are in the Leper Hospital, and you have slept + in a leper's bed.' + + "Need I tell you more, Jimmie? It seems that in view of the + approaching battle all these poor creatures had been evacuated the + day before. Then, as the British advanced, they had been brought back + by this, their medical superintendent, who assured me that, though he + believed he was immune to the disease, he would none the less never + have dared to do what I had done. He put me in a private room, + treated me kindly, and within a week or so I was removed to the + general hospital at Pretoria. + + "So there you have my tragedy. I hoped against hope, but it was not + until I had reached home that the terrible signs which you see upon + my face told me that I had not escaped. What was I to do? I was in + this lonely house. We had two servants whom we could utterly trust. + There was a house where I could live. Under pledge of secrecy, Mr. + Kent, who is a surgeon, was prepared to stay with me. It seemed + simple enough on those lines. The alternative was a dreadful + one--segregation for life among strangers with never a hope of + release. But absolute secrecy was necessary, or even in this quiet + countryside there would have been an outcry, and I should have been + dragged to my horrible doom. Even you, Jimmie--even you had to be + kept in the dark. Why my father has relented I cannot imagine." + + Colonel Emsworth pointed to me. + + "This is the gentleman who forced my hand." He unfolded the scrap of + paper on which I had written the word "Leprosy." "It seemed to me + that if he knew so much as that it was safer that he should know + all." + + "And so it was," said I. "Who knows but good may come of it? I + understand that only Mr. Kent has seen the patient. May I ask, sir, + if you are an authority on such complaints, which are, I understand, + tropical or semi-tropical in their nature?" + + "I have the ordinary knowledge of the educated medical man," he + observed with some stiffness. + + "I have no doubt, sir, that you are fully competent, but I am sure + that you will agree that in such a case a second opinion is valuable. + You have avoided this, I understand, for fear that pressure should be + put upon you to segregate the patient." + + "That is so," said Colonel Emsworth. + + "I foresaw this situation," I explained, "and I have brought with me + a friend whose discretion may absolutely be trusted. I was able once + to do him a professional service, and he is ready to advise as a + friend rather than as a specialist. His name is Sir James Saunders." + + The prospect of an interview with Lord Roberts would not have excited + greater wonder and pleasure in a raw subaltern than was now reflected + upon the face of Mr. Kent. + + "I shall indeed be proud," he murmured. + + "Then I will ask Sir James to step this way. He is at present in the + carriage outside the door. Meanwhile, Colonel Emsworth, we may + perhaps assemble in your study, where I could give the necessary + explanations." + + And here it is that I miss my Watson. By cunning questions and + ejaculations of wonder he could elevate my simple art, which is but + systematized common sense, into a prodigy. When I tell my own story I + have no such aid. And yet I will give my process of thought even as I + gave it to my small audience, which included Godfrey's mother in the + study of Colonel Emsworth. + + "That process," said I, "starts upon the supposition that when you + have eliminated all which is impossible, then whatever remains, + however improbable, must be the truth. It may well be that several + explanations remain, in which case one tries test after test until + one or other of them has a convincing amount of support. We will now + apply this principle to the case in point. As it was first presented + to me, there were three possible explanations of the seclusion or + incarceration of this gentleman in an outhouse of his father's + mansion. There was the explanation that he was in hiding for a crime, + or that he was mad and that they wished to avoid an asylum, or that + he had some disease which caused his segregation. I could think of no + other adequate solutions. These, then, had to be sifted and balanced + against each other. + + "The criminal solution would not bear inspection. No unsolved crime + had been reported from that district. I was sure of that. If it were + some crime not yet discovered, then clearly it would be to the + interest of the family to get rid of the delinquent and send him + abroad rather than keep him concealed at home. I could see no + explanation for such a line of conduct. + + "Insanity was more plausible. The presence of the second person in + the outhouse suggested a keeper. The fact that he locked the door + when he came out strengthened the supposition and gave the idea of + constraint. On the other hand, this constraint could not be severe or + the young man could not have got loose and come down to have a look + at his friend. You will remember, Mr. Dodd, that I felt round for + points, asking you, for example, about the paper which Mr. Kent was + reading. Had it been the Lancet or the British Medical Journal it + would have helped me. It is not illegal, however, to keep a lunatic + upon private premises so long as there is a qualified person in + attendance and that the authorities have been duly notified. Why, + then, all this desperate desire for secrecy? Once again I could not + get the theory to fit the facts. + + "There remained the third possibility, into which, rare and unlikely + as it was, everything seemed to fit. Leprosy is not uncommon in South + Africa. By some extraordinary chance this youth might have contracted + it. His people would be placed in a very dreadful position, since + they would desire to save him from segregation. Great secrecy would + be needed to prevent rumours from getting about and subsequent + interference by the authorities. A devoted medical man, if + sufficiently paid, would easily be found to take charge of the + sufferer. There would be no reason why the latter should not be + allowed freedom after dark. Bleaching of the skin is a common result + of the disease. The case was a strong one--so strong that I + determined to act as if it were actually proved. When on arriving + here I noticed that Ralph, who carries out the meals, had gloves + which are impregnated with disinfectants, my last doubts were + removed. A single word showed you, sir, that your secret was + discovered, and if I wrote rather than said it, it was to prove to + you that my discretion was to be trusted." + + I was finishing this little analysis of the case when the door was + opened and the austere figure of the great dermatologist was ushered + in. But for once his sphinx-like features had relaxed and there was a + warm humanity in his eyes. He strode up to Colonel Emsworth and shook + him by the hand. + + "It is often my lot to bring ill-tidings and seldom good," said he. + "This occasion is the more welcome. It is not leprosy." + + "What?" + + "A well-marked case of pseudo-leprosy or ichthyosis, a scale-like + affection of the skin, unsightly, obstinate, but possibly curable, + and certainly noninfective. Yes, Mr. Holmes, the coincidence is a + remarkable one. But is it coincidence? Are there not subtle forces at + work of which we know little? Are we assured that the apprehension + from which this young man has no doubt suffered terribly since his + exposure to its contagion may not produce a physical effect which + simulates that which it fears? At any rate, I pledge my professional + reputation-- But the lady has fainted! I think that Mr. Kent had + better be with her until she recovers from this joyous shock." + + + + + + + THE ADVENTURE OF THE MAZARIN STONE + + It was pleasant to Dr. Watson to find himself once more in the untidy + room of the first floor in Baker Street which had been the + starting-point of so many remarkable adventures. He looked round him + at the scientific charts upon the wall, the acid-charred bench of + chemicals, the violin-case leaning in the corner, the coal-scuttle, + which contained of old the pipes and tobacco. Finally, his eyes came + round to the fresh and smiling face of Billy, the young but very wise + and tactful page, who had helped a little to fill up the gap of + loneliness and isolation which surrounded the saturnine figure of the + great detective. + + "It all seems very unchanged, Billy. You don't change, either. I hope + the same can be said of him?" + + Billy glanced with some solicitude at the closed door of the bedroom. + + "I think he's in bed and asleep," he said. + + It was seven in the evening of a lovely summer's day, but Dr. Watson + was sufficiently familiar with the irregularity of his old friend's + hours to feel no surprise at the idea. + + "That means a case, I suppose?" + + "Yes, sir, he is very hard at it just now. I'm frightened for his + health. He gets paler and thinner, and he eats nothing. 'When will + you be pleased to dine, Mr. Holmes?' Mrs. Hudson asked. + 'Seven-thirty, the day after to-morrow,' said he. You know his way + when he is keen on a case." + + "Yes, Billy, I know." + + "He's following someone. Yesterday he was out as a workman looking + for a job. To-day he was an old woman. Fairly took me in, he did, and + I ought to know his ways by now." Billy pointed with a grin to a very + baggy parasol which leaned against the sofa. "That's part of the old + woman's outfit," he said. + + "But what is it all about, Billy?" + + Billy sank his voice, as one who discusses great secrets of State. "I + don't mind telling you, sir, but it should go no farther. It's this + case of the Crown diamond." + + "What--the hundred-thousand-pound burglary?" + + "Yes, sir. They must get it back, sir. Why, we had the Prime Minister + and the Home Secretary both sitting on that very sofa. Mr. Holmes was + very nice to them. He soon put them at their ease and promised he + would do all he could. Then there is Lord Cantlemere--" + + "Ah!" + + "Yes, sir, you know what that means. He's a stiff 'un, sir, if I may + say so. I can get along with the Prime Minister, and I've nothing + against the Home Secretary, who seemed a civil, obliging sort of man, + but I can't stand his Lordship. Neither can Mr. Holmes, sir. You see, + he don't believe in Mr. Holmes and he was against employing him. He'd + rather he failed." + + "And Mr. Holmes knows it?" + + "Mr. Holmes always knows whatever there is to know." + + "Well, we'll hope he won't fail and that Lord Cantlemere will be + confounded. But I say, Billy, what is that curtain for across the + window?" + + "Mr. Holmes had it put up there three days ago. We've got something + funny behind it." + + Billy advanced and drew away the drapery which screened the alcove of + the bow window. + + Dr. Watson could not restrain a cry of amazement. There was a + facsimile of his old friend, dressing-gown and all, the face turned + three-quarters towards the window and downward, as though reading an + invisible book, while the body was sunk deep in an armchair. Billy + detached the head and held it in the air. + + "We put it at different angles, so that it may seem more lifelike. I + wouldn't dare touch it if the blind were not down. But when it's up + you can see this from across the way." + + "We used something of the sort once before." + + "Before my time," said Billy. He drew the window curtains apart and + looked out into the street. "There are folk who watch us from over + yonder. I can see a fellow now at the window. Have a look for + yourself." + + Watson had taken a step forward when the bedroom door opened, and the + long, thin form of Holmes emerged, his face pale and drawn, but his + step and bearing as active as ever. With a single spring he was at + the window, and had drawn the blind once more. + + "That will do, Billy," said he. "You were in danger of your life + then, my boy, and I can't do without you just yet. Well, Watson, it + is good to see you in your old quarters once again. You come at a + critical moment." + + "So I gather." + + "You can go, Billy. That boy is a problem, Watson. How far am I + justified in allowing him to be in danger?" + + "Danger of what, Holmes?" + + "Of sudden death. I'm expecting something this evening." + + "Expecting what?" + + "To be murdered, Watson." + + "No, no, you are joking, Holmes!" + + "Even my limited sense of humour could evolve a better joke than + that. But we may be comfortable in the meantime, may we not? Is + alcohol permitted? The gasogene and cigars are in the old place. Let + me see you once more in the customary armchair. You have not, I hope, + learned to despise my pipe and my lamentable tobacco? It has to take + the place of food these days." + + "But why not eat?" + + "Because the faculties become refined when you starve them. Why, + surely, as a doctor, my dear Watson, you must admit that what your + digestion gains in the way of blood supply is so much lost to the + brain. I am a brain, Watson. The rest of me is a mere appendix. + Therefore, it is the brain I must consider." + + "But this danger, Holmes?" + + "Ah, yes, in case it should come off, it would perhaps be as well + that you should burden your memory with the name and address of the + murderer. You can give it to Scotland Yard, with my love and a + parting blessing. Sylvius is the name--Count Negretto Sylvius. Write + it down, man, write it down! 136 Moorside Gardens, N. W. Got it?" + + Watson's honest face was twitching with anxiety. He knew only too + well the immense risks taken by Holmes and was well aware that what + he said was more likely to be under-statement than exaggeration. + Watson was always the man of action, and he rose to the occasion. + + "Count me in, Holmes. I have nothing to do for a day or two." + + "Your morals don't improve, Watson. You have added fibbing to your + other vices. You bear every sign of the busy medical man, with calls + on him every hour." + + "Not such important ones. But can't you have this fellow arrested?" + + "Yes, Watson, I could. That's what worries him so." + + "But why don't you?" + + "Because I don't know where the diamond is." + + "Ah! Billy told me--the missing Crown jewel!" + + "Yes, the great yellow Mazarin stone. I've cast my net and I have my + fish. But I have not got the stone. What is the use of taking them? + We can make the world a better place by laying them by the heels. But + that is not what I am out for. It's the stone I want." + + "And is this Count Sylvius one of your fish?" + + "Yes, and he's a shark. He bites. The other is Sam Merton, the boxer. + Not a bad fellow, Sam, but the Count has used him. Sam's not a shark. + He is a great big silly bull-headed gudgeon. But he is flopping about + in my net all the same." + + "Where is this Count Sylvius?" + + "I've been at his very elbow all the morning. You've seen me as an + old lady, Watson. I was never more convincing. He actually picked up + my parasol for me once. 'By your leave, madame,' said + he--half-Italian, you know, and with the Southern graces of manner + when in the mood, but a devil incarnate in the other mood. Life is + full of whimsical happenings, Watson." + + "It might have been tragedy." + + "Well, perhaps it might. I followed him to old Straubenzee's workshop + in the Minories. Straubenzee made the air-gun--a very pretty bit of + work, as I understand, and I rather fancy it is in the opposite + window at the present moment. Have you seen the dummy? Of course, + Billy showed it to you. Well, it may get a bullet through its + beautiful head at any moment. Ah, Billy, what is it?" + + The boy had reappeared in the room with a card upon a tray. Holmes + glanced at it with raised eyebrows and an amused smile. + + "The man himself. I had hardly expected this. Grasp the nettle, + Watson! A man of nerve. Possibly you have heard of his reputation as + a shooter of big game. It would indeed be a triumphant ending to his + excellent sporting record if he added me to his bag. This is a proof + that he feels my toe very close behind his heel." + + "Send for the police." + + "I probably shall. But not just yet. Would you glance carefully out + of the window, Watson, and see if anyone is hanging about in the + street?" + + Watson looked warily round the edge of the curtain. + + "Yes, there is one rough fellow near the door." + + "That will be Sam Merton--the faithful but rather fatuous Sam. Where + is this gentleman, Billy?" + + "In the waiting-room, sir." + + "Show him up when I ring." + + "Yes, sir." + + "If I am not in the room, show him in all the same." + + "Yes, sir." + + Watson waited until the door was closed, and then he turned earnestly + to his companion. + + "Look here, Holmes, this is simply impossible. This is a desperate + man, who sticks at nothing. He may have come to murder you." + + "I should not be surprised." + + "I insist upon staying with you." + + "You would be horribly in the way." + + "In his way?" + + "No, my dear fellow--in my way." + + "Well, I can't possibly leave you." + + "Yes, you can, Watson. And you will, for you have never failed to + play the game. I am sure you will play it to the end. This man has + come for his own purpose, but he may stay for mine." Holmes took out + his notebook and scribbled a few lines. "Take a cab to Scotland Yard + and give this to Youghal of the C. I. D. Come back with the police. + The fellow's arrest will follow." + + "I'll do that with joy." + + "Before you return I may have just time enough to find out where the + stone is." He touched the bell. "I think we will go out through the + bedroom. This second exit is exceedingly useful. I rather want to see + my shark without his seeing me, and I have, as you will remember, my + own way of doing it." + + It was, therefore, an empty room into which Billy, a minute later, + ushered Count Sylvius. The famous game-shot, sportsman, and + man-about-town was a big, swarthy fellow, with a formidable dark + moustache shading a cruel, thin-lipped mouth, and surmounted by a + long, curved nose like the beak of an eagle. He was well dressed, but + his brilliant necktie, shining pin, and glittering rings were + flamboyant in their effect. As the door closed behind him he looked + round him with fierce, startled eyes, like one who suspects a trap at + every turn. Then he gave a violent start as he saw the impassive head + and the collar of the dressing-gown which projected above the + armchair in the window. At first his expression was one of pure + amazement. Then the light of a horrible hope gleamed in his dark, + murderous eyes. He took one more glance round to see that there were + no witnesses, and then, on tiptoe, his thick stick half raised, he + approached the silent figure. He was crouching for his final spring + and blow when a cool, sardonic voice greeted him from the open + bedroom door: + + "Don't break it, Count! Don't break it!" + + The assassin staggered back, amazement in his convulsed face. For an + instant he half raised his loaded cane once more, as if he would turn + his violence from the effigy to the original; but there was something + in that steady gray eye and mocking smile which caused his hand to + sink to his side. + + "It's a pretty little thing," said Holmes, advancing towards the + image. "Tavernier, the French modeller, made it. He is as good at + waxworks as your friend Straubenzee is at air-guns." + + "Air-guns, sir! What do you mean?" + + "Put your hat and stick on the side-table. Thank you! Pray take a + seat. Would you care to put your revolver out also? Oh, very good, if + you prefer to sit upon it. Your visit is really most opportune, for I + wanted badly to have a few minutes' chat with you." + + The Count scowled, with heavy, threatening eyebrows. + + "I, too, wished to have some words with you, Holmes. That is why I am + here. I won't deny that I intended to assault you just now." + + Holmes swung his leg on the edge of the table. + + "I rather gathered that you had some idea of the sort in your head," + said he. "But why these personal attentions?" + + "Because you have gone out of your way to annoy me. Because you have + put your creatures upon my track." + + "My creatures! I assure you no!" + + "Nonsense! I have had them followed. Two can play at that game, + Holmes." + + "It is a small point, Count Sylvius, but perhaps you would kindly + give me my prefix when you address me. You can understand that, with + my routine of work, I should find myself on familiar terms with half + the rogues' gallery, and you will agree that exceptions are + invidious." + + "Well, Mr. Holmes, then." + + "Excellent! But I assure you you are mistaken about my alleged + agents." + + Count Sylvius laughed contemptuously. + + "Other people can observe as well as you. Yesterday there was an old + sporting man. To-day it was an elderly woman. They held me in view + all day." + + "Really, sir, you compliment me. Old Baron Dowson said the night + before he was hanged that in my case what the law had gained the + stage had lost. And now you give my little impersonations your kindly + praise?" + + "It was you--you yourself?" + + Holmes shrugged his shoulders. "You can see in the corner the parasol + which you so politely handed to me in the Minories before you began + to suspect." + + "If I had known, you might never--" + + "Have seen this humble home again. I was well aware of it. We all + have neglected opportunities to deplore. As it happens, you did not + know, so here we are!" + + The Count's knotted brows gathered more heavily over his menacing + eyes. "What you say only makes the matter worse. It was not your + agents but your play-acting, busybody self! You admit that you have + dogged me. Why?" + + "Come now, Count. You used to shoot lions in Algeria." + + "Well?" + + "But why?" + + "Why? The sport--the excitement--the danger!" + + "And, no doubt, to free the country from a pest?" + + "Exactly!" + + "My reasons in a nutshell!" + + The Count sprang to his feet, and his hand involuntarily moved back + to his hip-pocket. + + "Sit down, sir, sit down! There was another, more practical, reason. + I want that yellow diamond!" + + Count Sylvius lay back in his chair with an evil smile. + + "Upon my word!" said he. + + "You knew that I was after you for that. The real reason why you are + here to-night is to find out how much I know about the matter and how + far my removal is absolutely essential. Well, I should say that, from + your point of view, it is absolutely essential, for I know all about + it, save only one thing, which you are about to tell me." + + "Oh, indeed! And pray, what is this missing fact?" + + "Where the Crown diamond now is." + + The Count looked sharply at his companion. "Oh, you want to know + that, do you? How the devil should I be able to tell you where it + is?" + + "You can, and you will." + + "Indeed!" + + "You can't bluff me, Count Sylvius." Holmes's eyes, as he gazed at + him, contracted and lightened until they were like two menacing + points of steel. "You are absolute plate-glass. I see to the very + back of your mind." + + "Then, of course, you see where the diamond is!" + + Holmes clapped his hands with amusement, and then pointed a derisive + finger. "Then you do know. You have admitted it!" + + "I admit nothing." + + "Now, Count, if you will be reasonable we can do business. If not, + you will get hurt." + + Count Sylvius threw up his eyes to the ceiling. "And you talk about + bluff!" said he. + + Holmes looked at him thoughtfully like a master chess-player who + meditates his crowning move. Then he threw open the table drawer and + drew out a squat notebook. + + "Do you know what I keep in this book?" + + "No, sir, I do not!" + + "You!" + + "Me!" + + "Yes, sir, you! You are all here--every action of your vile and + dangerous life." + + "Damn you, Holmes!" cried the Count with blazing eyes. "There are + limits to my patience!" + + "It's all here, Count. The real facts as to the death of old Mrs. + Harold, who left you the Blymer estate, which you so rapidly gambled + away." + + "You are dreaming!" + + "And the complete life history of Miss Minnie Warrender." + + "Tut! You will make nothing of that!" + + "Plenty more here, Count. Here is the robbery in the train de-luxe to + the Riviera on February 13, 1892. Here is the forged check in the + same year on the Credit Lyonnais." + + "No; you're wrong there." + + "Then I am right on the others! Now, Count, you are a card-player. + When the other fellow has all the trumps, it saves time to throw down + your hand." + + "What has all this talk to do with the jewel of which you spoke?" + + "Gently, Count. Restrain that eager mind! Let me get to the points in + my own humdrum fashion. I have all this against you; but, above all, + I have a clear case against both you and your fighting bully in the + case of the Crown diamond." + + "Indeed!" + + "I have the cabman who took you to Whitehall and the cabman who + brought you away. I have the commissionaire who saw you near the + case. I have Ikey Sanders, who refused to cut it up for you. Ikey has + peached, and the game is up." + + The veins stood out on the Count's forehead. His dark, hairy hands + were clenched in a convulsion of restrained emotion. He tried to + speak, but the words would not shape themselves. + + "That's the hand I play from," said Holmes. "I put it all upon the + table. But one card is missing. It's the king of diamonds. I don't + know where the stone is." + + "You never shall know." + + "No? Now, be reasonable, Count. Consider the situation. You are going + to be locked up for twenty years. So is Sam Merton. What good are you + going to get out of your diamond? None in the world. But if you hand + it over--well, I'll compound a felony. We don't want you or Sam. We + want the stone. Give that up, and so far as I am concerned you can go + free so long as you behave yourself in the future. If you make + another slip--well, it will be the last. But this time my commission + is to get the stone, not you." + + "But if I refuse?" + + "Why, then--alas!--it must be you and not the stone." + + Billy had appeared in answer to a ring. + + "I think, Count, that it would be as well to have your friend Sam at + this conference. After all, his interests should be represented. + Billy, you will see a large and ugly gentleman outside the front + door. Ask him to come up." + + "If he won't come, sir?" + + "No violence, Billy. Don't be rough with him. If you tell him that + Count Sylvius wants him he will certainly come." + + "What are you going to do now?" asked the Count as Billy disappeared. + + "My friend Watson was with me just now. I told him that I had a shark + and a gudgeon in my net; now I am drawing the net and up they come + together." + + The Count had risen from his chair, and his hand was behind his back. + Holmes held something half protruding from the pocket of his + dressing-gown. + + "You won't die in your bed, Holmes." + + "I have often had the same idea. Does it matter very much? After all, + Count, your own exit is more likely to be perpendicular than + horizontal. But these anticipations of the future are morbid. Why not + give ourselves up to the unrestrained enjoyment of the present?" + + A sudden wild-beast light sprang up in the dark, menacing eyes of the + master criminal. Holmes's figure seemed to grow taller as he grew + tense and ready. + + "It is no use your fingering your revolver, my friend," he said in a + quiet voice. "You know perfectly well that you dare not use it, even + if I gave you time to draw it. Nasty, noisy things, revolvers, Count. + Better stick to air-guns. Ah! I think I hear the fairy footstep of + your estimable partner. Good day, Mr. Merton. Rather dull in the + street, is it not?" + + The prize-fighter, a heavily built young man with a stupid, + obstinate, slab-sided face, stood awkwardly at the door, looking + about him with a puzzled expression. Holmes's debonair manner was a + new experience, and though he vaguely felt that it was hostile, he + did not know how to counter it. He turned to his more astute comrade + for help. + + "What's the game now, Count? What's this fellow want? What's up?" His + voice was deep and raucous. + + The Count shrugged his shoulders, and it was Holmes who answered. + + "If I may put it in a nutshell, Mr. Merton, I should say it was all + up." + + The boxer still addressed his remarks to his associate. + + "Is this cove trying to be funny, or what? I'm not in the funny mood + myself." + + "No, I expect not," said Holmes. "I think I can promise you that you + will feel even less humorous as the evening advances. Now, look here, + Count Sylvius. I'm a busy man and I can't waste time. I'm going into + that bedroom. Pray make yourselves quite at home in my absence. You + can explain to your friend how the matter lies without the restraint + of my presence. I shall try over the Hoffman 'Barcarole' upon my + violin. In five minutes I shall return for your final answer. You + quite grasp the alternative, do you not? Shall we take you, or shall + we have the stone?" + + Holmes withdrew, picking up his violin from the corner as he passed. + A few moments later the long-drawn, wailing notes of that most + haunting of tunes came faintly through the closed door of the + bedroom. + + "What is it, then?" asked Merton anxiously as his companion turned to + him. "Does he know about the stone?" + + "He knows a damned sight too much about it. I'm not sure that he + doesn't know all about it." + + "Good Lord!" The boxer's sallow face turned a shade whiter. + + "Ikey Sanders has split on us." + + "He has, has he? I'll do him down a thick 'un for that if I swing for + it." + + "That won't help us much. We've got to make up our minds what to do." + + "Half a mo'," said the boxer, looking suspiciously at the bedroom + door. "He's a leary cove that wants watching. I suppose he's not + listening?" + + "How can he be listening with that music going?" + + "That's right. Maybe somebody's behind a curtain. Too many curtains + in this room." As he looked round he suddenly saw for the first time + the effigy in the window, and stood staring and pointing, too amazed + for words. + + "Tut! it's only a dummy," said the Count. + + "A fake, is it? Well, strike me! Madame Tussaud ain't in it. It's the + living spit of him, gown and all. But them curtains, Count!" + + "Oh, confound the curtains! We are wasting our time, and there is + none too much. He can lag us over this stone." + + "The deuce he can!" + + "But he'll let us slip if we only tell him where the swag is." + + "What! Give it up? Give up a hundred thousand quid?" + + "It's one or the other." + + Merton scratched his short-cropped pate. + + "He's alone in there. Let's do him in. If his light were out we + should have nothing to fear." + + The Count shook his head. + + "He is armed and ready. If we shot him we could hardly get away in a + place like this. Besides, it's likely enough that the police know + whatever evidence he has got. Hallo! What was that?" + + There was a vague sound which seemed to come from the window. Both + men sprang round, but all was quiet. Save for the one strange figure + seated in the chair, the room was certainly empty. + + "Something in the street," said Merton. "Now look here, guv'nor, + you've got the brains. Surely you can think a way out of it. If + slugging is no use then it's up to you." + + "I've fooled better men than he," the Count answered. "The stone is + here in my secret pocket. I take no chances leaving it about. It can + be out of England to-night and cut into four pieces in Amsterdam + before Sunday. He knows nothing of Van Seddar." + + "I thought Van Seddar was going next week." + + "He was. But now he must get off by the next boat. One or other of us + must slip round with the stone to Lime Street and tell him." + + "But the false bottom ain't ready." + + "Well, he must take it as it is and chance it. There's not a moment + to lose." Again, with the sense of danger which becomes an instinct + with the sportsman, he paused and looked hard at the window. Yes, it + was surely from the street that the faint sound had come. + + "As to Holmes," he continued, "we can fool him easily enough. You + see, the damned fool won't arrest us if he can get the stone. Well, + we'll promise him the stone. We'll put him on the wrong track about + it, and before he finds that it is the wrong track it will be in + Holland and we out of the country." + + "That sounds good to me!" cried Sam Merton with a grin. + + "You go on and tell the Dutchman to get a move on him. I'll see this + sucker and fill him up with a bogus confession. I'll tell him that + the stone is in Liverpool. Confound that whining music; it gets on my + nerves! By the time he finds it isn't in Liverpool it will be in + quarters and we on the blue water. Come back here, out of a line with + that keyhole. Here is the stone." + + "I wonder you dare carry it." + + "Where could I have it safer? If we could take it out of Whitehall + someone else could surely take it out of my lodgings." + + "Let's have a look at it." + + Count Sylvius cast a somewhat unflattering glance at his associate + and disregarded the unwashed hand which was extended towards him. + + "What--d'ye think I'm going to snatch it off you? See here, mister, + I'm getting a bit tired of your ways." + + "Well, well, no offence, Sam. We can't afford to quarrel. Come over + to the window if you want to see the beauty properly. Now hold it to + the light! Here!" + + "Thank you!" + + With a single spring Holmes had leaped from the dummy's chair and had + grasped the precious jewel. He held it now in one hand, while his + other pointed a revolver at the Count's head. The two villains + staggered back in utter amazement. Before they had recovered Holmes + had pressed the electric bell. + + "No violence, gentlemen--no violence, I beg of you! Consider the + furniture! It must be very clear to you that your position is an + impossible one. The police are waiting below." + + The Count's bewilderment overmastered his rage and fear. + + "But how the deuce--?" he gasped. + + "Your surprise is very natural. You are not aware that a second door + from my bedroom leads behind that curtain. I fancied that you must + have heard me when I displaced the figure, but luck was on my side. + It gave me a chance of listening to your racy conversation which + would have been painfully constrained had you been aware of my + presence." + + The Count gave a gesture of resignation. + + "We give you best, Holmes. I believe you are the devil himself." + + "Not far from him, at any rate," Holmes answered with a polite smile. + + Sam Merton's slow intellect had only gradually appreciated the + situation. Now, as the sound of heavy steps came from the stairs + outside, he broke silence at last. + + "A fair cop!" said he. "But, I say, what about that bloomin' fiddle! + I hear it yet." + + "Tut, tut!" Holmes answered. "You are perfectly right. Let it play! + These modern gramophones are a remarkable invention." + + There was an inrush of police, the handcuffs clicked and the + criminals were led to the waiting cab. Watson lingered with Holmes, + congratulating him upon this fresh leaf added to his laurels. Once + more their conversation was interrupted by the imperturbable Billy + with his card-tray. + + "Lord Cantlemere, sir." + + "Show him up, Billy. This is the eminent peer who represents the very + highest interests," said Holmes. "He is an excellent and loyal + person, but rather of the old regime. Shall we make him unbend? Dare + we venture upon a slight liberty? He knows, we may conjecture, + nothing of what has occurred." + + The door opened to admit a thin, austere figure with a hatchet face + and drooping mid-Victorian whiskers of a glossy blackness which + hardly corresponded with the rounded shoulders and feeble gait. + Holmes advanced affably, and shook an unresponsive hand. + + "How do you do, Lord Cantlemere? It is chilly for the time of year, + but rather warm indoors. May I take your overcoat?" + + "No, I thank you; I will not take it off." + + Holmes laid his hand insistently upon the sleeve. + + "Pray allow me! My friend Dr. Watson would assure you that these + changes of temperature are most insidious." + + His Lordship shook himself free with some impatience. + + "I am quite comfortable, sir. I have no need to stay. I have simply + looked in to know how your self-appointed task was progressing." + + "It is difficult--very difficult." + + "I feared that you would find it so." + + There was a distinct sneer in the old courtier's words and manner. + + "Every man finds his limitations, Mr. Holmes, but at least it cures + us of the weakness of self-satisfaction." + + "Yes, sir, I have been much perplexed." + + "No doubt." + + "Especially upon one point. Possibly you could help me upon it?" + + "You apply for my advice rather late in the day. I thought that you + had your own all-sufficient methods. Still, I am ready to help you." + + "You see, Lord Cantlemere, we can no doubt frame a case against the + actual thieves." + + "When you have caught them." + + "Exactly. But the question is--how shall we proceed against the + receiver?" + + "Is this not rather premature?" + + "It is as well to have our plans ready. Now, what would you regard as + final evidence against the receiver?" + + "The actual possession of the stone." + + "You would arrest him upon that?" + + "Most undoubtedly." + + Holmes seldom laughed, but he got as near it as his old friend Watson + could remember. + + "In that case, my dear sir, I shall be under the painful necessity of + advising your arrest." + + Lord Cantlemere was very angry. Some of the ancient fires flickered + up into his sallow cheeks. + + "You take a great liberty, Mr. Holmes. In fifty years of official + life I cannot recall such a case. I am a busy man, sir, engaged upon + important affairs, and I have no time or taste for foolish jokes. I + may tell you frankly, sir, that I have never been a believer in your + powers, and that I have always been of the opinion that the matter + was far safer in the hands of the regular police force. Your conduct + confirms all my conclusions. I have the honour, sir, to wish you + good-evening." + + Holmes had swiftly changed his position and was between the peer and + the door. + + "One moment, sir," said he. "To actually go off with the Mazarin + stone would be a more serious offence than to be found in temporary + possession of it." + + "Sir, this is intolerable! Let me pass." + + "Put your hand in the right-hand pocket of your overcoat." + + "What do you mean, sir?" + + "Come--come, do what I ask." + + An instant later the amazed peer was standing, blinking and + stammering, with the great yellow stone on his shaking palm. + + "What! What! How is this, Mr. Holmes?" + + "Too bad, Lord Cantlemere, too bad!" cried Holmes. "My old friend + here will tell you that I have an impish habit of practical joking. + Also that I can never resist a dramatic situation. I took the + liberty--the very great liberty, I admit--of putting the stone into + your pocket at the beginning of our interview." + + The old peer stared from the stone to the smiling face before him. + + "Sir, I am bewildered. But--yes--it is indeed the Mazarin stone. We + are greatly your debtors, Mr. Holmes. Your sense of humour may, as + you admit, be somewhat perverted, and its exhibition remarkably + untimely, but at least I withdraw any reflection I have made upon + your amazing professional powers. But how--" + + "The case is but half finished; the details can wait. No doubt, Lord + Cantlemere, your pleasure in telling of this successful result in the + exalted circle to which you return will be some small atonement for + my practical joke. Billy, you will show his Lordship out, and tell + Mrs. Hudson that I should be glad if she would send up dinner for two + as soon as possible." + + + + + + + THE ADVENTURE OF THE THREE GABLES + + I don't think that any of my adventures with Mr. Sherlock Holmes + opened quite so abruptly, or so dramatically, as that which I + associate with The Three Gables. I had not seen Holmes for some days + and had no idea of the new channel into which his activities had been + directed. He was in a chatty mood that morning, however, and had just + settled me into the well-worn low armchair on one side of the fire, + while he had curled down with his pipe in his mouth upon the opposite + chair, when our visitor arrived. If I had said that a mad bull had + arrived it would give a clearer impression of what occurred. + + The door had flown open and a huge negro had burst into the room. He + would have been a comic figure if he had not been terrific, for he + was dressed in a very loud gray check suit with a flowing + salmon-coloured tie. His broad face and flattened nose were thrust + forward, as his sullen dark eyes, with a smouldering gleam of malice + in them, turned from one of us to the other. + + "Which of you gen'l'men is Masser Holmes?" he asked. + + Holmes raised his pipe with a languid smile. + + "Oh! it's you, is it?" said our visitor, coming with an unpleasant, + stealthy step round the angle of the table. "See here, Masser Holmes, + you keep your hands out of other folks' business. Leave folks to + manage their own affairs. Got that, Masser Holmes?" + + "Keep on talking," said Holmes. "It's fine." + + "Oh! it's fine, is it?" growled the savage. "It won't be so damn fine + if I have to trim you up a bit. I've handled your kind before now, + and they didn't look fine when I was through with them. Look at that, + Masser Holmes!" + + He swung a huge knotted lump of a fist under my friend's nose. Holmes + examined it closely with an air of great interest. "Were you born + so?" he asked. "Or did it come by degrees?" + + It may have been the icy coolness of my friend, or it may have been + the slight clatter which I made as I picked up the poker. In any + case, our visitor's manner became less flamboyant. + + "Well, I've given you fair warnin'," said he. "I've a friend that's + interested out Harrow way--you know what I'm meaning--and he don't + intend to have no buttin' in by you. Got that? You ain't the law, and + I ain't the law either, and if you come in I'll be on hand also. + Don't you forget it." + + "I've wanted to meet you for some time," said Holmes. "I won't ask + you to sit down, for I don't like the smell of you, but aren't you + Steve Dixie, the bruiser?" + + "That's my name, Masser Holmes, and you'll get put through it for + sure if you give me any lip." + + "It is certainly the last thing you need," said Holmes, staring at + our visitor's hideous mouth. "But it was the killing of young Perkins + outside the Holborn Bar-- What! you're not going?" + + The negro had sprung back, and his face was leaden. "I won't listen + to no such talk," said he. "What have I to do with this 'ere Perkins, + Masser Holmes? I was trainin' at the Bull Ring in Birmingham when + this boy done gone get into trouble." + + "Yes, you'll tell the magistrate about it, Steve," said Holmes. "I've + been watching you and Barney Stockdale--" + + "So help me the Lord! Masser Holmes--" + + "That's enough. Get out of it. I'll pick you up when I want you." + + "Good-mornin', Masser Holmes. I hope there ain't no hard feelin's + about this 'ere visit?" + + "There will be unless you tell me who sent you." + + "Why, there ain't no secret about that, Masser Holmes. It was that + same gen'l'man that you have just done gone mention." + + "And who set him on to it?" + + "S'elp me. I don't know, Masser Holmes. He just say, 'Steve, you go + see Mr. Holmes, and tell him his life ain't safe if he go down Harrow + way.' That's the whole truth." Without waiting for any further + questioning, our visitor bolted out of the room almost as + precipitately as he had entered. Holmes knocked out the ashes of his + pipe with a quiet chuckle. + + "I am glad you were not forced to break his woolly head, Watson. I + observed your manoeuvres with the poker. But he is really rather a + harmless fellow, a great muscular, foolish, blustering baby, and + easily cowed, as you have seen. He is one of the Spencer John gang + and has taken part in some dirty work of late which I may clear up + when I have time. His immediate principal, Barney, is a more astute + person. They specialize in assaults, intimidation, and the like. What + I want to know is, who is at the back of them on this particular + occasion?" + + "But why do they want to intimidate you?" + + "It is this Harrow Weald case. It decides me to look into the matter, + for if it is worth anyone's while to take so much trouble, there must + be something in it." + + "But what is it?" + + "I was going to tell you when we had this comic interlude. Here is + Mrs. Maberley's note. If you care to come with me we will wire her + and go out at once." + + Dear Mr. Sherlock Holmes [I read]: + I have had a succession of strange incidents occur to me in + connection with this house, and I should much value your advice. You + would find me at home any time to-morrow. The house is within a short + walk of the Weald Station. I believe that my late husband, Mortimer + Maberley, was one of your early clients. + Yours faithfully, + Mary Maberley + + The address was "The Three Gables, Harrow Weald." + + "So that's that!" said Holmes. "And now, if you can spare the time, + Watson, we will get upon our way." + + A short railway journey, and a shorter drive, brought us to the + house, a brick and timber villa, standing in its own acre of + undeveloped grassland. Three small projections above the upper + windows made a feeble attempt to justify its name. Behind was a grove + of melancholy, half-grown pines, and the whole aspect of the place + was poor and depressing. None the less, we found the house to be well + furnished, and the lady who received us was a most engaging elderly + person, who bore every mark of refinement and culture. + + "I remember your husband well, madam," said Holmes, "though it is + some years since he used my services in some trifling matter." + + "Probably you would be more familiar with the name of my son + Douglas." + + Holmes looked at her with great interest. + + "Dear me! Are you the mother of Douglas Maberley? I knew him + slightly. But of course all London knew him. What a magnificent + creature he was! Where is he now?" + + "Dead, Mr. Holmes, dead! He was attache at Rome, and he died there of + pneumonia last month." + + "I am sorry. One could not connect death with such a man. I have + never known anyone so vitally alive. He lived intensely--every fibre + of him!" + + "Too intensely, Mr. Holmes. That was the ruin of him. You remember + him as he was--debonair and splendid. You did not see the moody, + morose, brooding creature into which he developed. His heart was + broken. In a single month I seemed to see my gallant boy turn into a + worn-out cynical man." + + "A love affair--a woman?" + + "Or a fiend. Well, it was not to talk of my poor lad that I asked you + to come, Mr. Holmes." + + "Dr. Watson and I are at your service." + + "There have been some very strange happenings. I have been in this + house more than a year now, and as I wished to lead a retired life I + have seen little of my neighbours. Three days ago I had a call from a + man who said that he was a house agent. He said that this house would + exactly suit a client of his, and that if I would part with it money + would be no object. It seemed to me very strange as there are several + empty houses on the market which appear to be equally eligible, but + naturally I was interested in what he said. I therefore named a price + which was five hundred pounds more than I gave. He at once closed + with the offer, but added that his client desired to buy the + furniture as well and would I put a price upon it. Some of this + furniture is from my old home, and it is, as you see, very good, so + that I named a good round sum. To this also he at once agreed. I had + always wanted to travel, and the bargain was so good a one that it + really seemed that I should be my own mistress for the rest of my + life. + + "Yesterday the man arrived with the agreement all drawn out. Luckily + I showed it to Mr. Sutro, my lawyer, who lives in Harrow. He said to + me, 'This is a very strange document. Are you aware that if you sign + it you could not legally take anything out of the house--not even + your own private possessions?' When the man came again in the evening + I pointed this out, and I said that I meant only to sell the + furniture. + + "'No, no, everything,' said he. + + "'But my clothes? My jewels?' + + "'Well, well, some concession might be made for your personal + effects. But nothing shall go out of the house unchecked. My client + is a very liberal man, but he has his fads and his own way of doing + things. It is everything or nothing with him.' + + "'Then it must be nothing,' said I. And there the matter was left, + but the whole thing seemed to me to be so unusual that I thought--" + + Here we had a very extraordinary interruption. + + Holmes raised his hand for silence. Then he strode across the room, + flung open the door, and dragged in a great gaunt woman whom he had + seized by the shoulder. She entered with ungainly struggle like some + huge awkward chicken, torn, squawking, out of its coop. + + "Leave me alone! What are you a-doin' of?" she screeched. + + "Why, Susan, what is this?" + + "Well, ma'am, I was comin' in to ask if the visitors was stayin' for + lunch when this man jumped out at me." + + "I have been listening to her for the last five minutes, but did not + wish to interrupt your most interesting narrative. Just a little + wheezy, Susan, are you not? You breathe too heavily for that kind of + work." + + Susan turned a sulky but amazed face upon her captor. "Who be you, + anyhow, and what right have you a-pullin' me about like this?" + + "It was merely that I wished to ask a question in your presence. Did + you, Mrs. Maberley, mention to anyone that you were going to write to + me and consult me?" + + "No, Mr. Holmes, I did not." + + "Who posted your letter?" + + "Susan did." + + "Exactly. Now, Susan, to whom was it that you wrote or sent a message + to say that your mistress was asking advice from me?" + + "It's a lie. I sent no message." + + "Now, Susan, wheezy people may not live long, you know. It's a wicked + thing to tell fibs. Whom did you tell?" + + "Susan!" cried her mistress, "I believe you are a bad, treacherous + woman. I remember now that I saw you speaking to someone over the + hedge." + + "That was my own business," said the woman sullenly. + + "Suppose I tell you that it was Barney Stockdale to whom you spoke?" + said Holmes. + + "Well, if you know, what do you want to ask for?" + + "I was not sure, but I know now. Well now, Susan, it will be worth + ten pounds to you if you will tell me who is at the back of Barney." + + "Someone that could lay down a thousand pounds for every ten you have + in the world." + + "So, a rich man? No; you smiled--a rich woman. Now we have got so + far, you may as well give the name and earn the tenner." + + "I'll see you in hell first." + + "Oh, Susan! Language!" + + "I am clearing out of here. I've had enough of you all. I'll send for + my box to-morrow." She flounced for the door. + + "Good-bye, Susan. Paregoric is the stuff... Now," he continued, + turning suddenly from lively to severe when the door had closed + behind the flushed and angry woman, "this gang means business. Look + how close they play the game. Your letter to me had the 10 P. M. + postmark. And yet Susan passes the word to Barney. Barney has time to + go to his employer and get instructions; he or she--I incline to the + latter from Susan's grin when she thought I had blundered--forms a + plan. Black Steve is called in, and I am warned off by eleven o'clock + next morning. That's quick work, you know." + + "But what do they want?" + + "Yes, that's the question. Who had the house before you?" + + "A retired sea captain called Ferguson." + + "Anything remarkable about him?" + + "Not that ever I heard of." + + "I was wondering whether he could have buried something. Of course, + when people bury treasure nowadays they do it in the Post-Office + bank. But there are always some lunatics about. It would be a dull + world without them. At first I thought of some buried valuable. But + why, in that case, should they want your furniture? You don't happen + to have a Raphael or a first folio Shakespeare without knowing it?" + + "No, I don't think I have anything rarer than a Crown Derby tea-set." + + "That would hardly justify all this mystery. Besides, why should they + not openly state what they want? If they covet your tea-set, they can + surely offer a price for it without buying you out, lock, stock, and + barrel. No, as I read it, there is something which you do not know + that you have, and which you would not give up if you did know." + + "That is how I read it," said I. + + "Dr. Watson agrees, so that settles it." + + "Well, Mr. Holmes, what can it be?" + + "Let us see whether by this purely mental analysis we can get it to a + finer point. You have been in this house a year." + + "Nearly two." + + "All the better. During this long period no one wants anything from + you. Now suddenly within three or four days you have urgent demands. + What would you gather from that?" + + "It can only mean," said I, "that the object, whatever it may be, has + only just come into the house." + + "Settled once again," said Holmes. "Now, Mrs. Maberley, has any + object just arrived?" + + "No, I have bought nothing new this year." + + "Indeed! That is very remarkable. Well, I think we had best let + matters develop a little further until we have clearer data. Is that + lawyer of yours a capable man?" + + "Mr. Sutro is most capable." + + "Have you another maid, or was the fair Susan, who has just banged + your front door, alone?" + + "I have a young girl." + + "Try and get Sutro to spend a night or two in the house. You might + possibly want protection." + + "Against whom?" + + "Who knows? The matter is certainly obscure. If I can't find what + they are after, I must approach the matter from the other end and try + to get at the principal. Did this house-agent man give any address?" + + "Simply his card and occupation. Haines-Johnson, Auctioneer and + Valuer." + + "I don't think we shall find him in the directory. Honest business + men don't conceal their place of business. Well, you will let me know + any fresh development. I have taken up your case, and you may rely + upon it that I shall see it through." + + As we passed through the hall Holmes's eyes, which missed nothing, + lighted upon several trunks and cases which were piled in a corner. + The labels shone out upon them. + + "'Milano.' 'Lucerne.' These are from Italy." + + "They are poor Douglas's things." + + "You have not unpacked them? How long have you had them?" + + "They arrived last week." + + "But you said--why, surely this might be the missing link. How do we + know that there is not something of value there?" + + "There could not possibly be, Mr. Holmes. Poor Douglas had only his + pay and a small annuity. What could he have of value?" + + Holmes was lost in thought. + + "Delay no longer, Mrs. Maberley," he said at last. "Have these things + taken upstairs to your bedroom. Examine them as soon as possible and + see what they contain. I will come to-morrow and hear your report." + + It was quite evident that The Three Gables was under very close + surveillance, for as we came round the high hedge at the end of the + lane there was the negro prize-fighter standing in the shadow. We + came on him quite suddenly, and a grim and menacing figure he looked + in that lonely place. Holmes clapped his hand to his pocket. + + "Lookin' for your gun, Masser Holmes?" + + "No, for my scent-bottle, Steve." + + "You are funny, Masser Holmes, ain't you?" + + "It won't be funny for you, Steve, if I get after you. I gave you + fair warning this morning." + + "Well, Masser Holmes, I done gone think over what you said, and I + don't want no more talk about that affair of Masser Perkins. S'pose I + can help you, Masser Holmes, I will." + + "Well, then, tell me who is behind you on this job." + + "So help me the Lord! Masser Holmes, I told you the truth before. I + don't know. My boss Barney gives me orders and that's all." + + "Well, just bear in mind, Steve, that the lady in that house, and + everything under that roof, is under my protection. Don't forget it." + + "All right, Masser Holmes. I'll remember." + + "I've got him thoroughly frightened for his own skin, Watson," Holmes + remarked as we walked on. "I think he would double-cross his employer + if he knew who he was. It was lucky I had some knowledge of the + Spencer John crowd, and that Steve was one of them. Now, Watson, this + is a case for Langdale Pike, and I am going to see him now. When I + get back I may be clearer in the matter." + + I saw no more of Holmes during the day, but I could well imagine how + he spent it, for Langdale Pike was his human book of reference upon + all matters of social scandal. This strange, languid creature spent + his waking hours in the bow window of a St. James's Street club and + was the receiving-station as well as the transmitter for all the + gossip of the metropolis. He made, it was said, a four-figure income + by the paragraphs which he contributed every week to the garbage + papers which cater to an inquisitive public. If ever, far down in the + turbid depths of London life, there was some strange swirl or eddy, + it was marked with automatic exactness by this human dial upon the + surface. Holmes discreetly helped Langdale to knowledge, and on + occasion was helped in turn. + + When I met my friend in his room early next morning, I was conscious + from his bearing that all was well, but none the less a most + unpleasant surprise was awaiting us. It took the shape of the + following telegram: + + Please come out at once. Client's house burgled in the night. Police + in possession. + Sutro. + + Holmes whistled. "The drama has come to a crisis, and quicker than I + had expected. There is a great driving-power at the back of this + business, Watson, which does not surprise me after what I have heard. + This Sutro, of course, is her lawyer. I made a mistake, I fear, in + not asking you to spend the night on guard. This fellow has clearly + proved a broken reed. Well, there is nothing for it but another + journey to Harrow Weald." + + We found The Three Gables a very different establishment to the + orderly household of the previous day. A small group of idlers had + assembled at the garden gate, while a couple of constables were + examining the windows and the geranium beds. Within we met a gray old + gentleman, who introduced himself as the lawyer, together with a + bustling, rubicund inspector, who greeted Holmes as an old friend. + + "Well, Mr. Holmes, no chance for you in this case, I'm afraid. Just a + common, ordinary burglary, and well within the capacity of the poor + old police. No experts need apply." + + "I am sure the case is in very good hands," said Holmes. "Merely a + common burglary, you say?" + + "Quite so. We know pretty well who the men are and where to find + them. It is that gang of Barney Stockdale, with the big nigger in + it--they've been seen about here." + + "Excellent! What did they get?" + + "Well, they don't seem to have got much. Mrs. Maberley was + chloroformed and the house was-- Ah! here is the lady herself." + + Our friend of yesterday, looking very pale and ill, had entered the + room, leaning upon a little maidservant. + + "You gave me good advice, Mr. Holmes," said she, smiling ruefully. + "Alas, I did not take it! I did not wish to trouble Mr. Sutro, and so + I was unprotected." + + "I only heard of it this morning," the lawyer explained. + + "Mr. Holmes advised me to have some friend in the house. I neglected + his advice, and I have paid for it." + + "You look wretchedly ill," said Holmes. "Perhaps you are hardly equal + to telling me what occurred." + + "It is all here," said the inspector, tapping a bulky notebook. + + "Still, if the lady is not too exhausted--" + + "There is really so little to tell. I have no doubt that wicked Susan + had planned an entrance for them. They must have known the house to + an inch. I was conscious for a moment of the chloroform rag which was + thrust over my mouth, but I have no notion how long I may have been + senseless. When I woke, one man was at the bedside and another was + rising with a bundle in his hand from among my son's baggage, which + was partially opened and littered over the floor. Before he could get + away I sprang up and seized him." + + "You took a big risk," said the inspector. + + "I clung to him, but he shook me off, and the other may have struck + me, for I can remember no more. Mary the maid heard the noise and + began screaming out of the window. That brought the police, but the + rascals had got away." + + "What did they take?" + + "Well, I don't think there is anything of value missing. I am sure + there was nothing in my son's trunks." + + "Did the men leave no clue?" + + "There was one sheet of paper which I may have torn from the man that + I grasped. It was lying all crumpled on the floor. It is in my son's + handwriting." + + "Which means that it is not of much use," said the inspector. "Now if + it had been in the burglar's--" + + "Exactly," said Holmes. "What rugged common sense! None the less, I + should be curious to see it." + + The inspector drew a folded sheet of foolscap from his pocketbook. + + "I never pass anything, however trifling," said he with some + pomposity. "That is my advice to you, Mr. Holmes. In twenty-five + years' experience I have learned my lesson. There is always the + chance of finger-marks or something." + + Holmes inspected the sheet of paper. + + "What do you make of it, Inspector?" + + "Seems to be the end of some queer novel, so far as I can see." + + "It may certainly prove to be the end of a queer tale," said Holmes. + "You have noticed the number on the top of the page. It is two + hundred and forty-five. Where are the odd two hundred and forty-four + pages?" + + "Well, I suppose the burglars got those. Much good may it do them!" + + "It seems a queer thing to break into a house in order to steal such + papers as that. Does it suggest anything to you, Inspector?" + + "Yes, sir, it suggests that in their hurry the rascals just grabbed + at what came first to hand. I wish them joy of what they got." + + "Why should they go to my son's things?" asked Mrs. Maberley. + + "Well, they found nothing valuable downstairs, so they tried their + luck upstairs. That is how I read it. What do you make of it, Mr. + Holmes?" + + "I must think it over, Inspector. Come to the window, Watson." Then, + as we stood together, he read over the fragment of paper. It began in + the middle of a sentence and ran like this: + + "... face bled considerably from the cuts and blows, but it was + nothing to the bleeding of his heart as he saw that lovely face, the + face for which he had been prepared to sacrifice his very life, + looking out at his agony and humiliation. She smiled--yes, by Heaven! + she smiled, like the heartless fiend she was, as he looked up at her. + It was at that moment that love died and hate was born. Man must live + for something. If it is not for your embrace, my lady, then it shall + surely be for your undoing and my complete revenge." + + "Queer grammar!" said Holmes with a smile as he handed the paper back + to the inspector. "Did you notice how the 'he' suddenly changed to + 'my'? The writer was so carried away by his own story that he + imagined himself at the supreme moment to be the hero." + + "It seemed mighty poor stuff," said the inspector as he replaced it + in his book. "What! are you off, Mr. Holmes?" + + "I don't think there is anything more for me to do now that the case + is in such capable hands. By the way, Mrs. Maberley, did you say you + wished to travel?" + + "It has always been my dream, Mr. Holmes." + + "Where would you like to go--Cairo, Madeira, the Riviera?" + + "Oh, if I had the money I would go round the world." + + "Quite so. Round the world. Well, good-morning. I may drop you a line + in the evening." As we passed the window I caught a glimpse of the + inspector's smile and shake of the head. "These clever fellows have + always a touch of madness." That was what I read in the inspector's + smile. + + "Now, Watson, we are at the last lap of our little journey," said + Holmes when we were back in the roar of central London once more. "I + think we had best clear the matter up at once, and it would be well + that you should come with me, for it is safer to have a witness when + you are dealing with such a lady as Isadora Klein." + + We had taken a cab and were speeding to some address in Grosvenor + Square. Holmes had been sunk in thought, but he roused himself + suddenly. + + "By the way, Watson, I suppose you see it all clearly?" + + "No, I can't say that I do. I only gather that we are going to see + the lady who is behind all this mischief." + + "Exactly! But does the name Isadora Klein convey nothing to you? She + was, of course, the celebrated beauty. There was never a woman to + touch her. She is pure Spanish, the real blood of the masterful + Conquistadors, and her people have been leaders in Pernambuco for + generations. She married the aged German sugar king, Klein, and + presently found herself the richest as well as the most lovely widow + upon earth. Then there was an interval of adventure when she pleased + her own tastes. She had several lovers, and Douglas Maberley, one of + the most striking men in London, was one of them. It was by all + accounts more than an adventure with him. He was not a society + butterfly but a strong, proud man who gave and expected all. But she + is the 'belle dame sans merci' of fiction. When her caprice is + satisfied the matter is ended, and if the other party in the matter + can't take her word for it she knows how to bring it home to him." + + "Then that was his own story--" + + "Ah! you are piecing it together now. I hear that she is about to + marry the young Duke of Lomond, who might almost be her son. His + Grace's ma might overlook the age, but a big scandal would be a + different matter, so it is imperative-- Ah! here we are." + + It was one of the finest corner-houses of the West End. A + machine-like footman took up our cards and returned with word that + the lady was not at home. "Then we shall wait until she is," said + Holmes cheerfully. + + The machine broke down. + + "Not at home means not at home to you," said the footman. + + "Good," Holmes answered. "That means that we shall not have to wait. + Kindly give this note to your mistress." + + He scribbled three or four words upon a sheet of his notebook, folded + it, and handed it to the man. + + "What did you say, Holmes?" I asked. + + "I simply wrote: 'Shall it be the police, then?' I think that should + pass us in." + + It did--with amazing celerity. A minute later we were in an Arabian + Nights drawing-room, vast and wonderful, in a half gloom, picked out + with an occasional pink electric light. The lady had come, I felt, to + that time of life when even the proudest beauty finds the half light + more welcome. She rose from a settee as we entered: tall, queenly, a + perfect figure, a lovely mask-like face, with two wonderful Spanish + eyes which looked murder at us both. + + "What is this intrusion--and this insulting message?" she asked, + holding up the slip of paper. + + "I need not explain, madame. I have too much respect for your + intelligence to do so--though I confess that intelligence has been + surprisingly at fault of late." + + "How so, sir?" + + "By supposing that your hired bullies could frighten me from my work. + Surely no man would take up my profession if it were not that danger + attracts him. It was you, then, who forced me to examine the case of + young Maberley." + + "I have no idea what you are talking about. What have I to do with + hired bullies?" + + Holmes turned away wearily. + + "Yes, I have underrated your intelligence. Well, good-afternoon!" + + "Stop! Where are you going?" + + "To Scotland Yard." + + We had not got halfway to the door before she had overtaken us and + was holding his arm. She had turned in a moment from steel to velvet. + + "Come and sit down, gentlemen. Let us talk this matter over. I feel + that I may be frank with you, Mr. Holmes. You have the feelings of a + gentleman. How quick a woman's instinct is to find it out. I will + treat you as a friend." + + "I cannot promise to reciprocate, madame. I am not the law, but I + represent justice so far as my feeble powers go. I am ready to + listen, and then I will tell you how I will act." + + "No doubt it was foolish of me to threaten a brave man like + yourself." + + "What was really foolish, madame, is that you have placed yourself in + the power of a band of rascals who may blackmail or give you away." + + "No, no! I am not so simple. Since I have promised to be frank, I may + say that no one, save Barney Stockdale and Susan, his wife, have the + least idea who their employer is. As to them, well, it is not the + first--" She smiled and nodded with a charming coquettish intimacy. + + "I see. You've tested them before." + + "They are good hounds who run silent." + + "Such hounds have a way sooner or later of biting the hand that feeds + them. They will be arrested for this burglary. The police are already + after them." + + "They will take what comes to them. That is what they are paid for. I + shall not appear in the matter." + + "Unless I bring you into it." + + "No, no, you would not. You are a gentleman. It is a woman's secret." + + "In the first place, you must give back this manuscript." + + She broke into a ripple of laughter and walked to the fireplace. + There was a calcined mass which she broke up with the poker. "Shall I + give this back?" she asked. So roguish and exquisite did she look as + she stood before us with a challenging smile that I felt of all + Holmes's criminals this was the one whom he would find it hardest to + face. However, he was immune from sentiment. + + "That seals your fate," he said coldly. "You are very prompt in your + actions, madame, but you have overdone it on this occasion." + + She threw the poker down with a clatter. + + "How hard you are!" she cried. "May I tell you the whole story?" + + "I fancy I could tell it to you." + + "But you must look at it with my eyes, Mr. Holmes. You must realize + it from the point of view of a woman who sees all her life's ambition + about to be ruined at the last moment. Is such a woman to be blamed + if she protects herself?" + + "The original sin was yours." + + "Yes, yes! I admit it. He was a dear boy, Douglas, but it so chanced + that he could not fit into my plans. He wanted marriage--marriage, + Mr. Holmes--with a penniless commoner. Nothing less would serve him. + Then he became pertinacious. Because I had given he seemed to think + that I still must give, and to him only. It was intolerable. At last + I had to make him realize it." + + "By hiring ruffians to beat him under your own window." + + "You do indeed seem to know everything. Well, it is true. Barney and + the boys drove him away, and were, I admit, a little rough in doing + so. But what did he do then? Could I have believed that a gentleman + would do such an act? He wrote a book in which he described his own + story. I, of course, was the wolf; he the lamb. It was all there, + under different names, of course; but who in all London would have + failed to recognize it? What do you say to that, Mr. Holmes?" + + "Well, he was within his rights." + + "It was as if the air of Italy had got into his blood and brought + with it the old cruel Italian spirit. He wrote to me and sent me a + copy of his book that I might have the torture of anticipation. There + were two copies, he said--one for me, one for his publisher." + + "How did you know the publisher's had not reached him?" + + "I knew who his publisher was. It is not his only novel, you know. I + found out that he had not heard from Italy. Then came Douglas's + sudden death. So long as that other manuscript was in the world there + was no safety for me. Of course, it must be among his effects, and + these would be returned to his mother. I set the gang at work. One of + them got into the house as servant. I wanted to do the thing + honestly. I really and truly did. I was ready to buy the house and + everything in it. I offered any price she cared to ask. I only tried + the other way when everything else had failed. Now, Mr. Holmes, + granting that I was too hard on Douglas--and, God knows, I am sorry + for it!--what else could I do with my whole future at stake?" + + Sherlock Holmes shrugged his shoulders. + + "Well, well," said he, "I suppose I shall have to compound a felony + as usual. How much does it cost to go round the world in first-class + style?" + + The lady stared in amazement. + + "Could it be done on five thousand pounds?" + + "Well, I should think so, indeed!" + + "Very good. I think you will sign me a check for that, and I will see + that it comes to Mrs. Maberley. You owe her a little change of air. + Meantime, lady"--he wagged a cautionary forefinger--"have a care! + Have a care! You can't play with edged tools forever without cutting + those dainty hands." + + + + + + + THE ADVENTURE OF THE SUSSEX VAMPIRE + + Holmes had read carefully a note which the last post had brought him. + Then, with the dry chuckle which was his nearest approach to a + laugh, he tossed it over to me. + + "For a mixture of the modern and the mediaeval, of the practical and + of the wildly fanciful, I think this is surely the limit," said he. + "What do you make of it, Watson?" + + I read as follows: + + 46, Old Jewry, + Nov. 19th. + Re Vampires + Sir: + Our client, Mr. Robert Ferguson, of Ferguson and Muirhead, tea + brokers, of Mincing Lane, has made some inquiry from us in a + communication of even date concerning vampires. As our firm + specializes entirely upon the assessment of machinery the matter + hardly comes within our purview, and we have therefore recommended + Mr. Ferguson to call upon you and lay the matter before you. We have + not forgotten your successful action in the case of Matilda Briggs. + We are, sir, + Faithfully yours, + Morrison, Morrison, and Dodd. + per E. J. C. + + "Matilda Briggs was not the name of a young woman, Watson," said + Holmes in a reminiscent voice. "It was a ship which is associated + with the giant rat of Sumatra, a story for which the world is not yet + prepared. But what do we know about vampires? Does it come within our + purview either? Anything is better than stagnation, but really we + seem to have been switched on to a Grimms' fairy tale. Make a long + arm, Watson, and see what V has to say." + + I leaned back and took down the great index volume to which he + referred. Holmes balanced it on his knee, and his eyes moved slowly + and lovingly over the record of old cases, mixed with the accumulated + information of a lifetime. + + "Voyage of the Gloria Scott," he read. "That was a bad business. I + have some recollection that you made a record of it, Watson, though I + was unable to congratulate you upon the result. Victor Lynch, the + forger. Venomous lizard or gila. Remarkable case, that! Vittoria, + the circus belle. Vanderbilt and the Yeggman. Vipers. Vigor, the + Hammersmith wonder. Hullo! Hullo! Good old index. You can't beat it. + Listen to this, Watson. Vampirism in Hungary. And again, Vampires in + Transylvania." He turned over the pages with eagerness, but after a + short intent perusal he threw down the great book with a snarl of + disappointment. + + "Rubbish, Watson, rubbish! What have we to do with walking corpses + who can only be held in their grave by stakes driven through their + hearts? It's pure lunacy." + + "But surely," said I, "the vampire was not necessarily a dead man? A + living person might have the habit. I have read, for example, of the + old sucking the blood of the young in order to retain their youth." + + "You are right, Watson. It mentions the legend in one of these + references. But are we to give serious attention to such things? This + agency stands flat-footed upon the ground, and there it must remain. + The world is big enough for us. No ghosts need apply. I fear that we + cannot take Mr. Robert Ferguson very seriously. Possibly this note + may be from him and may throw some light upon what is worrying him." + + He took up a second letter which had lain unnoticed upon the table + while he had been absorbed with the first. This he began to read with + a smile of amusement upon his face which gradually faded away into an + expression of intense interest and concentration. When he had + finished he sat for some little time lost in thought with the letter + dangling from his fingers. Finally, with a start, he aroused himself + from his reverie. + + "Cheeseman's, Lamberley. Where is Lamberley, Watson?" + + "It is in Sussex, south of Horsham." + + "Not very far, eh? And Cheeseman's?" + + "I know that country, Holmes. It is full of old houses which are + named after the men who built them centuries ago. You get Odley's and + Harvey's and Carriton's--the folk are forgotten but their names live + in their houses. + + "Precisely," said Holmes coldly. It was one of the peculiarities of + his proud, self-contained nature that though he docketed any fresh + information very quietly and accurately in his brain, he seldom made + any acknowledgment to the giver. "I rather fancy we shall know a good + deal more about Cheeseman's, Lamberley, before we are through. The + letter is, as I had hoped, from Robert Ferguson. By the way, he + claims acquaintance with you." + + "With me!" + + "You had better read it." + + He handed the letter across. It was headed with the address quoted. + + Dear Mr. Holmes [it said]: + I have been recommended to you by my lawyers, but indeed the matter + is so extraordinarily delicate that it is most difficult to discuss. + It concerns a friend for whom I am acting. This gentleman married + some five years ago a Peruvian lady, the daughter of a Peruvian + merchant, whom he had met in connection with the importation of + nitrates. The lady was very beautiful, but the fact of her foreign + birth and of her alien religion always caused a separation of + interests and of feelings between husband and wife, so that after a + time his love may have cooled towards her and he may have come to + regard their union as a mistake. He felt there were sides of her + character which he could never explore or understand. This was the + more painful as she was as loving a wife as a man could have--to all + appearance absolutely devoted. + Now for the point which I will make more plain when we meet. Indeed, + this note is merely to give you a general idea of the situation and + to ascertain whether you would care to interest yourself in the + matter. The lady began to show some curious traits quite alien to her + ordinarily sweet and gentle disposition. The gentleman had been + married twice and he had one son by the first wife. This boy was now + fifteen, a very charming and affectionate youth, though unhappily + injured through an accident in childhood. Twice the wife was caught + in the act of assaulting this poor lad in the most unprovoked way. + Once she struck him with a stick and left a great weal on his arm. + This was a small matter, however, compared with her conduct to her + own child, a dear boy just under one year of age. On one occasion + about a month ago this child had been left by its nurse for a few + minutes. A loud cry from the baby, as of pain, called the nurse back. + As she ran into the room she saw her employer, the lady, leaning over + the baby and apparently biting his neck. There was a small wound in + the neck from which a stream of blood had escaped. The nurse was so + horrified that she wished to call the husband, but the lady implored + her not to do so and actually gave her five pounds as a price for her + silence. No explanation was ever given, and for the moment the matter + was passed over. + It left, however, a terrible impression upon the nurse's mind, and + from that time she began to watch her mistress closely and to keep a + closer guard upon the baby, whom she tenderly loved. It seemed to her + that even as she watched the mother, so the mother watched her, and + that every time she was compelled to leave the baby alone the mother + was waiting to get at it. Day and night the nurse covered the child, + and day and night the silent, watchful mother seemed to be lying in + wait as a wolf waits for a lamb. It must read most incredible to you, + and yet I beg you to take it seriously, for a child's life and a + man's sanity may depend upon it. + At last there came one dreadful day when the facts could no longer be + concealed from the husband. The nurse's nerve had given way; she + could stand the strain no longer, and she made a clean breast of it + all to the man. To him it seemed as wild a tale as it may now seem to + you. He knew his wife to be a loving wife, and, save for the assaults + upon her stepson, a loving mother. Why, then, should she wound her + own dear little baby? He told the nurse that she was dreaming, that + her suspicions were those of a lunatic, and that such libels upon her + mistress were not to be tolerated. While they were talking a sudden + cry of pain was heard. Nurse and master rushed together to the + nursery. Imagine his feelings, Mr. Holmes, as he saw his wife rise + from a kneeling position beside the cot and saw blood upon the + child's exposed neck and upon the sheet. With a cry of horror, he + turned his wife's face to the light and saw blood all round her lips. + It was she--she beyond all question--who had drunk the poor baby's + blood. + So the matter stands. She is now confined to her room. There has been + no explanation. The husband is half demented. He knows, and I know, + little of vampirism beyond the name. We had thought it was some wild + tale of foreign parts. And yet here in the very heart of the English + Sussex--well, all this can be discussed with you in the morning. Will + you see me? Will you use your great powers in aiding a distracted + man? If so, kindly wire to Ferguson, Cheeseman's, Lamberley, and I + will be at your rooms by ten o'clock. + Yours faithfully, + Robert Ferguson. + P. S. I believe your friend Watson played Rugby for Blackheath when I + was three-quarter for Richmond. It is the only personal introduction + which I can give. + + "Of course I remembered him," said I as I laid down the letter. "Big + Bob Ferguson, the finest three-quarter Richmond ever had. He was + always a good-natured chap. It's like him to be so concerned over a + friend's case." + + Holmes looked at me thoughtfully and shook his head. + + "I never get your limits, Watson," said he. "There are unexplored + possibilities about you. Take a wire down, like a good fellow. 'Will + examine your case with pleasure.'" + + "Your case!" + + "We must not let him think that this agency is a home for the + weak-minded. Of course it is his case. Send him that wire and let the + matter rest till morning." + + Promptly at ten o'clock next morning Ferguson strode into our room. I + had remembered him as a long, slab-sided man with loose limbs and a + fine turn of speed which had carried him round many an opposing back. + There is surely nothing in life more painful than to meet the wreck + of a fine athlete whom one has known in his prime. His great frame + had fallen in, his flaxen hair was scanty, and his shoulders were + bowed. I fear that I roused corresponding emotions in him. + + "Hullo, Watson," said he, and his voice was still deep and hearty. + "You don't look quite the man you did when I threw you over the ropes + into the crowd at the Old Deer Park. I expect I have changed a bit + also. But it's this last day or two that has aged me. I see by your + telegram, Mr. Holmes, that it is no use my pretending to be anyone's + deputy." + + "It is simpler to deal direct," said Holmes. + + "Of course it is. But you can imagine how difficult it is when you + are speaking of the one woman whom you are bound to protect and help. + What can I do? How am I to go to the police with such a story? And + yet the kiddies have got to be protected. Is it madness, Mr. Holmes? + Is it something in the blood? Have you any similar case in your + experience? For God's sake, give me some advice, for I am at my wit's + end." + + "Very naturally, Mr. Ferguson. Now sit here and pull yourself + together and give me a few clear answers. I can assure you that I am + very far from being at my wit's end, and that I am confident we shall + find some solution. First of all, tell me what steps you have taken. + Is your wife still near the children?" + + "We had a dreadful scene. She is a most loving woman, Mr. Holmes. If + ever a woman loved a man with all her heart and soul, she loves me. + She was cut to the heart that I should have discovered this horrible, + this incredible, secret. She would not even speak. She gave no answer + to my reproaches, save to gaze at me with a sort of wild, despairing + look in her eyes. Then she rushed to her room and locked herself in. + Since then she has refused to see me. She has a maid who was with her + before her marriage, Dolores by name--a friend rather than a servant. + She takes her food to her." + + "Then the child is in no immediate danger?" + + "Mrs. Mason, the nurse, has sworn that she will not leave it night or + day. I can absolutely trust her. I am more uneasy about poor little + Jack, for, as I told you in my note, he has twice been assaulted by + her." + + "But never wounded?" + + "No, she struck him savagely. It is the more terrible as he is a poor + little inoffensive cripple." Ferguson's gaunt features softened as he + spoke of his boy. "You would think that the dear lad's condition + would soften anyone's heart. A fall in childhood and a twisted spine, + Mr. Holmes. But the dearest, most loving heart within." + + Holmes had picked up the letter of yesterday and was reading it over. + "What other inmates are there in your house, Mr. Ferguson?" + + "Two servants who have not been long with us. One stable-hand, + Michael, who sleeps in the house. My wife, myself, my boy Jack, baby, + Dolores, and Mrs. Mason. That is all." + + "I gather that you did not know your wife well at the time of your + marriage?" + + "I had only known her a few weeks." + + "How long had this maid Dolores been with her?" + + "Some years." + + "Then your wife's character would really be better known by Dolores + than by you?" + + "Yes, you may say so." + + Holmes made a note. + + "I fancy," said he, "that I may be of more use at Lamberley than + here. It is eminently a case for personal investigation. If the lady + remains in her room, our presence could not annoy or inconvenience + her. Of course, we would stay at the inn." + + Ferguson gave a gesture of relief. + + "It is what I hoped, Mr. Holmes. There is an excellent train at two + from Victoria if you could come." + + "Of course we could come. There is a lull at present. I can give you + my undivided energies. Watson, of course, comes with us. But there + are one or two points upon which I wish to be very sure before I + start. This unhappy lady, as I understand it, has appeared to assault + both the children, her own baby and your little son?" + + "That is so." + + "But the assaults take different forms, do they not? She has beaten + your son." + + "Once with a stick and once very savagely with her hands." + + "Did she give no explanation why she struck him?" + + "None save that she hated him. Again and again she said so." + + "Well, that is not unknown among stepmothers. A posthumous jealousy, + we will say. Is the lady jealous by nature?" + + "Yes, she is very jealous--jealous with all the strength of her fiery + tropical love." + + "But the boy--he is fifteen, I understand, and probably very + developed in mind, since his body has been circumscribed in action. + Did he give you no explanation of these assaults?" + + "No, he declared there was no reason." + + "Were they good friends at other times?" + + "No, there was never any love between them." + + "Yet you say he is affectionate?" + + "Never in the world could there be so devoted a son. My life is his + life. He is absorbed in what I say or do." + + Once again Holmes made a note. For some time he sat lost in thought. + + "No doubt you and the boy were great comrades before this second + marriage. You were thrown very close together, were you not?" + + "Very much so." + + "And the boy, having so affectionate a nature, was devoted, no doubt, + to the memory of his mother?" + + "Most devoted." + + "He would certainly seem to be a most interesting lad. There is one + other point about these assaults. Were the strange attacks upon the + baby and the assaults upon your son at the same period?" + + "In the first case it was so. It was as if some frenzy had seized + her, and she had vented her rage upon both. In the second case it was + only Jack who suffered. Mrs. Mason had no complaint to make about the + baby." + + "That certainly complicates matters." + + "I don't quite follow you, Mr. Holmes." + + "Possibly not. One forms provisional theories and waits for time or + fuller knowledge to explode them. A bad habit, Mr. Ferguson, but + human nature is weak. I fear that your old friend here has given an + exaggerated view of my scientific methods. However, I will only say + at the present stage that your problem does not appear to me to be + insoluble, and that you may expect to find us at Victoria at two + o'clock." + + It was evening of a dull, foggy November day when, having left our + bags at the Chequers, Lamberley, we drove through the Sussex clay of + a long winding lane and finally reached the isolated and ancient + farmhouse in which Ferguson dwelt. It was a large, straggling + building, very old in the centre, very new at the wings with towering + Tudor chimneys and a lichen-spotted, high-pitched roof of Horsham + slabs. The doorsteps were worn into curves, and the ancient tiles + which lined the porch were marked with the rebus of a cheese and a + man after the original builder. Within, the ceilings were corrugated + with heavy oaken beams, and the uneven floors sagged into sharp + curves. An odour of age and decay pervaded the whole crumbling + building. + + There was one very large central room into which Ferguson led us. + Here, in a huge old-fashioned fireplace with an iron screen behind it + dated 1670, there blazed and spluttered a splendid log fire. + + The room, as I gazed round, was a most singular mixture of dates and + of places. The half-panelled walls may well have belonged to the + original yeoman farmer of the seventeenth century. They were + ornamented, however, on the lower part by a line of well-chosen + modern water-colours; while above, where yellow plaster took the + place of oak, there was hung a fine collection of South American + utensils and weapons, which had been brought, no doubt, by the + Peruvian lady upstairs. Holmes rose, with that quick curiosity which + sprang from his eager mind, and examined them with some care. He + returned with his eyes full of thought. + + "Hullo!" he cried. "Hullo!" + + A spaniel had lain in a basket in the corner. It came slowly forward + towards its master, walking with difficulty. Its hind legs moved + irregularly and its tail was on the ground. It licked Ferguson's + hand. + + "What is it, Mr. Holmes?" + + "The dog. What's the matter with it?" + + "That's what puzzled the vet. A sort of paralysis. Spinal + meningitis, he thought. But it is passing. He'll be all right + soon--won't you, Carlo?" + + A shiver of assent passed through the drooping tail. The dog's + mournful eyes passed from one of us to the other. He knew that we + were discussing his case. + + "Did it come on suddenly?" + + "In a single night." + + "How long ago?" + + "It may have been four months ago." + + "Very remarkable. Very suggestive." + + "What do you see in it, Mr. Holmes?" + + "A confirmation of what I had already thought." + + "For God's sake, what do you think, Mr. Holmes? It may be a mere + intellectual puzzle to you, but it is life and death to me! My wife a + would-be murderer--my child in constant danger! Don't play with me, + Mr. Holmes. It is too terribly serious." + + The big Rugby three-quarter was trembling all over. Holmes put his + hand soothingly upon his arm. + + "I fear that there is pain for you, Mr. Ferguson, whatever the + solution may be," said he. "I would spare you all I can. I cannot say + more for the instant, but before I leave this house I hope I may have + something definite." + + "Please God you may! If you will excuse me, gentlemen, I will go up + to my wife's room and see if there has been any change." + + He was away some minutes, during which Holmes resumed his examination + of the curiosities upon the wall. When our host returned it was clear + from his downcast face that he had made no progress. He brought with + him a tall, slim, brown-faced girl. + + "The tea is ready, Dolores," said Ferguson. "See that your mistress + has everything she can wish." + + "She verra ill," cried the girl, looking with indignant eyes at her + master. "She no ask for food. She verra ill. She need doctor. I + frightened stay alone with her without doctor." + + Ferguson looked at me with a question in his eyes. + + "I should be so glad if I could be of use." + + "Would your mistress see Dr. Watson?" + + "I take him. I no ask leave. She needs doctor." + + "Then I'll come with you at once." + + I followed the girl, who was quivering with strong emotion, up the + staircase and down an ancient corridor. At the end was an + iron-clamped and massive door. It struck me as I looked at it that if + Ferguson tried to force his way to his wife he would find it no easy + matter. The girl drew a key from her pocket, and the heavy oaken + planks creaked upon their old hinges. I passed in and she swiftly + followed, fastening the door behind her. + + On the bed a woman was lying who was clearly in a high fever. She + was only half conscious, but as I entered she raised a pair of + frightened but beautiful eyes and glared at me in apprehension. + Seeing a stranger, she appeared to be relieved and sank back with a + sigh upon the pillow. I stepped up to her with a few reassuring + words, and she lay still while I took her pulse and temperature. Both + were high, and yet my impression was that the condition was rather + that of mental and nervous excitement than of any actual seizure. + + "She lie like that one day, two day. I 'fraid she die," said the + girl. + + The woman turned her flushed and handsome face towards me. + + "Where is my husband?" + + "He is below and would wish to see you." + + "I will not see him. I will not see him." Then she seemed to wander + off into delirium. "A fiend! A fiend! Oh, what shall I do with this + devil?" + + "Can I help you in any way?" + + "No. No one can help. It is finished. All is destroyed. Do what I + will, all is destroyed." + + The woman must have some strange delusion. I could not see honest Bob + Ferguson in the character of fiend or devil. + + "Madame," I said, "your husband loves you dearly. He is deeply + grieved at this happening." + + Again she turned on me those glorious eyes. + + "He loves me. Yes. But do I not love him? Do I not love him even to + sacrifice myself rather than break his dear heart? That is how I love + him. And yet he could think of me--he could speak of me so." + + "He is full of grief, but he cannot understand." + + "No, he cannot understand. But he should trust." + + "Will you not see him?" I suggested. + + "No, no, I cannot forget those terrible words nor the look upon his + face. I will not see him. Go now. You can do nothing for me. Tell him + only one thing. I want my child. I have a right to my child. That is + the only message I can send him." She turned her face to the wall and + would say no more. + + I returned to the room downstairs, where Ferguson and Holmes still + sat by the fire. Ferguson listened moodily to my account of the + interview. + + "How can I send her the child?" he said. "How do I know what strange + impulse might come upon her? How can I ever forget how she rose from + beside it with its blood upon her lips?" He shuddered at the + recollection. "The child is safe with Mrs. Mason, and there he must + remain." + + A smart maid, the only modern thing which we had seen in the house, + had brought in some tea. As she was serving it the door opened and a + youth entered the room. He was a remarkable lad, pale-faced and + fair-haired, with excitable light blue eyes which blazed into a + sudden flame of emotion and joy as they rested upon his father. He + rushed forward and threw his arms round his neck with the abandon of + a loving girl. + + "Oh, daddy," he cried, "I did not know that you were due yet. I + should have been here to meet you. Oh, I am so glad to see you!" + + Ferguson gently disengaged himself from the embrace with some little + show of embarrassment. + + "Dear old chap," said he, patting the flaxen head with a very tender + hand. "I came early because my friends, Mr. Holmes and Dr. Watson, + have been persuaded to come down and spend an evening with us." + + "Is that Mr. Holmes, the detective?" + + "Yes." + + The youth looked at us with a very penetrating and, as it seemed to + me, unfriendly gaze. + + "What about your other child, Mr. Ferguson?" asked Holmes. "Might we + make the acquaintance of the baby?" + + "Ask Mrs. Mason to bring baby down," said Ferguson. The boy went off + with a curious, shambling gait which told my surgical eyes that he + was suffering from a weak spine. Presently he returned, and behind + him came a tall, gaunt woman bearing in her arms a very beautiful + child, dark-eyed, golden-haired, a wonderful mixture of the Saxon and + the Latin. Ferguson was evidently devoted to it, for he took it into + his arms and fondled it most tenderly. + + "Fancy anyone having the heart to hurt him," he muttered as he + glanced down at the small, angry red pucker upon the cherub throat. + + It was at this moment that I chanced to glance at Holmes and saw a + most singular intentness in his expression. His face was as set as if + it had been carved out of old ivory, and his eyes, which had glanced + for a moment at father and child, were now fixed with eager curiosity + upon something at the other side of the room. Following his gaze I + could only guess that he was looking out through the window at the + melancholy, dripping garden. It is true that a shutter had half + closed outside and obstructed the view, but none the less it was + certainly at the window that Holmes was fixing his concentrated + attention. Then he smiled, and his eyes came back to the baby. On its + chubby neck there was this small puckered mark. Without speaking, + Holmes examined it with care. Finally he shook one of the dimpled + fists which waved in front of him. + + "Good-bye, little man. You have made a strange start in life. Nurse, + I should wish to have a word with you in private." + + He took her aside and spoke earnestly for a few minutes. I only heard + the last words, which were: "Your anxiety will soon, I hope, be set + at rest." The woman, who seemed to be a sour, silent kind of + creature, withdrew with the child. + + "What is Mrs. Mason like?" asked Holmes. + + "Not very prepossessing externally, as you can see, but a heart of + gold, and devoted to the child." + + "Do you like her, Jack?" Holmes turned suddenly upon the boy. His + expressive mobile face shadowed over, and he shook his head. + + "Jacky has very strong likes and dislikes," said Ferguson, putting + his arm round the boy. "Luckily I am one of his likes." + + The boy cooed and nestled his head upon his father's breast. Ferguson + gently disengaged him. + + "Run away, little Jacky," said he, and he watched his son with loving + eyes until he disappeared. "Now, Mr. Holmes," he continued when the + boy was gone, "I really feel that I have brought you on a fool's + errand, for what can you possibly do save give me your sympathy? It + must be an exceedingly delicate and complex affair from your point of + view." + + "It is certainly delicate," said my friend with an amused smile, "but + I have not been struck up to now with its complexity. It has been a + case for intellectual deduction, but when this original intellectual + deduction is confirmed point by point by quite a number of + independent incidents, then the subjective becomes objective and we + can say confidently that we have reached our goal. I had, in fact, + reached it before we left Baker Street, and the rest has merely been + observation and confirmation." + + Ferguson put his big hand to his furrowed forehead. + + "For heaven's sake, Holmes," he said hoarsely; "if you can see the + truth in this matter, do not keep me in suspense. How do I stand? + What shall I do? I care nothing as to how you have found your facts + so long as you have really got them." + + "Certainly I owe you an explanation, and you shall have it. But you + will permit me to handle the matter in my own way? Is the lady + capable of seeing us, Watson?" + + "She is ill, but she is quite rational." + + "Very good. It is only in her presence that we can clear the matter + up. Let us go up to her." + + "She will not see me," cried Ferguson. + + "Oh, yes, she will," said Holmes. He scribbled a few lines upon a + sheet of paper. "You at least have the entree, Watson. Will you have + the goodness to give the lady this note?" + + I ascended again and handed the note to Dolores, who cautiously + opened the door. A minute later I heard a cry from within, a cry in + which joy and surprise seemed to be blended. Dolores looked out. + + "She will see them. She will leesten," said she. + + At my summons Ferguson and Holmes came up. As we entered the room + Ferguson took a step or two towards his wife, who had raised herself + in the bed, but she held out her hand to repulse him. He sank into an + armchair, while Holmes seated himself beside him, after bowing to the + lady, who looked at him with wide-eyed amazement. + + "I think we can dispense with Dolores," said Holmes. "Oh, very well, + madame, if you would rather she stayed I can see no objection. Now, + Mr. Ferguson, I am a busy man with many calls, and my methods have to + be short and direct. The swiftest surgery is the least painful. Let + me first say what will ease your mind. Your wife is a very good, a + very loving, and a very ill-used woman." + + Ferguson sat up with a cry of joy. + + "Prove that, Mr. Holmes, and I am your debtor forever." + + "I will do so, but in doing so I must wound you deeply in another + direction." + + "I care nothing so long as you clear my wife. Everything on earth is + insignificant compared to that." + + "Let me tell you, then, the train of reasoning which passed through + my mind in Baker Street. The idea of a vampire was to me absurd. Such + things do not happen in criminal practice in England. And yet your + observation was precise. You had seen the lady rise from beside the + child's cot with the blood upon her lips." + + "I did." + + "Did it not occur to you that a bleeding wound may be sucked for some + other purpose than to draw the blood from it? Was there not a queen + in English history who sucked such a wound to draw poison from it?" + + "Poison!" + + "A South American household. My instinct felt the presence of those + weapons upon the wall before my eyes ever saw them. It might have + been other poison, but that was what occurred to me. When I saw that + little empty quiver beside the small bird-bow, it was just what I + expected to see. If the child were pricked with one of those arrows + dipped in curare or some other devilish drug, it would mean death if + the venom were not sucked out. + + "And the dog! If one were to use such a poison, would one not try it + first in order to see that it had not lost its power? I did not + foresee the dog, but at least I understand him and he fitted into my + reconstruction. + + "Now do you understand? Your wife feared such an attack. She saw it + made and saved the child's life, and yet she shrank from telling you + all the truth, for she knew how you loved the boy and feared lest it + break your heart." + + "Jacky!" + + "I watched him as you fondled the child just now. His face was + clearly reflected in the glass of the window where the shutter formed + a background. I saw such jealousy, such cruel hatred, as I have + seldom seen in a human face." + + "My Jacky!" + + "You have to face it, Mr. Ferguson. It is the more painful because it + is a distorted love, a maniacal exaggerated love for you, and + possibly for his dead mother, which has prompted his action. His very + soul is consumed with hatred for this splendid child, whose health + and beauty are a contrast to his own weakness." + + "Good God! It is incredible!" + + "Have I spoken the truth, madame?" + + The lady was sobbing, with her face buried in the pillows. Now she + turned to her husband. + + "How could I tell you, Bob? I felt the blow it would be to you. It + was better that I should wait and that it should come from some other + lips than mine. When this gentleman, who seems to have powers of + magic, wrote that he knew all, I was glad." + + "I think a year at sea would be my prescription for Master Jacky," + said Holmes, rising from his chair. "Only one thing is still clouded, + madame. We can quite understand your attacks upon Master Jacky. There + is a limit to a mother's patience. But how did you dare to leave the + child these last two days?" + + "I had told Mrs. Mason. She knew." + + "Exactly. So I imagined." + + Ferguson was standing by the bed, choking, his hands outstretched and + quivering. + + "This, I fancy, is the time for our exit, Watson," said Holmes in a + whisper. "If you will take one elbow of the too faithful Dolores, I + will take the other. There, now," he added as he closed the door + behind him, "I think we may leave them to settle the rest among + themselves." + + I have only one further note of this case. It is the letter which + Holmes wrote in final answer to that with which the narrative begins. + It ran thus: + + Baker Street, + Nov. 21st. + Re Vampires + Sir: + Referring to your letter of the 19th, I beg to state that I have + looked into the inquiry of your client, Mr. Robert Ferguson, of + Ferguson and Muirhead, tea brokers, of Mincing Lane, and that the + matter has been brought to a satisfactory conclusion. With thanks for + your recommendation, I am, sir, + Faithfully yours, + Sherlock Holmes. + + + + + + + THE ADVENTURE OF THE THREE GARRIDEBS + + It may have been a comedy, or it may have been a tragedy. It cost one + man his reason, it cost me a blood-letting, and it cost yet another + man the penalties of the law. Yet there was certainly an element of + comedy. Well, you shall judge for yourselves. + + I remember the date very well, for it was in the same month that + Holmes refused a knighthood for services which may perhaps some day + be described. I only refer to the matter in passing, for in my + position of partner and confidant I am obliged to be particularly + careful to avoid any indiscretion. I repeat, however, that this + enables me to fix the date, which was the latter end of June, 1902, + shortly after the conclusion of the South African War. Holmes had + spent several days in bed, as was his habit from time to time, but he + emerged that morning with a long foolscap document in his hand and a + twinkle of amusement in his austere gray eyes. + + "There is a chance for you to make some money, friend Watson," said + he. "Have you ever heard the name of Garrideb?" + + I admitted that I had not. + + "Well, if you can lay your hand upon a Garrideb, there's money in + it." + + "Why?" + + "Ah, that's a long story--rather a whimsical one, too. I don't think + in all our explorations of human complexities we have ever come upon + anything more singular. The fellow will be here presently for + cross-examination, so I won't open the matter up till he comes. But, + meanwhile, that's the name we want." + + The telephone directory lay on the table beside me, and I turned over + the pages in a rather hopeless quest. But to my amazement there was + this strange name in its due place. I gave a cry of triumph. + + "Here you are, Holmes! Here it is!" + + Holmes took the book from my hand. + + "'Garrideb, N.,' " he read, "'136 Little Ryder Street, W.' Sorry to + disappoint you, my dear Watson, but this is the man himself. That is + the address upon his letter. We want another to match him." + + Mrs. Hudson had come in with a card upon a tray. I took it up and + glanced at it. + + "Why, here it is!" I cried in amazement. "This is a different + initial. John Garrideb, Counsellor at Law, Moorville, Kansas, U. S. + A." + + Holmes smiled as he looked at the card. "I am afraid you must make + yet another effort, Watson," said he. "This gentleman is also in the + plot already, though I certainly did not expect to see him this + morning. However, he is in a position to tell us a good deal which I + want to know." + + A moment later he was in the room. Mr. John Garrideb, Counsellor at + Law, was a short, powerful man with the round, fresh, clean-shaven + face characteristic of so many American men of affairs. The general + effect was chubby and rather childlike, so that one received the + impression of quite a young man with a broad set smile upon his face. + His eyes, however, were arresting. Seldom in any human head have I + seen a pair which bespoke a more intense inward life, so bright were + they, so alert, so responsive to every change of thought. His accent + was American, but was not accompanied by any eccentricity of speech. + + "Mr. Holmes?" he asked, glancing from one to the other. "Ah, yes! + Your pictures are not unlike you, sir, if I may say so. I believe you + have had a letter from my namesake, Mr. Nathan Garrideb, have you + not?" + + "Pray sit down," said Sherlock Holmes. "We shall, I fancy, have a + good deal to discuss." He took up his sheets of foolscap. "You are, + of course, the Mr. John Garrideb mentioned in this document. But + surely you have been in England some time?" + + "Why do you say that, Mr. Holmes?" I seemed to read sudden suspicion + in those expressive eyes. + + "Your whole outfit is English." + + Mr. Garrideb forced a laugh. "I've read of your tricks, Mr. Holmes, + but I never thought I would be the subject of them. Where do you read + that?" + + "The shoulder cut of your coat, the toes of your boots--could anyone + doubt it?" + + "Well, well, I had no idea I was so obvious a Britisher. But business + brought me over here some time ago, and so, as you say, my outfit is + nearly all London. However, I guess your time is of value, and we did + not meet to talk about the cut of my socks. What about getting down + to that paper you hold in your hand?" + + Holmes had in some way ruffled our visitor, whose chubby face had + assumed a far less amiable expression. + + "Patience! Patience, Mr. Garrideb!" said my friend in a soothing + voice. "Dr. Watson would tell you that these little digressions of + mine sometimes prove in the end to have some bearing on the matter. + But why did Mr. Nathan Garrideb not come with you?" + + "Why did he ever drag you into it at all?" asked our visitor with a + sudden outflame of anger. "What in thunder had you to do with it? + Here was a bit of professional business between two gentlemen, and + one of them must needs call in a detective! I saw him this morning, + and he told me this fool-trick he had played me, and that's why I am + here. But I feel bad about it, all the same." + + "There was no reflection upon you, Mr. Garrideb. It was simply zeal + upon his part to gain your end--an end which is, I understand, + equally vital for both of you. He knew that I had means of getting + information, and, therefore, it was very natural that he should apply + to me." + + Our visitor's angry face gradually cleared. + + "Well, that puts it different," said he. "When I went to see him this + morning and he told me he had sent to a detective, I just asked for + your address and came right away. I don't want police butting into a + private matter. But if you are content just to help us find the man, + there can be no harm in that." + + "Well, that is just how it stands," said Holmes. "And now, sir, since + you are here, we had best have a clear account from your own lips. My + friend here knows nothing of the details." + + Mr. Garrideb surveyed me with not too friendly a gaze. + + "Need he know?" he asked. + + "We usually work together." + + "Well, there's no reason it should be kept a secret. I'll give you + the facts as short as I can make them. If you came from Kansas I + would not need to explain to you who Alexander Hamilton Garrideb was. + He made his money in real estate, and afterwards in the wheat pit at + Chicago, but he spent it in buying up as much land as would make one + of your counties, lying along the Arkansas River, west of Fort Dodge. + It's grazing-land and lumber-land and arable-land and + mineralized-land, and just every sort of land that brings dollars to + the man that owns it. + + "He had no kith nor kin--or, if he had, I never heard of it. But he + took a kind of pride in the queerness of his name. That was what + brought us together. I was in the law at Topeka, and one day I had a + visit from the old man, and he was tickled to death to meet another + man with his own name. It was his pet fad, and he was dead set to + find out if there were any more Garridebs in the world. 'Find me + another!' said he. I told him I was a busy man and could not spend my + life hiking round the world in search of Garridebs. 'None the less,' + said he, 'that is just what you will do if things pan out as I + planned them.' I thought he was joking, but there was a powerful lot + of meaning in the words, as I was soon to discover. + + "For he died within a year of saying them, and he left a will behind + him. It was the queerest will that has ever been filed in the State + of Kansas. His property was divided into three parts, and I was to + have one on condition that I found two Garridebs who would share the + remainder. It's five million dollars for each if it is a cent, but we + can't lay a finger on it until we all three stand in a row. + + "It was so big a chance that I just let my legal practice slide and I + set forth looking for Garridebs. There is not one in the United + States. I went through it, sir, with a fine-toothed comb and never a + Garrideb could I catch. Then I tried the old country. Sure enough + there was the name in the London telephone directory. I went after + him two days ago and explained the whole matter to him. But he is a + lone man, like myself, with some women relations, but no men. It says + three adult men in the will. So you see we still have a vacancy, and + if you can help to fill it we will be very ready to pay your + charges." + + "Well, Watson," said Holmes with a smile, "I said it was rather + whimsical, did I not? I should have thought, sir, that your obvious + way was to advertise in the agony columns of the papers." + + "I have done that, Mr. Holmes. No replies." + + "Dear me! Well, it is certainly a most curious little problem. I may + take a glance at it in my leisure. By the way, it is curious that you + should have come from Topeka. I used to have a correspondent--he is + dead now--old Dr. Lysander Starr, who was mayor in 1890." + + "Good old Dr. Starr!" said our visitor. "His name is still honoured. + Well, Mr. Holmes, I suppose all we can do is to report to you and let + you know how we progress. I reckon you will hear within a day or + two." With this assurance our American bowed and departed. + + Holmes had lit his pipe, and he sat for some time with a curious + smile upon his face. + + "Well?" I asked at last. + + "I am wondering, Watson--just wondering!" + + "At what?" + + Holmes took his pipe from his lips. + + "I was wondering, Watson, what on earth could be the object of this + man in telling us such a rigmarole of lies. I nearly asked him + so--for there are times when a brutal frontal attack is the best + policy--but I judged it better to let him think he had fooled us. + Here is a man with an English coat frayed at the elbow and trousers + bagged at the knee with a year's wear, and yet by this document and + by his own account he is a provincial American lately landed in + London. There have been no advertisements in the agony columns. You + know that I miss nothing there. They are my favourite covert for + putting up a bird, and I would never have overlooked such a cock + pheasant as that. I never knew a Dr. Lysander Starr, of Topeka. Touch + him where you would he was false. I think the fellow is really an + American, but he has worn his accent smooth with years of London. + What is his game, then, and what motive lies behind this preposterous + search for Garridebs? It's worth our attention, for, granting that + the man is a rascal, he is certainly a complex and ingenious one. We + must now find out if our other correspondent is a fraud also. Just + ring him up, Watson." + + I did so, and heard a thin, quavering voice at the other end of the + line. + + "Yes, yes, I am Mr. Nathan Garrideb. Is Mr. Holmes there? I should + very much like to have a word with Mr. Holmes." + + My friend took the instrument and I heard the usual syncopated + dialogue. + + "Yes, he has been here. I understand that you don't know him. ... How + long? ... Only two days! ... Yes, yes, of course, it is a most + captivating prospect. Will you be at home this evening? I suppose + your namesake will not be there? ... Very good, we will come then, + for I would rather have a chat without him. ... Dr. Watson will come + with me. ... I understand from your note that you did not go out + often. ... Well, we shall be round about six. You need not mention it + to the American lawyer. ... Very good. Good-bye!" + + It was twilight of a lovely spring evening, and even Little Ryder + Street, one of the smaller offshoots from the Edgware Road, within a + stone-cast of old Tyburn Tree of evil memory, looked golden and + wonderful in the slanting rays of the setting sun. The particular + house to which we were directed was a large, old-fashioned, Early + Georgian edifice, with a flat brick face broken only by two deep bay + windows on the ground floor. It was on this ground floor that our + client lived, and, indeed, the low windows proved to be the front of + the huge room in which he spent his waking hours. Holmes pointed as + we passed to the small brass plate which bore the curious name. + + "Up some years, Watson," he remarked, indicating its discoloured + surface. "It's his real name, anyhow, and that is something to note." + + The house had a common stair, and there were a number of names + painted in the hall, some indicating offices and some private + chambers. It was not a collection of residential flats, but rather + the abode of Bohemian bachelors. Our client opened the door for us + himself and apologized by saying that the woman in charge left at + four o'clock. Mr. Nathan Garrideb proved to be a very tall, + loose-jointed, round-backed person, gaunt and bald, some sixty-odd + years of age. He had a cadaverous face, with the dull dead skin of a + man to whom exercise was unknown. Large round spectacles and a small + projecting goat's beard combined with his stooping attitude to give + him an expression of peering curiosity. The general effect, however, + was amiable, though eccentric. + + The room was as curious as its occupant. It looked like a small + museum. It was both broad and deep, with cupboards and cabinets all + round, crowded with specimens, geological and anatomical. Cases of + butterflies and moths flanked each side of the entrance. A large + table in the centre was littered with all sorts of debris, while the + tall brass tube of a powerful microscope bristled up among them. As I + glanced round I was surprised at the universality of the man's + interests. Here was a case of ancient coins. There was a cabinet of + flint instruments. Behind his central table was a large cupboard of + fossil bones. Above was a line of plaster skulls with such names as + "Neanderthal," "Heidelberg," "Cro-Magnon" printed beneath them. It + was clear that he was a student of many subjects. As he stood in + front of us now, he held a piece of chamois leather in his right hand + with which he was polishing a coin. + + "Syracusan--of the best period," he explained, holding it up. "They + degenerated greatly towards the end. At their best I hold them + supreme, though some prefer the Alexandrian school. You will find a + chair here, Mr. Holmes. Pray allow me to clear these bones. And you, + sir--ah, yes, Dr. Watson--if you would have the goodness to put the + Japanese vase to one side. You see round me my little interests in + life. My doctor lectures me about never going out, but why should I + go out when I have so much to hold me here? I can assure you that the + adequate cataloguing of one of those cabinets would take me three + good months." + + Holmes looked round him with curiosity. + + "But do you tell me that you never go out?" he said. + + "Now and again I drive down to Sotheby's or Christie's. Otherwise I + very seldom leave my room. I am not too strong, and my researches are + very absorbing. But you can imagine, Mr. Holmes, what a terrific + shock--pleasant but terrific--it was for me when I heard of this + unparalleled good fortune. It only needs one more Garrideb to + complete the matter, and surely we can find one. I had a brother, but + he is dead, and female relatives are disqualified. But there must + surely be others in the world. I had heard that you handled strange + cases, and that was why I sent to you. Of course, this American + gentleman is quite right, and I should have taken his advice first, + but I acted for the best." + + "I think you acted very wisely indeed," said Holmes. "But are you + really anxious to acquire an estate in America?" + + "Certainly not, sir. Nothing would induce me to leave my collection. + But this gentleman has assured me that he will buy me out as soon as + we have established our claim. Five million dollars was the sum + named. There are a dozen specimens in the market at the present + moment which fill gaps in my collection, and which I am unable to + purchase for want of a few hundred pounds. Just think what I could do + with five million dollars. Why, I have the nucleus of a national + collection. I shall be the Hans Sloane of my age." + + His eyes gleamed behind his great spectacles. It was very clear that + no pains would be spared by Mr. Nathan Garrideb in finding a + namesake. + + "I merely called to make your acquaintance, and there is no reason + why I should interrupt your studies," said Holmes. "I prefer to + establish personal touch with those with whom I do business. There + are few questions I need ask, for I have your very clear narrative in + my pocket, and I filled up the blanks when this American gentleman + called. I understand that up to this week you were unaware of his + existence." + + "That is so. He called last Tuesday." + + "Did he tell you of our interview to-day?" + + "Yes, he came straight back to me. He had been very angry." + + "Why should he be angry?" + + "He seemed to think it was some reflection on his honour. But he was + quite cheerful again when he returned." + + "Did he suggest any course of action?" + + "No, sir, he did not." + + "Has he had, or asked for, any money from you?" + + "No, sir, never!" + + "You see no possible object he has in view?" + + "None, except what he states." + + "Did you tell him of our telephone appointment?" + + "Yes, sir, I did." + + Holmes was lost in thought. I could see that he was puzzled. + + "Have you any articles of great value in your collection?" + + "No, sir. I am not a rich man. It is a good collection, but not a + very valuable one." + + "You have no fear of burglars?" + + "Not the least." + + "How long have you been in these rooms?" + + "Nearly five years." + + Holmes's cross-examination was interrupted by an imperative knocking + at the door. No sooner had our client unlatched it than the American + lawyer burst excitedly into the room. + + "Here you are!" he cried, waving a paper over his head. "I thought I + should be in time to get you. Mr. Nathan Garrideb, my + congratulations! You are a rich man, sir. Our business is happily + finished and all is well. As to you, Mr. Holmes, we can only say we + are sorry if we have given you any useless trouble." + + He handed over the paper to our client, who stood staring at a marked + advertisement. Holmes and I leaned forward and read it over his + shoulder. This is how it ran: + + Howard Garrideb + Constructor of Agricultural Machinery + Binders, reapers, steam and hand plows, drills, harrows, farmers' + carts, buckboards, and all other appliances. + Estimates for Artesian Wells + Apply Grosvenor Buildings, Aston + + "Glorious!" gasped our host. "That makes our third man." + + "I had opened up inquiries in Birmingham," said the American, "and my + agent there has sent me this advertisement from a local paper. We + must hustle and put the thing through. I have written to this man and + told him that you will see him in his office to-morrow afternoon at + four o'clock." + + "You want me to see him?" + + "What do you say, Mr. Holmes? Don't you think it would be wiser? Here + am I, a wandering American with a wonderful tale. Why should he + believe what I tell him? But you are a Britisher with solid + references, and he is bound to take notice of what you say. I would + go with you if you wished, but I have a very busy day to-morrow, and + I could always follow you if you are in any trouble." + + "Well, I have not made such a journey for years." + + "It is nothing, Mr. Garrideb. I have figured out our connections. You + leave at twelve and should be there soon after two. Then you can be + back the same night. All you have to do is to see this man, explain + the matter, and get an affidavit of his existence. By the Lord!" he + added hotly, "considering I've come all the way from the centre of + America, it is surely little enough if you go a hundred miles in + order to put this matter through." + + "Quite so," said Holmes. "I think what this gentleman says is very + true." + + Mr. Nathan Garrideb shrugged his shoulders with a disconsolate air. + "Well, if you insist I shall go," said he. "It is certainly hard for + me to refuse you anything, considering the glory of hope that you + have brought into my life." + + "Then that is agreed," said Holmes, "and no doubt you will let me + have a report as soon as you can." + + "I'll see to that," said the American. "Well," he added, looking at + his watch, "I'll have to get on. I'll call to-morrow, Mr. Nathan, and + see you off to Birmingham. Coming my way, Mr. Holmes? Well, then, + good-bye, and we may have good news for you to-morrow night." + + I noticed that my friend's face cleared when the American left the + room, and the look of thoughtful perplexity had vanished. + + "I wish I could look over your collection, Mr. Garrideb," said he. + "In my profession all sorts of odd knowledge comes useful, and this + room of yours is a storehouse of it." + + Our client shone with pleasure and his eyes gleamed from behind his + big glasses. + + "I had always heard, sir, that you were a very intelligent man," said + he. "I could take you round now if you have the time." + + "Unfortunately, I have not. But these specimens are so well labelled + and classified that they hardly need your personal explanation. If I + should be able to look in to-morrow, I presume that there would be no + objection to my glancing over them?" + + "None at all. You are most welcome. The place will, of course, be + shut up, but Mrs. Saunders is in the basement up to four o'clock and + would let you in with her key." + + Well, I happen to be clear to-morrow afternoon. If you would say a + word to Mrs. Saunders it would be quite in order. By the way, who is + your house-agent?" + + Our client was amazed at the sudden question. + + "Holloway and Steele, in the Edgware Road. But why?" + + "I am a bit of an archaeologist myself when it comes to houses," said + Holmes, laughing. "I was wondering if this was Queen Anne or + Georgian." + + "Georgian, beyond doubt." + + "Really. I should have thought a little earlier. However, it is + easily ascertained. Well, good-bye, Mr. Garrideb, and may you have + every success in your Birmingham journey." + + The house-agent's was close by, but we found that it was closed for + the day, so we made our way back to Baker Street. It was not till + after dinner that Holmes reverted to the subject. + + "Our little problem draws to a close," said he. "No doubt you have + outlined the solution in your own mind." + + "I can make neither head nor tail of it." + + "The head is surely clear enough and the tail we should see + to-morrow. Did you notice nothing curious about that advertisement?" + + "I saw that the word 'plough' was misspelt." + + "Oh, you did notice that, did you? Come, Watson, you improve all the + time. Yes, it was bad English but good American. The printer had set + it up as received. Then the buckboards. That is American also. And + artesian wells are commoner with them than with us. It was a typical + American advertisement, but purporting to be from an English firm. + What do you make of that?" + + "I can only suppose that this American lawyer put it in himself. What + his object was I fail to understand." + + "Well, there are alternative explanations. Anyhow, he wanted to get + this good old fossil up to Birmingham. That is very clear. I might + have told him that he was clearly going on a wild-goose chase, but, + on second thoughts, it seemed better to clear the stage by letting + him go. To-morrow, Watson--well, to-morrow will speak for itself." + + Holmes was up and out early. When he returned at lunchtime I noticed + that his face was very grave. + + "This is a more serious matter than I had expected, Watson," said he. + "It is fair to tell you so, though I know it will only be an + additional reason to you for running your head into danger. I should + know my Watson by now. But there is danger, and you should know it." + + "Well, it is not the first we have shared, Holmes. I hope it may not + be the last. What is the particular danger this time?" + + "We are up against a very hard case. I have identified Mr. John + Garrideb, Counsellor at Law. He is none other than 'Killer' Evans, of + sinister and murderous reputation." + + "I fear I am none the wiser." + + "Ah, it is not part of your profession to carry about a portable + Newgate Calendar in your memory. I have been down to see friend + Lestrade at the Yard. There may be an occasional want of imaginative + intuition down there, but they lead the world for thoroughness and + method. I had an idea that we might get on the track of our American + friend in their records. Sure enough, I found his chubby face smiling + up at me from the rogues' portrait gallery. 'James Winter, alias + Morecroft, alias Killer Evans,' was the inscription below." Holmes + drew an envelope from his pocket. "I scribbled down a few points from + his dossier: Aged forty-four. Native of Chicago. Known to have shot + three men in the States. Escaped from penitentiary through political + influence. Came to London in 1893. Shot a man over cards in a + night-club in the Waterloo Road in January, 1895. Man died, but he + was shown to have been the aggressor in the row. Dead man was + identified as Rodger Prescott, famous as forger and coiner in + Chicago. Killer Evans released in 1901. Has been under police + supervision since, but so far as known has led an honest life. Very + dangerous man, usually carries arms and is prepared to use them. That + is our bird, Watson--a sporting bird, as you must admit." + + "But what is his game?" + + "Well, it begins to define itself. I have been to the house-agent's. + Our client, as he told us, has been there five years. It was unlet + for a year before then. The previous tenant was a gentleman at large + named Waldron. Waldron's appearance was well remembered at the + office. He had suddenly vanished and nothing more been heard of him. + He was a tall, bearded man with very dark features. Now, Prescott, + the man whom Killer Evans had shot, was, according to Scotland Yard, + a tall, dark man with a beard. As a working hypothesis, I think we + may take it that Prescott, the American criminal, used to live in the + very room which our innocent friend now devotes to his museum. So at + last we get a link, you see." + + "And the next link?" + + "Well, we must go now and look for that." + + He took a revolver from the drawer and handed it to me. + + "I have my old favourite with me. If our Wild West friend tries to + live up to his nickname, we must be ready for him. I'll give you an + hour for a siesta, Watson, and then I think it will be time for our + Ryder Street adventure." + + It was just four o'clock when we reached the curious apartment of + Nathan Garrideb. Mrs. Saunders, the caretaker, was about to leave, + but she had no hesitation in admitting us, for the door shut with a + spring lock, and Holmes promised to see that all was safe before we + left. Shortly afterwards the outer door closed, her bonnet passed the + bow window, and we knew that we were alone in the lower floor of the + house. Holmes made a rapid examination of the premises. There was one + cupboard in a dark corner which stood out a little from the wall. It + was behind this that we eventually crouched while Holmes in a whisper + outlined his intentions. + + "He wanted to get our amiable friend out of his room--that is very + clear, and, as the collector never went out, it took some planning to + do it. The whole of this Garrideb invention was apparently for no + other end. I must say, Watson, that there is a certain devilish + ingenuity about it, even if the queer name of the tenant did give him + an opening which he could hardly have expected. He wove his plot with + remarkable cunning." + + "But what did he want?" + + "Well, that is what we are here to find out. It has nothing whatever + to do with our client, so far as I can read the situation. It is + something connected with the man he murdered--the man who may have + been his confederate in crime. There is some guilty secret in the + room. That is how I read it. At first I thought our friend might have + something in his collection more valuable than he knew--something + worth the attention of a big criminal. But the fact that Rodger + Prescott of evil memory inhabited these rooms points to some deeper + reason. Well, Watson, we can but possess our souls in patience and + see what the hour may bring." + + That hour was not long in striking. We crouched closer in the shadow + as we heard the outer door open and shut. Then came the sharp, + metallic snap of a key, and the American was in the room. He closed + the door softly behind him, took a sharp glance around him to see + that all was safe, threw off his overcoat, and walked up to the + central table with the brisk manner of one who knows exactly what he + has to do and how to do it. He pushed the table to one side, tore up + the square of carpet on which it rested, rolled it completely back, + and then, drawing a jemmy from his inside pocket, he knelt down and + worked vigorously upon the floor. Presently we heard the sound of + sliding boards, and an instant later a square had opened in the + planks. Killer Evans struck a match, lit a stump of candle, and + vanished from our view. + + Clearly our moment had come. Holmes touched my wrist as a signal, and + together we stole across to the open trap-door. Gently as we moved, + however, the old floor must have creaked under our feet, for the head + of our American, peering anxiously round, emerged suddenly from the + open space. His face turned upon us with a glare of baffled rage, + which gradually softened into a rather shamefaced grin as he realized + that two pistols were pointed at his head. + + "Well, well!" said he coolly as he scrambled to the surface. "I guess + you have been one too many for me, Mr. Holmes. Saw through my game, I + suppose, and played me for a sucker from the first. Well, sir, I hand + it to you; you have me beat and--" + + In an instant he had whisked out a revolver from his breast and had + fired two shots. I felt a sudden hot sear as if a red-hot iron had + been pressed to my thigh. There was a crash as Holmes's pistol came + down on the man's head. I had a vision of him sprawling upon the + floor with blood running down his face while Holmes rummaged him for + weapons. Then my friend's wiry arms were round me, and he was leading + me to a chair. + + "You're not hurt, Watson? For God's sake, say that you are not hurt!" + + It was worth a wound--it was worth many wounds--to know the depth of + loyalty and love which lay behind that cold mask. The clear, hard + eyes were dimmed for a moment, and the firm lips were shaking. For + the one and only time I caught a glimpse of a great heart as well as + of a great brain. All my years of humble but single-minded service + culminated in that moment of revelation. + + "It's nothing, Holmes. It's a mere scratch." + + He had ripped up my trousers with his pocket-knife. + + "You are right," he cried with an immense sigh of relief. "It is + quite superficial." His face set like flint as he glared at our + prisoner, who was sitting up with a dazed face. "By the Lord, it is + as well for you. If you had killed Watson, you would not have got out + of this room alive. Now, sir, what have you to say for yourself?" + + He had nothing to say for himself. He only sat and scowled. I leaned + on Holmes's arm, and together we looked down into the small cellar + which had been disclosed by the secret flap. It was still illuminated + by the candle which Evans had taken down with him. Our eyes fell upon + a mass of rusted machinery, great rolls of paper, a litter of + bottles, and, neatly arranged upon a small table, a number of neat + little bundles. + + "A printing press--a counterfeiter's outfit," said Holmes. + + "Yes, sir," said our prisoner, staggering slowly to his feet and then + sinking into the chair. "The greatest counterfeiter London ever saw. + That's Prescott's machine, and those bundles on the table are two + thousand of Prescott's notes worth a hundred each and fit to pass + anywhere. Help yourselves, gentlemen. Call it a deal and let me beat + it." + + Holmes laughed. + + "We don't do things like that, Mr. Evans. There is no bolt-hole for + you in this country. You shot this man Prescott, did you not?" + + "Yes, sir, and got five years for it, though it was he who pulled on + me. Five years--when I should have had a medal the size of a soup + plate. No living man could tell a Prescott from a Bank of England, + and if I hadn't put him out he would have flooded London with them. I + was the only one in the world who knew where he made them. Can you + wonder that I wanted to get to the place? And can you wonder that + when I found this crazy boob of a bug-hunter with the queer name + squatting right on the top of it, and never quitting his room, I had + to do the best I could to shift him? Maybe I would have been wiser if + I had put him away. It would have been easy enough, but I'm a + soft-hearted guy that can't begin shooting unless the other man has a + gun also. But say, Mr. Holmes, what have I done wrong, anyhow? I've + not used this plant. I've not hurt this old stiff. Where do you get + me?" + + "Only attempted murder, so far as I can see," said Holmes. "But + that's not our job. They take that at the next stage. What we wanted + at present was just your sweet self. Please give the Yard a call, + Watson. It won't be entirely unexpected." + + So those were the facts about Killer Evans and his remarkable + invention of the three Garridebs. We heard later that our poor old + friend never got over the shock of his dissipated dreams. When his + castle in the air fell down, it buried him beneath the ruins. He was + last heard of at a nursing-home in Brixton. It was a glad day at the + Yard when the Prescott outfit was discovered, for, though they knew + that it existed, they had never been able, after the death of the + man, to find out where it was. Evans had indeed done great service + and caused several worthy C. I. D. men to sleep the sounder, for the + counterfeiter stands in a class by himself as a public danger. They + would willingly have subscribed to that soup-plate medal of which the + criminal had spoken, but an unappreciative bench took a less + favourable view, and the Killer returned to those shades from which + he had just emerged. + + + + + + + THE PROBLEM OF THOR BRIDGE + + Somewhere in the vaults of the bank of Cox and Co., at Charing Cross, + there is a travel-worn and battered tin dispatch-box with my name, + John H. Watson, M.D., Late Indian Army, painted upon the lid. It is + crammed with papers, nearly all of which are records of cases to + illustrate the curious problems which Mr. Sherlock Holmes had at + various times to examine. Some, and not the least interesting, were + complete failures, and as such will hardly bear narrating, since no + final explanation is forthcoming. A problem without a solution may + interest the student, but can hardly fail to annoy the casual reader. + Among these unfinished tales is that of Mr. James Phillimore, who, + stepping back into his own house to get his umbrella, was never more + seen in this world. No less remarkable is that of the cutter Alicia, + which sailed one spring morning into a small patch of mist from where + she never again emerged, nor was anything further ever heard of + herself and her crew. A third case worthy of note is that of Isadora + Persano, the well-known journalist and duellist, who was found stark + staring mad with a match box in front of him which contained a + remarkable worm said to be unknown to science. Apart from these + unfathomed cases, there are some which involve the secrets of private + families to an extent which would mean consternation in many exalted + quarters if it were thought possible that they might find their way + into print. I need not say that such a breach of confidence is + unthinkable, and that these records will be separated and destroyed + now that my friend has time to turn his energies to the matter. There + remain a considerable residue of cases of greater or less interest + which I might have edited before had I not feared to give the public + a surfeit which might react upon the reputation of the man whom above + all others I revere. In some I was myself concerned and can speak as + an eye-witness, while in others I was either not present or played so + small a part that they could only be told as by a third person. The + following narrative is drawn from my own experience. + + It was a wild morning in October, and I observed as I was dressing + how the last remaining leaves were being whirled from the solitary + plane tree which graces the yard behind our house. I descended to + breakfast prepared to find my companion in depressed spirits, for, + like all great artists, he was easily impressed by his surroundings. + On the contrary, I found that he had nearly finished his meal, and + that his mood was particularly bright and joyous, with that somewhat + sinister cheerfulness which was characteristic of his lighter + moments. + + "You have a case, Holmes?" I remarked. + + "The faculty of deduction is certainly contagious, Watson," he + answered. "It has enabled you to probe my secret. Yes, I have a case. + After a month of trivialities and stagnation the wheels move once + more." + + "Might I share it?" + + "There is little to share, but we may discuss it when you have + consumed the two hard-boiled eggs with which our new cook has + favoured us. Their condition may not be unconnected with the copy of + the Family Herald which I observed yesterday upon the hall-table. + Even so trivial a matter as cooking an egg demands an attention which + is conscious of the passage of time and incompatible with the love + romance in that excellent periodical." + + A quarter of an hour later the table had been cleared and we were + face to face. He had drawn a letter from his pocket. + + "You have heard of Neil Gibson, the Gold King?" he said. + + "You mean the American Senator?" + + "Well, he was once Senator for some Western state, but is better + known as the greatest gold-mining magnate in the world." + + "Yes, I know of him. He has surely lived in England for some time. + His name is very familiar." + + "Yes, he bought a considerable estate in Hampshire some five years + ago. Possibly you have already heard of the tragic end of his wife?" + + "Of course. I remember it now. That is why the name is familiar. But + I really know nothing of the details." + + Holmes waved his hand towards some papers on a chair. "I had no idea + that the case was coming my way or I should have had my extracts + ready," said he. "The fact is that the problem, though exceedingly + sensational, appeared to present no difficulty. The interesting + personality of the accused does not obscure the clearness of the + evidence. That was the view taken by the coroner's jury and also in + the police-court proceedings. It is now referred to the Assizes at + Winchester. I fear it is a thankless business. I can discover facts, + Watson, but I cannot change them. Unless some entirely new and + unexpected ones come to light I do not see what my client can hope + for." + + "Your client?" + + "Ah, I forgot I had not told you. I am getting into your involved + habit, Watson, of telling a story backward. You had best read this + first." + + The letter which he handed to me, written in a bold, masterful hand, + ran as follows: + + Claridge's Hotel + October 3rd. + Dear Mr. Sherlock Holmes: + I can't see the best woman God ever made go to her death without + doing all that is possible to save her. I can't explain things--I + can't even try to explain them, but I know beyond all doubt that Miss + Dunbar is innocent. You know the facts--who doesn't? It has been the + gossip of the country. And never a voice raised for her! It's the + damned injustice of it all that makes me crazy. That woman has a + heart that wouldn't let her kill a fly. Well, I'll come at eleven + to-morrow and see if you can get some ray of light in the dark. Maybe + I have a clue and don't know it. Anyhow, all I know and all I have + and all I am are for your use if only you can save her. If ever in + your life you showed your powers, put them now into this case. + Yours faithfully, + J. Neil Gibson. + + "There you have it," said Sherlock Holmes, knocking out the ashes of + his after-breakfast pipe and slowly refilling it. "That is the + gentleman I await. As to the story, you have hardly time to master + all these papers, so I must give it to you in a nutshell if you are + to take an intelligent interest in the proceedings. This man is the + greatest financial power in the world, and a man, as I understand, of + most violent and formidable character. He married a wife, the victim + of this tragedy, of whom I know nothing save that she was past her + prime, which was the more unfortunate as a very attractive governess + superintended the education of two young children. These are the + three people concerned, and the scene is a grand old manor house, the + centre of a historical English state. Then as to the tragedy. The + wife was found in the grounds nearly half a mile from the house, late + at night, clad in her dinner dress, with a shawl over her shoulders + and a revolver bullet through her brain. No weapon was found near her + and there was no local clue as to the murder. No weapon near her, + Watson--mark that! The crime seems to have been committed late in the + evening, and the body was found by a game-keeper about eleven + o'clock, when it was examined by the police and by a doctor before + being carried up to the house. Is this too condensed, or can you + follow it clearly?" + + "It is all very clear. But why suspect the governess?" + + "Well, in the first place there is some very direct evidence. A + revolver with one discharged chamber and a calibre which corresponded + with the bullet was found on the floor of her wardrobe." His eyes + fixed and he repeated in broken words, + "On--the--floor--of--her--wardrobe." Then he sank into silence, and I + saw that some train of thought had been set moving which I should be + foolish to interrupt. Suddenly with a start he emerged into brisk + life once more. "Yes, Watson, it was found. Pretty damning, eh? So + the two juries thought. Then the dead woman had a note upon her + making an appointment at that very place and signed by the governess. + How's that? Finally there is the motive. Senator Gibson is an + attractive person. If his wife dies, who more likely to succeed her + than the young lady who had already by all accounts received pressing + attentions from her employer? Love, fortune, power, all depending + upon one middle-aged life. Ugly, Watson--very ugly!" + + "Yes, indeed, Holmes." + + "Nor could she prove an alibi. On the contrary, she had to admit that + she was down near Thor Bridge--that was the scene of the + tragedy--about that hour. She couldn't deny it, for some passing + villager had seen her there." + + "That really seems final." + + "And yet, Watson--and yet! This bridge--a single broad span of stone + with balustraded sides--carries the drive over the narrowest part of + a long, deep, reed-girt sheet of water. Thor Mere it is called. In + the mouth of the bridge lay the dead woman. Such are the main facts. + But here, if I mistake not, is our client, considerably before his + time." + + Billy had opened the door, but the name which he announced was an + unexpected one. Mr. Marlow Bates was a stranger to both of us. He was + a thin, nervous wisp of a man with frightened eyes and a twitching, + hesitating manner--a man whom my own professional eye would judge to + be on the brink of an absolute nervous breakdown. + + "You seem agitated, Mr. Bates," said Holmes. "Pray sit down. I fear I + can only give you a short time, for I have an appointment at eleven." + + "I know you have," our visitor gasped, shooting out short sentences + like a man who is out of breath. "Mr. Gibson is coming. Mr. Gibson is + my employer. I am manager of his estate. Mr. Holmes, he is a + villain--an infernal villain." + + "Strong language, Mr. Bates." + + "I have to be emphatic, Mr. Holmes, for the time is so limited. I + would not have him find me here for the world. He is almost due now. + But I was so situated that I could not come earlier. His secretary, + Mr. Ferguson, only told me this morning of his appointment with you." + + "And you are his manager?" + + "I have given him notice. In a couple of weeks I shall have shaken + off his accursed slavery. A hard man, Mr. Holmes, hard to all about + him. Those public charities are a screen to cover his private + iniquities. But his wife was his chief victim. He was brutal to + her--yes, sir, brutal! How she came by her death I do not know, but I + am sure that he had made her life a misery to her. She was a creature + of the tropics, a Brazilian by birth, as no doubt you know." + + "No, it had escaped me." + + "Tropical by birth and tropical by nature. A child of the sun and of + passion. She had loved him as such women can love, but when her own + physical charms had faded--I am told that they once were great--there + was nothing to hold him. We all liked her and felt for her and hated + him for the way that he treated her. But he is plausible and cunning. + That is all I have to say to you. Don't take him at his face value. + There is more behind. Now I'll go. No, no, don't detain me! He is + almost due." + + With a frightened look at the clock our strange visitor literally ran + to the door and disappeared. + + "Well! Well!" said Holmes after an interval of silence. "Mr. Gibson + seems to have a nice loyal household. But the warning is a useful + one, and now we can only wait till the man himself appears." + + Sharp at the hour we heard a heavy step upon the stairs, and the + famous millionaire was shown into the room. As I looked upon him I + understood not only the fears and dislike of his manager but also the + execrations which so many business rivals have heaped upon his head. + If I were a sculptor and desired to idealize the successful man of + affairs, iron of nerve and leathery of conscience, I should choose + Mr. Neil Gibson as my model. His tall, gaunt, craggy figure had a + suggestion of hunger and rapacity. An Abraham Lincoln keyed to base + uses instead of high ones would give some idea of the man. His face + might have been chiselled in granite, hard-set, craggy, remorseless, + with deep lines upon it, the scars of many a crisis. Cold gray eyes, + looking shrewdly out from under bristling brows, surveyed us each in + turn. He bowed in perfunctory fashion as Holmes mentioned my name, + and then with a masterful air of possession he drew a chair up to my + companion and seated himself with his bony knees almost touching him. + + "Let me say right here, Mr. Holmes," he began, "that money is nothing + to me in this case. You can burn it if it's any use in lighting you + to the truth. This woman is innocent and this woman has to be + cleared, and it's up to you to do it. Name your figure!" + + "My professional charges are upon a fixed scale," said Holmes coldly. + "I do not vary them, save when I remit them altogether." + + "Well, if dollars make no difference to you, think of the reputation. + If you pull this off every paper in England and America will be + booming you. You'll be the talk of two continents." + + "Thank you, Mr. Gibson, I do not think that I am in need of booming. + It may surprise you to know that I prefer to work anonymously, and + that it is the problem itself which attracts me. But we are wasting + time. Let us get down to the facts." + + "I think that you will find all the main ones in the press reports. I + don't know that I can add anything which will help you. But if there + is anything you would wish more light upon--well, I am here to give + it." + + "Well, there is just one point." + + "What is it?" + + "What were the exact relations between you and Miss Dunbar?" + + The Gold King gave a violent start and half rose from his chair. Then + his massive calm came back to him. + + "I suppose you are within your rights--and maybe doing your duty--in + asking such a question, Mr. Holmes." + + "We will agree to suppose so," said Holmes. + + "Then I can assure you that our relations were entirely and always + those of an employer towards a young lady whom he never conversed + with, or ever saw, save when she was in the company of his children." + + Holmes rose from his chair. + + "I am a rather busy man, Mr. Gibson," said he, "and I have no time or + taste for aimless conversations. I wish you good-morning." + + Our visitor had risen also, and his great loose figure towered above + Holmes. There was an angry gleam from under those bristling brows and + a tinge of colour in the sallow cheeks. + + "What the devil do you mean by this, Mr. Holmes? Do you dismiss my + case?" + + "Well, Mr. Gibson, at least I dismiss you. I should have thought my + words were plain." + + "Plain enough, but what's at the back of it? Raising the price on me, + or afraid to tackle it, or what? I've a right to a plain answer." + + "Well, perhaps you have," said Holmes. "I'll give you one. This case + is quite sufficiently complicated to start with without the further + difficulty of false information." + + "Meaning that I lie." + + "Well, I was trying to express it as delicately as I could, but if + you insist upon the word I will not contradict you." + + I sprang to my feet, for the expression upon the millionaire's face + was fiendish in its intensity, and he had raised his great knotted + fist. Holmes smiled languidly and reached his hand out for his pipe. + + "Don't be noisy, Mr. Gibson. I find that after breakfast even the + smallest argument is unsettling. I suggest that a stroll in the + morning air and a little quiet thought will be greatly to your + advantage." + + With an effort the Gold King mastered his fury. I could not but + admire him, for by a supreme self-command he had turned in a minute + from a hot flame of anger to a frigid and contemptuous indifference. + + "Well, it's your choice. I guess you know how to run your own + business. I can't make you touch the case against your will. You've + done yourself no good this morning, Mr. Holmes, for I have broken + stronger men than you. No man ever crossed me and was the better for + it." + + "So many have said so, and yet here I am," said Holmes, smiling. + "Well, good-morning, Mr. Gibson. You have a good deal yet to learn." + + Our visitor made a noisy exit, but Holmes smoked in imperturbable + silence with dreamy eyes fixed upon the ceiling. + + "Any views, Watson?" he asked at last. + + "Well, Holmes, I must confess that when I consider that this is a man + who would certainly brush any obstacle from his path, and when I + remember that his wife may have been an obstacle and an object of + dislike, as that man Bates plainly told us, it seems to me--" + + "Exactly. And to me also." + + "But what were his relations with the governess, and how did you + discover them?" + + "Bluff, Watson, bluff! When I considered the passionate, + unconventional, unbusinesslike tone of his letter and contrasted it + with his self-contained manner and appearance, it was pretty clear + that there was some deep emotion which centred upon the accused woman + rather than upon the victim. We've got to understand the exact + relations of those three people if we are to reach the truth. You saw + the frontal attack which I made upon him, and how imperturbably he + received it. Then I bluffed him by giving him the impression that I + was absolutely certain, when in reality I was only extremely + suspicious." + + "Perhaps he will come back?" + + "He is sure to come back. He must come back. He can't leave it where + it is. Ha! isn't that a ring? Yes, there is his footstep. Well, Mr. + Gibson, I was just saying to Dr. Watson that you were somewhat + overdue." + + The Gold King had reentered the room in a more chastened mood than he + had left it. His wounded pride still showed in his resentful eyes, + but his common sense had shown him that he must yield if he would + attain his end. + + "I've been thinking it over, Mr. Holmes, and I feel that I have been + hasty in taking your remarks amiss. You are justified in getting down + to the facts, whatever they may be, and I think the more of you for + it. I can assure you, however, that the relations between Miss Dunbar + and me don't really touch this case." + + "That is for me to decide, is it not?" + + "Yes, I guess that is so. You're like a surgeon who wants every + symptom before he can give his diagnosis." + + "Exactly. That expresses it. And it is only a patient who has an + object in deceiving his surgeon who would conceal the facts of his + case." + + "That may be so, but you will admit, Mr. Holmes, that most men would + shy off a bit when they are asked point-blank what their relations + with a woman may be--if there is really some serious feeling in the + case. I guess most men have a little private reserve of their own in + some corner of their souls where they don't welcome intruders. And + you burst suddenly into it. But the object excuses you, since it was + to try and save her. Well, the stakes are down and the reserve open, + and you can explore where you will. What is it you want?" + + "The truth." + + The Gold King paused for a moment as one who marshals his thoughts. + His grim, deep-lined face had become even sadder and more grave. + + "I can give it to you in a very few words, Mr. Holmes," said he at + last. "There are some things that are painful as well as difficult to + say, so I won't go deeper than is needful. I met my wife when I was + gold-hunting in Brazil. Maria Pinto was the daughter of a government + official at Manaos, and she was very beautiful. I was young and + ardent in those days, but even now, as I look back with colder blood + and a more critical eye, I can see that she was rare and wonderful in + her beauty. It was a deep rich nature, too, passionate, + whole-hearted, tropical, ill-balanced, very different from the + American women whom I had known. Well, to make a long story short, I + loved her and I married her. It was only when the romance had + passed--and it lingered for years--that I realized that we had + nothing--absolutely nothing--in common. My love faded. If hers had + faded also it might have been easier. But you know the wonderful way + of women! Do what I might, nothing could turn her from me. If I have + been harsh to her, even brutal as some have said, it has been because + I knew that if I could kill her love, or if it turned to hate, it + would be easier for both of us. But nothing changed her. She adored + me in those English woods as she had adored me twenty years ago on + the banks of the Amazon. Do what I might, she was as devoted as ever. + + "Then came Miss Grace Dunbar. She answered our advertisement and + became governess to our two children. Perhaps you have seen her + portrait in the papers. The whole world has proclaimed that she also + is a very beautiful woman. Now, I make no pretence to be more moral + than my neighbours, and I will admit to you that I could not live + under the same roof with such a woman and in daily contact with her + without feeling a passionate regard for her. Do you blame me, Mr. + Holmes?" + + "I do not blame you for feeling it. I should blame you if you + expressed it, since this young lady was in a sense under your + protection." + + "Well, maybe so," said the millionaire, though for a moment the + reproof had brought the old angry gleam into his eyes. "I'm not + pretending to be any better than I am. I guess all my life I've been + a man that reached out his hand for what he wanted, and I never + wanted anything more than the love and possession of that woman. I + told her so." + + "Oh, you did, did you?" + + Holmes could look very formidable when he was moved. + + "I said to her that if I could marry her I would, but that it was out + of my power. I said that money was no object and that all I could do + to make her happy and comfortable would be done." + + "Very generous, I am sure," said Holmes with a sneer. + + "See here, Mr. Holmes. I came to you on a question of evidence, not + on a question of morals. I'm not asking for your criticism." + + "It is only for the young lady's sake that I touch your case at all," + said Holmes sternly. "I don't know that anything she is accused of is + really worse than what you have yourself admitted, that you have + tried to ruin a defenceless girl who was under your roof. Some of you + rich men have to be taught that all the world cannot be bribed into + condoning your offences." + + To my surprise the Gold King took the reproof with equanimity. + + "That's how I feel myself about it now. I thank God that my plans did + not work out as I intended. She would have none of it, and she wanted + to leave the house instantly." + + "Why did she not?" + + "Well, in the first place, others were dependent upon her, and it was + no light matter for her to let them all down by sacrificing her + living. When I had sworn--as I did--that she should never be molested + again, she consented to remain. But there was another reason. She + knew the influence she had over me, and that it was stronger than any + other influence in the world. She wanted to use it for good." + + "How?" + + "Well, she knew something of my affairs. They are large, Mr. + Holmes--large beyond the belief of an ordinary man. I can make or + break--and it is usually break. It wasn't individuals only. It was + communities, cities, even nations. Business is a hard game, and the + weak go to the wall. I played the game for all it was worth. I never + squealed myself, and I never cared if the other fellow squealed. But + she saw it different. I guess she was right. She believed and said + that a fortune for one man that was more than he needed should not be + built on ten thousand ruined men who were left without the means of + life. That was how she saw it, and I guess she could see past the + dollars to something that was more lasting. She found that I listened + to what she said, and she believed she was serving the world by + influencing my actions. So she stayed--and then this came along." + + "Can you throw any light upon that?" + + The Gold King paused for a minute or more, his head sunk in his + hands, lost in deep thought. + + "It's very black against her. I can't deny that. And women lead an + inward life and may do things beyond the judgment of a man. At first + I was so rattled and taken aback that I was ready to think she had + been led away in some extraordinary fashion that was clean against + her usual nature. One explanation came into my head. I give it to + you, Mr. Holmes, for what it is worth. There is no doubt that my wife + was bitterly jealous. There is a soul-jealousy that can be as frantic + as any body-jealousy, and though my wife had no cause--and I think + she understood this--for the latter, she was aware that this English + girl exerted an influence upon my mind and my acts that she herself + never had. It was an influence for good, but that did not mend the + matter. She was crazy with hatred, and the heat of the Amazon was + always in her blood. She might have planned to murder Miss Dunbar--or + we will say to threaten her with a gun and so frighten her into + leaving us. Then there might have been a scuffle and the gun gone off + and shot the woman who held it." + + "That possibility had already occurred to me," said Holmes. "Indeed, + it is the only obvious alternative to deliberate murder." + + "But she utterly denies it." + + "Well, that is not final--is it? One can understand that a woman + placed in so awful a position might hurry home still in her + bewilderment holding the revolver. She might even throw it down among + her clothes, hardly knowing what she was doing, and when it was found + she might try to lie her way out by a total denial, since all + explanation was impossible. What is against such a supposition?" + + "Miss Dunbar herself." + + "Well, perhaps." + + Holmes looked at his watch. "I have no doubt we can get the necessary + permits this morning and reach Winchester by the evening train. When + I have seen this young lady it is very possible that I may be of more + use to you in the matter, though I cannot promise that my conclusions + will necessarily be such as you desire." + + There was some delay in the official pass, and instead of reaching + Winchester that day we went down to Thor Place, the Hampshire estate + of Mr. Neil Gibson. He did not accompany us himself, but we had the + address of Sergeant Coventry, of the local police, who had first + examined into the affair. He was a tall, thin, cadaverous man, with a + secretive and mysterious manner which conveyed the idea that he knew + or suspected a very great deal more than he dared say. He had a + trick, too, of suddenly sinking his voice to a whisper as if he had + come upon something of vital importance, though the information was + usually commonplace enough. Behind these tricks of manner he soon + showed himself to be a decent, honest fellow who was not too proud to + admit that he was out of his depth and would welcome any help. + + "Anyhow, I'd rather have you than Scotland Yard, Mr. Holmes," said + he. "If the Yard gets called into a case, then the local loses all + credit for success and may be blamed for failure. Now, you play + straight, so I've heard." + + "I need not appear in the matter at all," said Holmes to the evident + relief of our melancholy acquaintance. "If I can clear it up I don't + ask to have my name mentioned." + + "Well, it's very handsome of you, I am sure. And your friend, Dr. + Watson, can be trusted, I know. Now, Mr. Holmes, as we walk down to + the place there is one question I should like to ask you. I'd breathe + it to no soul but you." He looked round as though he hardly dare + utter the words. "Don't you think there might be a case against Mr. + Neil Gibson himself?" + + "I have been considering that." + + "You've not seen Miss Dunbar. She is a wonderful fine woman in every + way. He may well have wished his wife out of the road. And these + Americans are readier with pistols than our folk are. It was his + pistol, you know." + + "Was that clearly made out?" + + "Yes, sir. It was one of a pair that he had." + + "One of a pair? Where is the other?" + + "Well, the gentleman has a lot of firearms of one sort and another. + We never quite matched that particular pistol--but the box was made + for two." + + "If it was one of a pair you should surely be able to match it." + + "Well, we have them all laid out at the house if you would care to + look them over." + + "Later, perhaps. I think we will walk down together and have a look + at the scene of the tragedy." + + This conversation had taken place in the little front room of + Sergeant Coventry's humble cottage which served as the local + police-station. A walk of half a mile or so across a wind-swept + heath, all gold and bronze with the fading ferns, brought us to a + side-gate opening into the grounds of the Thor Place estate. A path + led us through the pheasant preserves, and then from a clearing we + saw the widespread, half-timbered house, half Tudor and half + Georgian, upon the crest of the hill. Beside us there was a long, + reedy pool, constricted in the centre where the main carriage drive + passed over a stone bridge, but swelling into small lakes on either + side. Our guide paused at the mouth of this bridge, and he pointed to + the ground. + + "That was where Mrs. Gibson's body lay. I marked it by that stone." + + "I understand that you were there before it was moved?" + + "Yes, they sent for me at once." + + "Who did?" + + "Mr. Gibson himself. The moment the alarm was given and he had rushed + down with others from the house, he insisted that nothing should be + moved until the police should arrive." + + "That was sensible. I gathered from the newspaper report that the + shot was fired from close quarters." + + "Yes, sir, very close." + + "Near the right temple?" + + "Just behind it, sir." + + "How did the body lie?" + + "On the back, sir. No trace of a struggle. No marks. No weapon. The + short note from Miss Dunbar was clutched in her left hand." + + "Clutched, you say?" + + "Yes, sir, we could hardly open the fingers." + + "That is of great importance. It excludes the idea that anyone could + have placed the note there after death in order to furnish a false + clue. Dear me! The note, as I remember, was quite short: + + "I will be at Thor Bridge at nine o'clock. + "G. Dunbar. + + "Was that not so?" + + "Yes, sir." + + "Did Miss Dunbar admit writing it?" + + "Yes, sir." + + "What was her explanation?" + + "Her defence was reserved for the Assizes. She would say nothing." + + "The problem is certainly a very interesting one. The point of the + letter is very obscure, is it not?" + + "Well, sir," said the guide, "it seemed, if I may be so bold as to + say so, the only really clear point in the whole case." + + Holmes shook his head. + + "Granting that the letter is genuine and was really written, it was + certainly received some time before--say one hour or two. Why, then, + was this lady still clasping it in her left hand? Why should she + carry it so carefully? She did not need to refer to it in the + interview. Does it not seem remarkable?" + + "Well, sir, as you put it, perhaps it does." + + "I think I should like to sit quietly for a few minutes and think it + out." He seated himself upon the stone ledge of the bridge, and I + could see his quick gray eyes darting their questioning glances in + every direction. Suddenly he sprang up again and ran across to the + opposite parapet, whipped his lens from his pocket, and began to + examine the stonework. + + "This is curious," said he. + + "Yes, sir, we saw the chip on the ledge. I expect it's been done by + some passer-by." + + The stonework was gray, but at this one point it showed white for a + space not larger than a sixpence. When examined closely one could see + that the surface was chipped as by a sharp blow. + + "It took some violence to do that," said Holmes thoughtfully. With + his cane he struck the ledge several times without leaving a mark. + "Yes, it was a hard knock. In a curious place, too. It was not from + above but from below, for you see that it is on the lower edge of the + parapet." + + "But it is at least fifteen feet from the body." + + "Yes, it is fifteen feet from the body. It may have nothing to do + with the matter, but it is a point worth noting. I do not think that + we have anything more to learn here. There were no footsteps, you + say?" + + "The ground was iron hard, sir. There were no traces at all." + + "Then we can go. We will go up to the house first and look over these + weapons of which you speak. Then we shall get on to Winchester, for I + should desire to see Miss Dunbar before we go farther." + + Mr. Neil Gibson had not returned from town, but we saw in the house + the neurotic Mr. Bates who had called upon us in the morning. He + showed us with a sinister relish the formidable array of firearms of + various shapes and sizes which his employer had accumulated in the + course of an adventurous life. + + "Mr. Gibson has his enemies, as anyone would expect who knew him and + his methods," said he. "He sleeps with a loaded revolver in the + drawer beside his bed. He is a man of violence, sir, and there are + times when all of us are afraid of him. I am sure that the poor lady + who has passed was often terrified." + + "Did you ever witness physical violence towards her?" + + "No, I cannot say that. But I have heard words which were nearly as + bad--words of cold, cutting contempt, even before the servants." + + "Our millionaire does not seem to shine in private life," remarked + Holmes as we made our way to the station. "Well, Watson, we have come + on a good many facts, some of them new ones, and yet I seem some way + from my conclusion. In spite of the very evident dislike which Mr. + Bates has to his employer, I gather from him that when the alarm came + he was undoubtedly in his library. Dinner was over at 8.30 and all + was normal up to then. It is true that the alarm was somewhat late in + the evening, but the tragedy certainly occurred about the hour named + in the note. There is no evidence at all that Mr. Gibson had been out + of doors since his return from town at five o'clock. On the other + hand, Miss Dunbar, as I understand it, admits that she had made an + appointment to meet Mrs. Gibson at the bridge. Beyond this she would + say nothing, as her lawyer had advised her to reserve her defence. We + have several very vital questions to ask that young lady, and my mind + will not be easy until we have seen her. I must confess that the case + would seem to me to be very black against her if it were not for one + thing." + + "And what is that, Holmes?" + + "The finding of the pistol in her wardrobe." + + "Dear me, Holmes!" I cried, "that seemed to me to be the most damning + incident of all." + + "Not so, Watson. It had struck me even at my first perfunctory + reading as very strange, and now that I am in closer touch with the + case it is my only firm ground for hope. We must look for + consistency. Where there is a want of it we must suspect deception." + + "I hardly follow you." + + "Well now, Watson, suppose for a moment that we visualize you in the + character of a woman who, in a cold, premeditated fashion, is about + to get rid of a rival. You have planned it. A note has been written. + The victim has come. You have your weapon. The crime is done. It has + been workmanlike and complete. Do you tell me that after carrying out + so crafty a crime you would now ruin your reputation as a criminal by + forgetting to fling your weapon into those adjacent reed-beds which + would forever cover it, but you must needs carry it carefully home + and put it in your own wardrobe, the very first place that would be + searched? Your best friends would hardly call you a schemer, Watson, + and yet I could not picture you doing anything so crude as that." + + "In the excitement of the moment--" + + "No, no, Watson, I will not admit that it is possible. Where a crime + is coolly premeditated, then the means of covering it are coolly + premeditated also. I hope, therefore, that we are in the presence of + a serious misconception." + + "But there is so much to explain." + + "Well, we shall set about explaining it. When once your point of view + is changed, the very thing which was so damning becomes a clue to the + truth. For example, there is this revolver. Miss Dunbar disclaims all + knowledge of it. On our new theory she is speaking truth when she + says so. Therefore, it was placed in her wardrobe. Who placed it + there? Someone who wished to incriminate her. Was not that person the + actual criminal? You see how we come at once upon a most fruitful + line of inquiry." + + We were compelled to spend the night at Winchester, as the + formalities had not yet been completed, but next morning, in the + company of Mr. Joyce Cummings, the rising barrister who was entrusted + with the defence, we were allowed to see the young lady in her cell. + I had expected from all that we had heard to see a beautiful woman, + but I can never forget the effect which Miss Dunbar produced upon me. + It was no wonder that even the masterful millionaire had found in her + something more powerful than himself--something which could control + and guide him. One felt, too, as one looked at the strong, clear-cut, + and yet sensitive face, that even should she be capable of some + impetuous deed, none the less there was an innate nobility of + character which would make her influence always for the good. She was + a brunette, tall, with a noble figure and commanding presence, but + her dark eyes had in them the appealing, helpless expression of the + hunted creature who feels the nets around it, but can see no way out + from the toils. Now, as she realized the presence and the help of my + famous friend, there came a touch of colour in her wan cheeks and a + light of hope began to glimmer in the glance which she turned upon + us. + + "Perhaps Mr. Neil Gibson has told you something of what occurred + between us?" she asked in a low, agitated voice. + + "Yes," Holmes answered, "you need not pain yourself by entering into + that part of the story. After seeing you, I am prepared to accept Mr. + Gibson's statement both as to the influence which you had over him + and as to the innocence of your relations with him. But why was the + whole situation not brought out in court?" + + "It seemed to me incredible that such a charge could be sustained. I + thought that if we waited the whole thing must clear itself up + without our being compelled to enter into painful details of the + inner life of the family. But I understand that far from clearing it + has become even more serious." + + "My dear young lady," cried Holmes earnestly, "I beg you to have no + illusions upon the point. Mr. Cummings here would assure you that all + the cards are at present against us, and that we must do everything + that is possible if we are to win clear. It would be a cruel + deception to pretend that you are not in very great danger. Give me + all the help you can, then, to get at the truth." + + "I will conceal nothing." + + "Tell us, then, of your true relations with Mr. Gibson's wife." + + "She hated me, Mr. Holmes. She hated me with all the fervour of her + tropical nature. She was a woman who would do nothing by halves, and + the measure of her love for her husband was the measure also of her + hatred for me. It is probable that she misunderstood our relations. I + would not wish to wrong her, but she loved so vividly in a physical + sense that she could hardly understand the mental, and even + spiritual, tie which held her husband to me, or imagine that it was + only my desire to influence his power to good ends which kept me + under his roof. I can see now that I was wrong. Nothing could justify + me in remaining where I was a cause of unhappiness, and yet it is + certain that the unhappiness would have remained even if I had left + the house." + + "Now, Miss Dunbar," said Holmes, "I beg you to tell us exactly what + occurred that evening." + + "I can tell you the truth so far as I know it, Mr. Holmes, but I am + in a position to prove nothing, and there are points--the most vital + points--which I can neither explain nor can I imagine any + explanation." + + "If you will find the facts, perhaps others may find the + explanation." + + "With regard, then, to my presence at Thor Bridge that night, I + received a note from Mrs. Gibson in the morning. It lay on the table + of the schoolroom, and it may have been left there by her own hand. + It implored me to see her there after dinner, said she had something + important to say to me, and asked me to leave an answer on the + sundial in the garden, as she desired no one to be in our confidence. + I saw no reason for such secrecy, but I did as she asked, accepting + the appointment. She asked me to destroy her note and I burned it in + the schoolroom grate. She was very much afraid of her husband, who + treated her with a harshness for which I frequently reproached him, + and I could only imagine that she acted in this way because she did + not wish him to know of our interview." + + "Yet she kept your reply very carefully?" + + "Yes. I was surprised to hear that she had it in her hand when she + died." + + "Well, what happened then?" + + "I went down as I had promised. When I reached the bridge she was + waiting for me. Never did I realize till that moment how this poor + creature hated me. She was like a mad woman--indeed, I think she was + a mad woman, subtly mad with the deep power of deception which insane + people may have. How else could she have met me with unconcern every + day and yet had so raging a hatred of me in her heart? I will not say + what she said. She poured her whole wild fury out in burning and + horrible words. I did not even answer--I could not. It was dreadful + to see her. I put my hands to my ears and rushed away. When I left + her she was standing, still shrieking out her curses at me, in the + mouth of the bridge." + + "Where she was afterwards found?" + + "Within a few yards from the spot." + + "And yet, presuming that she met her death shortly after you left + her, you heard no shot?" + + "No, I heard nothing. But, indeed, Mr. Holmes, I was so agitated and + horrified by this terrible outbreak that I rushed to get back to the + peace of my own room, and I was incapable of noticing anything which + happened." + + "You say that you returned to your room. Did you leave it again + before next morning?" + + "Yes, when the alarm came that the poor creature had met her death I + ran out with the others." + + "Did you see Mr. Gibson?" + + "Yes, he had just returned from the bridge when I saw him. He had + sent for the doctor and the police." + + "Did he seem to you much perturbed?" + + "Mr. Gibson is a very strong, self-contained man. I do not think that + he would ever show his emotions on the surface. But I, who knew him + so well, could see that he was deeply concerned." + + "Then we come to the all-important point. This pistol that was found + in your room. Had you ever seen it before?" + + "Never, I swear it." + + "When was it found?" + + "Next morning, when the police made their search." + + "Among your clothes?" + + "Yes, on the floor of my wardrobe under my dresses." + + "You could not guess how long it had been there?" + + "It had not been there the morning before." + + "How do you know?" + + "Because I tidied out the wardrobe." + + "That is final. Then someone came into your room and placed the + pistol there in order to inculpate you." + + "It must have been so." + + "And when?" + + "It could only have been at meal-time, or else at the hours when I + would be in the schoolroom with the children." + + "As you were when you got the note?" + + "Yes, from that time onward for the whole morning." + + "Thank you, Miss Dunbar. Is there any other point which could help me + in the investigation?" + + "I can think of none." + + "There was some sign of violence on the stonework of the bridge--a + perfectly fresh chip just opposite the body. Could you suggest any + possible explanation of that?" + + "Surely it must be a mere coincidence." + + "Curious, Miss Dunbar, very curious. Why should it appear at the very + time of the tragedy, and why at the very place?" + + "But what could have caused it? Only great violence could have such + an effect." + + Holmes did not answer. His pale, eager face had suddenly assumed that + tense, far-away expression which I had learned to associate with the + supreme manifestations of his genius. So evident was the crisis in + his mind that none of us dared to speak, and we sat, barrister, + prisoner, and myself, watching him in a concentrated and absorbed + silence. Suddenly he sprang from his chair, vibrating with nervous + energy and the pressing need for action. + + "Come, Watson, come!" he cried. + + "What is it, Mr. Holmes?" + + "Never mind, my dear lady. You will hear from me, Mr. Cummings. With + the help of the god of justice I will give you a case which will make + England ring. You will get news by to-morrow, Miss Dunbar, and + meanwhile take my assurance that the clouds are lifting and that I + have every hope that the light of truth is breaking through." + + It was not a long journey from Winchester to Thor Place, but it was + long to me in my impatience, while for Holmes it was evident that it + seemed endless; for, in his nervous restlessness, he could not sit + still, but paced the carriage or drummed with his long, sensitive + fingers upon the cushions beside him. Suddenly, however, as we neared + our destination he seated himself opposite to me--we had a + first-class carriage to ourselves--and laying a hand upon each of my + knees he looked into my eyes with the peculiarly mischievous gaze + which was characteristic of his more imp-like moods. + + "Watson," said he, "I have some recollection that you go armed upon + these excursions of ours." + + It was as well for him that I did so, for he took little care for his + own safety when his mind was once absorbed by a problem, so that more + than once my revolver had been a good friend in need. I reminded him + of the fact. + + "Yes, yes, I am a little absent-minded in such matters. But have you + your revolver on you?" + + I produced it from my hip-pocket, a short, handy, but very + serviceable little weapon. He undid the catch, shook out the + cartridges, and examined it with care. + + "It's heavy--remarkably heavy," said he. + + "Yes, it is a solid bit of work." + + He mused over it for a minute. + + "Do you know, Watson," said he, "I believe your revolver is going to + have a very intimate connection with the mystery which we are + investigating." + + "My dear Holmes, you are joking." + + "No, Watson, I am very serious. There is a test before us. If the + test comes off, all will be clear. And the test will depend upon the + conduct of this little weapon. One cartridge out. Now we will replace + the other five and put on the safety-catch. So! That increases the + weight and makes it a better reproduction." + + I had no glimmer of what was in his mind, nor did he enlighten me, + but sat lost in thought until we pulled up in the little Hampshire + station. We secured a ramshackle trap, and in a quarter of an hour + were at the house of our confidential friend, the sergeant. + + "A clue, Mr. Holmes? What is it?" + + "It all depends upon the behaviour of Dr. Watson's revolver," said my + friend. "Here it is. Now, officer, can you give me ten yards of + string?" + + The village shop provided a ball of stout twine. + + "I think that this is all we will need," said Holmes. "Now, if you + please, we will get off on what I hope is the last stage of our + journey." + + The sun was setting and turning the rolling Hampshire moor into a + wonderful autumnal panorama. The sergeant, with many critical and + incredulous glances, which showed his deep doubts of the sanity of my + companion, lurched along beside us. As we approached the scene of the + crime I could see that my friend under all his habitual coolness was + in truth deeply agitated. + + "Yes," he said in answer to my remark, "you have seen me miss my mark + before, Watson. I have an instinct for such things, and yet it has + sometimes played me false. It seemed a certainty when first it + flashed across my mind in the cell at Winchester, but one drawback of + an active mind is that one can always conceive alternative + explanations which would make our scent a false one. And yet--and + yet-- Well, Watson, we can but try." + + As he walked he had firmly tied one end of the string to the handle + of the revolver. We had now reached the scene of the tragedy. With + great care he marked out under the guidance of the policeman the + exact spot where the body had been stretched. He then hunted among + the heather and the ferns until he found a considerable stone. This + he secured to the other end of his line of string, and he hung it + over the parapet of the bridge so that it swung clear above the + water. He then stood on the fatal spot, some distance from the edge + of the bridge, with my revolver in his hand, the string being taut + between the weapon and the heavy stone on the farther side. + + "Now for it!" he cried. + + At the words he raised the pistol to his head, and then let go his + grip. In an instant it had been whisked away by the weight of the + stone, had struck with a sharp crack against the parapet, and had + vanished over the side into the water. It had hardly gone before + Holmes was kneeling beside the stonework, and a joyous cry showed + that he had found what he expected. + + "Was there ever a more exact demonstration?" he cried. "See, Watson, + your revolver has solved the problem!" As he spoke he pointed to a + second chip of the exact size and shape of the first which had + appeared on the under edge of the stone balustrade. + + "We'll stay at the inn to-night," he continued as he rose and faced + the astonished sergeant. "You will, of course, get a grappling-hook + and you will easily restore my friend's revolver. You will also find + beside it the revolver, string and weight with which this vindictive + woman attempted to disguise her own crime and to fasten a charge of + murder upon an innocent victim. You can let Mr. Gibson know that I + will see him in the morning, when steps can be taken for Miss + Dunbar's vindication." + + Late that evening, as we sat together smoking our pipes in the + village inn, Holmes gave me a brief review of what had passed. + + "I fear, Watson," said he, "that you will not improve any reputation + which I may have acquired by adding the case of the Thor Bridge + mystery to your annals. I have been sluggish in mind and wanting in + that mixture of imagination and reality which is the basis of my art. + I confess that the chip in the stonework was a sufficient clue to + suggest the true solution, and that I blame myself for not having + attained it sooner. + + "It must be admitted that the workings of this unhappy woman's mind + were deep and subtle, so that it was no very simple matter to unravel + her plot. I do not think that in our adventures we have ever come + across a stranger example of what perverted love can bring about. + Whether Miss Dunbar was her rival in a physical or in a merely mental + sense seems to have been equally unforgivable in her eyes. No doubt + she blamed this innocent lady for all those harsh dealings and unkind + words with which her husband tried to repel her too demonstrative + affection. Her first resolution was to end her own life. Her second + was to do it in such a way as to involve her victim in a fate which + was worse far than any sudden death could be. + + "We can follow the various steps quite clearly, and they show a + remarkable subtlety of mind. A note was extracted very cleverly from + Miss Dunbar which would make it appear that she had chosen the scene + of the crime. In her anxiety that it should be discovered she + somewhat overdid it by holding it in her hand to the last. This alone + should have excited my suspicions earlier than it did. + + "Then she took one of her husband's revolvers--there was, as you saw, + an arsenal in the house--and kept it for her own use. A similar one + she concealed that morning in Miss Dunbar's wardrobe after + discharging one barrel, which she could easily do in the woods + without attracting attention. She then went down to the bridge where + she had contrived this exceedingly ingenious method for getting rid + of her weapon. When Miss Dunbar appeared she used her last breath in + pouring out her hatred, and then, when she was out of hearing, + carried out her terrible purpose. Every link is now in its place and + the chain is complete. The papers may ask why the mere was not + dragged in the first instance, but it is easy to be wise after the + event, and in any case the expanse of a reed-filled lake is no easy + matter to drag unless you have a clear perception of what you are + looking for and where. Well, Watson, we have helped a remarkable + woman, and also a formidable man. Should they in the future join + their forces, as seems not unlikely, the financial world may find + that Mr. Neil Gibson has learned something in that schoolroom of + sorrow where our earthly lessons are taught." + + + + + + + THE ADVENTURE OF THE CREEPING MAN + + Mr. Sherlock Holmes was always of opinion that I should publish the + singular facts connected with Professor Presbury, if only to dispel + once for all the ugly rumours which some twenty years ago agitated + the university and were echoed in the learned societies of London. + There were, however, certain obstacles in the way, and the true + history of this curious case remained entombed in the tin box which + contains so many records of my friend's adventures. Now we have at + last obtained permission to ventilate the facts which formed one of + the very last cases handled by Holmes before his retirement from + practice. Even now a certain reticence and discretion have to be + observed in laying the matter before the public. + + It was one Sunday evening early in September of the year 1903 that I + received one of Holmes's laconic messages: + + Come at once if convenient--if inconvenient come all the same. + S. H. + + The relations between us in those latter days were peculiar. He was a + man of habits, narrow and concentrated habits, and I had become one + of them. As an institution I was like the violin, the shag tobacco, + the old black pipe, the index books, and others perhaps less + excusable. When it was a case of active work and a comrade was needed + upon whose nerve he could place some reliance, my role was obvious. + But apart from this I had uses. I was a whetstone for his mind. I + stimulated him. He liked to think aloud in my presence. His remarks + could hardly be said to be made to me--many of them would have been + as appropriately addressed to his bedstead--but none the less, having + formed the habit, it had become in some way helpful that I should + register and interject. If I irritated him by a certain methodical + slowness in my mentality, that irritation served only to make his own + flame-like intuitions and impressions flash up the more vividly and + swiftly. Such was my humble role in our alliance. + + When I arrived at Baker Street I found him huddled up in his armchair + with updrawn knees, his pipe in his mouth and his brow furrowed with + thought. It was clear that he was in the throes of some vexatious + problem. With a wave of his hand he indicated my old armchair, but + otherwise for half an hour he gave no sign that he was aware of my + presence. Then with a start he seemed to come from his reverie, and + with his usual whimsical smile he greeted me back to what had once + been my home. + + "You will excuse a certain abstraction of mind, my dear Watson," said + he. "Some curious facts have been submitted to me within the last + twenty-four hours, and they in turn have given rise to some + speculations of a more general character. I have serious thoughts of + writing a small monograph upon the uses of dogs in the work of the + detective." + + "But surely, Holmes, this has been explored," said I. + "Bloodhounds--sleuth-hounds--" + + "No, no, Watson, that side of the matter is, of course, obvious. But + there is another which is far more subtle. You may recollect that in + the case which you, in your sensational way, coupled with the Copper + Beeches, I was able, by watching the mind of the child, to form a + deduction as to the criminal habits of the very smug and respectable + father." + + "Yes, I remember it well." + + "My line of thoughts about dogs is analogous. A dog reflects the + family life. Whoever saw a frisky dog in a gloomy family, or a sad + dog in a happy one? Snarling people have snarling dogs, dangerous + people have dangerous ones. And their passing moods may reflect the + passing moods of others." + + I shook my head. "Surely, Holmes, this is a little far-fetched," said + I. + + He had refilled his pipe and resumed his seat, taking no notice of my + comment. + + "The practical application of what I have said is very close to the + problem which I am investigating. It is a tangled skein, you + understand, and I am looking for a loose end. One possible loose end + lies in the question: Why does Professor Presbury's wolfhound, Roy, + endeavour to bite him?" + + I sank back in my chair in some disappointment. Was it for so trivial + a question as this that I had been summoned from my work? Holmes + glanced across at me. + + "The same old Watson!" said he. "You never learn that the gravest + issues may depend upon the smallest things. But is it not on the face + of it strange that a staid, elderly philosopher--you've heard of + Presbury, of course, the famous Camford physiologist?--that such a + man, whose friend has been his devoted wolfhound, should now have + been twice attacked by his own dog? What do you make of it?" + + "The dog is ill." + + "Well, that has to be considered. But he attacks no one else, nor + does he apparently molest his master, save on very special occasions. + Curious, Watson--very curious. But young Mr. Bennett is before his + time if that is his ring. I had hoped to have a longer chat with you + before he came." + + There was a quick step on the stairs, a sharp tap at the door, and a + moment later the new client presented himself. He was a tall, + handsome youth about thirty, well dressed and elegant, but with + something in his bearing which suggested the shyness of the student + rather than the self-possession of the man of the world. He shook + hands with Holmes, and then looked with some surprise at me. + + "This matter is very delicate, Mr. Holmes," he said. "Consider the + relation in which I stand to Professor Presbury both privately and + publicly. I really can hardly justify myself if I speak before any + third person." + + "Have no fear, Mr. Bennett. Dr. Watson is the very soul of + discretion, and I can assure you that this is a matter in which I am + very likely to need an assistant." + + "As you like, Mr. Holmes. You will, I am sure, understand my having + some reserves in the matter." + + "You will appreciate it, Watson, when I tell you that this gentleman, + Mr. Trevor Bennett, is professional assistant to the great scientist, + lives under his roof, and is engaged to his only daughter. Certainly + we must agree that the professor has every claim upon his loyalty and + devotion. But it may best be shown by taking the necessary steps to + clear up this strange mystery." + + "I hope so, Mr. Holmes. That is my one object. Does Dr. Watson know + the situation?" + + "I have not had time to explain it." + + "Then perhaps I had better go over the ground again before explaining + some fresh developments." + + "I will do so myself," said Holmes, "in order to show that I have the + events in their due order. The professor, Watson, is a man of + European reputation. His life has been academic. There has never been + a breath of scandal. He is a widower with one daughter, Edith. He is, + I gather, a man of very virile and positive, one might almost say + combative, character. So the matter stood until a very few months + ago. + + "Then the current of his life was broken. He is sixty-one years of + age, but he became engaged to the daughter of Professor Morphy, his + colleague in the chair of comparative anatomy. It was not, as I + understand, the reasoned courting of an elderly man but rather the + passionate frenzy of youth, for no one could have shown himself a + more devoted lover. The lady, Alice Morphy, was a very perfect girl + both in mind and body, so that there was every excuse for the + professor's infatuation. None the less, it did not meet with full + approval in his own family." + + "We thought it rather excessive," said our visitor. + + "Exactly. Excessive and a little violent and unnatural. Professor + Presbury was rich, however, and there was no objection upon the part + of the father. The daughter, however, had other views, and there were + already several candidates for her hand, who, if they were less + eligible from a worldly point of view, were at least more of an age. + The girl seemed to like the professor in spite of his eccentricities. + It was only age which stood in the way. + + "About this time a little mystery suddenly clouded the normal routine + of the professor's life. He did what he had never done before. He + left home and gave no indication where he was going. He was away a + fortnight and returned looking rather travel-worn. He made no + allusion to where he had been, although he was usually the frankest + of men. It chanced, however, that our client here, Mr. Bennett, + received a letter from a fellow-student in Prague, who said that he + was glad to have seen Professor Presbury there, although he had not + been able to talk to him. Only in this way did his own household + learn where he had been. + + "Now comes the point. From that time onward a curious change came + over the professor. He became furtive and sly. Those around him had + always the feeling that he was not the man that they had known, but + that he was under some shadow which had darkened his higher + qualities. His intellect was not affected. His lectures were as + brilliant as ever. But always there was something new, something + sinister and unexpected. His daughter, who was devoted to him, tried + again and again to resume the old relations and to penetrate this + mask which her father seemed to have put on. You, sir, as I + understand, did the same--but all was in vain. And now, Mr. Bennett, + tell in your own words the incident of the letters." + + "You must understand, Dr. Watson, that the professor had no secrets + from me. If I were his son or his younger brother I could not have + more completely enjoyed his confidence. As his secretary I handled + every paper which came to him, and I opened and subdivided his + letters. Shortly after his return all this was changed. He told me + that certain letters might come to him from London which would be + marked by a cross under the stamp. These were to be set aside for his + own eyes only. I may say that several of these did pass through my + hands, that they had the E. C. mark, and were in an illiterate + handwriting. If he answered them at all the answers did not pass + through my hands nor into the letter-basket in which our + correspondence was collected." + + "And the box," said Holmes. + + "Ah, yes, the box. The professor brought back a little wooden box + from his travels. It was the one thing which suggested a Continental + tour, for it was one of those quaint carved things which one + associates with Germany. This he placed in his instrument cupboard. + One day, in looking for a canula, I took up the box. To my surprise + he was very angry, and reproved me in words which were quite savage + for my curiosity. It was the first time such a thing had happened, + and I was deeply hurt. I endeavoured to explain that it was a mere + accident that I had touched the box, but all the evening I was + conscious that he looked at me harshly and that the incident was + rankling in his mind." Mr. Bennett drew a little diary book from his + pocket. "That was on July 2d," said he. + + "You are certainly an admirable witness," said Holmes. "I may need + some of these dates which you have noted." + + "I learned method among other things from my great teacher. From the + time that I observed abnormality in his behaviour I felt that it was + my duty to study his case. Thus I have it here that it was on that + very day, July 2d, that Roy attacked the professor as he came from + his study into the hall. Again, on July 11th, there was a scene of + the same sort, and then I have a note of yet another upon July 20th. + After that we had to banish Roy to the stables. He was a dear, + affectionate animal--but I fear I weary you." + + Mr. Bennett spoke in a tone of reproach, for it was very clear that + Holmes was not listening. His face was rigid and his eyes gazed + abstractedly at the ceiling. With an effort he recovered himself. + + "Singular! Most singular!" he murmured. "These details were new to + me, Mr. Bennett. I think we have now fairly gone over the old ground, + have we not? But you spoke of some fresh developments." + + The pleasant, open face of our visitor clouded over, shadowed by some + grim remembrance. "What I speak of occurred the night before last," + said he. "I was lying awake about two in the morning, when I was + aware of a dull muffled sound coming from the passage. I opened my + door and peeped out. I should explain that the professor sleeps at + the end of the passage--" + + "The date being--?" asked Holmes. + + Our visitor was clearly annoyed at so irrelevant an interruption. + + "I have said, sir, that it was the night before last--that is, + September 4th." + + Holmes nodded and smiled. + + "Pray continue," said he. + + "He sleeps at the end of the passage and would have to pass my door + in order to reach the staircase. It was a really terrifying + experience, Mr. Holmes. I think that I am as strong-nerved as my + neighbours, but I was shaken by what I saw. The passage was dark save + that one window halfway along it threw a patch of light. I could see + that something was coming along the passage, something dark and + crouching. Then suddenly it emerged into the light, and I saw that it + was he. He was crawling, Mr. Holmes--crawling! He was not quite on + his hands and knees. I should rather say on his hands and feet, with + his face sunk between his hands. Yet he seemed to move with ease. I + was so paralyzed by the sight that it was not until he had reached my + door that I was able to step forward and ask if I could assist him. + His answer was extraordinary. He sprang up, spat out some atrocious + word at me, and hurried on past me, and down the staircase. I waited + about for an hour, but he did not come back. It must have been + daylight before he regained his room." + + "Well, Watson, what make you of that?" asked Holmes with the air of + the pathologist who presents a rare specimen. + + "Lumbago, possibly. I have known a severe attack make a man walk in + just such a way, and nothing would be more trying to the temper." + + "Good, Watson! You always keep us flat-footed on the ground. But we + can hardly accept lumbago, since he was able to stand erect in a + moment." + + "He was never better in health," said Bennett. "In fact, he is + stronger than I have known him for years. But there are the facts, + Mr. Holmes. It is not a case in which we can consult the police, and + yet we are utterly at our wit's end as to what to do, and we feel in + some strange way that we are drifting towards disaster. Edith--Miss + Presbury--feels as I do, that we cannot wait passively any longer." + + "It is certainly a very curious and suggestive case. What do you + think, Watson?" + + "Speaking as a medical man," said I, "it appears to be a case for an + alienist. The old gentleman's cerebral processes were disturbed by + the love affair. He made a journey abroad in the hope of breaking + himself of the passion. His letters and the box may be connected with + some other private transaction--a loan, perhaps, or share + certificates, which are in the box." + + "And the wolfhound no doubt disapproved of the financial bargain. No, + no, Watson, there is more in it than this. Now, I can only suggest--" + + What Sherlock Holmes was about to suggest will never be known, for at + this moment the door opened and a young lady was shown into the room. + As she appeared Mr. Bennett sprang up with a cry and ran forward with + his hands out to meet those which she had herself outstretched. + + "Edith, dear! Nothing the matter, I hope?" + + "I felt I must follow you. Oh, Jack, I have been so dreadfully + frightened! It is awful to be there alone." + + "Mr. Holmes, this is the young lady I spoke of. This is my fiancee." + + "We were gradually coming to that conclusion, were we not, Watson?" + Holmes answered with a smile. "I take it, Miss Presbury, that there + is some fresh development in the case, and that you thought we should + know?" + + Our new visitor, a bright, handsome girl of a conventional English + type, smiled back at Holmes as she seated herself beside Mr. Bennett. + + "When I found Mr. Bennett had left his hotel I thought I should + probably find him here. Of course, he had told me that he would + consult you. But, oh, Mr. Holmes, can you do nothing for my poor + father?" + + "I have hopes, Miss Presbury, but the case is still obscure. Perhaps + what you have to say may throw some fresh light upon it." + + "It was last night, Mr. Holmes. He had been very strange all day. I + am sure that there are times when he has no recollection of what he + does. He lives as in a strange dream. Yesterday was such a day. It + was not my father with whom I lived. His outward shell was there, but + it was not really he." + + "Tell me what happened." + + "I was awakened in the night by the dog barking most furiously. Poor + Roy, he is chained now near the stable. I may say that I always sleep + with my door locked; for, as Jack--as Mr. Bennett--will tell you, we + all have a feeling of impending danger. My room is on the second + floor. It happened that the blind was up in my window, and there was + bright moonlight outside. As I lay with my eyes fixed upon the square + of light, listening to the frenzied barkings of the dog, I was amazed + to see my father's face looking in at me. Mr. Holmes, I nearly died + of surprise and horror. There it was pressed against the window-pane, + and one hand seemed to be raised as if to push up the window. If that + window had opened, I think I should have gone mad. It was no + delusion, Mr. Holmes. Don't deceive yourself by thinking so. I dare + say it was twenty seconds or so that I lay paralyzed and watched the + face. Then it vanished, but I could not--I could not spring out of + bed and look out after it. I lay cold and shivering till morning. At + breakfast he was sharp and fierce in manner, and made no allusion to + the adventure of the night. Neither did I, but I gave an excuse for + coming to town--and here I am." + + Holmes looked thoroughly surprised at Miss Presbury's narrative. + + "My dear young lady, you say that your room is on the second floor. + Is there a long ladder in the garden?" + + "No, Mr. Holmes, that is the amazing part of it. There is no possible + way of reaching the window--and yet he was there." + + "The date being September 5th," said Holmes. "That certainly + complicates matters." + + It was the young lady's turn to look surprised. "This is the second + time that you have alluded to the date, Mr. Holmes," said Bennett. + "Is it possible that it has any bearing upon the case?" + + "It is possible--very possible--and yet I have not my full material + at present." + + "Possibly you are thinking of the connection between insanity and + phases of the moon?" + + "No, I assure you. It was quite a different line of thought. Possibly + you can leave your notebook with me, and I will check the dates. Now + I think, Watson, that our line of action is perfectly clear. This + young lady has informed us--and I have the greatest confidence in her + intuition--that her father remembers little or nothing which occurs + upon certain dates. We will therefore call upon him as if he had + given us an appointment upon such a date. He will put it down to his + own lack of memory. Thus we will open our campaign by having a good + close view of him." + + "That is excellent," said Mr. Bennett. "I warn you, however, that the + professor is irascible and violent at times." + + Holmes smiled. "There are reasons why we should come at once--very + cogent reasons if my theories hold good. To-morrow, Mr. Bennett, will + certainly see us in Camford. There is, if I remember right, an inn + called the Chequers where the port used to be above mediocrity and + the linen was above reproach. I think, Watson, that our lot for the + next few days might lie in less pleasant places." + + Monday morning found us on our way to the famous university town--an + easy effort on the part of Holmes, who had no roots to pull up, but + one which involved frantic planning and hurrying on my part, as my + practice was by this time not inconsiderable. Holmes made no allusion + to the case until after we had deposited our suitcases at the ancient + hostel of which he had spoken. + + "I think, Watson, that we can catch the professor just before lunch. + He lectures at eleven and should have an interval at home." + + "What possible excuse have we for calling?" + + Holmes glanced at his notebook. + + "There was a period of excitement upon August 26th. We will assume + that he is a little hazy as to what he does at such times. If we + insist that we are there by appointment I think he will hardly + venture to contradict us. Have you the effrontery necessary to put it + through?" + + "We can but try." + + "Excellent, Watson! Compound of the Busy Bee and Excelsior. We can + but try--the motto of the firm. A friendly native will surely guide + us." + + Such a one on the back of a smart hansom swept us past a row of + ancient colleges and, finally turning into a tree-lined drive, pulled + up at the door of a charming house, girt round with lawns and covered + with purple wisteria. Professor Presbury was certainly surrounded + with every sign not only of comfort but of luxury. Even as we pulled + up, a grizzled head appeared at the front window, and we were aware + of a pair of keen eyes from under shaggy brows which surveyed us + through large horn glasses. A moment later we were actually in his + sanctum, and the mysterious scientist, whose vagaries had brought us + from London, was standing before us. There was certainly no sign of + eccentricity either in his manner or appearance, for he was a portly, + large-featured man, grave, tall, and frock-coated, with the dignity + of bearing which a lecturer needs. His eyes were his most remarkable + feature, keen, observant, and clever to the verge of cunning. + + He looked at our cards. "Pray sit down, gentlemen. What can I do for + you?" + + Mr. Holmes smiled amiably. + + "It was the question which I was about to put to you, Professor." + + "To me, sir!" + + "Possibly there is some mistake. I heard through a second person that + Professor Presbury of Camford had need of my services." + + "Oh, indeed!" It seemed to me that there was a malicious sparkle in + the intense gray eyes. "You heard that, did you? May I ask the name + of your informant?" + + "I am sorry, Professor, but the matter was rather confidential. If I + have made a mistake there is no harm done. I can only express my + regret." + + "Not at all. I should wish to go further into this matter. It + interests me. Have you any scrap of writing, any letter or telegram, + to bear out your assertion?" + + "No, I have not." + + "I presume that you do not go so far as to assert that I summoned + you?" + + "I would rather answer no questions," said Holmes. + + "No, I dare say not," said the professor with asperity. "However, + that particular one can be answered very easily without your aid." + + He walked across the room to the bell. Our London friend, Mr. + Bennett, answered the call. + + "Come in, Mr. Bennett. These two gentlemen have come from London + under the impression that they have been summoned. You handle all my + correspondence. Have you a note of anything going to a person named + Holmes?" + + "No, sir," Bennett answered with a flush. + + "That is conclusive," said the professor, glaring angrily at my + companion. "Now, sir"--he leaned forward with his two hands upon the + table--"it seems to me that your position is a very questionable + one." + + Holmes shrugged his shoulders. + + "I can only repeat that I am sorry that we have made a needless + intrusion." + + "Hardly enough, Mr. Holmes!" the old man cried in a high screaming + voice, with extraordinary malignancy upon his face. He got between us + and the door as he spoke, and he shook his two hands at us with + furious passion. "You can hardly get out of it so easily as that." + His face was convulsed, and he grinned and gibbered at us in his + senseless rage. I am convinced that we should have had to fight our + way out of the room if Mr. Bennett had not intervened. + + "My dear Professor," he cried, "consider your position! Consider the + scandal at the university! Mr. Holmes is a well-known man. You cannot + possibly treat him with such discourtesy." + + Sulkily our host--if I may call him so--cleared the path to the door. + We were glad to find ourselves outside the house and in the quiet of + the tree-lined drive. Holmes seemed greatly amused by the episode. + + "Our learned friend's nerves are somewhat out of order," said he. + "Perhaps our intrusion was a little crude, and yet we have gained + that personal contact which I desired. But, dear me, Watson, he is + surely at our heels. The villain still pursues us." + + There were the sounds of running feet behind, but it was, to my + relief, not the formidable professor but his assistant who appeared + round the curve of the drive. He came panting up to us. + + "I am so sorry, Mr. Holmes. I wished to apologize." + + "My dear sir, there is no need. It is all in the way of professional + experience." + + "I have never seen him in a more dangerous mood. But he grows more + sinister. You can understand now why his daughter and I are alarmed. + And yet his mind is perfectly clear." + + "Too clear!" said Holmes. "That was my miscalculation. It is evident + that his memory is much more reliable than I had thought. By the way, + can we, before we go, see the window of Miss Presbury's room?" + + Mr. Bennett pushed his way through some shrubs, and we had a view of + the side of the house. + + "It is there. The second on the left." + + "Dear me, it seems hardly accessible. And yet you will observe that + there is a creeper below and a water-pipe above which give some + foothold." + + "I could not climb it myself," said Mr. Bennett. + + "Very likely. It would certainly be a dangerous exploit for any + normal man." + + "There was one other thing I wish to tell you, Mr. Holmes. I have the + address of the man in London to whom the professor writes. He seems + to have written this morning, and I got it from his blotting-paper. + It is an ignoble position for a trusted secretary, but what else can + I do?" + + Holmes glanced at the paper and put it into his pocket. + + "Dorak--a curious name. Slavonic, I imagine. Well, it is an important + link in the chain. We return to London this afternoon, Mr. Bennett. I + see no good purpose to be served by our remaining. We cannot arrest + the professor because he has done no crime, nor can we place him + under constraint, for he cannot be proved to be mad. No action is as + yet possible." + + "Then what on earth are we to do?" + + "A little patience, Mr. Bennett. Things will soon develop. Unless I + am mistaken, next Tuesday may mark a crisis. Certainly we shall be in + Camford on that day. Meanwhile, the general position is undeniably + unpleasant, and if Miss Presbury can prolong her visit--" + + "That is easy." + + "Then let her stay till we can assure her that all danger is past. + Meanwhile, let him have his way and do not cross him. So long as he + is in a good humour all is well." + + "There he is!" said Bennett in a startled whisper. Looking between + the branches we saw the tall, erect figure emerge from the hall door + and look around him. He stood leaning forward, his hands swinging + straight before him, his head turning from side to side. The + secretary with a last wave slipped off among the trees, and we saw + him presently rejoin his employer, the two entering the house + together in what seemed to be animated and even excited conversation. + + "I expect the old gentleman has been putting two and two together," + said Holmes as we walked hotelward. "He struck me as having a + particularly clear and logical brain from the little I saw of him. + Explosive, no doubt, but then from his point of view he has something + to explode about if detectives are put on his track and he suspects + his own household of doing it. I rather fancy that friend Bennett is + in for an uncomfortable time." + + Holmes stopped at a post-office and sent off a telegram on our way. + The answer reached us in the evening, and he tossed it across to me. + + Have visited the Commercial Road and seen Dorak. Suave person, + Bohemian, elderly. Keeps large general store. + Mercer. + + "Mercer is since your time," said Holmes. "He is my general utility + man who looks up routine business. It was important to know something + of the man with whom our professor was so secretly corresponding. His + nationality connects up with the Prague visit." + + "Thank goodness that something connects with something," said I. "At + present we seem to be faced by a long series of inexplicable + incidents with no bearing upon each other. For example, what possible + connection can there be between an angry wolfhound and a visit to + Bohemia, or either of them with a man crawling down a passage at + night? As to your dates, that is the biggest mystification of all." + + Holmes smiled and rubbed his hands. We were, I may say, seated in the + old sitting-room of the ancient hotel, with a bottle of the famous + vintage of which Holmes had spoken on the table between us. + + "Well, now, let us take the dates first," said he, his finger-tips + together and his manner as if he were addressing a class. "This + excellent young man's diary shows that there was trouble upon July + 2d, and from then onward it seems to have been at nine-day intervals, + with, so far as I remember, only one exception. Thus the last + outbreak upon Friday was on September 3d, which also falls into the + series, as did August 26th, which preceded it. The thing is beyond + coincidence." + + I was forced to agree. + + "Let us, then, form the provisional theory that every nine days the + professor takes some strong drug which has a passing but highly + poisonous effect. His naturally violent nature is intensified by it. + He learned to take this drug while he was in Prague, and is now + supplied with it by a Bohemian intermediary in London. This all hangs + together, Watson!" + + "But the dog, the face at the window, the creeping man in the + passage?" + + "Well, well, we have made a beginning. I should not expect any fresh + developments until next Tuesday. In the meantime we can only keep in + touch with friend Bennett and enjoy the amenities of this charming + town." + + In the morning Mr. Bennett slipped round to bring us the latest + report. As Holmes had imagined, times had not been easy with him. + Without exactly accusing him of being responsible for our presence, + the professor had been very rough and rude in his speech, and + evidently felt some strong grievance. This morning he was quite + himself again, however, and had delivered his usual brilliant lecture + to a crowded class. "Apart from his queer fits," said Bennett, "he + has actually more energy and vitality than I can ever remember, nor + was his brain ever clearer. But it's not he--it's never the man whom + we have known." + + "I don't think you have anything to fear now for a week at least," + Holmes answered. "I am a busy man, and Dr. Watson has his patients to + attend to. Let us agree that we meet here at this hour next Tuesday, + and I shall be surprised if before we leave you again we are not able + to explain, even if we cannot perhaps put an end to, your troubles. + Meanwhile, keep us posted in what occurs." + + I saw nothing of my friend for the next few days, but on the + following Monday evening I had a short note asking me to meet him + next day at the train. From what he told me as we travelled up to + Camford all was well, the peace of the professor's house had been + unruffled, and his own conduct perfectly normal. This also was the + report which was given us by Mr. Bennett himself when he called upon + us that evening at our old quarters in the Chequers. "He heard from + his London correspondent to-day. There was a letter and there was a + small packet, each with the cross under the stamp which warned me not + to touch them. There has been nothing else." + + "That may prove quite enough," said Holmes grimly. "Now, Mr. Bennett, + we shall, I think, come to some conclusion to-night. If my deductions + are correct we should have an opportunity of bringing matters to a + head. In order to do so it is necessary to hold the professor under + observation. I would suggest, therefore, that you remain awake and on + the lookout. Should you hear him pass your door, do not interrupt + him, but follow him as discreetly as you can. Dr. Watson and I will + not be far off. By the way, where is the key of that little box of + which you spoke?" + + "Upon his watch-chain." + + "I fancy our researches must lie in that direction. At the worst the + lock should not be very formidable. Have you any other able-bodied + man on the premises?" + + "There is the coachman, Macphail." + + "Where does he sleep?" + + "Over the stables." + + "We might possibly want him. Well, we can do no more until we see how + things develop. Good-bye--but I expect that we shall see you before + morning." + + It was nearly midnight before we took our station among some bushes + immediately opposite the hall door of the professor. It was a fine + night, but chilly, and we were glad of our warm overcoats. There was + a breeze, and clouds were scudding across the sky, obscuring from + time to time the half-moon. It would have been a dismal vigil were it + not for the expectation and excitement which carried us along, and + the assurance of my comrade that we had probably reached the end of + the strange sequence of events which had engaged our attention. + + "If the cycle of nine days holds good then we shall have the + professor at his worst to-night," said Holmes. "The fact that these + strange symptoms began after his visit to Prague, that he is in + secret correspondence with a Bohemian dealer in London, who + presumably represents someone in Prague, and that he received a + packet from him this very day, all point in one direction. What he + takes and why he takes it are still beyond our ken, but that it + emanates in some way from Prague is clear enough. He takes it under + definite directions which regulate this ninth-day system, which was + the first point which attracted my attention. But his symptoms are + most remarkable. Did you observe his knuckles?" + + I had to confess that I did not. + + "Thick and horny in a way which is quite new in my experience. Always + look at the hands first, Watson. Then cuffs, trouser-knees, and + boots. Very curious knuckles which can only be explained by the mode + of progression observed by--" Holmes paused and suddenly clapped his + hand to his forehead. "Oh, Watson, Watson, what a fool I have been! + It seems incredible, and yet it must be true. All points in one + direction. How could I miss seeing the connection of ideas? Those + knuckles--how could I have passed those knuckles? And the dog! And + the ivy! It's surely time that I disappeared into that little farm of + my dreams. Look out, Watson! Here he is! We shall have the chance of + seeing for ourselves." + + The hall door had slowly opened, and against the lamplit background + we saw the tall figure of Professor Presbury. He was clad in his + dressing-gown. As he stood outlined in the doorway he was erect but + leaning forward with dangling arms, as when we saw him last. + + Now he stepped forward into the drive, and an extraordinary change + came over him. He sank down into a crouching position and moved along + upon his hands and feet, skipping every now and then as if he were + overflowing with energy and vitality. He moved along the face of the + house and then round the corner. As he disappeared Bennett slipped + through the hall door and softly followed him. + + "Come, Watson, come!" cried Holmes, and we stole as softly as we + could through the bushes until we had gained a spot whence we could + see the other side of the house, which was bathed in the light of the + half-moon. The professor was clearly visible crouching at the foot of + the ivy-covered wall. As we watched him he suddenly began with + incredible agility to ascend it. From branch to branch he sprang, + sure of foot and firm of grasp, climbing apparently in mere joy at + his own powers, with no definite object in view. With his + dressing-gown flapping on each side of him, he looked like some huge + bat glued against the side of his own house, a great square dark + patch upon the moonlit wall. Presently he tired of this amusement, + and, dropping from branch to branch, he squatted down into the old + attitude and moved towards the stables, creeping along in the same + strange way as before. The wolfhound was out now, barking furiously, + and more excited than ever when it actually caught sight of its + master. It was straining on its chain and quivering with eagerness + and rage. The professor squatted down very deliberately just out of + reach of the hound and began to provoke it in every possible way. He + took handfuls of pebbles from the drive and threw them in the dog's + face, prodded him with a stick which he had picked up, flicked his + hands about only a few inches from the gaping mouth, and endeavoured + in every way to increase the animal's fury, which was already beyond + all control. In all our adventures I do not know that I have ever + seen a more strange sight than this impassive and still dignified + figure crouching frog-like upon the ground and goading to a wilder + exhibition of passion the maddened hound, which ramped and raged in + front of him, by all manner of ingenious and calculated cruelty. + + And then in a moment it happened! It was not the chain that broke, + but it was the collar that slipped, for it had been made for a + thick-necked Newfoundland. We heard the rattle of falling metal, and + the next instant dog and man were rolling on the ground together, the + one roaring in rage, the other screaming in a strange shrill falsetto + of terror. It was a very narrow thing for the professor's life. The + savage creature had him fairly by the throat, its fangs had bitten + deep, and he was senseless before we could reach them and drag the + two apart. It might have been a dangerous task for us, but Bennett's + voice and presence brought the great wolfhound instantly to reason. + The uproar had brought the sleepy and astonished coachman from his + room above the stables. "I'm not surprised," said he, shaking his + head. "I've seen him at it before. I knew the dog would get him + sooner or later." + + The hound was secured, and together we carried the professor up to + his room, where Bennett, who had a medical degree, helped me to dress + his torn throat. The sharp teeth had passed dangerously near the + carotid artery, and the haemorrhage was serious. In half an hour the + danger was past, I had given the patient an injection of morphia, and + he had sunk into deep sleep. Then, and only then, were we able to + look at each other and to take stock of the situation. + + "I think a first-class surgeon should see him," said I. + + "For God's sake, no!" cried Bennett. "At present the scandal is + confined to our own household. It is safe with us. If it gets beyond + these walls it will never stop. Consider his position at the + university, his European reputation, the feelings of his daughter." + + "Quite so," said Holmes. "I think it may be quite possible to keep + the matter to ourselves, and also to prevent its recurrence now that + we have a free hand. The key from the watch-chain, Mr. Bennett. + Macphail will guard the patient and let us know if there is any + change. Let us see what we can find in the professor's mysterious + box." + + There was not much, but there was enough--an empty phial, another + nearly full, a hypodermic syringe, several letters in a crabbed, + foreign hand. The marks on the envelopes showed that they were those + which had disturbed the routine of the secretary, and each was dated + from the Commercial Road and signed "A. Dorak." They were mere + invoices to say that a fresh bottle was being sent to Professor + Presbury, or receipt to acknowledge money. There was one other + envelope, however, in a more educated hand and bearing the Austrian + stamp with the postmark of Prague. "Here we have our material!" cried + Holmes as he tore out the enclosure. + + Honoured Colleague [it ran]: + Since your esteemed visit I have thought much of your case, and + though in your circumstances there are some special reasons for the + treatment, I would none the less enjoin caution, as my results have + shown that it is not without danger of a kind. + It is possible that the serum of anthropoid would have been better. I + have, as I explained to you, used black-faced langur because a + specimen was accessible. Langur is, of course, a crawler and climber, + while anthropoid walks erect and is in all ways nearer. + I beg you to take every possible precaution that there be no + premature revelation of the process. I have one other client in + England, and Dorak is my agent for both. + Weekly reports will oblige. + Yours with high esteem, + H. Lowenstein. + + Lowenstein! The name brought back to me the memory of some snippet + from a newspaper which spoke of an obscure scientist who was striving + in some unknown way for the secret of rejuvenescence and the elixir + of life. Lowenstein of Prague! Lowenstein with the wondrous + strength-giving serum, tabooed by the profession because he refused + to reveal its source. In a few words I said what I remembered. + Bennett had taken a manual of zoology from the shelves. "'Langur,'" + he read, "'the great black-faced monkey of the Himalayan slopes, + biggest and most human of climbing monkeys.' Many details are added. + Well, thanks to you, Mr. Holmes, it is very clear that we have traced + the evil to its source." + + "The real source," said Holmes, "lies, of course, in that untimely + love affair which gave our impetuous professor the idea that he could + only gain his wish by turning himself into a younger man. When one + tries to rise above Nature one is liable to fall below it. The + highest type of man may revert to the animal if he leaves the + straight road of destiny." He sat musing for a little with the phial + in his hand, looking at the clear liquid within. "When I have written + to this man and told him that I hold him criminally responsible for + the poisons which he circulates, we will have no more trouble. But it + may recur. Others may find a better way. There is danger there--a + very real danger to humanity. Consider, Watson, that the material, + the sensual, the worldly would all prolong their worthless lives. The + spiritual would not avoid the call to something higher. It would be + the survival of the least fit. What sort of cesspool may not our poor + world become?" Suddenly the dreamer disappeared, and Holmes, the man + of action, sprang from his chair. "I think there is nothing more to + be said, Mr. Bennett. The various incidents will now fit themselves + easily into the general scheme. The dog, of course, was aware of the + change far more quickly than you. His smell would insure that. It was + the monkey, not the professor, whom Roy attacked, just as it was the + monkey who teased Roy. Climbing was a joy to the creature, and it was + a mere chance, I take it, that the pastime brought him to the young + lady's window. There is an early train to town, Watson, but I think + we shall just have time for a cup of tea at the Chequers before we + catch it." + + + + + + + THE ADVENTURE OF THE LION'S MANE + + It is a most singular thing that a problem which was certainly as + abstruse and unusual as any which I have faced in my long + professional career should have come to me after my retirement, and + be brought, as it were, to my very door. It occurred after my + withdrawal to my little Sussex home, when I had given myself up + entirely to that soothing life of Nature for which I had so often + yearned during the long years spent amid the gloom of London. At this + period of my life the good Watson had passed almost beyond my ken. An + occasional week-end visit was the most that I ever saw of him. Thus I + must act as my own chronicler. Ah! had he but been with me, how much + he might have made of so wonderful a happening and of my eventual + triumph against every difficulty! As it is, however, I must needs + tell my tale in my own plain way, showing by my words each step upon + the difficult road which lay before me as I searched for the mystery + of the Lion's Mane. + + My villa is situated upon the southern slope of the downs, commanding + a great view of the Channel. At this point the coast-line is entirely + of chalk cliffs, which can only be descended by a single, long, + tortuous path, which is steep and slippery. At the bottom of the path + lie a hundred yards of pebbles and shingle, even when the tide is at + full. Here and there, however, there are curves and hollows which + make splendid swimming-pools filled afresh with each flow. This + admirable beach extends for some miles in each direction, save only + at one point where the little cove and village of Fulworth break the + line. + + My house is lonely. I, my old housekeeper, and my bees have the + estate all to ourselves. Half a mile off, however, is Harold + Stackhurst's well-known coaching establishment, The Gables, quite a + large place, which contains some score of young fellows preparing for + various professions, with a staff of several masters. Stackhurst + himself was a well-known rowing Blue in his day, and an excellent + all-round scholar. He and I were always friendly from the day I came + to the coast, and he was the one man who was on such terms with me + that we could drop in on each other in the evenings without an + invitation. + + Towards the end of July, 1907, there was a severe gale, the wind + blowing up-channel, heaping the seas to the base of the cliffs and + leaving a lagoon at the turn of the tide. On the morning of which I + speak the wind had abated, and all Nature was newly washed and fresh. + It was impossible to work upon so delightful a day, and I strolled + out before breakfast to enjoy the exquisite air. I walked along the + cliff path which led to the steep descent to the beach. As I walked I + heard a shout behind me, and there was Harold Stackhurst waving his + hand in cheery greeting. + + "What a morning, Mr. Holmes! I thought I should see you out." + + "Going for a swim, I see." + + "At your old tricks again," he laughed, patting his bulging pocket. + "Yes. McPherson started early, and I expect I may find him there." + + Fitzroy McPherson was the science master, a fine upstanding young + fellow whose life had been crippled by heart trouble following + rheumatic fever. He was a natural athlete, however, and excelled in + every game which did not throw too great a strain upon him. Summer + and winter he went for his swim, and, as I am a swimmer myself, I + have often joined him. + + At this moment we saw the man himself. His head showed above the edge + of the cliff where the path ends. Then his whole figure appeared at + the top, staggering like a drunken man. The next instant he threw up + his hands and, with a terrible cry, fell upon his face. Stackhurst + and I rushed forward--it may have been fifty yards--and turned him on + his back. He was obviously dying. Those glazed sunken eyes and + dreadful livid cheeks could mean nothing else. One glimmer of life + came into his face for an instant, and he uttered two or three words + with an eager air of warning. They were slurred and indistinct, but + to my ear the last of them, which burst in a shriek from his lips, + were "the Lion's Mane." It was utterly irrelevant and unintelligible, + and yet I could twist the sound into no other sense. Then he half + raised himself from the ground, threw his arms into the air, and fell + forward on his side. He was dead. + + My companion was paralyzed by the sudden horror of it, but I, as may + well be imagined, had every sense on the alert. And I had need, for + it was speedily evident that we were in the presence of an + extraordinary case. The man was dressed only in his Burberry + overcoat, his trousers, and an unlaced pair of canvas shoes. As he + fell over, his Burberry, which had been simply thrown round his + shoulders, slipped off, exposing his trunk. We stared at it in + amazement. His back was covered with dark red lines as though he had + been terribly flogged by a thin wire scourge. The instrument with + which this punishment had been inflicted was clearly flexible, for + the long, angry weals curved round his shoulders and ribs. There was + blood dripping down his chin, for he had bitten through his lower lip + in the paroxysm of his agony. His drawn and distorted face told how + terrible that agony had been. + + I was kneeling and Stackhurst standing by the body when a shadow fell + across us, and we found that Ian Murdoch was by our side. Murdoch was + the mathematical coach at the establishment, a tall, dark, thin man, + so taciturn and aloof that none can be said to have been his friend. + He seemed to live in some high, abstract region of surds and conic + sections, with little to connect him with ordinary life. He was + looked upon as an oddity by the students, and would have been their + butt, but there was some strange outlandish blood in the man, which + showed itself not only in his coal-black eyes and swarthy face but + also in occasional outbreaks of temper, which could only be described + as ferocious. On one occasion, being plagued by a little dog + belonging to McPherson, he had caught the creature up and hurled it + through the plate-glass window, an action for which Stackhurst would + certainly have given him his dismissal had he not been a very + valuable teacher. Such was the strange complex man who now appeared + beside us. He seemed to be honestly shocked at the sight before him, + though the incident of the dog may show that there was no great + sympathy between the dead man and himself. + + "Poor fellow! Poor fellow! What can I do? How can I help?" + + "Were you with him? Can you tell us what has happened?" + + "No, no, I was late this morning. I was not on the beach at all. I + have come straight from The Gables. What can I do?" + + "You can hurry to the police-station at Fulworth. Report the matter + at once." + + Without a word he made off at top speed, and I proceeded to take the + matter in hand, while Stackhurst, dazed at this tragedy, remained by + the body. My first task naturally was to note who was on the beach. + From the top of the path I could see the whole sweep of it, and it + was absolutely deserted save that two or three dark figures could be + seen far away moving towards the village of Fulworth. Having + satisfied myself upon this point, I walked slowly down the path. + There was clay or soft marl mixed with the chalk, and every here and + there I saw the same footstep, both ascending and descending. No one + else had gone down to the beach by this track that morning. At one + place I observed the print of an open hand with the fingers towards + the incline. This could only mean that poor McPherson had fallen as + he ascended. There were rounded depressions, too, which suggested + that he had come down upon his knees more than once. At the bottom of + the path was the considerable lagoon left by the retreating tide. At + the side of it McPherson had undressed, for there lay his towel on a + rock. It was folded and dry, so that it would seem that, after all, + he had never entered the water. Once or twice as I hunted round amid + the hard shingle I came on little patches of sand where the print of + his canvas shoe, and also of his naked foot, could be seen. The + latter fact proved that he had made all ready to bathe, though the + towel indicated that he had not actually done so. + + And here was the problem clearly defined--as strange a one as had + ever confronted me. The man had not been on the beach more than a + quarter of an hour at the most. Stackhurst had followed him from The + Gables, so there could be no doubt about that. He had gone to bathe + and had stripped, as the naked footsteps showed. Then he had suddenly + huddled on his clothes again--they were all dishevelled and + unfastened--and he had returned without bathing, or at any rate + without drying himself. And the reason for his change of purpose had + been that he had been scourged in some savage, inhuman fashion, + tortured until he bit his lip through in his agony, and was left with + only strength enough to crawl away and to die. Who had done this + barbarous deed? There were, it is true, small grottos and caves in + the base of the cliffs, but the low sun shone directly into them, and + there was no place for concealment. Then, again, there were those + distant figures on the beach. They seemed too far away to have been + connected with the crime, and the broad lagoon in which McPherson had + intended to bathe lay between him and them, lapping up to the rocks. + On the sea two or three fishing-boats were at no great distance. + Their occupants might be examined at our leisure. There were several + roads for inquiry, but none which led to any very obvious goal. + + When I at last returned to the body I found that a little group of + wondering folk had gathered round it. Stackhurst was, of course, + still there, and Ian Murdoch had just arrived with Anderson, the + village constable, a big, ginger-moustached man of the slow, solid + Sussex breed--a breed which covers much good sense under a heavy, + silent exterior. He listened to everything, took note of all we said, + and finally drew me aside. + + "I'd be glad of your advice, Mr. Holmes. This is a big thing for me + to handle, and I'll hear of it from Lewes if I go wrong." + + I advised him to send for his immediate superior, and for a doctor; + also to allow nothing to be moved, and as few fresh footmarks as + possible to be made, until they came. In the meantime I searched the + dead man's pockets. There were his handkerchief, a large knife, and a + small folding card-case. From this projected a slip of paper, which I + unfolded and handed to the constable. There was written on it in a + scrawling, feminine hand: + + I will be there, you may be sure. + Maudie. + + It read like a love affair, an assignation, though when and where + were a blank. The constable replaced it in the card-case and returned + it with the other things to the pockets of the Burberry. Then, as + nothing more suggested itself, I walked back to my house for + breakfast, having first arranged that the base of the cliffs should + be thoroughly searched. + + Stackhurst was round in an hour or two to tell me that the body had + been removed to The Gables, where the inquest would be held. He + brought with him some serious and definite news. As I expected, + nothing had been found in the small caves below the cliff, but he had + examined the papers in McPherson's desk, and there were several which + showed an intimate correspondence with a certain Miss Maud Bellamy, + of Fulworth. We had then established the identity of the writer of + the note. + + "The police have the letters," he explained. "I could not bring them. + But there is no doubt that it was a serious love affair. I see no + reason, however, to connect it with that horrible happening save, + indeed, that the lady had made an appointment with him." + + "But hardly at a bathing-pool which all of you were in the habit of + using," I remarked. + + "It is mere chance," said he, "that several of the students were not + with McPherson." + + "Was it mere chance?" + + Stackhurst knit his brows in thought. + + "Ian Murdoch held them back," said he. "He would insist upon some + algebraic demonstration before breakfast. Poor chap, he is dreadfully + cut up about it all." + + "And yet I gather that they were not friends." + + "At one time they were not. But for a year or more Murdoch has been + as near to McPherson as he ever could be to anyone. He is not of a + very sympathetic disposition by nature." + + "So I understand. I seem to remember your telling me once about a + quarrel over the ill-usage of a dog." + + "That blew over all right." + + "But left some vindictive feeling, perhaps." + + "No, no, I am sure they were real friends." + + "Well, then, we must explore the matter of the girl. Do you know + her?" + + "Everyone knows her. She is the beauty of the neighbourhood--a real + beauty, Holmes, who would draw attention everywhere. I knew that + McPherson was attracted by her, but I had no notion that it had gone + so far as these letters would seem to indicate." + + "But who is she?" + + "She is the daughter of old Tom Bellamy, who owns all the boats and + bathing-cots at Fulworth. He was a fisherman to start with, but is + now a man of some substance. He and his son William run the + business." + + "Shall we walk into Fulworth and see them?" + + "On what pretext?" + + "Oh, we can easily find a pretext. After all, this poor man did not + ill-use himself in this outrageous way. Some human hand was on the + handle of that scourge, if indeed it was a scourge which inflicted + the injuries. His circle of acquaintances in this lonely place was + surely limited. Let us follow it up in every direction and we can + hardly fail to come upon the motive, which in turn should lead us to + the criminal." + + It would have been a pleasant walk across the thyme-scented downs had + our minds not been poisoned by the tragedy we had witnessed. The + village of Fulworth lies in a hollow curving in a semicircle round + the bay. Behind the old-fashioned hamlet several modern houses have + been built upon the rising ground. It was to one of these that + Stackhurst guided me. + + "That's The Haven, as Bellamy called it. The one with the corner + tower and slate roof. Not bad for a man who started with nothing + but-- By Jove, look at that!" + + The garden gate of The Haven had opened and a man had emerged. There + was no mistaking that tall, angular, straggling figure. It was Ian + Murdoch, the mathematician. A moment later we confronted him upon the + road. + + "Hullo!" said Stackhurst. The man nodded, gave us a sideways glance + from his curious dark eyes, and would have passed us, but his + principal pulled him up. + + "What were you doing there?" he asked. + + Murdoch's face flushed with anger. "I am your subordinate, sir, under + your roof. I am not aware that I owe you any account of my private + actions." + + Stackhurst's nerves were near the surface after all he had endured. + Otherwise, perhaps, he would have waited. Now he lost his temper + completely. + + "In the circumstances your answer is pure impertinence, Mr. Murdoch." + + "Your own question might perhaps come under the same heading." + + "This is not the first time that I have had to overlook your + insubordinate ways. It will certainly be the last. You will kindly + make fresh arrangements for your future as speedily as you can." + + "I had intended to do so. I have lost to-day the only person who made + The Gables habitable." + + He strode off upon his way, while Stackhurst, with angry eyes, stood + glaring after him. "Is he not an impossible, intolerable man?" he + cried. + + The one thing that impressed itself forcibly upon my mind was that + Mr. Ian Murdoch was taking the first chance to open a path of escape + from the scene of the crime. Suspicion, vague and nebulous, was now + beginning to take outline in my mind. Perhaps the visit to the + Bellamys might throw some further light upon the matter. Stackhurst + pulled himself together, and we went forward to the house. + + Mr. Bellamy proved to be a middle-aged man with a flaming red beard. + He seemed to be in a very angry mood, and his face was soon as florid + as his hair. + + "No, sir, I do not desire any particulars. My son here"--indicating a + powerful young man, with a heavy, sullen face, in the corner of the + sitting-room--"is of one mind with me that Mr. McPherson's attentions + to Maud were insulting. Yes, sir, the word 'marriage' was never + mentioned, and yet there were letters and meetings, and a great deal + more of which neither of us could approve. She has no mother, and we + are her only guardians. We are determined--" + + But the words were taken from his mouth by the appearance of the lady + herself. There was no gainsaying that she would have graced any + assembly in the world. Who could have imagined that so rare a flower + would grow from such a root and in such an atmosphere? Women have + seldom been an attraction to me, for my brain has always governed my + heart, but I could not look upon her perfect clear-cut face, with all + the soft freshness of the downlands in her delicate colouring, + without realizing that no young man would cross her path unscathed. + Such was the girl who had pushed open the door and stood now, + wide-eyed and intense, in front of Harold Stackhurst. + + "I know already that Fitzroy is dead," she said. "Do not be afraid to + tell me the particulars." + + "This other gentleman of yours let us know the news," explained the + father. + + "There is no reason why my sister should be brought into the matter," + growled the younger man. + + The sister turned a sharp, fierce look upon him. "This is my + business, William. Kindly leave me to manage it in my own way. By all + accounts there has been a crime committed. If I can help to show who + did it, it is the least I can do for him who is gone." + + She listened to a short account from my companion, with a composed + concentration which showed me that she possessed strong character as + well as great beauty. Maud Bellamy will always remain in my memory as + a most complete and remarkable woman. It seems that she already knew + me by sight, for she turned to me at the end. + + "Bring them to justice, Mr. Holmes. You have my sympathy and my help, + whoever they may be." It seemed to me that she glanced defiantly at + her father and brother as she spoke. + + "Thank you," said I. "I value a woman's instinct in such matters. You + use the word 'they.' You think that more than one was concerned?" + + "I knew Mr. McPherson well enough to be aware that he was a brave and + a strong man. No single person could ever have inflicted such an + outrage upon him." + + "Might I have one word with you alone?" + + "I tell you, Maud, not to mix yourself up in the matter," cried her + father angrily. + + She looked at me helplessly. "What can I do?" + + "The whole world will know the facts presently, so there can be no + harm if I discuss them here," said I. "I should have preferred + privacy, but if your father will not allow it he must share the + deliberations." Then I spoke of the note which had been found in the + dead man's pocket. "It is sure to be produced at the inquest. May I + ask you to throw any light upon it that you can?" + + "I see no reason for mystery," she answered. "We were engaged to be + married, and we only kept it secret because Fitzroy's uncle, who is + very old and said to be dying, might have disinherited him if he had + married against his wish. There was no other reason." + + "You could have told us," growled Mr. Bellamy. + + "So I would, father, if you had ever shown sympathy." + + "I object to my girl picking up with men outside her own station." + + "It was your prejudice against him which prevented us from telling + you. As to this appointment"--she fumbled in her dress and produced a + crumpled note--"it was in answer to this." + + Dearest [ran the message]: + The old place on the beach just after sunset on Tuesday. It is the + only time I can get away. + F. M. + + "Tuesday was to-day, and I had meant to meet him to-night." + + I turned over the paper. "This never came by post. How did you get + it?" + + "I would rather not answer that question. It has really nothing to do + with the matter which you are investigating. But anything which bears + upon that I will most freely answer." + + She was as good as her word, but there was nothing which was helpful + in our investigation. She had no reason to think that her fiance had + any hidden enemy, but she admitted that she had had several warm + admirers. + + "May I ask if Mr. Ian Murdoch was one of them?" + + She blushed and seemed confused. + + "There was a time when I thought he was. But that was all changed + when he understood the relations between Fitzroy and myself." + + Again the shadow round this strange man seemed to me to be taking + more definite shape. His record must be examined. His rooms must be + privately searched. Stackhurst was a willing collaborator, for in his + mind also suspicions were forming. We returned from our visit to The + Haven with the hope that one free end of this tangled skein was + already in our hands. + + A week passed. The inquest had thrown no light upon the matter and + had been adjourned for further evidence. Stackhurst had made discreet + inquiry about his subordinate, and there had been a superficial + search of his room, but without result. Personally, I had gone over + the whole ground again, both physically and mentally, but with no new + conclusions. In all my chronicles the reader will find no case which + brought me so completely to the limit of my powers. Even my + imagination could conceive no solution to the mystery. And then there + came the incident of the dog. + + It was my old housekeeper who heard of it first by that strange + wireless by which such people collect the news of the countryside. + + "Sad story this, sir, about Mr. McPherson's dog," said she one + evening. + + I do not encourage such conversations, but the words arrested my + attention. + + "What of Mr. McPherson's dog?" + + "Dead, sir. Died of grief for its master." + + "Who told you this?" + + "Why, sir, everyone is talking of it. It took on terrible, and has + eaten nothing for a week. Then to-day two of the young gentlemen from + The Gables found it dead--down on the beach, sir, at the very place + where its master met his end." + + "At the very place." The words stood out clear in my memory. Some dim + perception that the matter was vital rose in my mind. That the dog + should die was after the beautiful, faithful nature of dogs. But "in + the very place"! Why should this lonely beach be fatal to it? Was it + possible that it also had been sacrificed to some revengeful feud? + Was it possible--? Yes, the perception was dim, but already something + was building up in my mind. In a few minutes I was on my way to The + Gables, where I found Stackhurst in his study. At my request he sent + for Sudbury and Blount, the two students who had found the dog. + + "Yes, it lay on the very edge of the pool," said one of them. "It + must have followed the trail of its dead master." + + I saw the faithful little creature, an Airedale terrier, laid out + upon the mat in the hall. The body was stiff and rigid, the eyes + projecting, and the limbs contorted. There was agony in every line of + it. + + From The Gables I walked down to the bathing-pool. The sun had sunk + and the shadow of the great cliff lay black across the water, which + glimmered dully like a sheet of lead. The place was deserted and + there was no sign of life save for two sea-birds circling and + screaming overhead. In the fading light I could dimly make out the + little dog's spoor upon the sand round the very rock on which his + master's towel had been laid. For a long time I stood in deep + meditation while the shadows grew darker around me. My mind was + filled with racing thoughts. You have known what it was to be in a + nightmare in which you feel that there is some all-important thing + for which you search and which you know is there, though it remains + forever just beyond your reach. That was how I felt that evening as I + stood alone by that place of death. Then at last I turned and walked + slowly homeward. + + I had just reached the top of the path when it came to me. Like a + flash, I remembered the thing for which I had so eagerly and vainly + grasped. You will know, or Watson has written in vain, that I hold a + vast store of out-of-the-way knowledge without scientific system, but + very available for the needs of my work. My mind is like a crowded + box-room with packets of all sorts stowed away therein--so many that + I may well have but a vague perception of what was there. I had known + that there was something which might bear upon this matter. It was + still vague, but at least I knew how I could make it clear. It was + monstrous, incredible, and yet it was always a possibility. I would + test it to the full. + + There is a great garret in my little house which is stuffed with + books. It was into this that I plunged and rummaged for an hour. At + the end of that time I emerged with a little chocolate and silver + volume. Eagerly I turned up the chapter of which I had a dim + remembrance. Yes, it was indeed a far-fetched and unlikely + proposition, and yet I could not be at rest until I had made sure if + it might, indeed, be so. It was late when I retired, with my mind + eagerly awaiting the work of the morrow. + + But that work met with an annoying interruption. I had hardly + swallowed my early cup of tea and was starting for the beach when I + had a call from Inspector Bardle of the Sussex Constabulary--a + steady, solid, bovine man with thoughtful eyes, which looked at me + now with a very troubled expression. + + "I know your immense experience, sir," said he. "This is quite + unofficial, of course, and need go no farther. But I am fairly up + against it in this McPherson case. The question is, shall I make an + arrest, or shall I not?" + + "Meaning Mr. Ian Murdoch?" + + "Yes, sir. There is really no one else when you come to think of it. + That's the advantage of this solitude. We narrow it down to a very + small compass. If he did not do it, then who did?" + + "What have you against him?" + + He had gleaned along the same furrows as I had. There was Murdoch's + character and the mystery which seemed to hang round the man. His + furious bursts of temper, as shown in the incident of the dog. The + fact that he had quarrelled with McPherson in the past, and that + there was some reason to think that he might have resented his + attentions to Miss Bellamy. He had all my points, but no fresh ones, + save that Murdoch seemed to be making every preparation for + departure. + + "What would my position be if I let him slip away with all this + evidence against him?" The burly, phlegmatic man was sorely troubled + in his mind. + + "Consider," I said, "all the essential gaps in your case. On the + morning of the crime he can surely prove an alibi. He had been with + his scholars till the last moment, and within a few minutes of + McPherson's appearance he came upon us from behind. Then bear in mind + the absolute impossibility that he could single-handed have inflicted + this outrage upon a man quite as strong as himself. Finally, there is + this question of the instrument with which these injuries were + inflicted." + + "What could it be but a scourge or flexible whip of some sort?" + + "Have you examined the marks?" I asked. + + "I have seen them. So has the doctor." + + "But I have examined them very carefully with a lens. They have + peculiarities." + + "What are they, Mr. Holmes?" + + I stepped to my bureau and brought out an enlarged photograph. "This + is my method in such cases," I explained. + + "You certainly do things thoroughly, Mr. Holmes." + + "I should hardly be what I am if I did not. Now let us consider this + weal which extends round the right shoulder. Do you observe nothing + remarkable?" + + "I can't say I do." + + "Surely it is evident that it is unequal in its intensity. There is a + dot of extravasated blood here, and another there. There are similar + indications in this other weal down here. What can that mean?" + + "I have no idea. Have you?" + + "Perhaps I have. Perhaps I haven't. I may be able to say more soon. + Anything which will define what made that mark will bring us a long + way towards the criminal." + + "It is, of course, an absurd idea," said the policeman, "but if a + red-hot net of wire had been laid across the back, then these better + marked points would represent where the meshes crossed each other." + + "A most ingenious comparison. Or shall we say a very stiff + cat-o'-nine-tails with small hard knots upon it?" + + "By Jove, Mr. Holmes, I think you have hit it." + + "Or there may be some very different cause, Mr. Bardle. But your case + is far too weak for an arrest. Besides, we have those last words--the + 'Lion's Mane.'" + + "I have wondered whether Ian--" + + "Yes, I have considered that. If the second word had borne any + resemblance to Murdoch--but it did not. He gave it almost in a + shriek. I am sure that it was 'Mane.'" + + "Have you no alternative, Mr. Holmes?" + + "Perhaps I have. But I do not care to discuss it until there is + something more solid to discuss." + + "And when will that be?" + + "In an hour--possibly less." + + The inspector rubbed his chin and looked at me with dubious eyes. + + "I wish I could see what was in your mind, Mr. Holmes. Perhaps it's + those fishing-boats." + + "No, no, they were too far out." + + "Well, then, is it Bellamy and that big son of his? They were not too + sweet upon Mr. McPherson. Could they have done him a mischief?" + + "No, no, you won't draw me until I am ready," said I with a smile. + "Now, Inspector, we each have our own work to do. Perhaps if you were + to meet me here at midday--" + + So far we had got when there came the tremendous interruption which + was the beginning of the end. + + My outer door was flung open, there were blundering footsteps in the + passage, and Ian Murdoch staggered into the room, pallid, + dishevelled, his clothes in wild disorder, clawing with his bony + hands at the furniture to hold himself erect. "Brandy! Brandy!" he + gasped, and fell groaning upon the sofa. + + He was not alone. Behind him came Stackhurst, hatless and panting, + almost as distrait as his companion. + + "Yes, yes, brandy!" he cried. "The man is at his last gasp. It was + all I could do to bring him here. He fainted twice upon the way." + + Half a tumbler of the raw spirit brought about a wondrous change. He + pushed himself up on one arm and swung his coat from his shoulders. + "For God's sake, oil, opium, morphia!" he cried. "Anything to ease + this infernal agony!" + + The inspector and I cried out at the sight. There, crisscrossed upon + the man's naked shoulder, was the same strange reticulated pattern of + red, inflamed lines which had been the death-mark of Fitzroy + McPherson. + + The pain was evidently terrible and was more than local, for the + sufferer's breathing would stop for a time, his face would turn + black, and then with loud gasps he would clap his hand to his heart, + while his brow dropped beads of sweat. At any moment he might die. + More and more brandy was poured down his throat, each fresh dose + bringing him back to life. Pads of cotton-wool soaked in salad-oil + seemed to take the agony from the strange wounds. At last his head + fell heavily upon the cushion. Exhausted Nature had taken refuge in + its last storehouse of vitality. It was half a sleep and half a + faint, but at least it was ease from pain. + + To question him had been impossible, but the moment we were assured + of his condition Stackhurst turned upon me. + + "My God!" he cried, "what is it, Holmes? What is it?" + + "Where did you find him?" + + "Down on the beach. Exactly where poor McPherson met his end. If this + man's heart had been weak as McPherson's was, he would not be here + now. More than once I thought he was gone as I brought him up. It was + too far to The Gables, so I made for you." + + "Did you see him on the beach?" + + "I was walking on the cliff when I heard his cry. He was at the edge + of the water, reeling about like a drunken man. I ran down, threw + some clothes about him, and brought him up. For heaven's sake, + Holmes, use all the powers you have and spare no pains to lift the + curse from this place, for life is becoming unendurable. Can you, + with all your world-wide reputation, do nothing for us?" + + "I think I can, Stackhurst. Come with me now! And you, Inspector, + come along! We will see if we cannot deliver this murderer into your + hands." + + Leaving the unconscious man in the charge of my housekeeper, we all + three went down to the deadly lagoon. On the shingle there was piled + a little heap of towels and clothes left by the stricken man. Slowly + I walked round the edge of the water, my comrades in Indian file + behind me. Most of the pool was quite shallow, but under the cliff + where the beach was hollowed out it was four or five feet deep. It + was to this part that a swimmer would naturally go, for it formed a + beautiful pellucid green pool as clear as crystal. A line of rocks + lay above it at the base of the cliff, and along this I led the way, + peering eagerly into the depths beneath me. I had reached the deepest + and stillest pool when my eyes caught that for which they were + searching, and I burst into a shout of triumph. + + "Cyanea!" I cried. "Cyanea! Behold the Lion's Mane!" + + The strange object at which I pointed did indeed look like a tangled + mass torn from the mane of a lion. It lay upon a rocky shelf some + three feet under the water, a curious waving, vibrating, hairy + creature with streaks of silver among its yellow tresses. It pulsated + with a slow, heavy dilation and contraction. + + "It has done mischief enough. Its day is over!" I cried. "Help me, + Stackhurst! Let us end the murderer forever." + + There was a big boulder just above the ledge, and we pushed it until + it fell with a tremendous splash into the water. When the ripples had + cleared we saw that it had settled upon the ledge below. One flapping + edge of yellow membrane showed that our victim was beneath it. A + thick oily scum oozed out from below the stone and stained the water + round, rising slowly to the surface. + + "Well, this gets me!" cried the inspector. "What was it, Mr. Holmes? + I'm born and bred in these parts, but I never saw such a thing. It + don't belong to Sussex." + + "Just as well for Sussex," I remarked. "It may have been the + southwest gale that brought it up. Come back to my house, both of + you, and I will give you the terrible experience of one who has good + reason to remember his own meeting with the same peril of the seas." + + When we reached my study we found that Murdoch was so far recovered + that he could sit up. He was dazed in mind, and every now and then + was shaken by a paroxysm of pain. In broken words he explained that + he had no notion what had occurred to him, save that terrific pangs + had suddenly shot through him, and that it had taken all his + fortitude to reach the bank. + + "Here is a book," I said, taking up the little volume, "which first + brought light into what might have been forever dark. It is Out of + Doors, by the famous observer, J. G. Wood. Wood himself very nearly + perished from contact with this vile creature, so he wrote with a + very full knowledge. Cyanea capillata is the miscreant's full name, + and he can be as dangerous to life as, and far more painful than, the + bite of the cobra. Let me briefly give this extract. + + "If the bather should see a loose roundish mass of tawny membranes + and fibres, something like very large handfuls of lion's mane and + silver paper, let him beware, for this is the fearful stinger, Cyanea + capillata. + + Could our sinister acquaintance be more clearly described? + + "He goes on to tell of his own encounter with one when swimming off + the coast of Kent. He found that the creature radiated almost + invisible filaments to the distance of fifty feet, and that anyone + within that circumference from the deadly centre was in danger of + death. Even at a distance the effect upon Wood was almost fatal. + + "The multitudinous threads caused light scarlet lines upon the skin + which on closer examination resolved into minute dots or pustules, + each dot charged as it were with a red-hot needle making its way + through the nerves. + + "The local pain was, as he explains, the least part of the exquisite + torment. + + "Pangs shot through the chest, causing me to fall as if struck by a + bullet. The pulsation would cease, and then the heart would give six + or seven leaps as if it would force its way through the chest. + + "It nearly killed him, although he had only been exposed to it in the + disturbed ocean and not in the narrow calm waters of a bathing-pool. + He says that he could hardly recognize himself afterwards, so white, + wrinkled and shrivelled was his face. He gulped down brandy, a whole + bottleful, and it seems to have saved his life. There is the book, + Inspector. I leave it with you, and you cannot doubt that it contains + a full explanation of the tragedy of poor McPherson." + + "And incidentally exonerates me," remarked Ian Murdoch with a wry + smile. "I do not blame you, Inspector, nor you, Mr. Holmes, for your + suspicions were natural. I feel that on the very eve of my arrest I + have only cleared myself by sharing the fate of my poor friend." + + "No, Mr. Murdoch. I was already upon the track, and had I been out as + early as I intended I might well have saved you from this terrific + experience." + + "But how did you know, Mr. Holmes?" + + "I am an omnivorous reader with a strangely retentive memory for + trifles. That phrase 'the Lion's Mane' haunted my mind. I knew that I + had seen it somewhere in an unexpected context. You have seen that it + does describe the creature. I have no doubt that it was floating on + the water when McPherson saw it, and that this phrase was the only + one by which he could convey to us a warning as to the creature which + had been his death." + + "Then I, at least, am cleared," said Murdoch, rising slowly to his + feet. "There are one or two words of explanation which I should give, + for I know the direction in which your inquiries have run. It is true + that I loved this lady, but from the day when she chose my friend + McPherson my one desire was to help her to happiness. I was well + content to stand aside and act as their go-between. Often I carried + their messages, and it was because I was in their confidence and + because she was so dear to me that I hastened to tell her of my + friend's death, lest someone should forestall me in a more sudden and + heartless manner. She would not tell you, sir, of our relations lest + you should disapprove and I might suffer. But with your leave I must + try to get back to The Gables, for my bed will be very welcome." + + Stackhurst held out his hand. "Our nerves have all been at + concert-pitch," said he. "Forgive what is past, Murdoch. We shall + understand each other better in the future." They passed out together + with their arms linked in friendly fashion. The inspector remained, + staring at me in silence with his ox-like eyes. + + "Well, you've done it!" he cried at last. "I had read of you, but I + never believed it. It's wonderful!" + + I was forced to shake my head. To accept such praise was to lower + one's own standards. + + "I was slow at the outset--culpably slow. Had the body been found in + the water I could hardly have missed it. It was the towel which + misled me. The poor fellow had never thought to dry himself, and so I + in turn was led to believe that he had never been in the water. Why, + then, should the attack of any water creature suggest itself to me? + That was where I went astray. Well, well, Inspector, I often ventured + to chaff you gentlemen of the police force, but Cyanea capillata very + nearly avenged Scotland Yard." + + + + + + + THE ADVENTURE OF THE VEILED LODGER + + When one considers that Mr. Sherlock Holmes was in active practice + for twenty-three years, and that during seventeen of these I was + allowed to cooperate with him and to keep notes of his doings, it + will be clear that I have a mass of material at my command. The + problem has always been not to find but to choose. There is the long + row of year-books which fill a shelf, and there are the + dispatch-cases filled with documents, a perfect quarry for the + student not only of crime but of the social and official scandals of + the late Victorian era. Concerning these latter, I may say that the + writers of agonized letters, who beg that the honour of their + families or the reputation of famous forebears may not be touched, + have nothing to fear. The discretion and high sense of professional + honour which have always distinguished my friend are still at work in + the choice of these memoirs, and no confidence will be abused. I + deprecate, however, in the strongest way the attempts which have been + made lately to get at and to destroy these papers. The source of + these outrages is known, and if they are repeated I have Mr. Holmes's + authority for saying that the whole story concerning the politician, + the lighthouse, and the trained cormorant will be given to the + public. There is at least one reader who will understand. + + It is not reasonable to suppose that every one of these cases gave + Holmes the opportunity of showing those curious gifts of instinct and + observation which I have endeavoured to set forth in these memoirs. + Sometimes he had with much effort to pick the fruit, sometimes it + fell easily into his lap. But the most terrible human tragedies were + often involved in those cases which brought him the fewest personal + opportunities, and it is one of these which I now desire to record. + In telling it, I have made a slight change of name and place, but + otherwise the facts are as stated. + + One forenoon--it was late in 1896--I received a hurried note from + Holmes asking for my attendance. When I arrived I found him seated in + a smoke-laden atmosphere, with an elderly, motherly woman of the + buxom landlady type in the corresponding chair in front of him. + + "This is Mrs. Merrilow, of South Brixton," said my friend with a wave + of the hand. "Mrs. Merrilow does not object to tobacco, Watson, if + you wish to indulge your filthy habits. Mrs. Merrilow has an + interesting story to tell which may well lead to further developments + in which your presence may be useful." + + "Anything I can do--" + + "You will understand, Mrs. Merrilow, that if I come to Mrs. Ronder I + should prefer to have a witness. You will make her understand that + before we arrive." + + "Lord bless you, Mr. Holmes," said our visitor, "she is that anxious + to see you that you might bring the whole parish at your heels!" + + "Then we shall come early in the afternoon. Let us see that we have + our facts correct before we start. If we go over them it will help + Dr. Watson to understand the situation. You say that Mrs. Ronder has + been your lodger for seven years and that you have only once seen her + face." + + "And I wish to God I had not!" said Mrs. Merrilow. + + "It was, I understand, terribly mutilated." + + "Well, Mr. Holmes, you would hardly say it was a face at all. That's + how it looked. Our milkman got a glimpse of her once peeping out of + the upper window, and he dropped his tin and the milk all over the + front garden. That is the kind of face it is. When I saw her--I + happened on her unawares--she covered up quick, and then she said, + 'Now, Mrs. Merrilow, you know at last why it is that I never raise my + veil.'" + + "Do you know anything about her history?" + + "Nothing at all." + + "Did she give references when she came?" + + "No, sir, but she gave hard cash, and plenty of it. A quarter's rent + right down on the table in advance and no arguing about terms. In + these times a poor woman like me can't afford to turn down a chance + like that." + + "Did she give any reason for choosing your house?" + + "Mine stands well back from the road and is more private than most. + Then, again, I only take the one, and I have no family of my own. I + reckon she had tried others and found that mine suited her best. It's + privacy she is after, and she is ready to pay for it." + + "You say that she never showed her face from first to last save on + the one accidental occasion. Well, it is a very remarkable story, + most remarkable, and I don't wonder that you want it examined." + + "I don't, Mr. Holmes. I am quite satisfied so long as I get my rent. + You could not have a quieter lodger, or one who gives less trouble." + + "Then what has brought matters to a head?" + + "Her health, Mr. Holmes. She seems to be wasting away. And there's + something terrible on her mind. 'Murder!' she cries. 'Murder!' And + once I heard her: 'You cruel beast! You monster!' she cried. It was + in the night, and it fair rang through the house and sent the shivers + through me. So I went to her in the morning. 'Mrs. Ronder,' I says, + 'if you have anything that is troubling your soul, there's the + clergy,' I says, 'and there's the police. Between them you should get + some help.' 'For God's sake, not the police!' says she, 'and the + clergy can't change what is past. And yet,' she says, 'it would ease + my mind if someone knew the truth before I died.' 'Well,' says I, 'if + you won't have the regulars, there is this detective man what we read + about'--beggin' your pardon, Mr. Holmes. And she, she fair jumped at + it. 'That's the man,' says she. 'I wonder I never thought of it + before. Bring him here, Mrs. Merrilow, and if he won't come, tell him + I am the wife of Ronder's wild beast show. Say that, and give him the + name Abbas Parva. Here it is as she wrote it, Abbas Parva. 'That will + bring him if he's the man I think he is.'" + + "And it will, too," remarked Holmes. "Very good, Mrs. Merrilow. I + should like to have a little chat with Dr. Watson. That will carry us + till lunch-time. About three o'clock you may expect to see us at your + house in Brixton." + + Our visitor had no sooner waddled out of the room--no other verb can + describe Mrs. Merrilow's method of progression--than Sherlock Holmes + threw himself with fierce energy upon the pile of commonplace books + in the corner. For a few minutes there was a constant swish of the + leaves, and then with a grunt of satisfaction he came upon what he + sought. So excited was he that he did not rise, but sat upon the + floor like some strange Buddha, with crossed legs, the huge books all + round him, and one open upon his knees. + + "The case worried me at the time, Watson. Here are my marginal notes + to prove it. I confess that I could make nothing of it. And yet I was + convinced that the coroner was wrong. Have you no recollection of the + Abbas Parva tragedy?" + + "None, Holmes." + + "And yet you were with me then. But certainly my own impression was + very superficial. For there was nothing to go by, and none of the + parties had engaged my services. Perhaps you would care to read the + papers?" + + "Could you not give me the points?" + + "That is very easily done. It will probably come back to your memory + as I talk. Ronder, of course, was a household word. He was the rival + of Wombwell, and of Sanger, one of the greatest showmen of his day. + There is evidence, however, that he took to drink, and that both he + and his show were on the down grade at the time of the great tragedy. + The caravan had halted for the night at Abbas Parva, which is a small + village in Berkshire, when this horror occurred. They were on their + way to Wimbledon, travelling by road, and they were simply camping + and not exhibiting, as the place is so small a one that it would not + have paid them to open. + + "They had among their exhibits a very fine North African lion. Sahara + King was its name, and it was the habit, both of Ronder and his wife, + to give exhibitions inside its cage. Here, you see, is a photograph + of the performance by which you will perceive that Ronder was a huge + porcine person and that his wife was a very magnificent woman. It was + deposed at the inquest that there had been some signs that the lion + was dangerous, but, as usual, familiarity begat contempt, and no + notice was taken of the fact. + + "It was usual for either Ronder or his wife to feed the lion at + night. Sometimes one went, sometimes both, but they never allowed + anyone else to do it, for they believed that so long as they were the + food-carriers he would regard them as benefactors and would never + molest them. On this particular night, seven years ago, they both + went, and a very terrible happening followed, the details of which + have never been made clear. + + "It seems that the whole camp was roused near midnight by the roars + of the animal and the screams of the woman. The different grooms and + employees rushed from their tents, carrying lanterns, and by their + light an awful sight was revealed. Ronder lay, with the back of his + head crushed in and deep claw-marks across his scalp, some ten yards + from the cage, which was open. Close to the door of the cage lay Mrs. + Ronder upon her back, with the creature squatting and snarling above + her. It had torn her face in such a fashion that it was never thought + that she could live. Several of the circus men, headed by Leonardo, + the strong man, and Griggs, the clown, drove the creature off with + poles, upon which it sprang back into the cage and was at once locked + in. How it had got loose was a mystery. It was conjectured that the + pair intended to enter the cage, but that when the door was loosed + the creature bounded out upon them. There was no other point of + interest in the evidence save that the woman in a delirium of agony + kept screaming, 'Coward! Coward!' as she was carried back to the van + in which they lived. It was six months before she was fit to give + evidence, but the inquest was duly held, with the obvious verdict of + death from misadventure." + + "What alternative could be conceived?" said I. + + "You may well say so. And yet there were one or two points which + worried young Edmunds, of the Berkshire Constabulary. A smart lad + that! He was sent later to Allahabad. That was how I came into the + matter, for he dropped in and smoked a pipe or two over it." + + "A thin, yellow-haired man?" + + "Exactly. I was sure you would pick up the trail presently." + + "But what worried him?" + + "Well, we were both worried. It was so deucedly difficult to + reconstruct the affair. Look at it from the lion's point of view. He + is liberated. What does he do? He takes half a dozen bounds forward, + which brings him to Ronder. Ronder turns to fly--the claw-marks were + on the back of his head--but the lion strikes him down. Then, instead + of bounding on and escaping, he returns to the woman, who was close + to the cage, and he knocks her over and chews her face up. Then, + again, those cries of hers would seem to imply that her husband had + in some way failed her. What could the poor devil have done to help + her? You see the difficulty?" + + "Quite." + + "And then there was another thing. It comes back to me now as I think + it over. There was some evidence that just at the time the lion + roared and the woman screamed, a man began shouting in terror." + + "This man Ronder, no doubt." + + "Well, if his skull was smashed in you would hardly expect to hear + from him again. There were at least two witnesses who spoke of the + cries of a man being mingled with those of a woman." + + "I should think the whole camp was crying out by then. As to the + other points, I think I could suggest a solution." + + "I should be glad to consider it." + + "The two were together, ten yards from the cage, when the lion got + loose. The man turned and was struck down. The woman conceived the + idea of getting into the cage and shutting the door. It was her only + refuge. She made for it, and just as she reached it the beast bounded + after her and knocked her over. She was angry with her husband for + having encouraged the beast's rage by turning. If they had faced it + they might have cowed it. Hence her cries of 'Coward!'" + + "Brilliant, Watson! Only one flaw in your diamond." + + "What is the flaw, Holmes?" + + "If they were both ten paces from the cage, how came the beast to get + loose?" + + "Is it possible that they had some enemy who loosed it?" + + "And why should it attack them savagely when it was in the habit of + playing with them, and doing tricks with them inside the cage?" + + "Possibly the same enemy had done something to enrage it." + + Holmes looked thoughtful and remained in silence for some moments. + + "Well, Watson, there is this to be said for your theory. Ronder was a + man of many enemies. Edmunds told me that in his cups he was + horrible. A huge bully of a man, he cursed and slashed at everyone + who came in his way. I expect those cries about a monster, of which + our visitor has spoken, were nocturnal reminiscences of the dear + departed. However, our speculations are futile until we have all the + facts. There is a cold partridge on the sideboard, Watson, and a + bottle of Montrachet. Let us renew our energies before we make a + fresh call upon them." + + When our hansom deposited us at the house of Mrs. Merrilow, we found + that plump lady blocking up the open door of her humble but retired + abode. It was very clear that her chief preoccupation was lest she + should lose a valuable lodger, and she implored us, before showing us + up, to say and do nothing which could lead to so undesirable an end. + Then, having reassured her, we followed her up the straight, badly + carpeted staircase and were shown into the room of the mysterious + lodger. + + It was a close, musty, ill-ventilated place, as might be expected, + since its inmate seldom left it. From keeping beasts in a cage, the + woman seemed, by some retribution of fate, to have become herself a + beast in a cage. She sat now in a broken armchair in the shadowy + corner of the room. Long years of inaction had coarsened the lines of + her figure, but at some period it must have been beautiful, and was + still full and voluptuous. A thick dark veil covered her face, but it + was cut off close at her upper lip and disclosed a perfectly shaped + mouth and a delicately rounded chin. I could well conceive that she + had indeed been a very remarkable woman. Her voice, too, was well + modulated and pleasing. + + "My name is not unfamiliar to you, Mr. Holmes," said she. "I thought + that it would bring you." + + "That is so, madam, though I do not know how you are aware that I was + interested in your case." + + "I learned it when I had recovered my health and was examined by Mr. + Edmunds, the county detective. I fear I lied to him. Perhaps it would + have been wiser had I told the truth." + + "It is usually wiser to tell the truth. But why did you lie to him?" + + "Because the fate of someone else depended upon it. I know that he + was a very worthless being, and yet I would not have his destruction + upon my conscience. We had been so close--so close!" + + "But has this impediment been removed?" + + "Yes, sir. The person that I allude to is dead." + + "Then why should you not now tell the police anything you know?" + + "Because there is another person to be considered. That other person + is myself. I could not stand the scandal and publicity which would + come from a police examination. I have not long to live, but I wish + to die undisturbed. And yet I wanted to find one man of judgment to + whom I could tell my terrible story, so that when I am gone all might + be understood." + + "You compliment me, madam. At the same time, I am a responsible + person. I do not promise you that when you have spoken I may not + myself think it my duty to refer the case to the police." + + "I think not, Mr. Holmes. I know your character and methods too well, + for I have followed your work for some years. Reading is the only + pleasure which fate has left me, and I miss little which passes in + the world. But in any case, I will take my chance of the use which + you may make of my tragedy. It will ease my mind to tell it." + + "My friend and I would be glad to hear it." + + The woman rose and took from a drawer the photograph of a man. He was + clearly a professional acrobat, a man of magnificent physique, taken + with his huge arms folded across his swollen chest and a smile + breaking from under his heavy moustache--the self-satisfied smile of + the man of many conquests. + + "That is Leonardo," she said. + + "Leonardo, the strong man, who gave evidence?" + + "The same. And this--this is my husband." + + It was a dreadful face--a human pig, or rather a human wild boar, for + it was formidable in its bestiality. One could imagine that vile + mouth champing and foaming in its rage, and one could conceive those + small, vicious eyes darting pure malignancy as they looked forth upon + the world. Ruffian, bully, beast--it was all written on that + heavy-jowled face. + + "Those two pictures will help you, gentlemen, to understand the + story. I was a poor circus girl brought up on the sawdust, and doing + springs through the hoop before I was ten. When I became a woman this + man loved me, if such lust as his can be called love, and in an evil + moment I became his wife. From that day I was in hell, and he the + devil who tormented me. There was no one in the show who did not know + of his treatment. He deserted me for others. He tied me down and + lashed me with his riding-whip when I complained. They all pitied me + and they all loathed him, but what could they do? They feared him, + one and all. For he was terrible at all times, and murderous when he + was drunk. Again and again he was had up for assault, and for cruelty + to the beasts, but he had plenty of money and the fines were nothing + to him. The best men all left us, and the show began to go downhill. + It was only Leonardo and I who kept it up--with little Jimmy Griggs, + the clown. Poor devil, he had not much to be funny about, but he did + what he could to hold things together. + + "Then Leonardo came more and more into my life. You see what he was + like. I know now the poor spirit that was hidden in that splendid + body, but compared to my husband he seemed like the angel Gabriel. He + pitied me and helped me, till at last our intimacy turned to + love--deep, deep, passionate love, such love as I had dreamed of but + never hoped to feel. My husband suspected it, but I think that he was + a coward as well as a bully, and that Leonardo was the one man that + he was afraid of. He took revenge in his own way by torturing me more + than ever. One night my cries brought Leonardo to the door of our + van. We were near tragedy that night, and soon my lover and I + understood that it could not be avoided. My husband was not fit to + live. We planned that he should die. + + "Leonardo had a clever, scheming brain. It was he who planned it. I + do not say that to blame him, for I was ready to go with him every + inch of the way. But I should never have had the wit to think of such + a plan. We made a club--Leonardo made it--and in the leaden head he + fastened five long steel nails, the points outward, with just such a + spread as the lion's paw. This was to give my husband his death-blow, + and yet to leave the evidence that it was the lion which we would + loose who had done the deed. + + "It was a pitch-dark night when my husband and I went down, as was + our custom, to feed the beast. We carried with us the raw meat in a + zinc pail. Leonardo was waiting at the corner of the big van which we + should have to pass before we reached the cage. He was too slow, and + we walked past him before he could strike, but he followed us on + tiptoe and I heard the crash as the club smashed my husband's skull. + My heart leaped with joy at the sound. I sprang forward, and I undid + the catch which held the door of the great lion's cage. + + "And then the terrible thing happened. You may have heard how quick + these creatures are to scent human blood, and how it excites them. + Some strange instinct had told the creature in one instant that a + human being had been slain. As I slipped the bars it bounded out and + was on me in an instant. Leonardo could have saved me. If he had + rushed forward and struck the beast with his club he might have cowed + it. But the man lost his nerve. I heard him shout in his terror, and + then I saw him turn and fly. At the same instant the teeth of the + lion met in my face. Its hot, filthy breath had already poisoned me + and I was hardly conscious of pain. With the palms of my hands I + tried to push the great steaming, blood-stained jaws away from me, + and I screamed for help. I was conscious that the camp was stirring, + and then dimly I remembered a group of men. Leonardo, Griggs, and + others, dragging me from under the creature's paws. That was my last + memory, Mr. Holmes, for many a weary month. When I came to myself and + saw myself in the mirror, I cursed that lion--oh, how I cursed + him!--not because he had torn away my beauty but because he had not + torn away my life. I had but one desire, Mr. Holmes, and I had enough + money to gratify it. It was that I should cover myself so that my + poor face should be seen by none, and that I should dwell where none + whom I had ever known should find me. That was all that was left to + me to do--and that is what I have done. A poor wounded beast that has + crawled into its hole to die--that is the end of Eugenia Ronder." + + We sat in silence for some time after the unhappy woman had told her + story. Then Holmes stretched out his long arm and patted her hand + with such a show of sympathy as I had seldom known him to exhibit. + + "Poor girl!" he said. "Poor girl! The ways of fate are indeed hard to + understand. If there is not some compensation hereafter, then the + world is a cruel jest. But what of this man Leonardo?" + + "I never saw him or heard from him again. Perhaps I have been wrong + to feel so bitterly against him. He might as soon have loved one of + the freaks whom we carried round the country as the thing which the + lion had left. But a woman's love is not so easily set aside. He had + left me under the beast's claws, he had deserted me in my need, and + yet I could not bring myself to give him to the gallows. For myself, + I cared nothing what became of me. What could be more dreadful than + my actual life? But I stood between Leonardo and his fate." + + "And he is dead?" + + "He was drowned last month when bathing near Margate. I saw his death + in the paper." + + "And what did he do with this five-clawed club, which is the most + singular and ingenious part of all your story?" + + "I cannot tell, Mr. Holmes. There is a chalk-pit by the camp, with a + deep green pool at the base of it. Perhaps in the depths of that + pool--" + + "Well, well, it is of little consequence now. The case is closed." + + "Yes," said the woman, "the case is closed." + + We had risen to go, but there was something in the woman's voice + which arrested Holmes's attention. He turned swiftly upon her. + + "Your life is not your own," he said. "Keep your hands off it." + + "What use is it to anyone?" + + "How can you tell? The example of patient suffering is in itself the + most precious of all lessons to an impatient world." + + The woman's answer was a terrible one. She raised her veil and + stepped forward into the light. + + "I wonder if you would bear it," she said. + + It was horrible. No words can describe the framework of a face when + the face itself is gone. Two living and beautiful brown eyes looking + sadly out from that grisly ruin did but make the view more awful. + Holmes held up his hand in a gesture of pity and protest, and + together we left the room. + + Two days later, when I called upon my friend, he pointed with some + pride to a small blue bottle upon his mantelpiece. I picked it up. + There was a red poison label. A pleasant almondy odour rose when I + opened it. + + "Prussic acid?" said I. + + "Exactly. It came by post. 'I send you my temptation. I will follow + your advice.' That was the message. I think, Watson, we can guess the + name of the brave woman who sent it." + + + + + + + THE ADVENTURE OF SHOSCOMBE OLD PLACE + + Sherlock Holmes had been bending for a long time over a low-power + microscope. Now he straightened himself up and looked round at me in + triumph. + + "It is glue, Watson," said he. "Unquestionably it is glue. Have a + look at these scattered objects in the field!" + + I stooped to the eyepiece and focussed for my vision. + + "Those hairs are threads from a tweed coat. The irregular gray masses + are dust. There are epithelial scales on the left. Those brown blobs + in the centre are undoubtedly glue." + + "Well," I said, laughing, "I am prepared to take your word for it. + Does anything depend upon it?" + + "It is a very fine demonstration," he answered. "In the St. Pancras + case you may remember that a cap was found beside the dead policeman. + The accused man denies that it is his. But he is a picture-frame + maker who habitually handles glue." + + "Is it one of your cases?" + + "No; my friend, Merivale, of the Yard, asked me to look into the + case. Since I ran down that coiner by the zinc and copper filings in + the seam of his cuff they have begun to realize the importance of the + microscope." He looked impatiently at his watch. "I had a new client + calling, but he is overdue. By the way, Watson, you know something of + racing?" + + "I ought to. I pay for it with about half my wound pension." + + "Then I'll make you my 'Handy Guide to the Turf.' What about Sir + Robert Norberton? Does the name recall anything?" + + "Well, I should say so. He lives at Shoscombe Old Place, and I know + it well, for my summer quarters were down there once. Norberton + nearly came within your province once." + + "How was that?" + + "It was when he horsewhipped Sam Brewer, the well-known Curzon Street + money-lender, on Newmarket Heath. He nearly killed the man." + + "Ah, he sounds interesting! Does he often indulge in that way?" + + "Well, he has the name of being a dangerous man. He is about the most + daredevil rider in England--second in the Grand National a few years + back. He is one of those men who have overshot their true generation. + He should have been a buck in the days of the Regency--a boxer, an + athlete, a plunger on the turf, a lover of fair ladies, and, by all + account, so far down Queer Street that he may never find his way back + again." + + "Capital, Watson! A thumb-nail sketch. I seem to know the man. Now, + can you give me some idea of Shoscombe Old Place?" + + "Only that it is in the centre of Shoscombe Park, and that the famous + Shoscombe stud and training quarters are to be found there." + + "And the head trainer," said Holmes, "is John Mason. You need not + look surprised at my knowledge, Watson, for this is a letter from him + which I am unfolding. But let us have some more about Shoscombe. I + seem to have struck a rich vein." + + "There are the Shoscombe spaniels," said I. "You hear of them at + every dog show. The most exclusive breed in England. They are the + special pride of the lady of Shoscombe Old Place." + + "Sir Robert Norberton's wife, I presume!" + + "Sir Robert has never married. Just as well, I think, considering his + prospects. He lives with his widowed sister, Lady Beatrice Falder." + + "You mean that she lives with him?" + + "No, no. The place belonged to her late husband, Sir James. Norberton + has no claim on it at all. It is only a life interest and reverts to + her husband's brother. Meantime, she draws the rents every year." + + "And brother Robert, I suppose, spends the said rents?" + + "That is about the size of it. He is a devil of a fellow and must + lead her a most uneasy life. Yet I have heard that she is devoted to + him. But what is amiss at Shoscombe?" + + "Ah, that is just what I want to know. And here, I expect, is the man + who can tell us." + + The door had opened and the page had shown in a tall, clean-shaven + man with the firm, austere expression which is only seen upon those + who have to control horses or boys. Mr. John Mason had many of both + under his sway, and he looked equal to the task. He bowed with cold + self-possession and seated himself upon the chair to which Holmes had + waved him. + + "You had my note, Mr. Holmes?" + + "Yes, but it explained nothing." + + "It was too delicate a thing for me to put the details on paper. And + too complicated. It was only face to face I could do it." + + "Well, we are at your disposal." + + "First of all, Mr. Holmes, I think that my employer, Sir Robert, has + gone mad." + + Holmes raised his eyebrows. "This is Baker Street, not Harley + Street," said he. "But why do you say so?" + + "Well, sir, when a man does one queer thing, or two queer things, + there may be a meaning to it, but when everything he does is queer, + then you begin to wonder. I believe Shoscombe Prince and the Derby + have turned his brain." + + "That is a colt you are running?" + + "The best in England, Mr. Holmes. I should know, if anyone does. Now, + I'll be plain with you, for I know you are gentlemen of honour and + that it won't go beyond the room. Sir Robert has got to win this + Derby. He's up to the neck, and it's his last chance. Everything he + could raise or borrow is on the horse--and at fine odds, too! You can + get forties now, but it was nearer the hundred when he began to back + him." + + "But how is that if the horse is so good?" + + "The public don't know how good he is. Sir Robert has been too clever + for the touts. He has the Prince's half-brother out for spins. You + can't tell 'em apart. But there are two lengths in a furlong between + them when it comes to a gallop. He thinks of nothing but the horse + and the race. His whole life is on it. He's holding off the Jews till + then. If the Prince fails him he is done." + + "It seems a rather desperate gamble, but where does the madness come + in?" + + "Well, first of all, you have only to look at him. I don't believe he + sleeps at night. He is down at the stables at all hours. His eyes are + wild. It has all been too much for his nerves. Then there is his + conduct to Lady Beatrice!" + + "Ah! What is that?" + + "They have always been the best of friends. They had the same tastes, + the two of them, and she loved the horses as much as he did. Every + day at the same hour she would drive down to see them--and, above + all, she loved the Prince. He would prick up his ears when he heard + the wheels on the gravel, and he would trot out each morning to the + carriage to get his lump of sugar. But that's all over now." + + "Why?" + + "Well, she seems to have lost all interest in the horses. For a week + now she has driven past the stables with never so much as + 'Good-morning'!" + + "You think there has been a quarrel?" + + "And a bitter, savage, spiteful quarrel at that. Why else would he + give away her pet spaniel that she loved as if he were her child? He + gave it a few days ago to old Barnes, what keeps the Green Dragon, + three miles off, at Crendall." + + "That certainly did seem strange." + + "Of course, with her weak heart and dropsy one couldn't expect that + she could get about with him, but he spent two hours every evening in + her room. He might well do what he could, for she has been a rare + good friend to him. But that's all over, too. He never goes near her. + And she takes it to heart. She is brooding and sulky and drinking, + Mr. Holmes--drinking like a fish." + + "Did she drink before this estrangement?" + + "Well, she took her glass, but now it is often a whole bottle of an + evening. So Stephens, the butler, told me. It's all changed, Mr. + Holmes, and there is something damned rotten about it. But then, + again, what is master doing down at the old church crypt at night? + And who is the man that meets him there?" + + Holmes rubbed his hands. + + "Go on, Mr. Mason. You get more and more interesting." + + "It was the butler who saw him go. Twelve o'clock at night and + raining hard. So next night I was up at the house and, sure enough, + master was off again. Stephens and I went after him, but it was jumpy + work, for it would have been a bad job if he had seen us. He's a + terrible man with his fists if he gets started, and no respecter of + persons. So we were shy of getting too near, but we marked him down + all right. It was the haunted crypt that he was making for, and there + was a man waiting for him there." + + "What is this haunted crypt?" + + "Well, sir, there is an old ruined chapel in the park. It is so old + that nobody could fix its date. And under it there's a crypt which + has a bad name among us. It's a dark, damp, lonely place by day, but + there are few in that county that would have the nerve to go near it + at night. But master's not afraid. He never feared anything in his + life. But what is he doing there in the night-time?" + + "Wait a bit!" said Holmes. "You say there is another man there. It + must be one of your own stablemen, or someone from the house! Surely + you have only to spot who it is and question him?" + + "It's no one I know." + + "How can you say that?" + + "Because I have seen him, Mr. Holmes. It was on that second night. + Sir Robert turned and passed us--me and Stephens, quaking in the + bushes like two bunny-rabbits, for there was a bit of moon that + night. But we could hear the other moving about behind. We were not + afraid of him. So we up when Sir Robert was gone and pretended we + were just having a walk like in the moonlight, and so we came right + on him as casual and innocent as you please. 'Hullo, mate! who may + you be?' says I. I guess he had not heard us coming, so he looked + over his shoulder with a face as if he had seen the devil coming out + of hell. He let out a yell, and away he went as hard as he could lick + it in the darkness. He could run!--I'll give him that. In a minute he + was out of sight and hearing, and who he was, or what he was, we + never found." + + "But you saw him clearly in the moonlight?" + + "Yes, I would swear to his yellow face--a mean dog, I should say. + What could he have in common with Sir Robert?" + + Holmes sat for some time lost in thought. + + "Who keeps Lady Beatrice Falder company?" he asked at last. + + "There is her maid, Carrie Evans. She has been with her this five + years." + + "And is, no doubt, devoted?" + + Mr. Mason shuffled uncomfortably. + + "She's devoted enough," he answered at last. "But I won't say to + whom." + + "Ah!" said Holmes. + + "I can't tell tales out of school." + + "I quite understand, Mr. Mason. Of course, the situation is clear + enough. From Dr. Watson's description of Sir Robert I can realize + that no woman is safe from him. Don't you think the quarrel between + brother and sister may lie there?" + + "Well, the scandal has been pretty clear for a long time." + + "But she may not have seen it before. Let us suppose that she has + suddenly found it out. She wants to get rid of the woman. Her brother + will not permit it. The invalid, with her weak heart and inability to + get about, has no means of enforcing her will. The hated maid is + still tied to her. The lady refuses to speak, sulks, takes to drink. + Sir Robert in his anger takes her pet spaniel away from her. Does not + all this hang together?" + + "Well, it might do--so far as it goes." + + "Exactly! As far as it goes. How would all that bear upon the visits + by night to the old crypt? We can't fit that into our plot." + + "No, sir, and there is something more that I can't fit in. Why should + Sir Robert want to dig up a dead body?" + + Holmes sat up abruptly. + + "We only found it out yesterday--after I had written to you. + Yesterday Sir Robert had gone to London, so Stephens and I went down + to the crypt. It was all in order, sir, except that in one corner was + a bit of a human body." + + "You informed the police, I suppose?" + + Our visitor smiled grimly. + + "Well, sir, I think it would hardly interest them. It was just the + head and a few bones of a mummy. It may have been a thousand years + old. But it wasn't there before. That I'll swear, and so will + Stephens. It had been stowed away in a corner and covered over with a + board, but that corner had always been empty before." + + "What did you do with it?" + + "Well, we just left it there." + + "That was wise. You say Sir Robert was away yesterday. Has he + returned?" + + "We expect him back to-day." + + "When did Sir Robert give away his sister's dog?" + + "It was just a week ago to-day. The creature was howling outside the + old well-house, and Sir Robert was in one of his tantrums that + morning. He caught it up, and I thought he would have killed it. Then + he gave it to Sandy Bain, the jockey, and told him to take the dog to + old Barnes at the Green Dragon, for he never wished to see it again." + + Holmes sat for some time in silent thought. He had lit the oldest and + foulest of his pipes. + + "I am not clear yet what you want me to do in this matter, Mr. + Mason," he said at last. "Can't you make it more definite?" + + "Perhaps this will make it more definite, Mr. Holmes," said our + visitor. + + He took a paper from his pocket, and, unwrapping it carefully, he + exposed a charred fragment of bone. + + Holmes examined it with interest. + + "Where did you get it?" + + "There is a central heating furnace in the cellar under Lady + Beatrice's room. It's been off for some time, but Sir Robert + complained of cold and had it on again. Harvey runs it--he's one of + my lads. This very morning he came to me with this which he found + raking out the cinders. He didn't like the look of it." + + "Nor do I," said Holmes. "What do you make of it, Watson?" + + It was burned to a black cinder, but there could be no question as to + its anatomical significance. + + "It's the upper condyle of a human femur," said I. + + "Exactly!" Holmes had become very serious. "When does this lad tend + to the furnace?" + + "He makes it up every evening and then leaves it." + + "Then anyone could visit it during the night?" + + "Yes, sir." + + "Can you enter it from outside?" + + "There is one door from outside. There is another which leads up by a + stair to the passage in which Lady Beatrice's room is situated." + + "These are deep waters, Mr. Mason; deep and rather dirty. You say + that Sir Robert was not at home last night?" + + "No, sir." + + "Then, whoever was burning bones, it was not he." + + "That's true, sir." + + "What is the name of that inn you spoke of?" + + "The Green Dragon." + + "Is there good fishing in that part of Berkshire?" The honest trainer + showed very clearly upon his face that he was convinced that yet + another lunatic had come into his harassed life. + + "Well, sir, I've heard there are trout in the mill-stream and pike in + the Hall lake." + + "That's good enough. Watson and I are famous fishermen--are we not, + Watson? You may address us in future at the Green Dragon. We should + reach it to-night. I need not say that we don't want to see you, Mr. + Mason, but a note will reach us, and no doubt I could find you if I + want you. When we have gone a little farther into the matter I will + let you have a considered opinion." + + Thus it was that on a bright May evening Holmes and I found ourselves + alone in a first-class carriage and bound for the little + "halt-on-demand" station of Shoscombe. The rack above us was covered + with a formidable litter of rods, reels, and baskets. On reaching our + destination a short drive took us to an old-fashioned tavern, where a + sporting host, Josiah Barnes, entered eagerly into our plans for the + extirpation of the fish of the neighbourhood. + + "What about the Hall lake and the chance of a pike?" said Holmes. + + The face of the innkeeper clouded. + + "That wouldn't do, sir. You might chance to find yourself in the lake + before you were through." + + "How's that, then?" + + "It's Sir Robert, sir. He's terrible jealous of touts. If you two + strangers were as near his training quarters as that he'd be after + you as sure as fate. He ain't taking no chances, Sir Robert ain't." + + "I've heard he has a horse entered for the Derby." + + "Yes, and a good colt, too. He carries all our money for the race, + and all Sir Robert's into the bargain. By the way"--he looked at us + with thoughtful eyes--"I suppose you ain't on the turf yourselves?" + + "No, indeed. Just two weary Londoners who badly need some good + Berkshire air." + + "Well, you are in the right place for that. There is a deal of it + lying about. But mind what I have told you about Sir Robert. He's the + sort that strikes first and speaks afterwards. Keep clear of the + park." + + "Surely, Mr. Barnes! We certainly shall. By the way, that was a most + beautiful spaniel that was whining in the hall." + + "I should say it was. That was the real Shoscombe breed. There ain't + a better in England." + + "I am a dog-fancier myself," said Holmes. "Now, if it is a fair + question, what would a prize dog like that cost?" + + "More than I could pay, sir. It was Sir Robert himself who gave me + this one. That's why I have to keep it on a lead. It would be off to + the Hall in a jiffy if I gave it its head." + + "We are getting some cards in our hand, Watson," said Holmes when the + landlord had left us. "It's not an easy one to play, but we may see + our way in a day or two. By the way, Sir Robert is still in London, I + hear. We might, perhaps, enter the sacred domain to-night without + fear of bodily assault. There are one or two points on which I should + like reassurance." + + "Have you any theory, Holmes?" + + "Only this, Watson, that something happened a week or so ago which + has cut deep into the life of the Shoscombe household. What is that + something? We can only guess at it from its effects. They seem to be + of a curiously mixed character. But that should surely help us. It is + only the colourless, uneventful case which is hopeless. + + "Let us consider our data. The brother no longer visits the beloved + invalid sister. He gives away her favourite dog. Her dog, Watson! + Does that suggest nothing to you?" + + "Nothing but the brother's spite." + + "Well, it might be so. Or--well, there is an alternative. Now to + continue our review of the situation from the time that the quarrel, + if there is a quarrel, began. The lady keeps her room, alters her + habits, is not seen save when she drives out with her maid, refuses + to stop at the stables to greet her favourite horse, and apparently + takes to drink. That covers the case, does it not?" + + "Save for the business in the crypt." + + "That is another line of thought. There are two, and I beg you will + not tangle them. Line A, which concerns Lady Beatrice, has a vaguely + sinister flavour, has it not?" + + "I can make nothing of it." + + "Well, now, let us take up line B, which concerns Sir Robert. He is + mad keen upon winning the Derby. He is in the hands of the Jews, and + may at any moment be sold up and his racing stables seized by his + creditors. He is a daring and desperate man. He derives his income + from his sister. His sister's maid is his willing tool. So far we + seem to be on fairly safe ground, do we not?" + + "But the crypt?" + + "Ah, yes, the crypt! Let us suppose, Watson--it is merely a + scandalous supposition, a hypothesis put forward for argument's + sake--that Sir Robert has done away with his sister." + + "My dear Holmes, it is out of the question." + + "Very possibly, Watson. Sir Robert is a man of an honourable stock. + But you do occasionally find a carrion crow among the eagles. Let us + for a moment argue upon this supposition. He could not fly the + country until he had realized his fortune, and that fortune could + only be realized by bringing off this coup with Shoscombe Prince. + Therefore, he has still to stand his ground. To do this he would have + to dispose of the body of his victim, and he would also have to find + a substitute who would impersonate her. With the maid as his + confidante that would not be impossible. The woman's body might be + conveyed to the crypt, which is a place so seldom visited, and it + might be secretly destroyed at night in the furnace, leaving behind + it such evidence as we have already seen. What say you to that, + Watson?" + + "Well, it is all possible if you grant the original monstrous + supposition." + + "I think that there is a small experiment which we may try to-morrow, + Watson, in order to throw some light on the matter. Meanwhile, if we + mean to keep up our characters, I suggest that we have our host in + for a glass of his own wine and hold some high converse upon eels and + dace, which seems to be the straight road to his affections. We may + chance to come upon some useful local gossip in the process." + + In the morning Holmes discovered that we had come without our + spoon-bait for jack, which absolved us from fishing for the day. + About eleven o'clock we started for a walk, and he obtained leave to + take the black spaniel with us. + + "This is the place," said he as we came to two high park gates with + heraldic griffins towering above them. "About midday, Mr. Barnes + informs me, the old lady takes a drive, and the carriage must slow + down while the gates are opened. When it comes through, and before it + gathers speed, I want you, Watson, to stop the coachman with some + question. Never mind me. I shall stand behind this holly-bush and see + what I can see." + + It was not a long vigil. Within a quarter of an hour we saw the big + open yellow barouche coming down the long avenue, with two splendid, + high-stepping gray carriage horses in the shafts. Holmes crouched + behind his bush with the dog. I stood unconcernedly swinging a cane + in the roadway. A keeper ran out and the gates swung open. + + The carriage had slowed to a walk, and I was able to get a good look + at the occupants. A highly coloured young woman with flaxen hair and + impudent eyes sat on the left. At her right was an elderly person + with rounded back and a huddle of shawls about her face and shoulders + which proclaimed the invalid. When the horses reached the highroad I + held up my hand with an authoritative gesture, and as the coachman + pulled up I inquired if Sir Robert was at Shoscombe Old Place. + + At the same moment Holmes stepped out and released the spaniel. With + a joyous cry it dashed forward to the carriage and sprang upon the + step. Then in a moment its eager greeting changed to furious rage, + and it snapped at the black skirt above it. + + "Drive on! Drive on!" shrieked a harsh voice. The coachman lashed the + horses, and we were left standing in the roadway. + + "Well, Watson, that's done it," said Holmes as he fastened the lead + to the neck of the excited spaniel. "He thought it was his mistress, + and he found it was a stranger. Dogs don't make mistakes." + + "But it was the voice of a man!" I cried. + + "Exactly! We have added one card to our hand, Watson, but it needs + careful playing, all the same." + + My companion seemed to have no further plans for the day, and we did + actually use our fishing tackle in the mill-stream, with the result + that we had a dish of trout for our supper. It was only after that + meal that Holmes showed signs of renewed activity. Once more we found + ourselves upon the same road as in the morning, which led us to the + park gates. A tall, dark figure was awaiting us there, who proved to + be our London acquaintance, Mr. John Mason, the trainer. + + "Good-evening, gentlemen," said he. "I got your note, Mr. Holmes. Sir + Robert has not returned yet, but I hear that he is expected + to-night." + + "How far is this crypt from the house?" asked Holmes. + + "A good quarter of a mile." + + "Then I think we can disregard him altogether." + + "I can't afford to do that, Mr. Holmes. The moment he arrives he will + want to see me to get the last news of Shoscombe Prince." + + "I see! In that case we must work without you, Mr. Mason. You can + show us the crypt and then leave us." + + It was pitch-dark and without a moon, but Mason led us over the + grass-lands until a dark mass loomed up in front of us which proved + to be the ancient chapel. We entered the broken gap which was once + the porch, and our guide, stumbling among heaps of loose masonry, + picked his way to the corner of the building, where a steep stair led + down into the crypt. Striking a match, he illuminated the melancholy + place--dismal and evil-smelling, with ancient crumbling walls of + rough-hewn stone, and piles of coffins, some of lead and some of + stone, extending upon one side right up to the arched and groined + roof which lost itself in the shadows above our heads. Holmes had lit + his lantern, which shot a tiny tunnel of vivid yellow light upon the + mournful scene. Its rays were reflected back from the coffin-plates, + many of them adorned with the griffin and coronet of this old family + which carried its honours even to the gate of Death. + + "You spoke of some bones, Mr. Mason. Could you show them before you + go?" + + "They are here in this corner." The trainer strode across and then + stood in silent surprise as our light was turned upon the place. + "They are gone," said he. + + "So I expected," said Holmes, chuckling. "I fancy the ashes of them + might even now be found in that oven which had already consumed a + part." + + "But why in the world would anyone want to burn the bones of a man + who has been dead a thousand years?" asked John Mason. + + "That is what we are here to find out," said Holmes. "It may mean a + long search, and we need not detain you. I fancy that we shall get + our solution before morning." + + When John Mason had left us, Holmes set to work making a very careful + examination of the graves, ranging from a very ancient one, which + appeared to be Saxon, in the centre, through a long line of Norman + Hugos and Odos, until we reached the Sir William and Sir Denis Falder + of the eighteenth century. It was an hour or more before Holmes came + to a leaden coffin standing on end before the entrance to the vault. + I heard his little cry of satisfaction and was aware from his hurried + but purposeful movements that he had reached a goal. With his lens he + was eagerly examining the edges of the heavy lid. Then he drew from + his pocket a short jemmy, a box-opener, which he thrust into a chink, + levering back the whole front, which seemed to be secured by only a + couple of clamps. There was a rending, tearing sound as it gave way, + but it had hardly hinged back and partly revealed the contents before + we had an unforeseen interruption. + + Someone was walking in the chapel above. It was the firm, rapid step + of one who came with a definite purpose and knew well the ground upon + which he walked. A light streamed down the stairs, and an instant + later the man who bore it was framed in the Gothic archway. He was a + terrible figure, huge in stature and fierce in manner. A large + stable-lantern which he held in front of him shone upward upon a + strong, heavily moustached face and angry eyes, which glared round + him into every recess of the vault, finally fixing themselves with a + deadly stare upon my companion and myself. + + "Who the devil are you?" he thundered. "And what are you doing upon + my property?" Then, as Holmes returned no answer, he took a couple of + steps forward and raised a heavy stick which he carried. "Do you hear + me?" he cried. "Who are you? What are you doing here?" His cudgel + quivered in the air. + + But instead of shrinking Holmes advanced to meet him. + + "I also have a question to ask you, Sir Robert," he said in his + sternest tone. "Who is this? And what is it doing here?" + + He turned and tore open the coffin-lid behind him. In the glare of + the lantern I saw a body swathed in a sheet from head to foot, with + dreadful, witch-like features, all nose and chin, projecting at one + end, the dim, glazed eyes staring from a discoloured and crumbling + face. + + The baronet had staggered back with a cry and supported himself + against a stone sarcophagus. + + "How came you to know of this?" he cried. And then, with some return + of his truculent manner: "What business is it of yours?" + + "My name is Sherlock Holmes," said my companion. "Possibly it is + familiar to you. In any case, my business is that of every other good + citizen--to uphold the law. It seems to me that you have much to + answer for." + + Sir Robert glared for a moment, but Holmes's quiet voice and cool, + assured manner had their effect. + + "'Fore God, Mr. Holmes, it's all right," said he. "Appearances are + against me, I'll admit, but I could act no otherwise." + + "I should be happy to think so, but I fear your explanations must be + before the police." + + Sir Robert shrugged his broad shoulders. + + "Well, if it must be, it must. Come up to the house and you can judge + for yourself how the matter stands." + + A quarter of an hour later we found ourselves in what I judge, from + the lines of polished barrels behind glass covers, to be the gun-room + of the old house. It was comfortably furnished, and here Sir Robert + left us for a few moments. When he returned he had two companions + with him; the one, the florid young woman whom we had seen in the + carriage; the other, a small rat-faced man with a disagreeably + furtive manner. These two wore an appearance of utter bewilderment, + which showed that the baronet had not yet had time to explain to them + the turn events had taken. + + "There," said Sir Robert with a wave of his hand, "are Mr. and Mrs. + Norlett. Mrs. Norlett, under her maiden name of Evans, has for some + years been my sister's confidential maid. I have brought them here + because I feel that my best course is to explain the true position to + you, and they are the two people upon earth who can substantiate what + I say." + + "Is this necessary, Sir Robert? Have you thought what you are doing?" + cried the woman. + + "As to me, I entirely disclaim all responsibility," said her husband. + + Sir Robert gave him a glance of contempt. "I will take all + responsibility," said he. "Now, Mr. Holmes, listen to a plain + statement of the facts. + + "You have clearly gone pretty deeply into my affairs or I should not + have found you where I did. Therefore, you know already, in all + probability, that I am running a dark horse for the Derby and that + everything depends upon my success. If I win, all is easy. If I + lose--well, I dare not think of that!" + + "I understand the position," said Holmes. + + "I am dependent upon my sister, Lady Beatrice, for everything. But it + is well known that her interest in the estate is for her own life + only. For myself, I am deeply in the hands of the Jews. I have always + known that if my sister were to die my creditors would be on to my + estate like a flock of vultures. Everything would be seized--my + stables, my horses--everything. Well, Mr. Holmes, my sister did die + just a week ago." + + "And you told no one!" + + "What could I do? Absolute ruin faced me. If I could stave things off + for three weeks all would be well. Her maid's husband--this man + here--is an actor. It came into our heads--it came into my head--that + he could for that short period personate my sister. It was but a case + of appearing daily in the carriage, for no one need enter her room + save the maid. It was not difficult to arrange. My sister died of the + dropsy which had long afflicted her." + + "That will be for a coroner to decide." + + "Her doctor would certify that for months her symptoms have + threatened such an end." + + "Well, what did you do?" + + "The body could not remain there. On the first night Norlett and I + carried it out to the old well-house, which is now never used. We + were followed, however, by her pet spaniel, which yapped continually + at the door, so I felt some safer place was needed. I got rid of the + spaniel, and we carried the body to the crypt of the church. There + was no indignity or irreverence, Mr. Holmes. I do not feel that I + have wronged the dead." + + "Your conduct seems to me inexcusable, Sir Robert." + + The baronet shook his head impatiently. "It is easy to preach," said + he. "Perhaps you would have felt differently if you had been in my + position. One cannot see all one's hopes and all one's plans + shattered at the last moment and make no effort to save them. It + seemed to me that it would be no unworthy resting-place if we put her + for the time in one of the coffins of her husband's ancestors lying + in what is still consecrated ground. We opened such a coffin, removed + the contents, and placed her as you have seen her. As to the old + relics which we took out, we could not leave them on the floor of the + crypt. Norlett and I removed them, and he descended at night and + burned them in the central furnace. There is my story, Mr. Holmes, + though how you forced my hand so that I have to tell it is more than + I can say." + + Holmes sat for some time lost in thought. + + "There is one flaw in your narrative, Sir Robert," he said at last. + "Your bets on the race, and therefore your hopes for the future, + would hold good even if your creditors seized your estate." + + "The horse would be part of the estate. What do they care for my + bets? As likely as not they would not run him at all. My chief + creditor is, unhappily, my most bitter enemy--a rascally fellow, Sam + Brewer, whom I was once compelled to horsewhip on Newmarket Heath. Do + you suppose that he would try to save me?" + + "Well, Sir Robert," said Holmes, rising, "this matter must, of + course, be referred to the police. It was my duty to bring the facts + to light, and there I must leave it. As to the morality or decency of + your conduct, it is not for me to express an opinion. It is nearly + midnight, Watson, and I think we may make our way back to our humble + abode." + + It is generally known now that this singular episode ended upon a + happier note than Sir Robert's actions deserved. Shoscombe Prince did + win the Derby, the sporting owner did net eighty thousand pounds in + bets, and the creditors did hold their hand until the race was over, + when they were paid in full, and enough was left to reestablish Sir + Robert in a fair position in life. Both police and coroner took a + lenient view of the transaction, and beyond a mild censure for the + delay in registering the lady's decease, the lucky owner got away + scatheless from this strange incident in a career which has now + outlived its shadows and promises to end in an honoured old age. + + + + + + + THE ADVENTURE OF THE RETIRED COLOURMAN + + Sherlock Holmes was in a melancholy and philosophic mood that + morning. His alert practical nature was subject to such reactions. + + "Did you see him?" he asked. + + "You mean the old fellow who has just gone out?" + + "Precisely." + + "Yes, I met him at the door." + + "What did you think of him?" + + "A pathetic, futile, broken creature." + + "Exactly, Watson. Pathetic and futile. But is not all life pathetic + and futile? Is not his story a microcosm of the whole? We reach. We + grasp. And what is left in our hands at the end? A shadow. Or worse + than a shadow--misery." + + "Is he one of your clients?" + + "Well, I suppose I may call him so. He has been sent on by the Yard. + Just as medical men occasionally send their incurables to a quack. + They argue that they can do nothing more, and that whatever happens + the patient can be no worse than he is." + + "What is the matter?" + + Holmes took a rather soiled card from the table. "Josiah Amberley. He + says he was junior partner of Brickfall and Amberley, who are + manufacturers of artistic materials. You will see their names upon + paint-boxes. He made his little pile, retired from business at the + age of sixty-one, bought a house at Lewisham, and settled down to + rest after a life of ceaseless grind. One would think his future was + tolerably assured." + + "Yes, indeed." + + Holmes glanced over some notes which he had scribbled upon the back + of an envelope. + + "Retired in 1896, Watson. Early in 1897 he married a woman twenty + years younger than himself--a good-looking woman, too, if the + photograph does not flatter. A competence, a wife, leisure--it seemed + a straight road which lay before him. And yet within two years he is, + as you have seen, as broken and miserable a creature as crawls + beneath the sun." + + "But what has happened?" + + "The old story, Watson. A treacherous friend and a fickle wife. It + would appear that Amberley has one hobby in life, and it is chess. + Not far from him at Lewisham there lives a young doctor who is also a + chess-player. I have noted his name as Dr. Ray Ernest. Ernest was + frequently in the house, and an intimacy between him and Mrs. + Amberley was a natural sequence, for you must admit that our + unfortunate client has few outward graces, whatever his inner virtues + may be. The couple went off together last week--destination untraced. + What is more, the faithless spouse carried off the old man's deed-box + as her personal luggage with a good part of his life's savings + within. Can we find the lady? Can we save the money? A commonplace + problem so far as it has developed, and yet a vital one for Josiah + Amberley." + + "What will you do about it?" + + "Well, the immediate question, my dear Watson, happens to be, What + will you do?--if you will be good enough to understudy me. You know + that I am preoccupied with this case of the two Coptic Patriarchs, + which should come to a head to-day. I really have not time to go out + to Lewisham, and yet evidence taken on the spot has a special value. + The old fellow was quite insistent that I should go, but I explained + my difficulty. He is prepared to meet a representative." + + "By all means," I answered. "I confess I don't see that I can be of + much service, but I am willing to do my best." And so it was that on + a summer afternoon I set forth to Lewisham, little dreaming that + within a week the affair in which I was engaging would be the eager + debate of all England. + + It was late that evening before I returned to Baker Street and gave + an account of my mission. Holmes lay with his gaunt figure stretched + in his deep chair, his pipe curling forth slow wreaths of acrid + tobacco, while his eyelids drooped over his eyes so lazily that he + might almost have been asleep were it not that at any halt or + questionable passage of my narrative they half lifted, and two gray + eyes, as bright and keen as rapiers, transfixed me with their + searching glance. + + "The Haven is the name of Mr. Josiah Amberley's house," I explained. + "I think it would interest you, Holmes. It is like some penurious + patrician who has sunk into the company of his inferiors. You know + that particular quarter, the monotonous brick streets, the weary + suburban highways. Right in the middle of them, a little island of + ancient culture and comfort, lies this old home, surrounded by a high + sun-baked wall mottled with lichens and topped with moss, the sort of + wall--" + + "Cut out the poetry, Watson," said Holmes severely. "I note that it + was a high brick wall." + + "Exactly. I should not have known which was The Haven had I not asked + a lounger who was smoking in the street. I have a reason for + mentioning him. He was a tall, dark, heavily moustached, rather + military-looking man. He nodded in answer to my inquiry and gave me a + curiously questioning glance, which came back to my memory a little + later. + + "I had hardly entered the gateway before I saw Mr. Amberley coming + down the drive. I only had a glimpse of him this morning, and he + certainly gave me the impression of a strange creature, but when I + saw him in full light his appearance was even more abnormal." + + "I have, of course, studied it, and yet I should be interested to + have your impression," said Holmes. + + "He seemed to me like a man who was literally bowed down by care. His + back was curved as though he carried a heavy burden. Yet he was not + the weakling that I had at first imagined, for his shoulders and + chest have the framework of a giant, though his figure tapers away + into a pair of spindled legs." + + "Left shoe wrinkled, right one smooth." + + "I did not observe that." + + "No, you wouldn't. I spotted his artificial limb. But proceed." + + "I was struck by the snaky locks of grizzled hair which curled from + under his old straw hat, and his face with its fierce, eager + expression and the deeply lined features." + + "Very good, Watson. What did he say?" + + "He began pouring out the story of his grievances. We walked down the + drive together, and of course I took a good look round. I have never + seen a worse-kept place. The garden was all running to seed, giving + me an impression of wild neglect in which the plants had been allowed + to find the way of Nature rather than of art. How any decent woman + could have tolerated such a state of things, I don't know. The house, + too, was slatternly to the last degree, but the poor man seemed + himself to be aware of it and to be trying to remedy it, for a great + pot of green paint stood in the centre of the hall, and he was + carrying a thick brush in his left hand. He had been working on the + woodwork. + + "He took me into his dingy sanctum, and we had a long chat. Of + course, he was disappointed that you had not come yourself. 'I hardly + expected,' he said, 'that so humble an individual as myself, + especially after my heavy financial loss, could obtain the complete + attention of so famous a man as Mr. Sherlock Holmes.' + + "I assured him that the financial question did not arise. 'No, of + course, it is art for art's sake with him,' said he, 'but even on the + artistic side of crime he might have found something here to study. + And human nature, Dr. Watson--the black ingratitude of it all! When + did I ever refuse one of her requests? Was ever a woman so pampered? + And that young man--he might have been my own son. He had the run of + my house. And yet see how they have treated me! Oh, Dr. Watson, it is + a dreadful, dreadful world!' + + "That was the burden of his song for an hour or more. He had, it + seems, no suspicion of an intrigue. They lived alone save for a woman + who comes in by the day and leaves every evening at six. On that + particular evening old Amberley, wishing to give his wife a treat, + had taken two upper circle seats at the Haymarket Theatre. At the + last moment she had complained of a headache and had refused to go. + He had gone alone. There seemed to be no doubt about the fact, for he + produced the unused ticket which he had taken for his wife." + + "That is remarkable--most remarkable," said Holmes, whose interest in + the case seemed to be rising. "Pray continue, Watson. I find your + narrative most arresting. Did you personally examine this ticket? You + did not, perchance, take the number?" + + "It so happens that I did," I answered with some pride. "It chanced + to be my old school number, thirty-one, and so is stuck in my head." + + "Excellent, Watson! His seat, then, was either thirty or thirty-two." + + "Quite so," I answered with some mystification. "And on B row." + + "That is most satisfactory. What else did he tell you?" + + "He showed me his strong-room, as he called it. It really is a + strong-room--like a bank--with iron door and shutter--burglar-proof, + as he claimed. However, the woman seems to have had a duplicate key, + and between them they had carried off some seven thousand pounds' + worth of cash and securities." + + "Securities! How could they dispose of those?" + + "He said that he had given the police a list and that he hoped they + would be unsaleable. He had got back from the theatre about midnight + and found the place plundered, the door and window open, and the + fugitives gone. There was no letter or message, nor has he heard a + word since. He at once gave the alarm to the police." + + Holmes brooded for some minutes. + + "You say he was painting. What was he painting?" + + "Well, he was painting the passage. But he had already painted the + door and woodwork of this room I spoke of." + + "Does it not strike you as a strange occupation in the + circumstances?" + + "'One must do something to ease an aching heart.' That was his own + explanation. It was eccentric, no doubt, but he is clearly an + eccentric man. He tore up one of his wife's photographs in my + presence--tore it up furiously in a tempest of passion. 'I never wish + to see her damned face again,' he shrieked." + + "Anything more, Watson?" + + "Yes, one thing which struck me more than anything else. I had driven + to the Blackheath Station and had caught my train there when, just as + it was starting, I saw a man dart into the carriage next to my own. + You know that I have a quick eye for faces, Holmes. It was + undoubtedly the tall, dark man whom I had addressed in the street. I + saw him once more at London Bridge, and then I lost him in the crowd. + But I am convinced that he was following me." + + "No doubt! No doubt!" said Holmes. "A tall, dark, heavily moustached + man, you say, with gray-tinted sun-glasses?" + + "Holmes, you are a wizard. I did not say so, but he had gray-tinted + sun-glasses." + + "And a Masonic tie-pin?" + + "Holmes!" + + "Quite simple, my dear Watson. But let us get down to what is + practical. I must admit to you that the case, which seemed to me to + be so absurdly simple as to be hardly worth my notice, is rapidly + assuming a very different aspect. It is true that though in your + mission you have missed everything of importance, yet even those + things which have obtruded themselves upon your notice give rise to + serious thought." + + "What have I missed?" + + "Don't be hurt, my dear fellow. You know that I am quite impersonal. + No one else would have done better. Some possibly not so well. But + clearly you have missed some vital points. What is the opinion of the + neighbours about this man Amberley and his wife? That surely is of + importance. What of Dr. Ernest? Was he the gay Lothario one would + expect? With your natural advantages, Watson, every lady is your + helper and accomplice. What about the girl at the post-office, or the + wife of the greengrocer? I can picture you whispering soft nothings + with the young lady at the Blue Anchor, and receiving hard somethings + in exchange. All this you have left undone." + + "It can still be done." + + "It has been done. Thanks to the telephone and the help of the Yard, + I can usually get my essentials without leaving this room. As a + matter of fact, my information confirms the man's story. He has the + local repute of being a miser as well as a harsh and exacting + husband. That he had a large sum of money in that strong-room of his + is certain. So also is it that young Dr. Ernest, an unmarried man, + played chess with Amberley, and probably played the fool with his + wife. All this seems plain sailing, and one would think that there + was no more to be said--and yet!--and yet!" + + "Where lies the difficulty?" + + "In my imagination, perhaps. Well, leave it there, Watson. Let us + escape from this weary workaday world by the side door of music. + Carina sings to-night at the Albert Hall, and we still have time to + dress, dine, and enjoy." + + In the morning I was up betimes, but some toast crumbs and two empty + egg-shells told me that my companion was earlier still. I found a + scribbled note upon the table. + + Dear Watson: + There are one or two points of contact which I should wish to + establish with Mr. Josiah Amberley. When I have done so we can + dismiss the case--or not. I would only ask you to be on hand about + three o'clock, as I conceive it possible that I may want you. + S. H. + + I saw nothing of Holmes all day, but at the hour named he returned, + grave, preoccupied, and aloof. At such times it was wiser to leave + him to himself. + + "Has Amberley been here yet?" + + "No." + + "Ah! I am expecting him." + + He was not disappointed, for presently the old fellow arrived with a + very worried and puzzled expression upon his austere face. + + "I've had a telegram, Mr. Holmes. I can make nothing of it." He + handed it over, and Holmes read it aloud. + + "Come at once without fail. Can give you information as to your + recent loss. + "Elman. + "The Vicarage. + + "Dispatched at 2.10 from Little Purlington," said Holmes. "Little + Purlington is in Essex, I believe, not far from Frinton. Well, of + course you will start at once. This is evidently from a responsible + person, the vicar of the place. Where is my Crockford? Yes, here we + have him: 'J. C. Elman, M. A., Living of Moosmoor cum Little + Purlington.' Look up the trains, Watson." + + "There is one at 5.20 from Liverpool Street." + + "Excellent. You had best go with him, Watson. He may need help or + advice. Clearly we have come to a crisis in this affair." + + But our client seemed by no means eager to start. + + "It's perfectly absurd, Mr. Holmes," he said. "What can this man + possibly know of what has occurred? It is waste of time and money." + + "He would not have telegraphed to you if he did not know something. + Wire at once that you are coming." + + "I don't think I shall go." + + Holmes assumed his sternest aspect. + + "It would make the worst possible impression both on the police and + upon myself, Mr. Amberley, if when so obvious a clue arose you should + refuse to follow it up. We should feel that you were not really in + earnest in this investigation." + + Our client seemed horrified at the suggestion. + + "Why, of course I shall go if you look at it in that way," said he. + "On the face of it, it seems absurd to suppose that this person knows + anything, but if you think--" + + "I do think," said Holmes with emphasis, and so we were launched upon + our journey. Holmes took me aside before we left the room and gave me + one word of counsel, which showed that he considered the matter to be + of importance. "Whatever you do, see that he really does go," said + he. "Should he break away or return, get to the nearest telephone + exchange and send the single word 'Bolted.' I will arrange here that + it shall reach me wherever I am." + + Little Purlington is not an easy place to reach, for it is on a + branch line. My remembrance of the journey is not a pleasant one, for + the weather was hot, the train slow, and my companion sullen and + silent, hardly talking at all save to make an occasional sardonic + remark as to the futility of our proceedings. When we at last reached + the little station it was a two-mile drive before we came to the + Vicarage, where a big, solemn, rather pompous clergyman received us + in his study. Our telegram lay before him. + + "Well, gentlemen," he asked, "what can I do for you?" + + "We came," I explained, "in answer to your wire." + + "My wire! I sent no wire." + + "I mean the wire which you sent to Mr. Josiah Amberley about his wife + and his money." + + "If this is a joke, sir, it is a very questionable one," said the + vicar angrily. "I have never heard of the gentleman you name, and I + have not sent a wire to anyone." + + Our client and I looked at each other in amazement. + + "Perhaps there is some mistake," said I; "are there perhaps two + vicarages? Here is the wire itself, signed Elman and dated from the + Vicarage." + + "There is only one vicarage, sir, and only one vicar, and this wire + is a scandalous forgery, the origin of which shall certainly be + investigated by the police. Meanwhile, I can see no possible object + in prolonging this interview." + + So Mr. Amberley and I found ourselves on the roadside in what seemed + to me to be the most primitive village in England. We made for the + telegraph office, but it was already closed. There was a telephone, + however, at the little Railway Arms, and by it I got into touch with + Holmes, who shared in our amazement at the result of our journey. + + "Most singular!" said the distant voice. "Most remarkable! I much + fear, my dear Watson, that there is no return train to-night. I have + unwittingly condemned you to the horrors of a country inn. However, + there is always Nature, Watson--Nature and Josiah Amberley--you can + be in close commune with both." I heard his dry chuckle as he turned + away. + + It was soon apparent to me that my companion's reputation as a miser + was not undeserved. He had grumbled at the expense of the journey, + had insisted upon travelling third-class, and was now clamorous in + his objections to the hotel bill. Next morning, when we did at last + arrive in London, it was hard to say which of us was in the worse + humour. + + "You had best take Baker Street as we pass," said I. "Mr. Holmes may + have some fresh instructions." + + "If they are not worth more than the last ones they are not of much + use, " said Amberley with a malevolent scowl. None the less, he kept + me company. I had already warned Holmes by telegram of the hour of + our arrival, but we found a message waiting that he was at Lewisham + and would expect us there. That was a surprise, but an even greater + one was to find that he was not alone in the sitting-room of our + client. A stern-looking, impassive man sat beside him, a dark man + with gray-tinted glasses and a large Masonic pin projecting from his + tie. + + "This is my friend Mr. Barker," said Holmes. "He has been interesting + himself also in your business, Mr. Josiah Amberley, though we have + been working independently. But we both have the same question to ask + you!" + + Mr. Amberley sat down heavily. He sensed impending danger. I read it + in his straining eyes and his twitching features. + + "What is the question, Mr. Holmes?" + + "Only this: What did you do with the bodies?" + + The man sprang to his feet with a hoarse scream. He clawed into the + air with his bony hands. His mouth was open, and for the instant he + looked like some horrible bird of prey. In a flash we got a glimpse + of the real Josiah Amberley, a misshapen demon with a soul as + distorted as his body. As he fell back into his chair he clapped his + hand to his lips as if to stifle a cough. Holmes sprang at his throat + like a tiger and twisted his face towards the ground. A white pellet + fell from between his gasping lips. + + "No short cuts, Josiah Amberley. Things must be done decently and in + order. What about it, Barker?" + + "I have a cab at the door," said our taciturn companion. + + "It is only a few hundred yards to the station. We will go together. + You can stay here, Watson. I shall be back within half an hour." + + The old colourman had the strength of a lion in that great trunk of + his, but he was helpless in the hands of the two experienced + man-handlers. Wriggling and twisting he was dragged to the waiting + cab, and I was left to my solitary vigil in the ill-omened house. In + less time than he had named, however, Holmes was back, in company + with a smart young police inspector. + + "I've left Barker to look after the formalities," said Holmes. "You + had not met Barker, Watson. He is my hated rival upon the Surrey + shore. When you said a tall dark man it was not difficult for me to + complete the picture. He has several good cases to his credit, has he + not, Inspector?" + + "He has certainly interfered several times," the inspector answered + with reserve. + + "His methods are irregular, no doubt, like my own. The irregulars are + useful sometimes, you know. You, for example, with your compulsory + warning about whatever he said being used against him, could never + have bluffed this rascal into what is virtually a confession." + + "Perhaps not. But we get there all the same, Mr. Holmes. Don't + imagine that we had not formed our own views of this case, and that + we would not have laid our hands on our man. You will excuse us for + feeling sore when you jump in with methods which we cannot use, and + so rob us of the credit." + + "There shall be no such robbery, MacKinnon. I assure you that I + efface myself from now onward, and as to Barker, he has done nothing + save what I told him." + + The inspector seemed considerably relieved. + + "That is very handsome of you, Mr. Holmes. Praise or blame can matter + little to you, but it is very different to us when the newspapers + begin to ask questions." + + "Quite so. But they are pretty sure to ask questions anyhow, so it + would be as well to have answers. What will you say, for example, + when the intelligent and enterprising reporter asks you what the + exact points were which aroused your suspicion, and finally gave you + a certain conviction as to the real facts?" + + The inspector looked puzzled. + + "We don't seem to have got any real facts yet, Mr. Holmes. You say + that the prisoner, in the presence of three witnesses, practically + confessed by trying to commit suicide, that he had murdered his wife + and her lover. What other facts have you?" + + "Have you arranged for a search?" + + "There are three constables on their way." + + "Then you will soon get the clearest fact of all. The bodies cannot + be far away. Try the cellars and the garden. It should not take long + to dig up the likely places. This house is older than the + water-pipes. There must be a disused well somewhere. Try your luck + there." + + "But how did you know of it, and how was it done?" + + "I'll show you first how it was done, and then I will give the + explanation which is due to you, and even more to my long-suffering + friend here, who has been invaluable throughout. But, first, I would + give you an insight into this man's mentality. It is a very unusual + one--so much so that I think his destination is more likely to be + Broadmoor than the scaffold. He has, to a high degree, the sort of + mind which one associates with the mediaeval Italian nature rather + than with the modern Briton. He was a miserable miser who made his + wife so wretched by his niggardly ways that she was a ready prey for + any adventurer. Such a one came upon the scene in the person of this + chess-playing doctor. Amberley excelled at chess--one mark, Watson, + of a scheming mind. Like all misers, he was a jealous man, and his + jealousy became a frantic mania. Rightly or wrongly, he suspected an + intrigue. He determined to have his revenge, and he planned it with + diabolical cleverness. Come here!" + + Holmes led us along the passage with as much certainty as if he had + lived in the house and halted at the open door of the strong-room. + + "Pooh! What an awful smell of paint!" cried the inspector. + + "That was our first clue," said Holmes. "You can thank Dr. Watson's + observation for that, though he failed to draw the inference. It set + my foot upon the trail. Why should this man at such a time be filling + his house with strong odours? Obviously, to cover some other smell + which he wished to conceal--some guilty smell which would suggest + suspicions. Then came the idea of a room such as you see here with + iron door and shutter--a hermetically sealed room. Put those two + facts together, and whither do they lead? I could only determine that + by examining the house myself. I was already certain that the case + was serious, for I had examined the box-office chart at the Haymarket + Theatre--another of Dr. Watson's bull's-eyes--and ascertained that + neither B thirty nor thirty-two of the upper circle had been occupied + that night. Therefore, Amberley had not been to the theatre, and his + alibi fell to the ground. He made a bad slip when he allowed my + astute friend to notice the number of the seat taken for his wife. + The question now arose how I might be able to examine the house. I + sent an agent to the most impossible village I could think of, and + summoned my man to it at such an hour that he could not possibly get + back. To prevent any miscarriage, Dr. Watson accompanied him. The + good vicar's name I took, of course, out of my Crockford. Do I make + it all clear to you?" + + "It is masterly," said the inspector in an awed voice. + + "There being no fear of interruption I proceeded to burgle the house. + Burglary has always been an alternative profession had I cared to + adopt it, and I have little doubt that I should have come to the + front. Observe what I found. You see the gas-pipe along the skirting + here. Very good. It rises in the angle of the wall, and there is a + tap here in the corner. The pipe runs out into the strong-room, as + you can see, and ends in that plaster rose in the centre of the + ceiling, where it is concealed by the ornamentation. That end is wide + open. At any moment by turning the outside tap the room could be + flooded with gas. With door and shutter closed and the tap full on I + would not give two minutes of conscious sensation to anyone shut up + in that little chamber. By what devilish device he decoyed them there + I do not know, but once inside the door they were at his mercy." + + The inspector examined the pipe with interest. "One of our officers + mentioned the smell of gas," said he, "but of course the window and + door were open then, and the paint--or some of it--was already about. + He had begun the work of painting the day before, according to his + story. But what next, Mr. Holmes?" + + "Well, then came an incident which was rather unexpected to myself. I + was slipping through the pantry window in the early dawn when I felt + a hand inside my collar, and a voice said: 'Now, you rascal, what are + you doing in there?' When I could twist my head round I looked into + the tinted spectacles of my friend and rival, Mr. Barker. It was a + curious foregathering and set us both smiling. It seems that he had + been engaged by Dr. Ray Ernest's family to make some investigations + and had come to the same conclusion as to foul play. He had watched + the house for some days and had spotted Dr. Watson as one of the + obviously suspicious characters who had called there. He could hardly + arrest Watson, but when he saw a man actually climbing out of the + pantry window there came a limit to his restraint. Of course, I told + him how matters stood and we continued the case together." + + "Why him? Why not us?" + + "Because it was in my mind to put that little test which answered so + admirably. I fear you would not have gone so far." + + The inspector smiled. + + "Well, maybe not. I understand that I have your word, Mr. Holmes, + that you step right out of the case now and that you turn all your + results over to us." + + "Certainly, that is always my custom." + + "Well, in the name of the force I thank you. It seems a clear case, + as you put it, and there can't be much difficulty over the bodies." + + "I'll show you a grim little bit of evidence," said Holmes, "and I am + sure Amberley himself never observed it. You'll get results, + Inspector, by always putting yourself in the other fellow's place, + and thinking what you would do yourself. It takes some imagination, + but it pays. Now, we will suppose that you were shut up in this + little room, had not two minutes to live, but wanted to get even with + the fiend who was probably mocking at you from the other side of the + door. What would you do?" + + "Write a message." + + "Exactly. You would like to tell people how you died. No use writing + on paper. That would be seen. If you wrote on the wall someone might + rest upon it. Now, look here! Just above the skirting is scribbled + with a purple indelible pencil: 'We we--' That's all." + + "What do you make of that?" + + "Well, it's only a foot above the ground. The poor devil was on the + floor dying when he wrote it. He lost his senses before he could + finish." + + "He was writing, 'We were murdered.'" + + "That's how I read it. If you find an indelible pencil on the body--" + + "We'll look out for it, you may be sure. But those securities? + Clearly there was no robbery at all. And yet he did possess those + bonds. We verified that." + + "You may be sure he has them hidden in a safe place. When the whole + elopement had passed into history, he would suddenly discover them + and announce that the guilty couple had relented and sent back the + plunder or had dropped it on the way." + + "You certainly seem to have met every difficulty," said the + inspector. "Of course, he was bound to call us in, but why he should + have gone to you I can't understand." + + "Pure swank!" Holmes answered. "He felt so clever and so sure of + himself that he imagined no one could touch him. He could say to any + suspicious neighbour, 'Look at the steps I have taken. I have + consulted not only the police but even Sherlock Holmes.'" + + The inspector laughed. + + "We must forgive you your 'even,' Mr. Holmes," said he, "it's as + workmanlike a job as I can remember." + + A couple of days later my friend tossed across to me a copy of the + bi-weekly North Surrey Observer. Under a series of flaming headlines, + which began with "The Haven Horror" and ended with "Brilliant Police + Investigation," there was a packed column of print which gave the + first consecutive account of the affair. The concluding paragraph is + typical of the whole. It ran thus: + + The remarkable acumen by which Inspector MacKinnon deduced from the + smell of paint that some other smell, that of gas, for example, might + be concealed; the bold deduction that the strong-room might also be + the death-chamber, and the subsequent inquiry which led to the + discovery of the bodies in a disused well, cleverly concealed by a + dog-kennel, should live in the history of crime as a standing example + of the intelligence of our professional detectives. + + "Well, well, MacKinnon is a good fellow," said Holmes with a tolerant + smile. "You can file it in our archives, Watson. Some day the true + story may be told." + + + + + + + + + + ---------- + This text is provided to you "as-is" without any warranty. No + warranties of any kind, expressed or implied, are made to you as to + the text or any medium it may be on, including but not limited to + warranties of merchantablity or fitness for a particular purpose. + + Pictures for "The Adventure of the Dancing Men", "The Adventure of + the Priory School", "The Adventure of the Golden Pince-Nez" and "The + Adventure of the Missing Three-Quarter" were taken from a 1911 + edition of the "The Memoirs of Sherlock Holmes" by Smith, Elder & Co. + of London. + + Pictures for "The Adventure of the Dancing Men" were taken from a + 1915 edition of "The Return of Sherlock Holmes" by Smith, Elder & Co. + of London. + + This text was formatted from various free ASCII and HTML variants. + See http://sherlock-holm.es for an electronic form of this text and + additional information about it. + + This text comes from the collection's version 3.1. diff --git a/2ano1/AED/aula11/TopKValues.c b/2ano1/AED/aula11/TopKValues.c new file mode 100644 index 0000000..4b574ce --- /dev/null +++ b/2ano1/AED/aula11/TopKValues.c @@ -0,0 +1,127 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// João Manuel Rodrigues, Joaquim Madeira, June 2021, Nov 2023 +// +// TESTING the TAD MinHeap implementation +// + +// This program lists the largest K values from a file of random integers. + +//// SEARCH ... AND COMPLETE //// + +// Try the arguments below. + +// ARGS 10 ordenados02500.txt +// ARGS 10 ordInversa02500.txt +// ARGS 10 aleatorios02500.txt +// ARGS 100 aleatorios40000.txt + +#include +#include +#include +#include + +#include "MinHeap.h" + +// THE ALGORITHM: +// +// Read the first K values into a MIN-heap. +// +// Then: +// +// 1. Get the next value from the file -> current. +// 2. If current is smaller or equal than the MIN element from the heap, +// then discard it. +// 3. Otherwise, remove the MIN from the heap and insert the current value. +// +// The MIN-heap stores the K largest values read from file. +// +// List the K largest values by successively removing the MIN from the heap. +// + +// STORING POINTERS TO INTEGERS + +// The comparator for integer items + +int comparator(const void *p1, const void *p2) { + int d = *(int *)p1 - *(int *)p2; + return (d > 0) - (d < 0); +} + +// The printer for integer items + +void printer(void *p) { printf("%d ", *(int *)p); } + +// MAIN + +int main(int argc, char *argv[]) { + if (argc < 3) { + fprintf(stderr, "Usage: %s K FILE\n", argv[0]); + exit(1); + } + + // k -> number of largest values we are looking for + int k = atoi(argv[1]); + + FILE *f = fopen(argv[2], "r"); + if (f == NULL) { + perror(argv[2]); + exit(2); + } + + // Create heap + MinHeap *h = MinHeapCreate(k, &comparator, &printer); + if (h == NULL) + abort(); + + // Read the first K values into a MIN-heap + // Allocate memory space for an integer + // Read it from file + // Insert it in the heap + + for (int i = 0; i < k; i++) { + int *value = malloc(sizeof(int)); + if (fscanf(f, "%d", value) != 1) { + free(value); + break; + } + + MinHeapInsert(h, value); + } + + // Read and process each one of the remaining values + while (!feof(f)) { + int *value = malloc(sizeof(int)); + if (fscanf(f, "%d", value) != 1) { + free(value); + break; + } + + void *min = MinHeapGetMin(h); + + if (comparator(value, min) > 0) { + MinHeapRemoveMin(h); + MinHeapInsert(h, value); + free(min); + } else { + free(value); + } + } + + // The heap stores the largest k values + // List them by removing each one from the heap + + while (!MinHeapIsEmpty(h)) { + void *min = MinHeapGetMin(h); + MinHeapRemoveMin(h); + + printer(min); + + free(min); + } + + // House-keeping + MinHeapDestroy(&h); + fclose(f); +} diff --git a/2ano1/AED/aula11/aleatorios02500.txt b/2ano1/AED/aula11/aleatorios02500.txt new file mode 100644 index 0000000..d43ec4a --- /dev/null +++ b/2ano1/AED/aula11/aleatorios02500.txt @@ -0,0 +1,2500 @@ +9201967 +16435141 +7353860 +21143226 +622689 +4497814 +11782762 +19841032 +328433 +8631151 +17688839 +13346444 +2454411 +5378614 +14587035 +7249658 +14147290 +19658187 +14135494 +18717750 +10007400 +17160622 +10559866 +15384604 +10723050 +3984014 +6541873 +1420258 +20822756 +12067843 +16673036 +20597314 +686258 +3286715 +14239696 +7226721 +15773231 +15020226 +12610478 +6403592 +8068199 +245203 +10760405 +7245071 +19879042 +7076644 +15684758 +17927389 +14355038 +492928 +89228 +12757934 +15486185 +14105347 +8102278 +15013672 +12588851 +20624183 +9701349 +10207284 +8450928 +15597595 +17245818 +17938530 +21210728 +3721216 +386105 +16983675 +11114954 +17231400 +5363541 +8844797 +14687960 +5998582 +14975661 +304185 +6480925 +8003974 +19639837 +18396625 +7147423 +10325904 +7636974 +2791920 +980514 +16687454 +1357344 +11103813 +9845527 +10867884 +19445196 +2302369 +15496670 +9907786 +5758066 +20298471 +12795944 +3775611 +13046291 +21394883 +14649949 +18392693 +16575388 +17355263 +12035730 +12768419 +10647029 +14001801 +10562488 +18945159 +20943342 +9081381 +18094505 +20767051 +19943267 +1743349 +18987101 +1633904 +1089303 +19683091 +2728351 +852064 +5685321 +8915576 +18120064 +7460683 +14615871 +252412 +20136598 +3582281 +14246905 +10903273 +17470605 +7646149 +19765010 +9374326 +8734697 +49251 +233407 +3381741 +566983 +11090050 +4016782 +20605178 +3642574 +17520413 +20844383 +20522603 +20668747 +13451301 +7994799 +1078162 +8251699 +9329106 +3427616 +16295550 +19996351 +2598590 +1734174 +3523299 +18805568 +17363782 +9634502 +16886682 +16709736 +20438717 +21333935 +14015564 +8712415 +4379850 +8340172 +7371555 +15401644 +1935369 +7643528 +6416700 +1441229 +380207 +16323731 +3603252 +6178150 +14102071 +12704850 +10239397 +17255648 +4721946 +5400896 +8676370 +9365806 +14495285 +861239 +20132665 +1154838 +9012568 +5526069 +4286789 +15537958 +9673168 +17616750 +4692455 +11198839 +11964952 +17293659 +19937369 +14114522 +12330641 +17587914 +14588346 +1493003 +4710805 +13032528 +817985 +3180547 +11855507 +17260236 +3467593 +15883331 +12494480 +5004405 +11228986 +1983865 +1255108 +14204962 +5879307 +19261041 +20939410 +8910333 +454262 +1692887 +17508616 +16357154 +6492721 +10724361 +1629317 +10090631 +11555353 +4742918 +2058576 +9549306 +16016368 +10575595 +15542545 +18297011 +17037414 +2433440 +18333711 +13632835 +10212527 +7055017 +7781153 +17782555 +4161616 +19643769 +10236775 +12431566 +11183111 +13130176 +2271567 +5973678 +9254395 +11901382 +3558032 +15233872 +10277407 +18599130 +9239322 +13349721 +15115253 +1363897 +20155603 +13585649 +11796525 +9296993 +10525132 +18636485 +12170078 +734099 +5566702 +5204289 +4222564 +10468116 +1281322 +17002025 +8619354 +4281547 +6255482 +20565201 +9290440 +3969597 +2130665 +5045037 +11063180 +3029159 +16690731 +1856070 +15632329 +19958340 +20329928 +11409864 +18542769 +2620217 +11639239 +6738480 +11749339 +16514440 +2877117 +1242656 +8534158 +917599 +13363483 +6765349 +10920968 +19647701 +17789109 +19550708 +783251 +11246025 +431324 +10613606 +3644540 +8289710 +19304294 +15128360 +5716778 +2408536 +1756456 +18194775 +9393331 +16716945 +13053500 +10757129 +7749696 +13192435 +10783343 +20406605 +12943400 +3440724 +19907878 +18403178 +4960496 +11861405 +20463621 +1565092 +29591 +1946510 +10291825 +37455 +19245967 +16027509 +7239173 +8943101 +6415389 +16426622 +2250595 +2945929 +12515451 +460160 +14336033 +10251848 +8593795 +6090332 +1131901 +18548012 +9584695 +853374 +12265105 +11499648 +21172062 +1013281 +17120645 +15702452 +19742073 +5531312 +8964072 +5735128 +14419263 +5919284 +10293791 +19640492 +14688615 +154108 +1561160 +10379643 +17021031 +14020806 +20892880 +316637 +5794766 +15119185 +5989407 +21340488 +17517136 +2071028 +12377171 +21134706 +5933701 +3839836 +14119110 +12758589 +8003319 +13997869 +7062226 +3819520 +4733087 +2882359 +7264076 +3867361 +19785982 +10996989 +20441994 +11362023 +201949 +15620533 +4583666 +21156988 +653490 +3489220 +8926061 +18256378 +827815 +5938289 +17532864 +20280121 +6221403 +13955926 +2797163 +5541798 +19619521 +2002215 +17734714 +3909959 +18154143 +20987251 +16371572 +15580556 +17148825 +9436584 +4170791 +13435573 +12025244 +13389698 +14528708 +16248365 +8338862 +13084957 +19373762 +15967217 +17128509 +4026613 +34178 +4026613 +10873127 +2932167 +7238517 +8774674 +17913627 +3392883 +6915426 +2413124 +7026182 +2708034 +6381966 +19037564 +19166014 +17353297 +21356217 +20057299 +4818284 +15279092 +13320885 +20373837 +17230089 +4609880 +1911120 +11592053 +5215430 +13672156 +9403817 +2386254 +6137517 +8653433 +20521292 +12935535 +4227152 +20681199 +1158115 +21412578 +18624689 +13231757 +8926061 +114787 +8424058 +19362621 +9635158 +17734059 +8777951 +15243047 +12415837 +8468622 +20928924 +16535411 +8756979 +548633 +5794110 +14419919 +6041180 +18306841 +19357378 +1595238 +5927803 +20874530 +1995661 +5695152 +3409922 +15060203 +11597952 +15381327 +7224099 +18288491 +4585632 +17200598 +7113344 +9160024 +19120794 +6986860 +17476504 +13950683 +14930442 +631864 +15519608 +15653301 +9284542 +15370842 +10825941 +5660418 +21259879 +3463006 +38766 +15028745 +12853616 +10056552 +603028 +15924618 +4791414 +251757 +3189066 +2626770 +18728891 +13692473 +15248945 +13858278 +2225036 +5804596 +13856967 +19255798 +10936697 +12542321 +1766287 +11573048 +9861911 +19221719 +6302667 +12696330 +19045428 +19990453 +282558 +12918496 +8519085 +13581062 +14065371 +2538952 +10204663 +13875973 +9918927 +7863072 +1863279 +14202996 +2541574 +11480643 +9353354 +5364852 +18401868 +12510209 +3746775 +7800813 +12677325 +20781469 +18102370 +3129429 +2146394 +4419827 +17485023 +4643959 +17444391 +14303921 +11462948 +1689610 +4183898 +10939973 +7087130 +17496820 +6478303 +3763815 +12421735 +15385915 +10770236 +6950815 +10748609 +304840 +19717169 +13714099 +8137012 +7663188 +13206853 +8566270 +10078834 +4299897 +1189572 +4788137 +8409640 +16313245 +18663355 +19192228 +6013000 +14678785 +9816691 +14379287 +10197454 +2227658 +9994949 +21225801 +779974 +4708184 +14149256 +20827344 +18503448 +1484483 +4881854 +13381178 +14760049 +13989349 +1160737 +3563931 +16260816 +942503 +21018053 +7756249 +9399229 +14662401 +12575089 +5946809 +12063910 +9799652 +11771621 +8102278 +16806073 +16511818 +1335717 +7496072 +15421960 +4980157 +8534813 +12261828 +3610461 +2965590 +2145738 +13573853 +3960422 +8059024 +18808189 +17283173 +5933701 +20093999 +14782987 +18890764 +11415762 +14547713 +2120835 +5744303 +20083514 +10603775 +8211067 +16649443 +14305887 +11758514 +9702659 +20668092 +14050953 +15580556 +2533710 +10373090 +3822141 +20835208 +15454727 +6891178 +16844084 +13847137 +14051608 +6944262 +6714887 +12612444 +18036179 +20190992 +6503207 +231441 +13739003 +12324087 +12229716 +19437332 +6054942 +9603700 +4807798 +2091344 +6514348 +8485006 +19839066 +13449990 +1095856 +10443868 +13605965 +12622930 +16560970 +18926809 +14493319 +2298436 +6809258 +17890689 +7517044 +12758589 +169837 +5075184 +19725033 +20162157 +14357660 +13575819 +4479464 +17216327 +8226140 +1590651 +13843205 +14086342 +21290681 +16340770 +20871908 +15867602 +18521798 +18139070 +9876984 +12174010 +20894846 +6815812 +18581436 +3681240 +17712432 +8268738 +20094655 +15288922 +4960496 +5020134 +15817140 +13357585 +10794484 +12773662 +12462368 +20290606 +1442540 +315982 +18070257 +317292 +1059156 +5086980 +9382190 +3009499 +18180357 +12894903 +5450048 +9555859 +4938214 +18540803 +6572019 +11270929 +25003 +7628455 +19335751 +1574922 +15849908 +18606994 +12744826 +2915127 +14148601 +3875225 +4755370 +3129429 +2940031 +14043744 +16807384 +8620665 +19269560 +16172999 +9784579 +2953793 +9146917 +20406605 +11434768 +18234096 +13380523 +19089993 +11814875 +503414 +4985400 +4769132 +8587242 +20118903 +1615554 +660699 +14950103 +14424506 +13452612 +4921175 +4026613 +226853 +20495733 +18507380 +10492364 +7811299 +12137966 +15035954 +19681124 +8287744 +3796582 +941847 +15277781 +9423477 +20540953 +2865976 +9101697 +11930873 +5428421 +1732863 +16064865 +1362587 +7553089 +15520263 +12571812 +11188354 +6251550 +6575951 +13232412 +2703447 +5619785 +8760256 +3507570 +5361575 +13480792 +21428306 +13486690 +5493302 +2111004 +1096512 +5987441 +5519516 +1710581 +13202921 +14508392 +20801785 +15910856 +15823693 +10943905 +6732582 +17690805 +3464316 +3021295 +20086135 +15625120 +4263852 +13162289 +5938944 +19350169 +14493319 +9238011 +8088515 +1540844 +7921399 +18743309 +1024422 +7410876 +18034212 +2923647 +12517418 +15102801 +1191538 +1569679 +14058162 +20105796 +15568104 +17629857 +11989855 +11493750 +15937070 +2034983 +9837008 +12466955 +13908085 +9179684 +16979743 +3328658 +11040243 +2981974 +10393406 +6731926 +3469559 +6747655 +3132706 +3025227 +2346277 +12325398 +18907803 +19948510 +3651749 +19660808 +19053948 +73499 +2010079 +8781227 +10734191 +5007027 +3534440 +573537 +17617405 +16144818 +3484632 +8385392 +13008935 +19835789 +12622930 +15336108 +12077673 +1831167 +12136000 +15591042 +15142122 +1998938 +6916082 +18264898 +20116282 +4499780 +14123697 +9257017 +10845602 +7688747 +6494687 +5905521 +10573629 +5974989 +12386346 +6488133 +21369979 +13168187 +5480850 +12417148 +3192343 +9861911 +890074 +11041554 +14050953 +8805476 +12050148 +11009441 +20714622 +13444748 +5982853 +18110889 +16812627 +20632703 +5229848 +593853 +722958 +14484144 +1588029 +11054005 +20610421 +16480361 +1757112 +19963583 +10801038 +9954316 +20350244 +14493319 +13401494 +18799669 +18245893 +3589490 +15421960 +8211722 +9772783 +10512025 +16806073 +16165134 +14564097 +15918065 +10578872 +11626132 +13159667 +18599785 +18074845 +17047900 +11691668 +5162346 +10787275 +12640625 +9644988 +17217638 +12115028 +9628604 +18994966 +16483 +17288416 +3250670 +14603419 +7635008 +3253947 +20941376 +7128417 +19143076 +10419620 +19378350 +10949148 +5292107 +9682343 +17636411 +12473509 +15554997 +9085313 +5396964 +11965607 +1628006 +6161766 +13436228 +8040674 +6221403 +4072488 +14201030 +19445851 +3761848 +19738141 +18217712 +13270423 +344162 +1413704 +12670771 +5993994 +1690920 +13394285 +515210 +13257316 +5479539 +4022681 +1214476 +7382696 +13339235 +8602315 +13768494 +9496877 +4138023 +17476504 +17874305 +2846970 +14177437 +17295625 +13872040 +8898536 +8224174 +15543201 +5537866 +12814294 +9111527 +19472721 +12264450 +15479631 +19524494 +15758813 +14689926 +6040525 +10421586 +7903049 +6222059 +3272297 +3624224 +7373521 +11563873 +2704758 +7646805 +14053574 +8468622 +20757876 +6082467 +10822664 +366444 +8394567 +15317102 +7841446 +4309727 +18821296 +2869252 +11042209 +8593140 +15193895 +5254752 +14824929 +8090481 +3503638 +438533 +832403 +21350319 +5457257 +2628081 +21325415 +4219288 +19646391 +20377769 +5439562 +14991390 +1221685 +2145738 +11088739 +8996840 +8368353 +11579602 +2446547 +4174723 +8922129 +5050936 +4626264 +17008579 +10825286 +12057357 +16138920 +16451525 +9749190 +5114505 +15342661 +3895541 +9580763 +2061197 +21293958 +15838767 +17105572 +9520470 +8347381 +6969165 +8886085 +6838749 +21442724 +11626787 +7907637 +8751736 +12274935 +4495848 +10269543 +19542844 +971339 +8795645 +6888557 +2846970 +19042807 +1683712 +12281489 +1987142 +8755669 +14815099 +1791845 +19601826 +15138190 +1238724 +12932914 +6195844 +8258908 +16908965 +11567150 +17347398 +15593663 +8813995 +14807235 +8732076 +9481149 +15694588 +6934432 +15895783 +14744320 +8937202 +11388237 +16137609 +10324593 +7816542 +5423178 +4683280 +4099357 +18781319 +19023801 +12006239 +5067320 +3480700 +18778043 +14663056 +14363558 +5031930 +4191763 +3367979 +16991540 +14457929 +3045543 +10342943 +9829799 +7452819 +6731926 +16078627 +4854984 +12561982 +4620366 +9991672 +194741 +18175114 +8060335 +17726850 +8261529 +8917542 +8327720 +4525995 +4742918 +3251981 +16816559 +4288100 +16549174 +17810080 +2937409 +18658112 +19211234 +2067751 +6870862 +14303265 +12160248 +12475475 +6414078 +13678055 +6810569 +3940106 +8343449 +6151935 +16692041 +1688299 +7954167 +18392693 +20786056 +9941865 +8029533 +6446846 +10787275 +12398143 +20073683 +15800756 +7536049 +777353 +2833863 +14153188 +7032080 +21360804 +4543034 +14982870 +20436751 +3970252 +12944055 +4025957 +18160041 +7568817 +15743740 +7560953 +6855789 +2683131 +11782762 +7897151 +6473060 +18102370 +3120254 +2012701 +5872098 +8276603 +8972592 +16110084 +7737244 +11175246 +2855490 +6973098 +5081737 +17444391 +7133660 +21222524 +70878 +13257316 +10116190 +6493376 +14838037 +4243536 +4318247 +10709288 +11738853 +10439936 +4301207 +13136730 +16325041 +11448530 +20599280 +16035374 +16880129 +3549513 +19924917 +5651898 +19692266 +19098512 +19976035 +3352906 +5721366 +12257896 +5436286 +8918197 +17495509 +19745349 +6757485 +13841894 +14525431 +6716198 +6848580 +15509777 +5250164 +21221869 +17257614 +16826390 +7896496 +2931511 +10447800 +6586437 +4668863 +19881008 +6800083 +12535768 +21473526 +21243495 +2945274 +7673674 +3679929 +8732731 +18584057 +19433400 +6654594 +15275160 +12827401 +7547190 +6510416 +20479349 +11629409 +10554623 +131826 +7574060 +4077075 +19388180 +550599 +12170734 +13536498 +13575164 +16935179 +2455722 +8793024 +5027998 +11799802 +20980697 +18228198 +9567000 +10590668 +19641803 +4804521 +5901589 +12679291 +11283380 +15225352 +16962704 +7752317 +12471543 +10710598 +8235970 +4323489 +14323581 +133792 +17154068 +9302236 +14282949 +11810287 +14944860 +15654611 +2134597 +9287818 +876312 +1510697 +19042151 +17565632 +2091999 +19247934 +11104468 +6758141 +6547116 +12821503 +4244191 +14371422 +17621338 +203260 +21262501 +10261023 +223576 +1532979 +10186313 +6912805 +14343242 +6220092 +20787367 +5011614 +5208877 +3854254 +17914937 +19253832 +18460194 +7093028 +19515319 +10577561 +8850695 +5478228 +12388312 +12717301 +10869195 +14583103 +11438700 +99058 +11618923 +9106940 +16117293 +21187135 +15155885 +11701498 +15060203 +15461936 +3698934 +18766246 +7376142 +9932690 +5742993 +13527978 +19785326 +5989407 +19434055 +5330118 +2159501 +16283754 +1249865 +1862624 +10168618 +13404771 +11917111 +3573106 +20710035 +13818956 +20963003 +12888350 +3575727 +15892506 +20173298 +18641728 +3048165 +15463247 +11765068 +12765142 +15373463 +11057282 +6170285 +21101938 +17090498 +7465926 +3242806 +12137310 +16062243 +15675583 +5898312 +9100386 +7748385 +14921267 +18516555 +11523241 +9206554 +3703522 +14695824 +8782538 +10416998 +19639182 +19964239 +13811748 +15412785 +18764935 +14851144 +12973546 +12815605 +9556515 +18694812 +17974575 +5304559 +10158788 +16618641 +8439786 +2047435 +9353354 +4165548 +15455383 +17717675 +15138845 +5289486 +5838019 +3606529 +6385242 +16074695 +10725672 +12145830 +290423 +9055167 +7919433 +4959186 +8142254 +14923888 +1568369 +13777669 +6227301 +8492870 +1899979 +21390295 +16495434 +2227002 +5000473 +14260012 +15813208 +9799652 +18932051 +3481356 +4631507 +3816898 +21452554 +14733835 +18330434 +2598590 +2993115 +15703108 +4039720 +2150326 +1635215 +17860543 +11914489 +17061007 +4576457 +20405949 +912356 +10880336 +9360563 +11804389 +8671127 +1186951 +11998375 +18837025 +7031424 +12531835 +502758 +10579527 +20999703 +12143209 +134448 +12296562 +4484052 +16967291 +12664873 +445742 +7659912 +13013523 +3318172 +19673260 +444432 +4430968 +13931678 +7102858 +15786993 +5081737 +19121450 +1021801 +20206065 +10859364 +12006239 +4506989 +3473491 +1746626 +722303 +9314688 +17007923 +11865337 +15706385 +8905090 +8632461 +15852529 +2279431 +12014759 +20765085 +13422465 +20616974 +14495285 +19896082 +17498130 +4868091 +5246887 +10305588 +5642068 +18910425 +6931810 +524385 +12632760 +2800440 +12535768 +3050786 +15872190 +11839778 +11729678 +895317 +6235166 +6726683 +11072355 +18519177 +3420407 +3451865 +5761343 +15982290 +381517 +6475682 +250446 +1574922 +3925688 +18451019 +13979519 +17315941 +5738405 +1000174 +19195505 +6052321 +7969240 +15381327 +4811730 +9103008 +2053333 +9537509 +5921250 +15994742 +3442690 +17233366 +13722619 +1129935 +19438642 +21021329 +13504385 +5801975 +9852081 +8518429 +1027699 +5830810 +18331089 +10610984 +10185657 +3059306 +18680394 +6821710 +2302369 +16555727 +19096546 +1849517 +15009085 +3731047 +11586155 +8194683 +13037116 +10007400 +8833656 +2658227 +10669966 +18882244 +13505696 +21124876 +15565483 +15781095 +11918421 +8441753 +20097276 +16714979 +8851351 +17300868 +19413739 +16791000 +2178506 +7874869 +3195620 +17611507 +21453210 +13898910 +7695301 +2709345 +283869 +12851650 +3221834 +20062542 +14651915 +8238592 +4308416 +4606604 +12761866 +5215430 +5941566 +15179478 +19559228 +1017214 +4219943 +3433515 +5909453 +15025469 +5480850 +3889643 +19046739 +759658 +3084865 +12987308 +498826 +8234660 +19174534 +16820491 +16946975 +9468042 +18797703 +15229940 +8108176 +13272389 +8458136 +8013149 +13313021 +10968154 +19105066 +5676802 +2351520 +14089619 +6462575 +9022399 +14561476 +4877921 +12952575 +19982589 +10896720 +17688184 +1327197 +6526800 +14102071 +317292 +4936904 +12898835 +6167664 +16958116 +4733087 +15895127 +7851931 +12304427 +6128998 +19079507 +2730317 +20626805 +5012925 +7119242 +1702717 +17878237 +15364288 +15929206 +17788454 +21463695 +19579544 +5219362 +10933420 +813397 +13958547 +3882434 +2138529 +10122743 +10451077 +73499 +8620010 +20489180 +16796243 +3466938 +20783435 +13143283 +6475682 +9241943 +16318488 +4271716 +7988246 +12102577 +17458154 +4785516 +2748011 +14638153 +14891120 +15026779 +18802291 +6532698 +609581 +14822963 +2304990 +9249152 +19080818 +5921250 +4267129 +12369307 +6568087 +2799129 +6812535 +3598665 +15188653 +7403667 +12369962 +4514854 +11719848 +14137460 +20673990 +13412635 +19535635 +16224772 +1605724 +3552790 +8423403 +16817870 +4143266 +7024215 +34833 +15988843 +15541235 +3015397 +8449617 +19904601 +11645137 +5786246 +4449318 +388726 +5735128 +6712921 +16891925 +1489726 +21411267 +15366254 +1432054 +20605178 +11670041 +4324145 +19499591 +11118230 +14744976 +2679199 +14151878 +20633358 +10515957 +14093551 +4908723 +17199288 +4295964 +4352980 +9651542 +18901905 +16533445 +20838485 +294355 +14798715 +11324668 +1652254 +16368950 +13392974 +625310 +2544195 +13066607 +7269319 +13442782 +12837887 +18862584 +18301598 +16589150 +2586138 +7468547 +12038352 +13145249 +16412204 +16279822 +17482402 +18661389 +11369232 +1970103 +4655100 +12397487 +5895691 +8346726 +6471094 +14611283 +971994 +8276603 +15847286 +635796 +4338563 +16256229 +15724734 +17506650 +5424489 +5247543 +16515095 +20618285 +17094431 +9604356 +7692680 +10899997 +10399959 +12124203 +20153637 +11476711 +8751081 +18542769 +12794634 +13337269 +17386064 +3386329 +16162513 +8781883 +11594020 +1662740 +10388818 +5963848 +3169406 +8829724 +13220616 +14438269 +534215 +6466507 +5691875 +2403949 +10850845 +12314912 +20907297 +8844797 +6939674 +21140604 +2015978 +3206761 +7323058 +14260012 +12546909 +19433400 +20407260 +11549455 +18635175 +6670978 +1131246 +188187 +19578889 +9350733 +587299 +14602763 +3963698 +11609748 +12692398 +8586586 +13864176 +15785027 +20547506 +8815306 +9114149 +12071119 +4252711 +18922221 +7426605 +1068987 +4797312 +13044980 +20549472 +5468398 +5796732 +3396815 +4554830 +17852679 +6862998 +5372716 +10157477 +14144013 +7425949 +13603344 +21011499 +1148940 +17108848 +5731196 +9492945 +12973546 +4737675 +1428122 +20027808 +3297856 +9460177 +154108 +14904228 +20718555 +3943382 +18447743 +1308192 +12857548 +12286732 +7300121 +2711967 +11524552 +8196649 +20727074 +6814501 +1664706 +10171895 +8070821 +11504236 +11645793 +6601510 +9160679 +395935 +6788942 +20165433 +17500752 +12366030 +16309968 +8858560 +11435423 +7789017 +11165416 +20398085 +19747971 +18012586 +5911419 +18171182 +12994517 +1612278 +9445104 +10224323 +2401983 +1335717 +18570294 +6831540 +8794990 +3791340 +1366519 +8633117 +4212734 +9910408 +21368013 +1871799 +4061347 +18869137 +20025842 +12383069 +4449973 +4010229 +9754433 +1593928 +6987515 +12949953 +1770219 +21258569 +18948435 +19429467 +12995828 +2166054 +13388387 +2704102 +13108549 +1573612 +16306691 +10868539 +5680734 +5417936 +4766511 +18202639 +18599785 +2692961 +19306260 +20123490 +4435555 +7858485 +2756531 +4022025 +5759377 +18534905 +5004405 +3367979 +6271866 +13839928 +8139633 +2193579 +16011125 +2085445 +11516687 +4712116 +4773720 +8466656 +17705223 +15723424 +17268100 +11441321 +533560 +10323282 +19711926 +19082128 +11582878 +3644540 +4674105 +14942238 +12419769 +19981933 +11227020 +7642872 +18421528 +7596997 +7405633 +21115046 +12624896 +13946751 +709196 +2001560 +719681 +1927504 +1508076 +18019139 +9203277 +8405053 +11826671 +15121806 +11270929 +4165548 +7961376 +1182363 +11962330 +6227301 +3501016 +9933345 +19434710 +16387300 +10890822 +4219943 +5033896 +14838037 +9577486 +17190768 +8532192 +12212677 +18049286 +3288025 +18762314 +2344967 +12742860 +19791880 +755726 +12387657 +5870132 +17494198 +268796 +6669012 +3667477 +11587466 +9608943 +12725166 +6794841 +18722337 +19561194 +11147721 +10614261 +15914788 +5762653 +631864 +16745125 +15934449 +16614709 +16085836 +13626281 +20923681 +3711386 +17266789 +1917674 +13314987 +12850339 +5623062 +980514 +3485288 +11523896 +7636974 +4902170 +14044399 +13911362 +3179236 +17587914 +20204755 +15492738 +16975811 +6517625 +5282932 +11758514 +741964 +12074396 +478510 +21154367 +3254602 +15824349 +10265611 +191464 +19683091 +19395389 +14675508 +357269 +17458809 +1757112 +14227899 +3787407 +2458999 +13283530 +8135045 +2075615 +21466972 +9975943 +396590 +12889660 +7650737 +8337551 +10295757 +18945159 +9268158 +13971655 +10131918 +17919525 +21132085 +3733668 +2908574 +17548593 +2010735 +15810586 +12489237 +14153844 +6151280 +4784861 +5685321 +3592766 +2791265 +9979875 +12680601 +19931471 +20519981 +14971729 +14307853 +14611283 +18545391 +3606529 +12899491 +901871 +14363558 +19920330 +5543764 +18713818 +20204099 +7142180 +18783285 +972649 +17104261 +6276453 +9473940 +20033051 +12905389 +17001370 +5604057 +7505247 +5003095 +15476354 +12601959 +5788868 +1516596 +11618268 +15996708 +1728931 +7612071 +17667213 +13975587 +14154499 +1792501 +3875881 +2674611 +1103721 +2162777 +13794053 +19564471 +794392 +11265686 +21056063 +17421454 +7730690 +3911270 +790460 +17853334 +19468789 +4299241 +12314257 +16226738 +13133453 +8840865 +14607351 +1059156 +8041329 +15717526 +5796732 +10697491 +16462011 +3482666 +14874737 +10519889 +17405725 +12380448 +11241 +7412842 +13166221 +20358108 +19200092 +12957817 +2857456 +3660268 +18935328 +14377976 +18569639 +2843038 +14670265 +15655922 +15441620 +4276959 +8758290 +7222133 +18964819 +16306691 +11619578 +12522660 +20170676 +21301822 +5732507 +5449393 +549944 +10966843 +3453831 +18731512 +6836128 +884831 +16804763 +1051292 +13270423 +16923382 +4308416 +680360 +6872173 +13896289 +21043612 +18654180 +11852886 +19757146 +14240351 +1903256 +16262127 +14753495 +5962537 +6551048 +10910482 +10608363 +19312159 +13967067 +17770759 +10957013 +17260236 +9589283 +17247784 +17467329 +5093534 +384794 +16593738 +20557992 +7244415 +1148940 +18534250 +10298379 +5068630 +9100386 +3532474 +10837082 +18787873 +18449053 +6878726 +2124111 +12132068 +8496147 +17488955 +11469502 +17646241 +21369324 +15820417 +2466208 +10887545 +5251475 +6634933 +15620533 +17359195 +11651036 +20424299 +16424000 +1890804 +14560821 +3649782 +12579021 +2833863 +4459804 +1113551 +3487909 +17837605 +11567150 +13731139 +1597204 +17667868 +2631358 +20932856 +10830529 +2854834 +14323581 +1930781 +8418160 +7199196 +16555727 +15580556 +8642947 +5855059 +19116862 +1281322 +18583402 +18576193 +840922 +4883164 +7319126 +770144 +2901365 +19599205 +20805062 +6222059 +8410295 +17048556 +5534589 +20852247 +14315062 +2661504 +10069004 +15800756 +3691725 +4864159 +5427111 +5750202 +9679722 +4070522 +14894397 +16527547 +608926 +11537003 +8988976 +5604057 +13815024 +3476113 +19913776 +4598739 +9982497 +6364926 +17147514 +12013448 +4356913 +17388030 +19971448 +12673392 +11096604 +12993207 +10048688 +17179627 +13510939 +8663919 +12495791 +3923722 +11841744 +14880635 diff --git a/2ano1/AED/aula11/aleatorios05000.txt b/2ano1/AED/aula11/aleatorios05000.txt new file mode 100644 index 0000000..79adecf --- /dev/null +++ b/2ano1/AED/aula11/aleatorios05000.txt @@ -0,0 +1,5000 @@ +9527024 +13392319 +4476843 +13022042 +18788528 +9110217 +21181237 +7414153 +13038426 +18962853 +2955759 +17734059 +17378855 +74155 +13344478 +16391888 +1259696 +8245801 +3228388 +21364081 +8992908 +13101341 +3019329 +5472330 +5105330 +10384886 +3178581 +10553313 +6951471 +2611042 +14963210 +119374 +14032603 +9782613 +19479930 +4144577 +5807873 +3480700 +17776657 +3685827 +11354159 +11953155 +18899939 +1597860 +7269319 +10335079 +6862342 +6221403 +12244134 +15418683 +2599245 +9241943 +5853748 +20581585 +4176689 +6701124 +18517866 +18504103 +7226721 +15530749 +20176574 +4964429 +17712432 +5727919 +19055914 +18081398 +1316712 +1192849 +19552019 +20392187 +3663545 +11656278 +14378631 +253723 +20600590 +5753478 +3601941 +14062094 +3078967 +17188147 +964130 +8895915 +5349123 +14203651 +20120214 +6083778 +2021220 +10865263 +1189572 +12856237 +5474952 +7416119 +13831408 +6343955 +9164611 +1983865 +10069659 +1341615 +1770874 +4507645 +21419131 +9224904 +7222133 +15979013 +9094488 +6813846 +9006670 +11248646 +4179966 +1739417 +14435647 +17336257 +4229773 +12464334 +9909752 +3372566 +5472986 +6564810 +19899358 +17717675 +2177851 +1960928 +20681855 +9200001 +10213182 +9648920 +7465926 +4242880 +10798416 +1134522 +8872322 +12415182 +319258 +8614767 +3816243 +10032304 +20734283 +4248779 +7212303 +18591921 +12846407 +10156166 +358580 +4909379 +11204082 +21055408 +15385260 +6281696 +7529496 +19386869 +6666391 +14261978 +1418292 +8429956 +11854196 +20383012 +16186106 +21134051 +20694962 +15110665 +18792460 +8699308 +11322702 +21231044 +15629052 +17601021 +1692231 +17393929 +5411382 +743274 +17508616 +4802555 +18009309 +15032678 +17580705 +8350003 +6352475 +741308 +74810 +7500005 +13522735 +2320063 +8485661 +17699325 +17098363 +4545655 +3092729 +16981054 +1702717 +7460028 +3915857 +2968211 +5432353 +7893219 +19970137 +3780854 +3914547 +17106227 +20506219 +5940255 +437878 +18574227 +21384397 +9313377 +14116489 +16918795 +5394343 +401178 +12392244 +17588570 +7374176 +11060559 +16727431 +2386254 +18505414 +11006164 +19758457 +19630007 +19170601 +15942313 +7180190 +3066515 +9499499 +9343524 +1822647 +18141036 +3383708 +16777238 +15155885 +12880485 +5423178 +16696629 +16956150 +8211722 +996242 +5117782 +1655531 +19721101 +400523 +5478228 +4393613 +1430744 +16925348 +18981203 +16456113 +5540487 +19806953 +7357792 +18190843 +11200805 +21107181 +10730259 +14651915 +2800440 +15325622 +20065164 +12898180 +8535469 +16701872 +7544569 +19474032 +14030637 +20389565 +13514215 +18459539 +20119558 +3599975 +6146037 +8628529 +9226215 +7657946 +13772426 +17153413 +3569174 +9040749 +9793099 +18061737 +1091924 +6879382 +7179535 +16490847 +15292199 +13541740 +14267876 +12189084 +4863504 +10683729 +8211722 +17419488 +5212809 +8361799 +7293567 +14503804 +11545523 +11912523 +11916455 +6693916 +11478021 +12695019 +2841072 +4653134 +17525655 +685603 +2722452 +16346668 +3500361 +7654013 +2962313 +11462293 +3181858 +7096305 +19619521 +14054230 +17606264 +1785947 +15990809 +15379361 +10812834 +17745200 +20008148 +10924900 +5452014 +13369382 +2272877 +3922411 +21242185 +2332515 +14676819 +181633 +17986371 +12453193 +5105986 +8336240 +15642160 +7359758 +1443851 +5900934 +16285720 +15895783 +15942313 +14090274 +7829649 +16288997 +19601171 +5581119 +17939841 +13295982 +3322104 +2900054 +4085595 +5666971 +3033092 +5729885 +20624839 +2978697 +19665396 +18917634 +19343616 +3923066 +11818152 +12749414 +3537061 +9192792 +20831931 +1375694 +20902710 +2540263 +4822871 +6518935 +6657871 +16092390 +21223835 +6468473 +14412054 +20223760 +12247410 +2548783 +8705206 +11776209 +4619711 +2418367 +14425817 +19437332 +20959071 +9451658 +11771621 +13538464 +20219173 +10820698 +6904285 +18890764 +2088067 +10574939 +10538895 +9902543 +12945366 +14456619 +11042209 +15445552 +16473152 +12733685 +17863820 +12715335 +10759750 +18108923 +4185864 +16074695 +11403966 +11734921 +17884136 +4550243 +3279506 +4689834 +10506127 +8080651 +17337568 +3537061 +18449053 +17643620 +5617164 +1426156 +9808172 +17902486 +14431715 +19563160 +9596492 +766867 +6786321 +19882319 +10097840 +804878 +5781003 +14377976 +21346387 +10908516 +17437838 +20139874 +4712771 +12423701 +18166595 +13747523 +1651599 +21088831 +2159501 +6512382 +7306019 +17927389 +8866424 +7683505 +8409640 +10035581 +18477889 +18568328 +14345208 +4506989 +620723 +17971954 +6879382 +11592053 +4205525 +17467984 +2514704 +10651616 +15281713 +18064359 +2639877 +16485604 +7709063 +11202116 +3960422 +7787706 +20881083 +5969091 +16173654 +5634203 +2103140 +10721084 +1685022 +20818824 +20968901 +15414751 +6445535 +7602240 +13508317 +10222357 +10160099 +15137535 +7048464 +836335 +1177121 +8429956 +5039139 +13071194 +19041496 +1057846 +10335734 +4230429 +4322834 +14457929 +10436004 +17452911 +14725970 +12090780 +16616020 +2561890 +2862699 +10472704 +1941267 +4718670 +15332176 +4032 +1891460 +15558929 +8494181 +6427185 +7826372 +16302759 +11729023 +11736232 +2934133 +1443851 +5371405 +954299 +7112689 +18586678 +7885354 +3925032 +7977760 +13043014 +18639762 +11981991 +9517193 +6665080 +10214493 +3716629 +11164761 +12988619 +3120254 +2663470 +19966860 +3419752 +8869701 +14564097 +15980979 +13720653 +3110424 +3264433 +16537377 +18337643 +15408852 +10602464 +9170509 +5433009 +3487254 +20983319 +6237132 +9002083 +6505173 +19614933 +12491203 +15545167 +8980456 +16884716 +8313958 +17073459 +9933345 +15408197 +19045428 +20539642 +8018392 +14362247 +8034121 +6306600 +10696836 +6141450 +7458717 +10806936 +14415987 +17015132 +9782613 +3897507 +20909919 +17969987 +12425668 +15221420 +15116563 +15108699 +17683596 +8292331 +12767764 +16948941 +15407542 +21032471 +17251061 +16190038 +8172401 +7056328 +15272538 +5415314 +20549472 +3809690 +1246588 +13968378 +1883595 +18899284 +9620740 +13684608 +15168336 +3027849 +16202490 +2826654 +20114971 +9539475 +9824556 +8532192 +8090481 +7054362 +9521125 +16491502 +11763102 +3523299 +6419976 +19105066 +16984986 +12628173 +13551571 +19069021 +8427990 +5453325 +9501465 +7821785 +4693111 +1118138 +2061853 +13505696 +13768494 +9808827 +19278080 +1652910 +779319 +3368634 +17829086 +2415090 +13650530 +13438849 +10051309 +11339741 +280592 +16901756 +13005003 +16013747 +21195654 +9275367 +13513560 +17722263 +4729155 +11707396 +3549513 +13885803 +6400971 +4197005 +721648 +3696313 +12166146 +3137949 +863860 +4190452 +10977984 +18110234 +13711478 +10337045 +20584206 +20119558 +21271020 +15221420 +18915012 +21283472 +9892058 +2426886 +1836410 +11614336 +1538878 +5229193 +12265105 +3218558 +20506219 +15844665 +17820566 +13472928 +7004555 +11154275 +18874380 +1257730 +387415 +6990137 +6484201 +17319218 +2147049 +20863388 +1738106 +3019329 +13267801 +5538521 +10751886 +13921192 +21122910 +19879698 +19472066 +1851483 +1006728 +12187118 +12846407 +17766827 +8137012 +19313469 +13664948 +12014759 +17210429 +6454055 +18263587 +8429956 +14820997 +580746 +17667213 +645626 +1835754 +112821 +2835174 +3464972 +3021295 +13134108 +13736381 +15690656 +20176574 +7416119 +2072994 +5143341 +4598739 +17171763 +18346818 +15861704 +21357528 +17997512 +20649087 +14289503 +15483563 +8211722 +9126601 +3937484 +18270141 +15411474 +19736830 +3860807 +10520545 +15496015 +15535336 +12412560 +1758422 +19832512 +3657647 +2580240 +14691237 +17183559 +8223519 +5944843 +18545391 +4586943 +12588196 +9456245 +15952143 +8549231 +16551795 +1222340 +4889718 +8642947 +21307720 +18362546 +20352865 +8440442 +1842963 +17726850 +20209342 +15566138 +1693542 +2350210 +13192435 +3999743 +1747281 +9698727 +202605 +6953437 +20113005 +8021013 +19504178 +5440873 +8859870 +15541235 +17313975 +18551944 +4638061 +16357809 +6158489 +17610852 +13084957 +9255706 +17753720 +5792144 +19608380 +20993804 +12139277 +14238385 +14469071 +12263139 +1432710 +12647178 +16735950 +1785292 +13069228 +762935 +6506483 +14634221 +570260 +21059340 +7663188 +8447651 +13899565 +15427202 +15819106 +6380000 +7301431 +17796973 +13712133 +10650306 +4707529 +4200938 +4932316 +11424937 +604994 +21048199 +7587167 +8495492 +15804033 +20514083 +3221179 +16890615 +8124560 +2318752 +18815398 +16830977 +14475624 +19654255 +15054304 +12439430 +9620740 +4295309 +16393199 +9296993 +8411606 +20914506 +5784935 +10825941 +4158995 +3690415 +19598550 +15385915 +12234303 +14735145 +8540056 +6707678 +4828114 +12997794 +7479689 +5429732 +5976955 +1373728 +8201892 +2569754 +3925032 +13128866 +13557469 +14503149 +14356349 +10785964 +10618848 +15849252 +15991465 +17589225 +19213855 +11308939 +6189946 +17816634 +17854645 +2857456 +5415969 +10483845 +10810868 +5970401 +515865 +10399959 +16867022 +121341 +20740181 +16059622 +7294223 +10186968 +14330135 +17492888 +3077000 +10723050 +20255873 +20609110 +15312515 +72189 +2271567 +10843636 +17365093 +688880 +11677250 +4427691 +19233516 +10523822 +3004256 +2722452 +3212004 +5444150 +11959709 +19411773 +6060185 +17536141 +19848241 +17478470 +20858801 +2723763 +20538331 +11637928 +3766436 +16460045 +728856 +1369140 +2447202 +2915783 +5992684 +11698877 +4204214 +17057731 +3350940 +14233142 +14493974 +13248141 +13502419 +5606023 +6810569 +19761733 +8716347 +15838111 +18399902 +4645925 +6555635 +1645701 +11307629 +16093700 +5769207 +19974724 +9448381 +10135850 +1249865 +14018840 +2352176 +13244208 +3557377 +15020881 +18900594 +11177213 +20742147 +6222059 +12030487 +18385484 +13866142 +16031442 +668564 +19955719 +20171331 +8903124 +2502908 +4193729 +4331354 +12143209 +10576906 +14035880 +18275384 +4186520 +19763699 +5905521 +15284990 +2563201 +12503655 +2545506 +6206330 +5948775 +17234677 +6311842 +10865918 +13762596 +20063198 +9150849 +20092033 +13934955 +14889810 +16705149 +1234137 +11985923 +15488806 +14756772 +12271003 +13505696 +14116489 +10192211 +6421287 +11713295 +10785964 +10277407 +15123117 +21021329 +11888930 +8011183 +12120271 +15014983 +14931097 +9129877 +17671800 +3056029 +6895110 +18212470 +3324725 +18005377 +14495940 +19469444 +5934357 +13054155 +19078196 +19971448 +11386271 +19990453 +10641131 +19110964 +16690731 +8535469 +15232561 +15009740 +2702792 +13819612 +5105986 +19025112 +11405932 +14594899 +19816128 +17278586 +17042002 +397246 +21096696 +679705 +21265778 +10904584 +2963624 +2374458 +18645005 +5880618 +8747149 +6383276 +4992609 +14678129 +18141691 +9964802 +18449709 +15661165 +224232 +17566288 +20727730 +15996052 +9631225 +12674048 +16459390 +18403834 +20554715 +7547190 +3311618 +1710581 +19979312 +2401327 +485064 +9823245 +11881066 +18451675 +5961226 +3514124 +2845659 +14900295 +1259040 +20616319 +7352549 +4604638 +4396234 +19840376 +14351106 +6718164 +10643752 +18234096 +17796318 +713128 +15033988 +4876611 +9817347 +13990660 +20643189 +4605293 +17710466 +13575819 +11859439 +10581493 +19009384 +13276321 +11403311 +9177063 +9099076 +2368560 +7037323 +9265536 +12669460 +21297890 +17062973 +20211964 +12833300 +11936771 +16102875 +19507455 +18699400 +4092148 +11755237 +4666241 +9006015 +8128492 +15091660 +19998317 +15543856 +3592766 +2299092 +16657307 +19563816 +16460700 +18473957 +16401718 +10789241 +9203933 +5467087 +7964653 +11078909 +5765275 +20180506 +3522643 +4338563 +3852288 +17199288 +6286939 +4223220 +10747298 +12477441 +16053724 +7957444 +12724510 +16714324 +17011200 +3385674 +21007567 +18262932 +10216459 +13814369 +4365432 +5514273 +13566644 +4141300 +1589340 +7935162 +5777726 +19399321 +9209176 +16865711 +16362397 +14134183 +2117558 +1480551 +16006538 +1430744 +4573180 +9852081 +2607765 +1492347 +10920313 +12191050 +1787913 +10565764 +17080668 +13068573 +12093402 +6980962 +5108607 +3792650 +219644 +355303 +13021387 +2569099 +19434710 +11881066 +3339143 +11327289 +19670639 +13218649 +6147348 +7981692 +2267635 +12565914 +13892356 +17758963 +1949131 +14771845 +17825809 +17298247 +12136000 +1123381 +6902974 +15792892 +1903256 +20742803 +18403178 +2459654 +11833880 +2348244 +18129239 +18702677 +4630852 +1092580 +101024 +1312779 +16083870 +16783791 +19177810 +20141840 +3077656 +12302460 +9648265 +19713892 +20149049 +20137253 +5170211 +10341632 +13889080 +20963003 +11801112 +11482609 +17030861 +19059191 +20658262 +5715468 +10049343 +19954408 +13236999 +621378 +17348709 +12980755 +16432520 +5998582 +6531387 +7726758 +17346088 +2211929 +7482965 +12312291 +9663338 +7750351 +19778773 +2479315 +3172027 +21156988 +17771414 +5647310 +10496297 +9810138 +8398499 +5330118 +14416642 +21394228 +121341 +4806487 +15762745 +10693559 +9810793 +19865935 +14904228 +15905613 +8951620 +17409657 +5372716 +19413739 +410353 +20683165 +4427036 +19825958 +19747316 +11389548 +5818359 +15303995 +16113361 +21250049 +8428645 +16970568 +7996110 +306807 +6031350 +7153321 +17885446 +4871368 +5944843 +4213389 +9333038 +13231101 +4784205 +19869867 +17656071 +19392767 +10554623 +6332814 +10576250 +13625626 +17816634 +8665229 +13641355 +6160455 +3690415 +18382207 +15238460 +3451865 +1753835 +1410428 +14252803 +7468547 +20956449 +4434245 +4354291 +11838468 +16925348 +18188221 +264208 +885487 +4908068 +17114091 +7362380 +11287312 +6329537 +4266473 +18511312 +4698354 +4115741 +8439786 +3877191 +19084094 +6772558 +12721889 +20580930 +3506915 +9836352 +19152251 +21412578 +18869793 +19097201 +13931678 +4828770 +16084525 +10121432 +16394509 +21049510 +3002945 +9943831 +19137834 +10758439 +4870712 +3656991 +2514049 +527662 +6865619 +2095931 +2687063 +8712415 +13621039 +16290308 +8433888 +14130906 +6273832 +17187491 +9485736 +6995380 +17843504 +12865412 +14548369 +1974035 +104301 +21090797 +18185600 +11354814 +3399436 +5016202 +13891701 +8530881 +20445271 +841578 +11056627 +8625253 +15572692 +11319425 +2822722 +17292348 +5843918 +1295740 +14338655 +17477814 +6822365 +20136598 +6612651 +2859422 +10097840 +14149912 +1688299 +13008280 +20068440 +19557917 +11077598 +7195919 +16450215 +19966860 +4321523 +4330043 +20336481 +8561028 +15007774 +3818865 +1424846 +11413141 +19828580 +7480999 +18989723 +10850845 +10117500 +891385 +12085537 +19179121 +20310923 +21009533 +18114821 +5487403 +17368370 +18156109 +20494422 +11735577 +16891270 +4252055 +11277482 +10519234 +7864383 +2124767 +6340023 +12520694 +8793024 +8610835 +19169946 +18978582 +8969970 +1654876 +10034925 +5068630 +10268888 +10874438 +9840284 +1983865 +9095143 +2605799 +5966469 +12614410 +5048314 +6919358 +4134091 +430014 +4760612 +1410428 +3914547 +8587242 +112821 +717715 +1289187 +4609225 +18125962 +16901756 +13567299 +1589995 +6984894 +17511893 +3847700 +8319201 +20570444 +18925498 +982480 +15682792 +14971729 +12289353 +13044980 +1228238 +20019289 +9962181 +8799577 +8931304 +20774915 +17175695 +16140231 +6876760 +11367921 +2057920 +10695525 +9387433 +7099581 +12331296 +8648845 +15988188 +4747505 +17914282 +15488151 +17525000 +20586828 +14282294 +8517119 +8359833 +2797163 +8765499 +12860169 +18743964 +5463811 +16616675 +19297085 +20396119 +12822159 +11159518 +18408421 +20027153 +15695899 +19257764 +6742412 +570260 +7960065 +5779693 +3261156 +3381741 +11056627 +17474538 +17674421 +11169348 +9132499 +15171613 +8920163 +10816766 +10219081 +15054960 +11624166 +3230354 +8628529 +10878370 +17823843 +17257614 +21051476 +18683016 +6539907 +2178506 +14478246 +16541309 +9129222 +20887637 +5798043 +13526667 +1698785 +16977777 +876312 +20403983 +6446846 +7332233 +10016575 +5941566 +21409301 +16394509 +878278 +19352791 +10143059 +2422299 +4283513 +4421138 +340230 +15312515 +19238759 +1215787 +7489519 +20266358 +18495584 +3245427 +4390991 +13415257 +1629972 +15648713 +17709811 +14013597 +10420931 +11753271 +14017530 +970683 +10548070 +11479987 +125928 +1091269 +5369439 +406421 +144933 +10256436 +6621826 +20333860 +11947912 +19336407 +13060053 +21329347 +13508317 +19341650 +8417504 +20823412 +14410088 +21380465 +863205 +9422167 +8241213 +8876910 +7963997 +20168055 +14458585 +7944992 +9312067 +15641504 +1005417 +96437 +7075333 +9651542 +5106641 +13499142 +1859347 +13478171 +7321748 +9600424 +2672645 +8663263 +5111228 +8695376 +7236551 +8764188 +12799221 +6828264 +6998657 +4045618 +4701630 +20247353 +17527622 +1839686 +731478 +3060617 +16832943 +20981353 +10623436 +17263513 +7048464 +16828356 +14592933 +14255424 +17600366 +3285404 +18709885 +15011706 +7587822 +4750782 +19205991 +5099432 +905147 +18507380 +21348353 +9574209 +3804447 +7017007 +11556009 +7537360 +16958772 +14745631 +6889212 +1082094 +13841239 +20956449 +16176931 +5763964 +4209457 +9643022 +15435067 +19639182 +11561907 +18360580 +8060990 +17175695 +18933362 +2892845 +14769224 +3601286 +12534457 +9650231 +20786056 +4203559 +5811805 +20280776 +4460459 +2663470 +1637837 +3362736 +10369813 +3584247 +11417729 +10083422 +4538446 +18561775 +2938720 +11266996 +11716571 +614824 +3107802 +21326726 +14639463 +20257183 +12666839 +13217339 +7839480 +20837174 +1978622 +19657532 +8053126 +4752748 +10036236 +10586081 +5777071 +9665304 +14504460 +6544494 +3610461 +17642964 +2963624 +17960157 +18558498 +15338729 +20537676 +12314912 +672496 +4555486 +1307537 +14571962 +17638377 +9490324 +17684907 +5979576 +13442126 +8867735 +3530507 +5787557 +6131619 +11047452 +14682062 +1009349 +11317459 +7041910 +18259655 +1377004 +19566437 +19539567 +16712357 +13479482 +1521838 +4333320 +13366105 +17952948 +11212602 +15521574 +2673956 +1418947 +17779279 +4345772 +7317160 +19657532 +8530881 +6623137 +1767597 +117408 +15036610 +2736215 +2152292 +11867303 +3866050 +11865993 +11708707 +2422299 +13830753 +5084359 +15777163 +8726177 +8891327 +5708914 +16257540 +13512905 +382828 +4493882 +20309612 +3367324 +15097558 +15105422 +16174965 +991655 +11907280 +4830080 +1219063 +5242955 +10654893 +4495848 +9174442 +19453716 +20601246 +3691070 +8411606 +15712938 +10693559 +21179926 +4765855 +15617911 +2846315 +21009533 +5990718 +6317741 +15112631 +21257913 +9580108 +1219063 +364478 +1499556 +14613904 +7112033 +1277390 +20367283 +4633473 +13829442 +1517251 +20422333 +9567656 +4404754 +16046515 +10894098 +441155 +15947556 +7828994 +19602482 +4068556 +12988619 +2042192 +10704700 +19652944 +11514721 +6556946 +18565052 +17134407 +722958 +2416401 +7197885 +7212303 +14791506 +21102594 +6239753 +11928907 +9081381 +13965101 +11409864 +11631375 +447053 +3055374 +7150699 +19323300 +18679739 +3991879 +7431192 +14622424 +6654594 +16822457 +21430272 +17187491 +10766304 +5012270 +11880411 +10364570 +4651168 +8188785 +10483845 +16370916 +9918272 +8137667 +7218201 +12305737 +7197230 +15793547 +14169572 +9784579 +576814 +20199512 +6588403 +8948343 +7930574 +9480493 +12980755 +20803096 +18062393 +5449393 +13972310 +18965475 +9300926 +21245462 +7649426 +14765292 +6052321 +12478096 +8502701 +9411681 +10236120 +10432727 +15541235 +17169797 +20340414 +13910051 +17361161 +20629426 +17971954 +45319 +5307180 +9067618 +5784280 +17216327 +19560539 +3928964 +19613623 +11738198 +6020864 +7678917 +5431698 +17152757 +2735559 +16287031 +20808338 +14225933 +4247468 +10103082 +7262110 +4564005 +1141731 +20448547 +1201369 +13964446 +15602183 +14880635 +8360488 +10091941 +7495417 +20570444 +1424846 +8928027 +8662608 +14019496 +17347398 +10978639 +16336838 +18010620 +19500246 +20236212 +3367979 +19927539 +16548518 +1610312 +5665660 +2019254 +17296280 +8351969 +304840 +19857416 +12744171 +13067917 +7147423 +18272762 +15572692 +17447013 +20046158 +8207790 +4706873 +17241231 +7216235 +14608662 +19908533 +11073011 +16333561 +10762372 +17844814 +16169722 +1179742 +825849 +13739658 +418217 +6684085 +14981560 +12684534 +15954109 +7060260 +7163806 +18503448 +14197097 +12413871 +21090797 +10780066 +14087653 +17694738 +13249451 +6149314 +17530898 +1343581 +20687753 +8566270 +214401 +19948510 +19316091 +7599619 +16048481 +4985400 +10248572 +1262972 +13250762 +16603568 +1998283 +9153470 +1614244 +2196856 +18055184 +9468042 +18665321 +7994144 +12390278 +1891460 +18849477 +20259805 +15695899 +1061122 +13920537 +19263662 +8361144 +12299839 +8852006 +2426886 +14785608 +9060410 +18491652 +1468099 +935294 +6718819 +9935311 +270762 +5310457 +15945590 +12879830 +14526742 +20820135 +13233067 +6717508 +3646506 +14765947 +12462368 +19899358 +4844498 +12461057 +10016575 +7382696 +9565690 +8920163 +16161202 +6112614 +15109354 +20684476 +9639090 +5508375 +7846688 +20748046 +6718164 +11429525 +10226945 +4223220 +17207807 +19749282 +12407318 +13611864 +14272463 +12965026 +6592335 +6251550 +12667494 +18081398 +9340902 +15563517 +17163898 +17061663 +10766304 +16230670 +205882 +5805251 +15044474 +9367772 +14163019 +14407467 +3790029 +16964015 +17403104 +19585442 +8190751 +7752317 +13478171 +13005658 +14082410 +2132631 +18205916 +6069360 +14704999 +13221926 +2980008 +20139219 +21222524 +7246381 +16290308 +14571962 +2150326 +12776939 +9002083 +16280477 +12740239 +3698279 +16359775 +16640268 +13024008 +7522942 +7507869 +6851201 +641039 +20986596 +12550841 +18204605 +89228 +12755312 +9737393 +1500867 +19141766 +3182513 +10996989 +13360207 +7986279 +7039944 +214401 +6808603 +17717675 +949712 +12132723 +15992120 +13936921 +2092654 +6290871 +10934730 +14526087 +11904659 +17147514 +18920910 +7348617 +18700055 +20046158 +3161541 +16300138 +6206985 +15658543 +9424133 +7684160 +11644482 +8775329 +6865619 +5340603 +8511876 +19012005 +19649667 +20588794 +1320644 +14054230 +18528352 +15102801 +76121 +10371123 +18655491 +18176425 +4024647 +17276620 +3125497 +15186031 +6084434 +4860882 +11143134 +7900428 +18619446 +1137144 +10306898 +13758008 +3124186 +5027998 +20764430 +18210503 +5139409 +13805849 +3353561 +12341126 +11875168 +1928160 +951022 +990999 +5674180 +21038369 +2204720 +6233200 +9957593 +377585 +16863090 +15859083 +20970212 +18665977 +3680584 +9083347 +8514497 +3936173 +11263064 +9127256 +7830960 +18921566 +1028355 +15731943 +13377901 +2578274 +13307123 +3466282 +18787218 +17977196 +16889959 +10683729 +21121599 +5992028 +17164554 +11084807 +11590743 +9113493 +20840451 +739342 +7068780 +15145399 +2903331 +14016874 +15729977 +20047469 +10675209 +7358447 +12615066 +18007343 +13749489 +11516687 +11715916 +2626770 +21218592 +18766902 +9753122 +9426099 +10545448 +5714157 +17068216 +4370675 +17700636 +9160679 +15243047 +13697715 +18802291 +11428214 +13917260 +20583551 +17314630 +3554100 +3453831 +2440649 +9999536 +4244847 +18886176 +20944653 +9435274 +16456113 +4423759 +8428645 +11057938 +121341 +16060933 +260932 +18116787 +14710242 +601717 +5885205 +12485305 +8832345 +10766304 +10424863 +6210917 +11867303 +8798922 +8211067 +18787873 +11568461 +10855432 +1787913 +7655324 +14914713 +3772334 +18073534 +4938214 +5653209 +21425685 +10814145 +15484218 +16646822 +5547041 +1650944 +15106078 +8983733 +10008056 +6817778 +12113718 +12186462 +8368353 +15888574 +17117368 +2738836 +14022772 +20563890 +13043669 +18199362 +8966693 +16317833 +6556946 +5618475 +3962388 +17849402 +16613399 +8884119 +5303903 +11151654 +16916829 +442465 +17692771 +11995098 +10120777 +4978846 +8734042 +3320793 +14322271 +13759974 +7529496 +7224099 +10847568 +15123117 +5165623 +21092763 +20422333 +4866125 +1382247 +9144295 +13122967 +1382247 +15541235 +1049981 +12482028 +15203726 +19624764 +16447593 +13240276 +19252521 +19420292 +17351330 +8696031 +19802366 +5384512 +15286956 +4843187 +16751679 +20826688 +19755180 +16597015 +17622648 +4477498 +19289221 +9206554 +1273458 +20149705 +3822141 +16363708 +17211739 +15170958 +4881854 +11569771 +15842699 +20936788 +12010827 +496860 +3567207 +1687644 +21098662 +18260966 +10688316 +7161185 +8599038 +5446116 +15063479 +7030114 +1421569 +19872489 +18144968 +19810230 +14993356 +6333469 +8309370 +61703 +7807367 +10803659 +8119972 +10669966 +11500304 +18369755 +4863504 +15170958 +4950666 +757037 +3934207 +10185002 +13575164 +18421528 +4415895 +4722602 +2299747 +18175770 +7586512 +8085238 +438533 +8850695 +8021013 +5564080 +5490025 +19730276 +13588271 +19236792 +18170527 +8869701 +1070297 +18319293 +13406737 +6499930 +4020714 +12592784 +6319051 +16378781 +3373222 +7469203 +17932632 +3255258 +10688972 +3885056 +13737692 +4689834 +14545092 +759658 +6381966 +8207790 +8169779 +11417073 +9086624 +18578159 +5033241 +8751081 +9566345 +20611731 +2814202 +3803136 +16142852 +4581700 +17197977 +745896 +2221760 +17355918 +17062973 +11453118 +15569415 +19791224 +11382995 +1508076 +20869287 +7408255 +12014759 +15254188 +21164853 +3094695 +15317758 +8133079 +5186595 +13780290 +5963193 +20476072 +8480419 +10811523 +18500171 +6235821 +7134315 +4487329 +2333170 +15248290 +17911661 +14782331 +19597894 +21039679 +16223461 +8732731 +6210262 +6878726 +2786022 +14520188 +12100610 +10084732 +2211929 +10286582 +599096 +7177569 +2245352 +12466955 +15608736 +5582430 +3437447 +4615123 +11268962 +9724286 +16178242 +2668713 +2437372 +12495135 +3084865 +4999818 +2481281 +2027774 +11675939 +15820417 +20167399 +5933046 +1413704 +19138489 +11627443 +12589507 +18074845 +5938944 +16246399 +6404248 +4766511 +17683596 +7379419 +21059340 +9937277 +8150119 +8860526 +18154143 +17266134 +2108383 +8216965 +10666034 +7461339 +9253740 +2797163 +2409192 +13718687 +93160 +10373745 +12592784 +7779842 +3506915 +15366910 +14359626 +1105687 +9907131 +4359534 +13449990 +4839911 +18882900 +19108343 +9973977 +18327157 +1165980 +15646747 +5020134 +11970194 +6422598 +16028165 +9823245 +9789822 +14905538 +19189607 +4474221 +1228894 +708540 +7149389 +18639762 +2320063 +19382937 +6952782 +2111004 +17237954 +14589656 +7696612 +1236758 +5593571 +15520918 +15176201 +8416849 +14529363 +11750650 +536837 +709196 +1143697 +5451359 +3993845 +7174292 +19695542 +75466 +21157644 +12346369 +19957030 +17427352 +18920255 +7888631 +17052488 +9586006 +9103663 +21303788 +8005285 +15312515 +11413141 +4267129 +8787126 +19377694 +5698428 +10735502 +16581286 +14762670 +5725953 +10539550 +13362828 +5350434 +10848879 +4828770 +8774674 +19555296 +10742055 +3828695 +2185060 +1361276 +14334067 +17885446 +12227094 +14292124 +20396119 +8793679 +10751230 +2001560 +8308060 +16825079 +16876197 +13472273 +16775272 +2415745 +16260161 +7642217 +2477349 +4483396 +4233050 +16613399 +18858651 +4010229 +11181800 +18477889 +20500321 +8959485 +814053 +19744039 +5088946 +6859721 +15081829 +20519981 +13159012 +483098 +5415969 +18842923 +10432072 +9165922 +3238218 +6482235 +10450422 +14980249 +4967050 +5225916 +11364645 +15478320 +9736083 +10091286 +18653525 +11887619 +14542471 +17302179 +6827608 +8590519 +18497550 +3491841 +5986785 +3080933 +12687810 +12480718 +15959352 +20759187 +7325024 +1353412 +19797123 +1960928 +8274637 +10198109 +14092896 +3599975 +16098943 +6591680 +5785591 +7429226 +2671334 +12138621 +281248 +12044905 +2913817 +12468266 +16462666 +1285910 +19015937 +310083 +3087486 +15182754 +3544270 +18110234 +14269842 +2004836 +5330773 +12955851 +3156954 +21164197 +14425162 +14497251 +20978731 +3073724 +19486483 +19148319 +8798922 +783251 +7165117 +5353711 +12080950 +10659481 +8840210 +74155 +5404828 +17747166 +10164686 +19980623 +7129728 +8796956 +566983 +789805 +14920612 +7309296 +21124876 +10664723 +12449916 +2422954 +15511088 +2130665 +7684815 +19278735 +8138978 +21202863 +9474595 +9403817 +6195844 +20784746 +10220391 +2020565 +20837830 +3781509 +10194832 +1566403 +12259862 +8043296 +966096 +7887321 +3580315 +14346519 +7919433 +9470663 +17941807 +19669328 +1962238 +4059381 +19340994 +13372658 +16617331 +4382472 +5507719 +12643246 +1426156 +18924843 +3843113 +2181127 +5568012 +8416194 +11376441 +20398085 +7855863 +1236103 +16291618 +873035 +8500079 +3348974 +13124278 +19359344 +20922371 +14807235 +20348933 +18219678 +20662194 +3184479 +12445328 +2177195 +5049625 +17139650 +11388893 +13489312 +5952707 +11285346 +13429019 +21429617 +15990154 +16542620 +17586604 +554531 +14109280 +12404696 +3514779 +10527098 +7980381 +6446191 +17795007 +15089038 +21409301 +21088831 +1560504 +4583011 +8636394 +20519326 +12430255 +9291751 +10276752 +14649949 +1218408 +9638434 +17370991 +7927297 +11135270 +17730127 +8625908 +8416194 +2896777 +14150567 +13864831 +1189572 +1664051 +14483488 +3038334 +15545822 +5453980 +13910051 +12173355 +18285214 +7339442 +19926228 +4950666 +20270946 +580090 +7424639 +10145025 +21128153 +18353371 +6190601 +12147796 +7507214 +12807085 +4729155 +5944187 +16313900 +11644482 +9323863 +15897093 +5887171 +13362173 +6666391 +17262857 +18966785 +16416136 +18639107 +10759750 +15368876 +8495492 +19059846 +17314630 +8530881 +10536273 +8343449 +7091062 +12687155 +1652254 +15893161 +2363972 +5355677 +12894903 +4056759 +3275574 +13176051 +1268871 +1799710 +18988412 +10386852 +6650662 +12434187 +3591456 +17167831 +9787200 +2085445 +752449 +1219719 +15479631 +7154631 +17291693 +12761210 +15350526 +1739417 +15587110 +6002514 +10717807 +14235763 +17412934 +13484069 +7655980 +5247543 +460815 +18968096 +14452687 +17490922 +9647609 +2008769 +17967366 +2448513 +14124353 +15275160 +12035075 +6262691 +17998168 +16133022 +11492439 +12240857 +20100553 +757692 +17587914 +15100179 +8694720 +11962986 +18663355 +10858709 +15950833 +10664723 +13362828 +5061421 +10063761 +19688989 +11402655 +2420333 +14905538 +14448099 +20620251 +16131711 +20344346 +12136655 +18302253 +16998748 +8701929 +5776416 +1399287 +10947182 +4073143 +1487104 +6256792 +14741044 +19005451 +20062542 +20670058 +11107089 +20016012 +20571099 +1011315 +18154143 +1193505 +15097558 +3147779 +10688316 +8180920 +10209250 +17113436 +119374 +8521051 +1322610 +8186819 +10554623 +9008636 +20622217 +12029832 +74155 +15371497 +13729828 +13441471 +1663395 +20183783 +18241305 +14741699 +17391963 +889419 +11282070 +1850828 +4743573 +6446191 +6589714 +20805062 +4084284 +13830098 +4501091 +8366387 +16022267 +19464857 +10259057 +18941882 +21250049 +3857531 +3210693 +19038219 +9320586 +19749937 +7882733 +20316165 +920221 +20611076 +20645155 +1630628 +15996708 +1890804 +7385972 +4594152 +15249601 +7429226 +5081082 +3350940 +3565241 +15111976 +5800664 +19016593 +784562 +5777071 +21116356 +15037920 +3956489 +14708931 +5455946 +976581 +11544212 +18765591 +14874737 +9831765 +18977926 +16816559 +641694 +11310250 +13082991 +6203053 +647592 +6007757 +3620947 +19643114 +20642533 +19292498 +12094712 +11177868 +3269020 +3639297 +13113137 +13283530 +14391738 +12447294 +6161110 +10154200 +13905464 +9848804 +19793846 +13693128 +6249584 +1663395 +11354814 +1976001 +2219794 +2319408 +1112896 +13446058 +7503281 +7520321 +17358539 +13654462 +6381310 +2857456 +19571025 +21079001 +5713502 +6351164 +20430853 +1466133 +272728 +3327347 +15440965 +17218293 +10432727 +7836203 +5372716 +12433532 +10344909 +1635215 +20925647 +20765085 +4969016 +6431773 +5337327 +4895616 +9669892 +18924843 +1195471 +7442989 +18950401 +21387674 +3265743 +15351181 +18683671 +12088159 +9493600 +2828620 +21030504 +10590668 +18536871 +5876685 +4611846 +3701556 +12064566 +6264657 +18297666 +1852138 +13775048 +14864906 +9057133 +21375878 +5680078 +3360115 +18775421 +12120927 +8344760 +9807516 +9840284 +18319293 +19736174 +2649708 +7347962 +12337194 +11997719 +456228 +11009441 +11328600 +2921681 +10509404 +21006256 +2342345 +14890465 +4345116 +17423420 +6715542 +2485213 +8760256 +1291808 +2576308 +12499068 +14998599 +1280012 +14822963 +13320230 +20854869 +3758572 +5502477 +1003451 +15774542 +10915725 +2793886 +12278868 +8948999 +12841819 +15627086 +7572749 +17859232 +13857623 +352682 +5900934 +9879606 +6360339 +6294803 +5219362 +15058892 +10989125 +14997944 +5666316 +16133022 +11974127 +8020358 +12875242 +5689909 +13820267 +14299333 +16672381 +9815381 +5265237 +6232544 +15615945 +17159311 +13697715 +18259655 +18256378 +20788678 +14506426 +13501108 +5683355 +4378539 +7393181 +1081438 +987722 +15688690 +2639877 +15594974 +15448829 +8558406 +14632910 +10370468 +17083289 +4375918 +20361385 +6130964 +13482103 +18044043 +1679779 +9848804 +8024946 +20221794 +7570783 +2424920 +7308640 +3629466 +11607782 +3926343 +10662102 +17181593 +16249020 +21082933 +9270124 +20983319 +7350583 +14631599 +11675284 +5774450 +17274654 +13324817 +15805343 +15110665 +7345340 +18276695 +8724211 +19945889 +21300512 +17738646 +148210 +14044399 +19849551 +13660360 +20601246 +720337 +19782705 +15077897 +4354947 +3102559 +12157627 +7047153 +3426961 +4655100 +3854909 +484408 +8524328 +16571456 +606960 +21315585 +16494124 +6964578 +18099093 +15448174 +6712266 +17335602 +3685827 +408387 +14986803 +7965963 +12991241 +10657514 +10375711 +15402954 +8567581 +17120645 +21187790 +13370037 +11413141 +12173355 +805533 +17323805 +15479631 +11123473 +8466656 +17251716 +9416268 +11121507 +2359385 +21242840 +9606322 +2117558 +13436883 +9177063 +19254487 +6389175 +18794427 +14630944 +10833150 +5024066 +3832627 +5497889 +18467403 +7058949 +4492571 +17657382 +8060990 +12286077 +17507305 +18897973 +19755835 +16050447 +20907953 +393314 +14321615 +327123 +14211515 +9152815 +3955179 +16446283 +19890183 +17448323 +6463230 +3117633 +19956374 +8369663 +16760199 +3453831 +5500510 +1694853 +7106790 +16633059 +5632237 +12694364 +21166163 +19049360 +15974426 +11648414 +8227451 +13360207 +15269917 +5544419 +21033126 +17508616 +11736232 +9085313 +15525506 +2449824 +7077299 +5005716 +4800589 +12794634 +13055466 +4417861 +20331894 +6642142 +8543988 +6539907 +9993638 +13883181 +14901606 +11479332 +6396383 +20411848 +5796076 +14271153 +7880112 +5718089 +1120760 +4993920 +13056121 +13742280 +18171182 +10537584 +16299483 +18754450 +14986147 +9578142 +18552600 +3005567 +14415331 +14022772 +11159518 +7910258 +6940985 +19633283 +8562338 +17162588 +14100760 +11725091 +1685022 +13376590 +17894621 +7814576 +15207002 +2211929 +9194758 +986412 +11708052 +1988453 +10856743 +614169 +19156184 +7501971 +6419976 +12723200 +9964147 +11929562 +16654031 +6302012 +15479631 +9655474 +18614859 +8504667 +4121639 +20944653 +13884492 +9977909 +7020939 +18348128 +5090912 +16528202 +19396044 +10515957 +15575313 +14255424 +11189009 +12976823 +18684327 +12584919 +4679348 +11242093 +18930741 +18206571 +15752259 +10855432 +1159426 +18460850 +9791788 +582712 +11460327 +20464276 +12478751 +9253740 +51873 +9743947 +11080875 +18034868 +11997064 +3539027 +1242656 +16012436 +12389623 +19590030 +8146187 +3817554 +17763550 +6712266 +7558987 +18423494 +13635456 +8954897 +5128268 +5318977 +7816542 +8346726 +6163732 +19215821 +47285 +18675152 +5427111 +21147158 +2850247 +4150475 +8337551 +10804314 +1513974 +2120835 +19837099 +19674571 +9587317 +2229624 +12329330 +16641579 +435257 +4118363 +2206686 +3207416 +54494 +20820135 +10153545 +6415389 +14353728 +20445926 +13269767 +10417654 +11659555 +2811581 +7802124 +7191987 +20201478 +10331147 +11346950 +14089619 +2991804 +12122237 +15938381 +2503563 +20824067 +19007418 +70223 +14817720 +2215861 +3265088 +11053350 +5917318 +17550559 +2310233 +17732093 +8542022 +11190975 +1617520 +17424730 +8435854 +17655416 +19025768 +11198839 +21196310 +8907711 +7205749 +9222283 +14487421 +12301150 +17906418 +2431474 +17185525 +11303696 +8545299 +19305605 +16172343 +10845602 +13913983 +10716497 +3825418 +15640849 +20639912 +3752018 +13141317 +2671990 +9451002 +9805550 +9615497 +1264938 +18295700 +20444615 +13689196 +18346162 +4174723 +5842607 +771455 +8206479 +962164 +13071194 +17053798 +10913759 +7496728 +21342454 +15193895 +14452031 +17310043 +16558349 +19875110 +8323788 +10817422 +6691294 +19943267 +19919019 +20699549 +10857398 +3862773 +97092 +5393687 +1291808 +7627144 +14994011 +6497964 +2902675 +12052114 +9216384 +2887602 +7480999 +9566345 +5449393 +1763665 +14615871 +12987964 +5642723 +15659199 +6722096 +4281547 +7829649 +14661746 +19905912 +3823452 +5044382 +18257689 +10691593 +450985 +15308583 +8041985 +2469485 +8727488 +9159368 +18977926 +18409732 +15186031 +19919019 +4544345 +5530657 +15545822 +2519292 +5251475 +8276603 +12040318 +5257373 +1122726 +1738762 +1057190 +5551628 +20569133 +7943681 +13499798 +17026929 +15097558 +12702884 +1850172 +12252653 +7865694 +5819669 +1409772 +10789897 +4042341 +5729885 +16099599 +5704982 +20661539 +4836634 +13360862 +13780946 +3107802 +18728235 +15389192 +8493526 +7391215 +3746120 +5534589 +20971522 +7328956 +19366553 +2175229 +17693427 +6439637 +13309089 +18882900 +11932839 +6940330 +13870730 +5509030 +17707189 +261587 +7308 +4391647 +2594002 +3903406 +18924843 +15018260 +6516969 +8414883 +14976317 +16102875 +3043577 +9638434 +4040375 +3471525 +13890390 +11472123 +14238385 +20274878 +10235465 +2498320 +19144387 +16452836 +4157029 +6473060 +14478246 +7874869 +14112556 +16767407 +13474239 +7024215 +7152010 +630553 +4543689 +2375768 +17148825 +19605103 +11483920 +16665172 +4889062 +7722826 +20691030 +5821635 +2895467 +5414003 +1526426 +15302029 +3447932 +4224530 +20505564 +11995753 +3841147 +6998657 +9759020 +1721722 +10915725 +16964015 +6463885 +801601 +10904584 +2032361 +15670995 +20767051 +7268008 +20197546 +12596060 +21225801 +3710731 +15480286 +9876984 +11419695 +13577130 +7162496 +18672530 +19285289 +15774542 +9964147 +916289 +1162703 +2841072 +21368013 +6657216 +12263794 +19829235 +15027435 +13991971 +2382977 +17507961 +18770178 +9110872 +7924021 +19844964 +1390112 +17235988 +18829160 +21248083 +11803078 +20689064 +12313601 +6155212 +15588420 +11719193 +11807666 +374308 +1348824 +8968004 +18772800 +9894024 +16646822 +6032005 +19380971 +14255424 +18763625 +3107147 +21105871 +20538987 +16082559 +4290722 +20560614 +1456958 +20264392 +2668713 +7961376 +2772259 +5850471 +7563574 +16924038 +7323058 +20226381 +7227376 +2845004 +12660941 +17817289 +7242449 +9550617 +16960082 +12411905 +16454147 +20917783 +5139409 +14120421 +13313021 +106267 +16389922 +1259696 +675117 +7006521 +19985865 +16439074 +10146991 +16098943 +2698204 +14384530 +13693783 +12515451 +16146129 +1723688 +11614991 +9960870 +7608138 +10388163 +18395314 +9958249 +20128733 +15355113 +773421 +18515244 +5625684 +4097391 +4940836 +10816766 +8646224 +7822440 +11818807 +3006877 +7403012 +1221030 +15011051 +14284260 +19432744 +17676388 +10720429 +13938887 +16202490 +108233 +7671053 +1648322 +17777968 +13572542 +4020059 +14994011 +19257109 +17671145 +17833018 +19251866 +12709437 +18169216 +10728948 +10290515 +14024083 +10614916 +6014966 +6446191 +14800026 +19967515 +4699009 +2524535 +4917243 +14102726 +695433 +12765798 +7393181 +16674347 +20738215 +18217057 +13455889 +3927654 +17867096 +9778681 +17151447 +18312739 +16450870 +6800083 +15933793 +19075575 +15486840 +6257448 +4753404 +10054586 +5196425 +87262 +1894736 +7789672 +11671352 +15717526 +5234436 +3646506 +9198034 +16720222 +3065859 +19922951 +1564437 +5162346 +2578274 +5615853 +4595463 +12265760 +6876760 +15425892 +16479050 +18310773 +11000266 +9637124 +8772708 +3777577 +12240857 +19116207 +3183168 +863860 +19333785 +13056121 +9304858 +3784131 +12863446 +20436751 +17259581 +15001876 +13257316 +14628978 +13702958 +21377844 +15442931 +4741607 +384794 +5592260 +10949148 +14935685 +5205600 +1563781 +6873483 +8749115 +534215 +20055989 +4782239 +19490416 +19369175 +3518056 +20766396 +6870862 +19053293 +1420258 +2349554 +1574267 +19326576 +16460045 +2643809 +14984836 +9274 +13552882 +16477084 +18085330 +20692996 +14426472 +10679797 +3607840 +4753404 +18108923 +4241570 +5946809 +15150642 +13736381 +364478 +7034701 +13364139 +19235482 +12679946 +10695525 +14817065 +4288100 +9134465 +20409226 +18684982 +17682941 +15798134 +9734116 +2676577 +12387001 +10835772 +6853823 +4931661 +10557245 +1224962 +17440459 +3792650 +15940347 +19821371 +14659779 +4147854 +15224042 +5865544 +21164197 +19628041 +12655042 +15205036 +17985061 +15758813 +10002813 +14649294 +5801975 +18735444 +5022100 +7382696 +17939841 +3970907 +6393762 +1551329 +2538952 +5288175 +9458867 +10600498 +17503373 +15966561 +16611432 +5506409 +11419695 +15140811 +3716629 +7471169 +20600590 +12875242 +2331860 +5004405 +12504310 +17931977 +5811150 +12813639 +12390934 +14810512 +19396044 +20846349 +1186951 +4411963 +5326841 +584023 +6660492 +1633249 +126583 +17579395 +4720636 +1288531 +4766511 +16036029 +10006745 +20411192 +10769580 +11627443 +15525506 +13597446 +20646465 +646937 +10175172 +5649932 +17711121 +21041646 +13086923 +1972069 +1368485 +17018409 +10034270 +20968901 +21436826 +7199851 +10005434 +2176540 +5480850 +14748908 +21285438 +20276189 +21388329 +1728276 +14836726 +370376 +17545972 +17753064 +17903796 +8917542 +4970327 +10616882 +19089993 +15064135 +2919059 +2877117 +21115701 +3490531 +3674031 +17658693 +8384736 +20700205 +8160604 +6685396 +15262052 +5088291 +1554606 +1314746 +19238103 +13501764 +6432428 +9449036 +16667793 +7434469 +18196086 +7942371 +5273102 +4845809 +3279506 +4347738 +16347324 +18442500 +1084715 +2228313 +6745689 +6585782 +16244433 +15675583 +11295832 +9296338 +21316240 +10213182 +645626 +8313958 +14218724 +1617520 +16984986 +5804596 +21012810 +18044043 +11170659 +11004854 +9802929 +6667701 +18125307 +21371945 +14400258 +12989930 +8142254 +9646299 +4020714 +5353055 +8007251 +3398781 +12393555 +16414170 +1377660 +10774168 +19627385 +17070838 +9053201 +7847344 +14292124 +1310813 +8896570 +20476728 +8244490 +19603137 +10153545 +682326 +2158845 +16539343 +6338057 +2869908 +17881514 +4900859 +14066026 +16334216 +2309577 +2364627 +7909603 +2318752 +19543500 +5339948 +1591306 +7455440 +20635980 +5952707 +21173372 +21386363 +15694588 +4550898 +5815737 +8753702 +2090033 +2280086 +4517475 +19571025 +1084715 +11993787 +17234677 +13593514 +7598308 +7628455 +20580274 +11373820 +12156971 +629242 +20412503 +14345863 +7115310 +13232412 +5817703 +5980232 +7344685 +8339517 +11847643 +13210130 +18958921 +18243927 +15198483 +3320138 +7744453 +16541309 +20525880 +3505604 +15606115 +11701498 +18613548 +3546891 +4258609 +14027360 +2308922 +7338787 +3970252 +10861986 +612858 +8461413 +17737336 +9798341 +16177586 +19313469 +994276 +5585052 +19886251 +14888499 +11489818 +16370261 +16614054 +6617894 +11919077 +2039570 +13720653 +21466972 +21220558 +3553445 +13741624 +8424713 +11245370 +15403610 +13168187 +5921250 +8480419 +15977047 +21396194 +12500378 +12272969 +11563873 +17304800 +1647012 +17452255 +3386984 +7888631 +17023652 +10479913 +12562637 +20487869 +15920686 +12292630 +7962687 +21244806 +19937369 +15480286 +713128 +20833242 +4487329 +17812702 +21461729 +16484949 +237994 +21246117 +7937783 +9893368 +9880916 +5136787 +6106060 +7707753 +20065164 +488340 +3784786 +7977104 +12535112 +16275890 +14788229 +8112763 +18093195 +9091211 +11605816 +16247709 +10048032 +12212021 +2584172 +15657233 +2885636 +14066681 +1938645 +14459240 +2507495 +2832552 +16752334 +1393388 +1977311 +3357493 +14056851 +4326766 +12704850 +7758871 +13609898 +7868315 +2902675 +12430255 +11772277 +12627517 +12400764 +19856760 +10955702 +13982796 +15019570 +3229699 +10352773 +11091361 +12332607 +14377321 +17687529 +17283829 +15906268 +3509536 +2114281 +10772857 +15324311 +3736290 +19796467 +11569116 +18554566 +12632760 +2811581 +8783849 +4290066 +9075483 +1249865 +10118156 +1659463 +17423420 +4075109 +2131976 +8085894 +13036460 +21254637 +7194608 +3655025 +10704700 +3691725 +4248779 +8979801 +1115517 +4289411 +6647385 +15427202 +12524626 +6362960 +21251360 +13875317 +5703016 +16003261 +10253159 +15289577 +8163881 +16402374 +9407749 +10101116 +2485213 +15670995 +8737319 +17389997 +17674421 +914322 +7093028 +20524569 +2804372 +8613456 +18435291 +4683936 +17785177 +16710391 +11727057 +289112 +19847585 +18765591 +13260592 +4178656 +16811316 +7055673 +9722975 +4667552 +16056345 +10243329 +9677756 +3804447 +3397470 +19853483 +9118736 +5271136 +3533784 +15606770 +4045618 +11554043 +5324875 +9760986 +10466150 +20321408 +18294389 +19844964 +20007492 +20668747 +674462 +18795082 +1884251 +652180 +11293211 +8105554 +8249733 +9722320 +3476768 +5288175 +21219903 +8300195 +21317551 +5374682 +6640176 +20553405 +1715169 +8388669 +6139484 +500137 +6962612 +727546 +2402638 +13391008 +5398275 +3860807 +11983957 +13645942 +3413199 +13850414 +11726402 +14579826 +11407898 +9531611 +2807649 +17078702 +2740802 +3184479 +11732300 +20027153 +13986728 +10880991 +10175827 +16515095 +8677681 +2240765 +3975495 +19446507 +17907729 +7430537 +15469801 +20582240 +8183542 +11638584 +16208388 +12545598 +11378407 +8133735 +6681464 +20762463 +10113568 +11942669 +20924337 +17165864 +6054942 +18705298 +16410238 +6246307 +676428 +11390204 +6915426 +4940180 +15317758 +20902710 +12225784 +13674123 +8949654 +21147158 +10561177 +698055 +13749489 +8176988 +4462425 +18504759 +3280816 +1034253 +20951206 +2019910 +6681464 +13273044 +6370825 +11603195 +5117782 +11945291 +16547207 +19583476 +16519027 +20400051 +18432669 +3350940 +12256585 +16621263 +4521407 +2090688 +7326335 +19671949 +15359701 +19704062 +10667345 +15962629 +19837755 +10829218 +5372061 +10548725 +196707 +4297275 +10483189 +5492646 +19636560 +21118322 +7608138 +18697434 +18166595 +13142628 +20244731 +9669236 +16530168 +16342081 +212435 +18899284 +1394699 +14731869 +2358729 +763590 +21310342 +9511295 +1281322 +231441 +2867942 +4202248 +3035058 +2964934 +9810793 +13815024 +20316165 +1716479 +3580315 +2081513 +5742337 +16631749 +21307065 +5128923 +20392187 +11073666 +1536912 +2023186 +2086101 +20387599 +1900635 +5308491 +11854196 +5736439 +17540729 +17869062 +956265 +8114729 +15660510 +7117276 +19856105 +7298155 +17768138 +15282369 +18878968 +17896587 +7477067 +19937369 +11633341 +20525224 +10821354 +7124485 +8629185 +2580240 +19572991 +67601 +19725689 +7268008 +18624034 +11930873 +5277689 +14409433 +2673301 +9179029 +10198765 +2642499 +7044532 +4339218 +17219604 +16533445 +16412204 +21127497 +11237505 +8412917 +12481373 +7777221 +5796076 +8583965 +2921681 +21358183 +8205169 +7169049 +13432951 +7308640 +17912316 +15351181 +14081755 +12358166 +13185226 +11396102 +19500901 +4745539 +20701515 +2980663 +11953811 +11055971 +8359178 +18598475 +12755967 +1283944 +18040111 +1865901 +15496015 +16694007 +20916472 +1316712 +20630081 +15036610 +19429467 +6742412 +13744901 +13594824 +7373521 +17940496 +19702751 +4611191 +11556009 +19048050 +10523166 +8827758 +19754524 +14823619 +13967067 +20862078 +18436602 +16808695 +7412842 +18871759 +9381534 +6885280 +8403086 +6988171 +13929056 +2369870 +10884268 +5271136 +19894771 +13948062 +6714887 +20078271 +8718969 +20597314 +20637290 +16994161 +17889379 +10483189 +11748684 +15101490 +11144445 +18708575 +20624839 +2611042 +5402862 +17639032 +7123174 +7395803 +12183841 +20164123 +15710317 +964130 +6244996 +15407542 +5965814 +12356200 +16070108 +11339086 +6587092 +1670604 +12058668 +18546046 +16437763 +20014046 +9173786 +13412635 +10329181 +12310980 +16961393 +15587765 +9937933 +4516820 +17459464 +17358539 +19205335 +10195488 +11930873 +7180846 +20847005 +11455084 +16311934 +18252446 +5121714 +14926510 +3338488 +14893742 +12726476 +909735 +14842624 +20054678 +12655042 +2584172 +12699607 +17548593 +4904136 +4573180 +14025394 +10861986 +18540148 +5127612 +14682717 +8345415 +8467967 +17113436 +10477947 +16009159 +8597728 +8476486 +6650007 +986412 +7896496 +8339517 +2915127 +14267221 +14386496 +14334067 +16458079 +6272521 +9795065 +13212751 +1296396 +17784521 +2228313 +8059024 +5571944 +643660 +8420781 +20527190 +17177006 +15131636 +1130590 +4383782 +11079564 +15521574 +18311428 +3864084 +13798640 +13659049 +18648937 +20653019 +11228986 +3843113 +2228969 +8918197 +9179684 +9386777 +2384943 +20538987 +8385392 +20669403 +16534100 +18023071 +10102427 +13258626 +18913046 +22382 +7309296 +9191481 +15647402 +21366047 +13202266 +4919864 +5900278 +899249 +17585948 +8180265 +2793886 +15735220 +8740595 +7294223 +20823412 +8857249 +15794858 +7787051 +11629409 +16677624 +8540056 +2779468 +19936714 +15303340 +17734059 +12037696 +4657066 +19665396 +12179253 +13192435 +4980157 +6708333 +3008188 +7378764 +10546759 +17623959 +18819985 +21336556 +787839 +10323282 +14096172 +9059754 +6444225 +10411756 +20244731 +13360207 +14098794 +2998358 +409698 +13577130 +17712432 +6247617 +18051907 +13071194 +16525581 +5216741 +8626563 +7477722 +5606023 +15084451 +590576 +814708 +16112706 +16754300 +10645063 +11063836 +15331520 +12450571 +8471899 +17578084 +2723108 +8712415 +13386421 +6673599 +4667552 +2620217 +9497533 +3342420 +3491186 +14868183 +20966935 +9224249 diff --git a/2ano1/AED/aula11/aleatorios10000.txt b/2ano1/AED/aula11/aleatorios10000.txt new file mode 100644 index 0000000..69a5ed3 --- /dev/null +++ b/2ano1/AED/aula11/aleatorios10000.txt @@ -0,0 +1,10000 @@ +7781153 +20683165 +7488864 +8020358 +382828 +13732449 +10286582 +5180696 +9230802 +21138638 +17627236 +15653956 +10724361 +20640567 +21143226 +90539 +4891684 +11869925 +12050148 +3767091 +3134017 +2114281 +5072562 +12345714 +12658975 +2019254 +11064491 +4472255 +10211216 +10430106 +20749356 +13981485 +15849252 +21251360 +8301506 +3735634 +1664051 +10048688 +17170452 +8104244 +3886366 +19174534 +14762670 +2529777 +1497590 +19968826 +7884699 +119374 +15665752 +14408122 +19639837 +5512962 +14614560 +11808977 +11686425 +3854909 +13813714 +20843072 +18251791 +1647667 +20524569 +14577204 +17467984 +18157420 +19321989 +8805476 +21185824 +1194815 +12686500 +18118753 +16180208 +16909620 +12648489 +8487628 +1704683 +232096 +19057880 +18837680 +13999835 +16893891 +9295683 +12051459 +17629857 +1539533 +17960812 +14408122 +5237712 +8755013 +9228836 +18006687 +13790121 +5959916 +6950160 +11911868 +12350957 +8756324 +13401494 +3107147 +13703614 +17180282 +9945797 +6449467 +21267088 +16585874 +17794 +15044474 +13292049 +16986297 +1146319 +16119259 +5290141 +8057713 +10846257 +20869287 +6129653 +18359925 +3425650 +1569024 +16119915 +5661728 +4004331 +5049625 +11380373 +3154988 +17622648 +13723274 +19852173 +12208744 +10068349 +16533445 +18513278 +2037604 +18928775 +11327289 +14840658 +846821 +11696255 +14482178 +20609765 +16056345 +20392187 +14041122 +1913742 +4401477 +19212544 +6598889 +7395803 +16050447 +10253159 +11255855 +234717 +3388295 +20019944 +7603551 +3916513 +19913121 +20817513 +13178673 +1411083 +20717899 +16603568 +11131993 +4519441 +11472123 +6735858 +7967274 +12194327 +15079863 +2789299 +18004721 +16889304 +1640458 +5141375 +18187566 +13964446 +2491111 +7114655 +13496521 +1405185 +17097052 +19301017 +20363351 +10792518 +19470755 +10030993 +970683 +6442258 +16478395 +12325398 +6802705 +15773886 +13737037 +14117799 +5992028 +5721366 +13275666 +10932109 +17893311 +18556532 +6023485 +9604356 +7959410 +17508616 +18875691 +18627966 +16022922 +19991764 +7617313 +7001933 +14009665 +11756548 +20498355 +17467329 +9141674 +5037828 +15747672 +7996765 +17492888 +13194401 +15503879 +15449485 +15949522 +4245502 +918910 +498171 +12820192 +13840583 +16178897 +10698147 +1557883 +7611415 +15037920 +20799819 +2261081 +17041347 +3510847 +1277390 +19841687 +9956938 +12318844 +3674686 +16155304 +19768942 +1764976 +19164703 +4145232 +16047170 +5729230 +227508 +17707845 +19082128 +16157270 +16585218 +903837 +5441528 +639073 +11884343 +14468415 +21270365 +5422523 +12729098 +8667851 +7404978 +6309221 +20338448 +11441977 +10731570 +18129239 +6929189 +2343656 +6703091 +17859232 +20185749 +20567822 +7433814 +20293883 +1896047 +13810437 +2407881 +11651036 +11286002 +19194850 +19686367 +15591697 +8167158 +11206704 +4958530 +18523764 +15292199 +7878801 +21074413 +7184778 +8285122 +6387864 +14438924 +17172418 +8960140 +17178972 +15970493 +15927895 +9561758 +4010229 +1531669 +12751380 +10466150 +20499665 +361857 +4619055 +13628248 +6978996 +20013390 +47285 +18087952 +10675864 +11258477 +8945722 +10145025 +13853035 +21278229 +4497159 +15991465 +4088216 +6986860 +2679199 +16140886 +8186819 +15149986 +7786396 +4179966 +15241081 +7870281 +12514796 +10669966 +4251400 +18628621 +15707695 +9648265 +1820681 +3361425 +10110947 +994276 +20272256 +7318471 +10601154 +14326203 +16442350 +12194982 +10822009 +5556871 +669874 +19865280 +3109113 +14554267 +6750932 +16363708 +14058162 +18162007 +9414302 +7384006 +11459016 +18818019 +15490117 +5163002 +10585 +17788454 +7309296 +7688747 +11213913 +5217396 +7444955 +436567 +4225841 +2566477 +7768046 +83985 +5820980 +10470738 +10451732 +20090067 +12333918 +4957875 +9788511 +20542919 +3208072 +6853823 +12139277 +1332440 +18510002 +2251906 +8775329 +394624 +5798698 +18044698 +20405949 +5777726 +11470812 +1540188 +20780813 +15713593 +13955926 +1435987 +8477797 +19211234 +16834254 +20005526 +12798566 +2531088 +21364081 +12293941 +2230935 +11732955 +2580240 +3465627 +18271452 +11594675 +2365283 +5540487 +9142985 +589265 +12683878 +5305214 +8329687 +14843279 +20086135 +5284898 +3611116 +8315269 +13514215 +3014742 +12668150 +15214867 +4392957 +19343616 +11594020 +2082824 +11365300 +18064359 +17626580 +8813340 +15711627 +20870597 +15399022 +7534739 +11598607 +2240110 +6535975 +14184646 +6878726 +18568984 +746551 +10555279 +12691087 +5832121 +13493899 +18376964 +6427841 +738687 +17247129 +12046871 +13696405 +4915277 +18755105 +11588777 +14658469 +10858054 +16085181 +20966935 +13662326 +10485156 +7871592 +3019329 +20494422 +11103813 +1768908 +7101548 +2987872 +8479108 +1306226 +17937220 +10293791 +6244996 +4024647 +6844648 +11154930 +9855358 +11565184 +11524552 +11554043 +19909189 +20171987 +16914207 +17558423 +17459464 +13754076 +161973 +21185824 +9099076 +13862865 +19603137 +4603982 +17047900 +15457349 +2120179 +11641205 +17621338 +13144594 +10711909 +2756531 +13946096 +11184421 +2411158 +14881290 +10076213 +7197230 +8694065 +20160846 +7965308 +14668299 +6224680 +5018823 +9177063 +6813190 +2056610 +7153976 +13957237 +18684327 +9147572 +9133154 +21012154 +10928832 +6824987 +6005791 +20625494 +11238816 +13020076 +16756922 +5931080 +8050504 +19314780 +13427708 +16443661 +5180696 +1522494 +10160099 +2448513 +12575744 +14535262 +6830230 +18264243 +16812627 +4348393 +8050504 +17601021 +7164462 +11707396 +5472986 +16705804 +14970419 +13741624 +15330865 +5898312 +5904866 +13613174 +16195281 +10128641 +12375205 +11083496 +7745108 +1267560 +2053333 +13054810 +14034569 +19816128 +20084169 +17645586 +15848597 +15473733 +15091660 +1997628 +696089 +472612 +15360356 +19176500 +7652047 +3641263 +890074 +4873334 +12018036 +11093327 +8867079 +548633 +20909919 +4257298 +11504891 +7194608 +10012643 +1982554 +17908384 +4556796 +8181576 +2690995 +3335866 +15697865 +3073068 +12470887 +10139782 +139691 +17439804 +12144519 +2291883 +13804539 +7803435 +6247617 +11029102 +10973397 +21025917 +6959990 +3219213 +5655175 +2802406 +10022474 +9983807 +10530375 +15726045 +8944411 +11586155 +19890839 +3233631 +18654180 +8758290 +13096098 +7419396 +4566627 +12700262 +8732731 +19974069 +10330491 +18848821 +17147514 +9151504 +15176201 +18768212 +7452819 +10709943 +7387283 +7893219 +15835490 +9673168 +19572991 +526351 +17351330 +16251641 +10960945 +9812759 +10158788 +19832512 +8114729 +4098702 +20270946 +9619429 +2749322 +12151728 +3340454 +3534440 +18034868 +2093310 +17265479 +16256884 +13882526 +7166428 +19368519 +15399022 +21114390 +15828936 +5533278 +11434112 +3206106 +13381833 +16844740 +8244490 +7321748 +14752840 +981169 +2877772 +17416211 +3198897 +20264392 +19057880 +6703091 +1084715 +20525880 +19445851 +10287893 +15720802 +17762895 +3325381 +6589058 +501448 +2652984 +5851782 +8180265 +3829350 +11864027 +4898893 +331710 +1826579 +9834386 +9979875 +20531122 +16804763 +8490249 +17163243 +17251061 +17508616 +4133436 +18553911 +17460775 +9819313 +8661297 +7955478 +4944768 +7205749 +12039662 +20973488 +17430629 +10453043 +2870563 +842889 +14925854 +8056403 +12818882 +676428 +5789523 +19454371 +11100536 +19514008 +4402132 +20679889 +1340304 +4340529 +6330848 +10826597 +18145623 +2630702 +5808528 +15971149 +10645063 +9766229 +5207566 +9756399 +18995621 +11275516 +19852828 +19741417 +8346070 +450985 +6378033 +12165491 +2477349 +20334515 +18618135 +17507305 +10460252 +10633922 +3843113 +3589490 +2004836 +2460965 +15778474 +1553951 +4655100 +11968884 +20987251 +12944055 +20167399 +3992534 +10643752 +9935311 +5022755 +6887246 +2282052 +7922054 +20424299 +19546121 +20792610 +7112033 +2171952 +6536630 +8319856 +18557187 +7382696 +8874288 +10016575 +14221346 +1895392 +665287 +5512962 +16511163 +2387565 +13050223 +12213987 +16552450 +2105106 +5355677 +2073649 +1057190 +321880 +4897582 +282558 +13290083 +15395090 +16800175 +14876703 +12585575 +14986147 +10540861 +15383294 +16258850 +8391290 +21451899 +17536141 +9207209 +19793191 +8157983 +19723723 +19133246 +15587765 +19597894 +20011424 +14478901 +19992419 +11945946 +9716422 +1550674 +19638526 +19403253 +577469 +20847660 +20207376 +19191573 +2980008 +11067768 +6136207 +1426156 +12274280 +13894322 +16129745 +13710167 +6544494 +839612 +21075069 +3930275 +12871966 +9999536 +10375711 +4181932 +9220317 +2845659 +16247054 +6870862 +19639182 +57116 +9546684 +11483920 +19593307 +13889735 +19447162 +1100444 +9099731 +13978208 +2506840 +5020789 +20816203 +2390842 +6716853 +6572674 +12744826 +5353055 +5761998 +2802406 +13973621 +14503804 +13489967 +18066325 +686914 +7224099 +4153752 +13141317 +21188446 +14480212 +12204812 +7284392 +4214045 +637762 +1611622 +11249957 +5507719 +17629857 +7347306 +2797818 +4808454 +11365300 +10160754 +15155229 +8226795 +478510 +4328732 +11608437 +19126037 +5296039 +20147083 +3240840 +9721665 +17621338 +2522568 +18566362 +14855731 +12000996 +16085836 +17006613 +7713651 +9875018 +12462368 +20676612 +1065710 +4022681 +16680900 +19553985 +12321466 +12398143 +11297798 +10406513 +13860244 +4333320 +10145681 +3713352 +846165 +11165416 +8308715 +15364288 +18818019 +13937576 +21059340 +6221403 +4089527 +6128998 +5731852 +1073574 +9392020 +17330359 +8113419 +6471094 +2082824 +1912431 +5218707 +1921606 +616790 +1366519 +759003 +10481223 +15777163 +11915800 +16980398 +7827683 +4027923 +9034195 +2318097 +19439953 +8138978 +11429525 +7190676 +14658469 +5263271 +13374624 +3156954 +11666764 +2682476 +11531105 +19871833 +2168020 +8775985 +19569058 +18011930 +2428197 +11410520 +17566288 +817330 +11254545 +20802440 +8654088 +18631243 +9789822 +8392601 +1047360 +10748609 +19894771 +13546328 +2027774 +19421603 +12426323 +13395596 +13817646 +11655623 +4294654 +20891569 +10531686 +15455383 +6747655 +6407525 +14999910 +20894190 +13465719 +575503 +18428737 +9065652 +13018766 +16639613 +12006239 +10274131 +20999047 +21173372 +2277465 +17644275 +9011258 +20938099 +222921 +1101099 +5006371 +793737 +6178150 +19705373 +5915351 +16684177 +2019254 +11577636 +20013390 +6799428 +15690656 +11004198 +8833001 +11474745 +11802423 +6895110 +3095350 +21350319 +16976466 +20390876 +12161559 +15488151 +18916323 +2325961 +1464167 +10271509 +4932971 +20976765 +8403742 +15062169 +1017214 +18681705 +5446771 +16084525 +4755370 +15780440 +10397338 +13375280 +16766097 +18980548 +9643022 +17496820 +21013465 +18686948 +1067021 +9394642 +11295832 +19592651 +1597204 +6323639 +159351 +16614709 +3970252 +979203 +176391 +10804314 +6845303 +2676577 +21197621 +20265703 +16947631 +12139932 +9099076 +8907711 +18536871 +8401776 +5858991 +10188279 +2138529 +15616601 +5508375 +3606529 +4898237 +6159144 +542735 +14370112 +18267520 +8457481 +15457349 +15476354 +16022267 +4134747 +20706103 +16720877 +1285910 +4385093 +17657382 +5788868 +3425650 +19008728 +16054379 +18557843 +9399229 +7374176 +1278046 +3765125 +18108268 +18665321 +20945308 +16880129 +9077449 +9383501 +15689345 +294355 +14004422 +17902486 +17574807 +6804671 +18078121 +12253309 +18881589 +16130400 +8459447 +5036518 +5849816 +8153395 +4196350 +9333693 +18474612 +978547 +19900014 +28935 +790460 +8832345 +12187118 +12744826 +11408554 +14437613 +18931396 +7936472 +401833 +18267520 +3453175 +18903216 +1471376 +1605069 +225542 +17982439 +9914340 +16149406 +9814725 +19677192 +8780572 +861239 +3409266 +5322253 +15029401 +11238161 +42042 +16227393 +6785010 +10744677 +18524419 +21386363 +11524552 +16952873 +17515170 +14059472 +1536256 +9829143 +12286732 +7739865 +5342569 +8167158 +9178374 +20755910 +17006613 +770144 +10709943 +20642533 +4620366 +9546684 +11517998 +3449899 +7935817 +14071924 +1882940 +7324369 +3664856 +14761360 +6358373 +20773605 +840267 +7178880 +2492422 +14446788 +1831167 +15766022 +4836634 +13902842 +12225128 +2465552 +8917542 +12692398 +14341931 +13282874 +15941002 +8298885 +1692887 +13166221 +4694421 +3218558 +10630645 +8498113 +7003244 +17493543 +10269543 +14934374 +2879083 +19417016 +16430554 +18916978 +6458642 +13980174 +11507512 +5994650 +15932483 +2515360 +14539194 +11002888 +5279000 +10162065 +12234303 +5543109 +17552525 +1974035 +9327140 +7298810 +677083 +13141973 +16395820 +11892207 +3826729 +13509628 +18764935 +2962968 +10285272 +3660924 +2323995 +6244996 +3383052 +13062675 +15456693 +13832064 +13853690 +3632743 +20799163 +2100519 +15061513 +14935029 +9934000 +19801710 +15743084 +17502063 +5888482 +11453773 +1958306 +3754640 +18530318 +18260966 +13471617 +19245967 +7222789 +13668880 +6267278 +19455682 +1724999 +15785027 +1152217 +6478958 +6208296 +12942744 +19842342 +8713726 +9179684 +1043428 +7827683 +14294090 +3345041 +12552151 +18507380 +1191538 +16079938 +6286283 +20379735 +2938720 +11605161 +13261903 +9787200 +9295027 +9116115 +21196310 +5760687 +5876030 +20275533 +14410088 +8161915 +16511818 +21464351 +16791000 +11067113 +1353412 +15174235 +17689495 +2265669 +11388237 +9390709 +14969763 +19340994 +1404529 +12291975 +12126169 +21410612 +2709345 +21449278 +10412411 +12064566 +14691892 +18946469 +4701630 +779974 +15893817 +16028165 +2541574 +2127388 +12023934 +8372285 +10704700 +3643884 +6170941 +14446133 +8692099 +15791581 +1941922 +15093626 +3818865 +6023485 +10667345 +9761641 +15540579 +2177195 +1607690 +7505247 +19219098 +16897168 +2526501 +17867096 +19119484 +13870730 +10382265 +10091941 +1654220 +18561775 +5416625 +13141317 +3092074 +14404846 +7557676 +2849592 +21284128 +6308566 +17443080 +6385242 +5606678 +21286749 +17204531 +5928459 +19759112 +20046814 +2173919 +7319781 +17042002 +4744229 +3898818 +5893725 +9950384 +17555146 +11198184 +515865 +9281920 +14646672 +7359758 +2787988 +20670714 +18846855 +8717658 +20635324 +10626713 +20201478 +599751 +6188635 +1127969 +6262035 +20951206 +4878577 +11588121 +20763119 +8454204 +1735485 +7235240 +9781302 +9044681 +2447858 +2220449 +19747971 +14048987 +16983675 +4058725 +12485305 +2367249 +10881647 +12130757 +11965607 +18274073 +7401046 +14550335 +19758457 +19742073 +19095235 +2857456 +5848505 +16047825 +13486690 +13261248 +13072505 +14835415 +20879772 +20622872 +16155959 +18205261 +9188859 +16017679 +3082243 +17507305 +20358108 +8178954 +5671559 +11658900 +21444690 +480476 +10248572 +20143151 +7908947 +5882584 +12123548 +8130458 +5438252 +1186951 +15934449 +16998093 +13937576 +11855507 +9351388 +9677756 +12459091 +14005733 +12820848 +3273608 +4271061 +16630438 +18123341 +19850862 +6106060 +10650306 +4315625 +19827269 +3720561 +19006107 +15619877 +14580481 +14039156 +20296505 +17393273 +7299465 +18319293 +1636526 +8666540 +1658808 +13976242 +20619596 +21472870 +6510416 +13934299 +16675002 +13016144 +18468714 +4915277 +3303099 +11048107 +17958191 +15666408 +16414825 +3099283 +3559343 +5872098 +20769672 +15836801 +14312440 +5933701 +8723556 +4047584 +14493974 +3621602 +20835863 +16980398 +20023221 +7768046 +424115 +3865395 +18892075 +21234320 +6185359 +5507719 +343507 +9735427 +7779842 +7871592 +10276097 +6756830 +3242150 +11282725 +10724361 +11658900 +5237712 +20664160 +19227617 +14489387 +12260518 +16511818 +5307836 +19327232 +5710225 +20033051 +19854794 +13141317 +3047509 +11530450 +13169498 +9687586 +14688615 +8713070 +10741400 +8049849 +20741492 +21061306 +16600291 +16825079 +8515808 +15146054 +12682567 +5028653 +15106733 +15040542 +3869327 +16623229 +1245278 +276660 +4681314 +9104974 +16103531 +4666896 +3200863 +18110889 +6805326 +14005078 +12947987 +15213556 +11500304 +1553951 +12055391 +17917559 +3854254 +21455176 +9319276 +12302460 +20441994 +11767689 +14999254 +11090705 +10688972 +367755 +5623718 +867792 +19378350 +348094 +4255988 +15338729 +12516107 +8966693 +420183 +2432785 +20999703 +19567092 +2941997 +1326542 +20255217 +9541442 +14310474 +18023071 +5536555 +7018973 +5088946 +8179610 +3179891 +6108026 +20565856 +64980 +5061421 +5145307 +4250089 +14724660 +17513204 +2213895 +7287014 +9506052 +18683671 +7643528 +3312274 +17416866 +15589076 +15113286 +20774260 +21279540 +16323075 +12563948 +5521482 +14318338 +1291808 +17467984 +18304875 +897283 +9592559 +2934133 +8192717 +2497665 +16382058 +21314274 +2774226 +15928551 +17993580 +5227227 +20575031 +10326559 +660699 +3660268 +9687586 +17315941 +16319799 +10927522 +19980623 +14347174 +19885596 +17296936 +10949148 +20645810 +13590237 +18893385 +17971298 +19888873 +2453101 +14385840 +14598831 +205226 +5827534 +5242300 +379551 +4778962 +15637572 +5590294 +16913552 +11202771 +17407691 +14031292 +20337792 +5325530 +7637630 +17882825 +142967 +3289991 +16255574 +3662890 +14819031 +976581 +3285404 +1346203 +18829160 +12573778 +3517400 +7356481 +10411756 +5670248 +1787913 +7094994 +9635158 +1985831 +20019944 +6399660 +9651542 +808810 +6005135 +13550915 +11881721 +15714249 +5090257 +10088665 +8891327 +10506127 +11458361 +2356108 +4223220 +3461695 +1656842 +20247353 +18849477 +18456262 +19501557 +4761923 +1700095 +1724999 +20440028 +9163301 +1953063 +5599469 +10227600 +11120196 +5159725 +6370825 +14196442 +18321914 +5626994 +1203990 +3953213 +1162047 +17777968 +8958174 +4974914 +12865412 +19103100 +18532939 +18021761 +9178374 +21324104 +3535095 +20784090 +7167083 +4709495 +3919134 +4808454 +9347456 +19524494 +6853167 +13465064 +10562488 +17745200 +14018840 +7161840 +7760181 +19694887 +6108026 +15477665 +7964653 +6911494 +19938024 +15883331 +19011350 +17055109 +5996616 +20192303 +18340264 +3981393 +3953213 +1684367 +13273044 +3196275 +3305065 +15194551 +16269336 +15501258 +5227227 +14259356 +5628305 +20193614 +17855300 +18270796 +17262202 +3078967 +7152665 +4864814 +8511220 +2643154 +8040019 +8707172 +4693111 +16677624 +9913684 +16655341 +19038219 +8941135 +14511669 +11594020 +20478694 +8473210 +9091211 +12636692 +19763044 +4266473 +16659274 +13016800 +11487852 +14465794 +9173131 +6946228 +14330135 +11324668 +17246473 +6781733 +11485886 +16658618 +7529496 +5543109 +12121582 +6081157 +11626132 +873690 +14383874 +1188262 +13288117 +14012942 +4853673 +9443793 +13326128 +5126302 +11233573 +19141110 +15204381 +5103364 +21019363 +9837663 +7155287 +99714 +19168635 +13835996 +5906176 +17790420 +477199 +17313975 +1633904 +16017024 +16389266 +15854495 +19558573 +1338338 +4586943 +12964371 +8945722 +21111113 +19426191 +18643039 +11150998 +5634203 +10270198 +8395878 +16832288 +5933046 +2017944 +7112689 +6904940 +9141018 +18137759 +517832 +16867022 +5914041 +20692996 +10407168 +10405202 +7224099 +2242731 +14909470 +3194309 +19243346 +10168618 +7026837 +8055092 +17273998 +2103140 +1550674 +6168319 +13326783 +196051 +4435555 +9421511 +604994 +13398873 +12409939 +10564454 +19828580 +2232901 +13979519 +15109354 +1791190 +20938755 +16638957 +16061588 +17651484 +16906343 +7017007 +19529737 +11512755 +2099863 +19109653 +3770368 +11874512 +11954466 +2573686 +5613887 +3884400 +8113419 +9824556 +2083479 +7996765 +20955794 +7370244 +17374268 +19418982 +1073574 +1923572 +15626431 +10347531 +19264317 +1474653 +9667270 +14454653 +5016202 +7939094 +10575595 +1699440 +6639521 +12540355 +12020002 +13905464 +12721234 +18742653 +20774260 +11466880 +17389997 +20934822 +5235091 +9009947 +13313021 +6649351 +9572899 +14794783 +15104111 +17869718 +4689179 +8080651 +11804389 +17103606 +2787988 +6123100 +15537958 +1793156 +6730616 +4038409 +19112930 +5355677 +20335826 +11016650 +8183542 +20419712 +12920462 +9059099 +12552807 +19413083 +21285438 +14777088 +20105796 +690846 +3275574 +6001859 +17119989 +20613042 +12661596 +1114862 +21403403 +10919657 +8827758 +9901233 +6924601 +7518355 +21337867 +14981560 +15889229 +10223013 +4333975 +3286059 +13322196 +13654462 +14939617 +13332682 +16344047 +8660642 +7682849 +3039645 +10240707 +553221 +7952856 +19228928 +11717882 +15308583 +20921715 +1093890 +6201087 +11183766 +9466731 +20922371 +12174666 +10494986 +6180116 +15175545 +20917128 +3938139 +5808528 +2472761 +189498 +6614617 +3866706 +13396251 +10886234 +11428214 +21025917 +19998973 +2436717 +4257954 +6589058 +13322851 +1678469 +1322610 +18990378 +1446472 +3304409 +15448829 +18291112 +11927596 +18897318 +19031010 +12199569 +4687 +678394 +3662890 +19443230 +4132781 +11088739 +10960945 +12198914 +20715278 +10723706 +19810230 +10073591 +4030545 +821262 +15523540 +14902262 +87262 +189498 +18773455 +1799054 +4366088 +12961094 +13231757 +20808338 +3145813 +3930931 +759658 +1805608 +3130084 +16374849 +15700486 +4214045 +15142778 +19634594 +5003095 +10244640 +11360712 +7895185 +7012419 +3227077 +15126394 +1863279 +20265048 +9579452 +20679889 +2341035 +16612743 +8443063 +9240633 +19841032 +5382546 +10306898 +16460700 +14482178 +1621453 +15381983 +2291227 +20648431 +19878387 +2719176 +15159817 +11474089 +10992402 +4431623 +14941583 +13852380 +13661015 +7990867 +18430703 +7566851 +8770086 +20127423 +17692116 +11864027 +5951396 +13840583 +12871310 +436567 +671185 +6142760 +17872995 +5193148 +9200001 +9509984 +15408197 +6832851 +13031217 +18780664 +20468208 +15545822 +20110383 +12689121 +13986072 +4283513 +10006745 +2917093 +13100030 +12025244 +13347099 +2496354 +18321914 +15058892 +6739135 +10854777 +18121375 +12546909 +2354142 +16193970 +5965814 +10295757 +13400839 +5111228 +18545391 +5408105 +16956150 +1635870 +21366703 +20805717 +3406645 +18218368 +15508467 +13123623 +19223030 +5255407 +19934748 +3616359 +13148526 +3828040 +2514704 +19359344 +15286301 +8403086 +15423270 +1099788 +8201892 +1880319 +6792874 +16667138 +19523839 +13329405 +15254844 +12881796 +9907786 +16553106 +4489295 +3211349 +21421097 +13743590 +1479896 +10016575 +9892713 +14999254 +10338356 +14392394 +19549398 +262242 +317292 +5535900 +16123192 +3939450 +19701441 +17572841 +15268606 +760969 +4056104 +9567656 +15743084 +12293285 +17707189 +13493244 +9126601 +5296039 +3017363 +19357378 +5022755 +1340960 +12556084 +788494 +21405369 +11822739 +20198201 +1230860 +512589 +3048165 +7081887 +18352716 +7987590 +20909263 +19751903 +14827551 +9938588 +14120421 +15949522 +7846033 +15123772 +924153 +11426248 +7163806 +5775105 +10851500 +21111113 +11753927 +14767258 +16970568 +7363690 +6658526 +8880842 +20338448 +15845320 +19787948 +282558 +8167813 +3056684 +8462069 +3018018 +11854852 +8532847 +513244 +20424955 +7851931 +3941416 +2054644 +2381667 +16382713 +7642872 +10819388 +1247244 +12126825 +11723125 +12265760 +14437613 +1879663 +9396608 +18165284 +191464 +12160903 +13388387 +3396159 +5444805 +19655566 +9601079 +15418683 +11892207 +18428082 +15848597 +11498993 +18986446 +20579619 +18157420 +20271601 +12889660 +12476130 +18846855 +10924900 +18014552 +6830885 +11835846 +2171952 +9021743 +19485828 +12018691 +9024365 +8746494 +3797238 +18576848 +15955420 +21083588 +981169 +17593813 +3953868 +16927315 +2441960 +11214568 +5303248 +8739940 +18660734 +6925912 +20329928 +2348899 +999519 +18617480 +6161766 +11873857 +3623568 +12987964 +7974483 +12278212 +17137029 +3305065 +19991764 +15448174 +11470812 +9319276 +11788661 +15446863 +6164387 +20913196 +7814576 +10319350 +18374998 +6416700 +11441977 +17895932 +7416774 +17272032 +5049625 +13793398 +9750500 +474578 +10715841 +9712490 +3410577 +14720072 +13553537 +6959990 +17915593 +10718463 +11411175 +340230 +7166428 +448364 +14457274 +3564586 +1383558 +12040973 +682981 +13634146 +12636037 +10810213 +15893161 +14187922 +16742504 +20652364 +16218874 +21170096 +1492347 +3557377 +6776491 +13112482 +17414245 +10613606 +10094563 +7087785 +6300046 +11943980 +9905165 +15245013 +9430031 +4849741 +5218707 +14145324 +15302685 +859272 +19631317 +5400241 +5880618 +18530318 +7505247 +20658262 +19483862 +4819595 +17380166 +20594692 +16263438 +5130234 +17365748 +13395596 +8622631 +10948493 +591887 +20271601 +6299391 +19920330 +11674628 +20211964 +2249940 +16439729 +3609806 +16916829 +24348 +21077690 +3577693 +16516406 +8123249 +2801751 +3137949 +16074695 +2024497 +17071493 +8353279 +6219437 +15599561 +20164778 +8924095 +2008113 +18997587 +1986486 +1215787 +19470100 +2432129 +16572111 +17538763 +11934150 +8833001 +906458 +17391963 +5700394 +19409151 +13553537 +1048671 +19675882 +14910781 +10606397 +7921399 +8528260 +9245220 +5212153 +16489536 +15271227 +13182605 +7353860 +9524402 +21221869 +3965009 +10314763 +6637555 +1362587 +8886740 +342851 +5773794 +16646166 +13584994 +19697508 +746551 +13752765 +17847436 +1917019 +16429899 +1370451 +14120421 +10776789 +6587748 +15790270 +18234096 +473923 +6928533 +8033465 +13432951 +7697267 +1809540 +10187624 +1652910 +476544 +4564661 +4496504 +1656842 +15309894 +3143847 +3208072 +16177586 +728201 +13345789 +20426265 +941192 +20268324 +20182473 +14472347 +8057058 +18280627 +6696537 +18865205 +21242840 +16273268 +1107653 +3565241 +20443305 +7651392 +19479930 +6710299 +8066233 +10534307 +6583160 +14063405 +18989068 +18947780 +17217638 +19025768 +18369100 +11436734 +10526443 +19607069 +10045411 +15081174 +14960588 +20141185 +1877042 +18897973 +14950758 +8875599 +480476 +13784223 +16299483 +707885 +3831316 +17402448 +6423908 +8823170 +13868108 +17568254 +8754358 +13016144 +16092390 +14672231 +11856818 +3226422 +12725821 +10783998 +15529438 +15720802 +13464408 +18601752 +17383443 +4240259 +5974334 +2323340 +10371779 +424115 +3437447 +16870298 +8040019 +19260385 +19491726 +6573985 +17644930 +13572542 +3455141 +2194235 +20862733 +20474106 +15667718 +5588984 +11079564 +9236045 +10128641 +256999 +18139070 +2994425 +19652289 +21310997 +19217787 +5219362 +3347663 +14434337 +10298379 +2725074 +1326542 +18684982 +8057713 +5634859 +6759451 +16141542 +20428231 +9540131 +6921324 +4729155 +13338580 +12059978 +11354159 +2299747 +19264973 +11995753 +3409266 +1434676 +7083853 +15904958 +19833823 +12529214 +2451135 +1775462 +15488151 +21360804 +13776358 +14936340 +18515900 +20183128 +16789690 +2294504 +18294389 +2955759 +3744154 +11011407 +5600125 +19338373 +6653939 +14092240 +15328244 +6262035 +14710897 +10500229 +11385616 +7092373 +17405725 +5853093 +962164 +3286715 +7593065 +5913385 +3060617 +11500959 +4223220 +15492083 +785217 +14652571 +14895708 +3164818 +17661314 +14819687 +19415705 +17698014 +18002755 +12706816 +1884251 +8568892 +7806712 +8283156 +5142686 +8909677 +14729903 +20594037 +20340414 +18523109 +1498901 +6615928 +7573405 +9076793 +14078478 +20733628 +10683073 +11876478 +17652795 +806189 +17926079 +1682401 +922842 +16309968 +4044307 +9399229 +16517716 +20935478 +20194269 +5298661 +7880767 +9545374 +15651335 +7099581 +13846481 +8419470 +9355320 +18974650 +21446001 +4131470 +16055690 +19588719 +15212901 +13059398 +1516596 +13261903 +8915576 +10349497 +1679779 +18762314 +6700469 +6223369 +14538538 +9823245 +1688299 +9919583 +14360281 +4012195 +1962238 +18842923 +19131280 +13398873 +20187715 +9435274 +2521913 +10698147 +16804107 +2913161 +10742055 +10884923 +12204157 +10587391 +17884791 +13932333 +14237730 +17809425 +8971281 +16045204 +19410462 +4540413 +17580705 +6843337 +13282874 +11253889 +5978921 +9532267 +13698371 +11947912 +1810195 +17102950 +17914282 +11000921 +14218069 +10441902 +4638716 +18275384 +14593588 +18761659 +2381667 +18549978 +20213274 +227508 +10036236 +19183709 +7629110 +18567018 +17327738 +12922428 +16186106 +21101283 +18430703 +4170791 +18211814 +16116638 +8675060 +69567 +2150326 +19417016 +7975794 +7321748 +16981709 +9649575 +15011706 +540114 +1433365 +13860244 +205226 +10422241 +5315044 +4515509 +13325473 +18361891 +3715973 +8629840 +19854139 +20552094 +18764280 +2858767 +14379942 +12601959 +7394492 +16670415 +3675341 +40076 +15068722 +17458154 +21193688 +462126 +10943250 +21173372 +1847551 +13851724 +11813564 +2354797 +935949 +12736307 +17692116 +4176689 +6262035 +14591622 +1283944 +909735 +20573065 +9002738 +11083496 +20807683 +6977685 +16731363 +7591099 +17374923 +9384156 +10247261 +7768701 +18508036 +19147664 +15829592 +6899698 +19995696 +7348617 +19420292 +16760854 +2538952 +15997363 +17806804 +11393480 +11226364 +18935984 +9111527 +11997719 +10903273 +4066589 +6482891 +16346013 +14724660 +9156747 +19271526 +4236982 +6043801 +4503713 +21170096 +3559343 +611548 +20422333 +21402747 +18991689 +5457912 +4832702 +731478 +1175155 +6684741 +2168676 +180323 +1991729 +240616 +10040168 +16863745 +6582505 +4622332 +18977271 +16284409 +17237954 +5167589 +21180581 +16152683 +8647535 +5090912 +21150435 +14213481 +7509180 +4084939 +5936978 +15774542 +1892115 +15215522 +15246324 +19335096 +19257764 +5355021 +11444598 +1243967 +14090930 +20207376 +11823394 +15497326 +11436079 +14093551 +11367921 +20109073 +18441189 +10629989 +8071476 +18593887 +21339178 +7087130 +2621527 +20642533 +9483770 +12343093 +5347157 +2495043 +268796 +17766171 +8137012 +15335452 +6537941 +11762446 +18650248 +20932201 +6223369 +9123979 +7153976 +10850845 +6141450 +12649144 +13627592 +9948418 +1982554 +7005865 +7782463 +5086980 +12330641 +9686931 +7320437 +1051292 +10212527 +21342454 +4138023 +8403086 +15923308 +7692024 +10531031 +14929131 +2821411 +13015489 +11318114 +3101904 +8693410 +554531 +5094189 +802912 +18481166 +13729828 +6435705 +12968303 +10970120 +17296936 +20462965 +14682062 +14404190 +12347680 +11913178 +3700900 +5284243 +20485247 +8969315 +13762596 +10707977 +15706385 +20407260 +767523 +12284766 +600406 +13681331 +18574882 +11985268 +4748161 +19051982 +16680245 +8279879 +8671127 +6084434 +20125457 +6712266 +700676 +5646655 +2422299 +6520246 +19791224 +16354533 +18567673 +1562471 +5104675 +18270141 +16311934 +1585408 +14067992 +19357378 +130516 +4711461 +6940985 +6514348 +9002738 +13086267 +17310043 +5869476 +2636601 +1088647 +13919226 +16788379 +19187641 +13942819 +15545167 +2793231 +11902037 +5482161 +556498 +4498470 +6921324 +934639 +1072919 +20894190 +11145100 +205226 +9253740 +3245427 +11741475 +14241662 +21205485 +15966561 +11603195 +15043819 +17846125 +6798117 +12833300 +20093344 +14938961 +13734415 +21415199 +5874064 +3101249 +14809201 +6623137 +102991 +17384754 +11960364 +17178316 +4394268 +6904940 +6058219 +1157460 +11078909 +1811506 +3344386 +4100668 +2116247 +11860094 +11010096 +13168187 +561085 +3546236 +11846332 +14402224 +19565782 +12839853 +4528616 +3395504 +849442 +10332457 +13583683 +1032942 +17117368 +5328807 +5276378 +7870281 +14328169 +5702360 +21470249 +13248141 +12514141 +19396044 +16747747 +14182024 +19593962 +15029401 +11481954 +9792443 +18541459 +6029384 +3191688 +12229060 +12474164 +3940106 +12663562 +18366478 +15598251 +5327496 +7805401 +4705563 +17517136 +15638227 +17292348 +18607650 +2109694 +16727431 +5182007 +20270290 +5537210 +10262334 +11824705 +21025262 +15418027 +768178 +3396815 +554531 +17845470 +7574715 +21279540 +19774185 +15764056 +12381759 +9197379 +11970850 +3260500 +17589880 +16705149 +12535112 +19922296 +14754151 +6610030 +9239977 +12137966 +16831632 +7878146 +1603758 +12025900 +17987682 +13398217 +9624672 +17272688 +13179983 +20567822 +19144387 +18144312 +5698428 +612203 +12143209 +5921905 +6024796 +1326542 +4795346 +1004106 +14627667 +18839646 +5372716 +20825378 +13526012 +14873426 +8089171 +4358879 +2182438 +15754226 +20885015 +21374567 +16665172 +3927654 +7006521 +10129952 +17314630 +10679797 +17566943 +15901026 +13350376 +13437539 +8387358 +2243386 +9006670 +3408611 +4849741 +14111246 +10782032 +20206065 +701987 +941847 +2517326 +3812966 +18298321 +14422540 +20505564 +12165491 +16884716 +3137949 +20611731 +10453698 +11982646 +4716048 +13193746 +16644856 +6572674 +620723 +7478378 +2609076 +11239471 +19462891 +4969016 +13213407 +11680527 +11677250 +13025319 +10155511 +10409790 +17002025 +17553836 +10268232 +1060467 +18770834 +14790195 +3590800 +2119524 +6454710 +19638526 +6195844 +8496147 +5528035 +233407 +12230371 +9236045 +16272613 +21249394 +6902319 +15678860 +7159219 +8763533 +19600516 +12143864 +11774243 +20483281 +13819612 +9673168 +2495043 +4652479 +1103065 +7542603 +19380316 +17348054 +3857531 +109544 +12719923 +10326559 +18052562 +5516894 +6574641 +8812029 +8671783 +17594468 +20257839 +6127032 +3013431 +7806056 +11507512 +8017737 +14088964 +7424639 +8443719 +4545655 +9523747 +10239397 +6848580 +1745970 +1797744 +5159070 +14630288 +19775496 +2805683 +7849965 +13282219 +17950327 +4459148 +14233142 +3432204 +18471336 +7483621 +2679199 +11683148 +2690995 +2443270 +15098869 +11093982 +2038260 +11034345 +14261978 +19031010 +409042 +5789523 +20003560 +2634634 +5712846 +9504742 +6894455 +5949430 +14758738 +20731662 +1604413 +106923 +14422540 +2225036 +12868689 +20942687 +973960 +8177644 +17536141 +9533577 +10183036 +21423063 +679705 +5931735 +11240782 +5929114 +15545822 +4214045 +701987 +3457763 +3631432 +11751961 +20638601 +6628380 +6382621 +7352549 +7720205 +17072804 +14887188 +19064434 +13452612 +20924337 +3145158 +16307347 +15085761 +11152309 +14067992 +8897226 +7758871 +3736945 +6269900 +4690489 +5411382 +5393687 +17999479 +3668788 +18257034 +8690788 +12671426 +2308267 +20892880 +15227319 +5300627 +14255424 +322535 +12375205 +6097541 +16730707 +12062600 +11640550 +15452106 +481787 +11485230 +9721009 +14589656 +11227675 +11347605 +1784637 +14326858 +16828356 +10523166 +15426547 +20307646 +3503638 +8671127 +15644781 +20103174 +6494687 +2835174 +14382563 +881555 +6052321 +1527081 +20217862 +17115402 +16899790 +16705149 +11417073 +16406961 +1415015 +4797968 +18922876 +1233481 +20586172 +17816634 +8559061 +19941957 +16750368 +20305680 +14098794 +6456676 +7245071 +19736830 +17204531 +14291469 +18561119 +9040093 +4409341 +5339948 +3257224 +3799859 +19276769 +18202639 +14109280 +16406961 +17134407 +5379925 +18766246 +13482103 +6233855 +13765217 +15935759 +20976110 +3567207 +19234171 +8164537 +15234527 +10020507 +3876536 +19793846 +671185 +5528035 +16153338 +15803377 +19697508 +18597819 +7962687 +17488955 +1638492 +13173430 +4940836 +13004348 +12326709 +12263794 +17432595 +1654876 +16528202 +8036742 +12230371 +6187980 +15553031 +13397562 +18246548 +5436941 +15785027 +19476653 +20491146 +8100312 +3303754 +20779503 +16164479 +5264582 +3096006 +1284599 +16095667 +985101 +11479987 +276005 +255033 +8848074 +9099076 +881555 +18597164 +20557337 +14893742 +17800905 +16465288 +6274487 +1875731 +19816783 +5313734 +17170452 +168526 +20624839 +7647460 +20423644 +14879324 +16533445 +10398648 +9577486 +19841687 +18653525 +21347697 +20478039 +19847585 +8462724 +11846987 +15895127 +12936191 +21425029 +12251998 +20661539 +17144893 +15729977 +14457929 +19462235 +14758083 +10015265 +12391589 +20592071 +21421753 +18295045 +6633623 +12542976 +4305795 +8250388 +3386329 +2012701 +7001933 +12402075 +5760687 +10504161 +12067187 +17026929 +6115235 +3365358 +6281696 +16036684 +20378424 +14989424 +15746361 +5002439 +1280667 +14514946 +17540729 +1899324 +15031367 +11989855 +10477291 +20075649 +2972799 +13741624 +1332440 +15598251 +6653939 +4811075 +17296936 +13648564 +6074603 +18156764 +8410951 +6625103 +13313676 +17513204 +8402431 +429358 +775387 +18691535 +9695450 +16336183 +5644689 +4396234 +6891178 +16904377 +11239471 +14405501 +8089171 +14296712 +11284036 +9133810 +17386720 +7344685 +8115385 +17270722 +2659538 +5735128 +7245726 +15202415 +2299747 +2391497 +16998748 +5946809 +19929505 +2102485 +8254320 +3010809 +11097259 +10430106 +14834104 +358580 +18999553 +5045693 +7434469 +20443305 +11605816 +8273326 +799635 +20841106 +14107969 +3812311 +5590294 +9137742 +3174649 +9701349 +5448737 +17762239 +6598233 +7542603 +215057 +9245876 +3674031 +18565707 +16638302 +7834892 +5471019 +5088291 +20135942 +12552151 +17701946 +16794277 +15518297 +9106285 +7669742 +2681820 +12519384 +809465 +7475756 +8768120 +15201760 +10842980 +2530433 +10591979 +11734266 +18969407 +16730707 +14695169 +16221495 +21261845 +381517 +263553 +10250538 +4142611 +18132516 +12976823 +7619935 +21309031 +20887637 +3719250 +4022681 +14518222 +21071792 +3378465 +13674778 +17760273 +19647701 +11639239 +19080818 +20744769 +10340977 +19190917 +14457929 +2367249 +10753852 +13710167 +11957743 +11371854 +16347979 +2491111 +19405219 +10325904 +20231624 +9447070 +9024365 +4343805 +16215597 +14948792 +14716795 +20370560 +20697583 +10959634 +12285421 +7487553 +9362529 +11083496 +20822756 +18608960 +19013971 +16195281 +15232561 +13900876 +9866499 +11487196 +2202099 +11357436 +17791075 +17074114 +21387019 +10760405 +20046158 +10298379 +16115983 +8447651 +1038840 +21047544 +1093235 +1550019 +6715542 +3473491 +20422989 +19955719 +8408329 +181633 +1329163 +20238178 +8981767 +9002083 +6201742 +1926194 +18838991 +3982048 +498171 +8553163 +12497101 +14644051 +4212734 +8794335 +8694720 +6469128 +2131320 +7326335 +19672605 +3519366 +8142254 +15632985 +12579676 +2900054 +2420988 +17661314 +15202415 +14585069 +7903049 +11513411 +15041853 +12536423 +3392227 +4373297 +20166744 +1794467 +4147854 +20397430 +16758232 +8936547 +7283737 +20225071 +19978001 +7318471 +3991223 +6595612 +17506650 +13987383 +13608587 +21457797 +2377735 +4598084 +19417671 +8398499 +1822647 +12093402 +18906493 +18876346 +19597239 +12511519 +3942727 +5954018 +13235689 +6631657 +19172567 +6119823 +16980398 +8214999 +6717508 +17321184 +16446938 +3926343 +14978938 +8740595 +7882733 +3734323 +7184123 +14664367 +19884941 +10650961 +19270871 +17845470 +15036610 +7123830 +10122088 +4197661 +7674985 +1700095 +3431549 +1593272 +14600142 +18522453 +14525431 +12175321 +3141881 +8854627 +17826464 +16003917 +11738198 +18160696 +6639521 +19882319 +6145382 +8125215 +14382563 +7072056 +11510789 +10733536 +20108417 +19417016 +19000209 +13788810 +15452761 +12852305 +13929712 +18776077 +5531968 +18470680 +10659481 +14044399 +6186669 +13884492 +11688391 +3557377 +3352906 +15585799 +12427634 +5997926 +1393388 +11799802 +12058012 +14145980 +18787218 +10301656 +1608345 +1112240 +7703165 +13967067 +18516555 +6301357 +6803360 +5254752 +2590070 +1133212 +9897956 +10089320 +15064135 +18379586 +10118811 +220955 +18813432 +8909022 +2871218 +5171521 +17639688 +17072148 +20700860 +21056063 +10373745 +9685620 +4794691 +1483172 +20860112 +14254769 +15756847 +11737543 +3155643 +8771397 +8554474 +15421304 +11854852 +3989913 +17879548 +18992344 +7381385 +18198052 +284524 +419528 +8272670 +20325996 +7551778 +3811000 +3265088 +13855656 +2067095 +19499591 +13062019 +15241736 +10139127 +9969390 +15252877 +13421810 +9939243 +1751869 +14892431 +7711685 +13764562 +2384288 +17146859 +17392618 +20487869 +6155867 +12733685 +9970700 +18716439 +19531048 +11714605 +6478303 +17173073 +4903480 +167871 +10150268 +3644540 +17166520 +5604712 +16851293 +2290572 +2265013 +16812627 +11283380 +1808885 +4643959 +8425369 +14066026 +10141093 +16554416 +9154781 +19310848 +8222208 +1373072 +13032528 +16621263 +15510433 +11089395 +16186761 +1557883 +18317982 +6707023 +21447312 +18198052 +16633059 +10375056 +14137460 +8954242 +4883164 +4725879 +9040093 +9220317 +13467030 +14960588 +104301 +11031723 +5048314 +3910615 +20243421 +11833225 +10124054 +15612013 +13949372 +2039570 +16688765 +4347082 +9250463 +20932201 +19988487 +20915817 +12552151 +13107894 +4880543 +21295269 +5524759 +1562471 +9093177 +12394866 +4447352 +8985043 +18423494 +14811822 +2818790 +7114655 +13980174 +20430197 +15349215 +12941433 +8391290 +4587598 +1198092 +10293136 +4546966 +20322064 +13406082 +8876910 +14443512 +4936904 +8806131 +5207566 +7273251 +13578440 +8944411 +7171015 +10224979 +16156615 +3358804 +15507811 +16389922 +15246324 +6566776 +16579975 +9144295 +7836203 +3700900 +8568892 +15096247 +11717227 +2888913 +8082617 +1042117 +1478585 +15193895 +16372883 +20948585 +17855300 +8432578 +20995771 +20387599 +16233292 +20742147 +12108475 +5073218 +18694812 +7780497 +3339799 +2415745 +6564155 +17449634 +14949447 +7343374 +10460907 +8315924 +9221627 +7018973 +6619860 +13014178 +14972385 +18016518 +12062600 +5741027 +1620142 +15826970 +8849385 +3328658 +18877657 +12381103 +4105911 +16711702 +12186462 +11142479 +6364926 +17194045 +1752524 +9555204 +10181070 +6780423 +13824199 +14613904 +5776416 +13388387 +1109619 +5132200 +19771564 +14292780 +21434204 +21216626 +10498263 +16648788 +9595181 +13875317 +10482534 +19275459 +12810362 +342851 +17478470 +20111694 +9969390 +7725447 +5167589 +8281190 +13282874 +6951471 +5872098 +19283978 +2036294 +6821055 +13627592 +20439372 +504069 +16228704 +3564586 +5755444 +40076 +1394699 +9209176 +2922992 +15935104 +18629277 +16791656 +6537285 +536837 +5214775 +4717359 +12691742 +10580182 +10232843 +16129090 +18719060 +6641487 +4325455 +12908666 +12905389 +4786827 +7253590 +331055 +11227020 +1264283 +15854495 +20400051 +15608081 +3775611 +20286674 +9161990 +15170958 +19672605 +20651708 +17954259 +12358821 +12485960 +9768195 +20808338 +2124767 +20728385 +5986130 +1232171 +14914058 +20896156 +15911511 +13029251 +1316056 +7766080 +10930143 +6447501 +12699607 +2767672 +12158282 +16254918 +4750782 +12568535 +2624804 +9112183 +18861273 +13703614 +19013971 +8311992 +3870638 +6872173 +12932914 +8010528 +11630720 +1989108 +5817048 +15842043 +7422017 +20557337 +20074994 +15214867 +7220823 +19395389 +9938588 +14389772 +19057225 +15570726 +4748816 +16574077 +6558912 +15912167 +971994 +13719342 +17623304 +9489013 +8932615 +10051965 +9129222 +12970269 +5306525 +6222714 +4554175 +19230239 +4101979 +14533296 +8021013 +10916380 +18629932 +14648638 +11004198 +18188877 +19825303 +6154557 +9140363 +17281863 +7020283 +2936754 +288457 +14164985 +17349364 +18381552 +10153545 +2577618 +18097782 +15211590 +9227526 +11869925 +2089378 +19282667 +3592111 +19827269 +15680826 +6085089 +13011557 +10321972 +9954972 +16973845 +4114431 +15407542 +17781900 +6496653 +7488208 +13670190 +10463529 +6686707 +14030637 +18377619 +1059812 +2330549 +8243835 +12487926 +5808528 +17158000 +12982066 +21110458 +1232826 +19729621 +9412336 +21436170 +3763815 +20115626 +14733179 +2192269 +1424190 +9080070 +9597802 +1501522 +14748253 +3510847 +19273492 +5694496 +16469220 +114132 +19003485 +10405202 +8625908 +15224697 +10551347 +19122760 +8105554 +12744171 +4824182 +1359310 +3035058 +5444150 +21319517 +15103456 +17597745 +2784711 +11114954 +317948 +4082973 +4586943 +7387939 +6501896 +397246 +14373388 +2182438 +17477814 +14145980 +13994592 +3736945 +7578647 +7085164 +2219138 +9295683 +15150642 +20881738 +17427352 +4139989 +8574790 +1926849 +10863297 +917599 +17903141 +10397993 +5977610 +15270572 +6665735 +6232544 +2297781 +13313021 +21375878 +4583011 +16406306 +6120478 +7385972 +8178954 +19118173 +4675416 +418217 +15220110 +11101191 +10421586 +18002100 +4168170 +17512548 +12574434 +16545897 +783906 +7680883 +17009234 +11360057 +21389640 +14308508 +13453923 +16701872 +19198782 +7271940 +13189814 +10524477 +14223312 +11227675 +21024606 +10502195 +18209848 +634485 +9320586 +15041197 +21021329 +18454952 +15549754 +3216591 +14976972 +9180995 +1647667 +5052246 +1452371 +5735784 +4665586 +6585126 +20668092 +10568386 +2252561 +1772840 +20130699 +17213706 +978547 +20114971 +10673898 +6563499 +7260144 +12549530 +3428927 +20519981 +2356108 +4318247 +4890373 +18428737 +10681107 +10809557 +14371422 +5509685 +17846125 +17699980 +357924 +9832420 +20934822 +15332831 +14819031 +10513991 +10382265 +2092654 +13955926 +16448249 +15636917 +11149688 +16883406 +11697566 +13973621 +10909827 +20417090 +9813415 +6441603 +12705505 +802912 +19107687 +17354607 +21326070 +388071 +10823320 +20672024 +11597952 +7297499 +14345208 +642349 +17575463 +12658975 +1903911 +21208762 +2166710 +17869718 +9035506 +17629857 +1773495 +11375786 +2928890 +860583 +20495733 +9576831 +9342868 +1589995 +18158075 +9530956 +10232188 +14996633 +3572450 +12494480 +15383949 +3257879 +18958921 +8922129 +13474239 +2116247 +5458568 +19540223 +12587541 +2008113 +1380281 +18689569 +4443420 +15119840 +18867826 +6353130 +19425535 +20353521 +7687437 +12114373 +20765085 +4295309 +3433515 +18285214 +19717824 +4914621 +9862566 +14951413 +9755088 +11015995 +13299914 +2375768 +15729322 +10717807 +954299 +3172027 +6338057 +20513428 +16010470 +7084508 +8797611 +1626040 +13956581 +18138414 +2272222 +10620814 +3996466 +19637871 +14845245 +18536216 +3776922 +5293418 +590576 +3193654 +12104543 +20805717 +7426605 +6652628 +330399 +20599280 +19040185 +10840359 +19704717 +20887637 +3037024 +10525132 +17355918 +10175827 +21044922 +7815231 +16541309 +12486616 +9523747 +6695882 +17602332 +631864 +10411100 +10968809 +17576773 +11864027 +9392676 +18202639 +20286674 +12916530 +10607707 +13058087 +5366818 +17080013 +20961692 +17021686 +7225410 +328433 +14521499 +4640027 +14698445 +11769655 +1135178 +987722 +14188578 +3955179 +12050803 +20126112 +15905613 +14550335 +19301673 +8980456 +20921715 +10150924 +9655474 +14721383 +4879232 +2267635 +15153263 +9942520 +4919209 +3972873 +20372526 +1744660 +20597314 +7722171 +20901399 +9330417 +8616733 +3824763 +2829931 +20837174 +4282857 +5330118 +10364570 +7925331 +5256718 +12889005 +6958680 +1479240 +15577935 +14224622 +19177810 +6283007 +14398947 +16187417 +11000266 +15739152 +11165416 +10757129 +20723142 +11858784 +16107463 +1808229 +8163226 +18310773 +1890804 +15490772 +8761567 +5876030 +7403667 +6284973 +20797853 +18730202 +8554474 +11074977 +7578647 +20250630 +7719549 +12341782 +20621562 +20056644 +9648265 +13128866 +9660717 +2446547 +13348410 +21117667 +12688466 +3185134 +9890091 +14959278 +12685844 +5144652 +8264151 +19703407 +3932897 +21217281 +14810512 +20867321 +5518205 +13522735 +9840940 +15788304 +6606753 +17346088 +18752484 +17705879 +10565764 +11439355 +20618940 +10559866 +12193016 +10496952 +6301357 +13554192 +10720429 +7353860 +14964520 +17248439 +213746 +4474221 +10077524 +14650604 +18561775 +19984555 +3581625 +17922802 +3407956 +7176914 +10161409 +5003095 +8659986 +2223070 +4063313 +8871667 +14534606 +9539475 +18734134 +14594899 +13626937 +3956489 +3400091 +5724643 +13973621 +10112257 +6338712 +18464127 +18839646 +15452761 +19799089 +8298229 +10742055 +20848971 +13367415 +10274786 +20907297 +6701780 +6134241 +11088084 +11039588 +11154275 +17268100 +14145980 +13662326 +12394210 +3037679 +16433175 +212435 +4940836 +6449467 +13260592 +9050579 +4834012 +4764545 +7424639 +2564511 +8570203 +3181858 +10015265 +7011764 +5756100 +10281995 +9392676 +4265163 +5904866 +14019496 +2950517 +266174 +7558987 +1876386 +3755950 +18528352 +20466897 +15121151 +9315343 +13988039 +4594807 +1609001 +16351911 +13893012 +8483040 +15415406 +4418516 +8585276 +5666971 +12344403 +15183410 +6241064 +12313601 +4342495 +13988694 +10642441 +6265967 +15149986 +4116397 +13923158 +15913477 +20385633 +15939036 +21068515 +6434394 +1592617 +11890241 +4824837 +17734714 +18279971 +16625195 +1085371 +9845527 +19454371 +19392112 +7178224 +20403328 +7344685 +929396 +492273 +4090838 +17127198 +18457573 +19051982 +1612933 +9952350 +13883837 +20173298 +8074753 +2070372 +8935892 +17156689 +16550484 +11960364 +8749770 +16880784 +14720728 +19422258 +19915087 +551910 +2355452 +12448605 +19912465 +7340097 +784562 +15181444 +4775686 +4820905 +14764637 +989689 +16325041 +13969033 +3780854 +13455233 +18111545 +821262 +16467254 +12760555 +15347249 +2558613 +8314613 +6490100 +8779917 +129205 +11741475 +3807723 +5988751 +5158414 +6901008 +8437820 +2187026 +2107727 +11976748 +18896007 +3683861 +20173298 +20513428 +15176856 +6083778 +18821296 +3882434 +7722171 +382828 +11776209 +14452031 +20502287 +4944112 +5996616 +6277109 +19609035 +3222490 +8638360 +10158132 +2786677 +21457142 +678394 +716405 +3607184 +11455084 +1339649 +6447501 +10963566 +8896570 +14615215 +15126394 +8562338 +17542695 +3520677 +10800382 +6235166 +3880468 +5480850 +16849327 +10058518 +10928177 +19084094 +8909677 +17847436 +2638567 +11848953 +1645045 +8483040 +5973023 +1340960 +1340960 +11643827 +11762446 +942503 +20957104 +11658245 +8147497 +18852753 +21397504 +8256942 +15742429 +8970626 +18584057 +9427409 +4388370 +5202323 +5350434 +21453210 +11614336 +15722768 +13636112 +4605948 +20555371 +16101565 +8948343 +9899922 +3333900 +4376573 +7001278 +14409433 +9783268 +6004480 +18590611 +14151222 +20322064 +13257316 +19346892 +20877806 +1209233 +4686557 +1403874 +6404903 +9833731 +7744453 +2955104 +20615664 +15166370 +6599544 +961508 +11386271 +11191630 +1821337 +13940197 +2064474 +2531743 +2497010 +20928269 +4424414 +10581493 +21247428 +603683 +610892 +1510042 +3004911 +18772800 +16226738 +13273044 +15733909 +2498320 +16800831 +17929355 +11190975 +9532922 +14849178 +11159518 +20757221 +8574135 +12396176 +15593663 +8557751 +468680 +15843354 +17403104 +10673898 +11286657 +5753478 +16693352 +18878312 +14298022 +12541010 +17863164 +1483172 +20436751 +8824481 +11629409 +13655117 +7745108 +5670248 +11109055 +16682866 +15273849 +20529156 +368410 +2804372 +7517699 +3439413 +8171090 +2128044 +6651973 +12078328 +15007119 +9907786 +12749414 +13564023 +13497832 +12003618 +15977702 +11609748 +16174309 +17937220 +7497383 +5775105 +8595761 +201294 +13888424 +8983077 +6865619 +14303921 +18877001 +16587840 +2784056 +11662832 +11939393 +2835174 +20107107 +6374757 +6078535 +9802274 +726890 +599751 +6651317 +18114821 +1940611 +7465926 +9768850 +8119972 +15607426 +5731196 +12143209 +8188129 +19205335 +14779710 +3531163 +1958306 +20554715 +16819836 +9548650 +6585782 +19036909 +762280 +5681389 +539458 +10133884 +4957220 +6489444 +13005658 +20549472 +3788063 +503414 +10497607 +93160 +9215729 +13339235 +102991 +8549231 +17512548 +12483994 +6435705 +8323788 +502103 +690846 +19610346 +1736140 +1021801 +11441977 +802256 +17024307 +16532134 +9833075 +21226456 +16209699 +9777370 +13607932 +19816128 +1979933 +9574209 +8218931 +7048464 +10194177 +17867096 +13592203 +6914771 +7471169 +8267428 +5308491 +6156523 +3234286 +11363334 +4940180 +18793116 +9120702 +13686574 +20778192 +19668673 +4813041 +9216384 +3365358 +5374027 +15646092 +16203800 +12461712 +690190 +10070315 +11659555 +8247767 +11215223 +1500867 +4295309 +251101 +19487139 +19685057 +4995886 +9762952 +3798548 +13995247 +8245801 +20879117 +12582953 +19491726 +1271492 +20172642 +15879399 +3932241 +6953437 +20968246 +17720296 +5729885 +5479539 +424115 +620723 +2521913 +19950476 +10456975 +14230521 +12975512 +17654761 +4181277 +788494 +333676 +19576267 +3961077 +13041048 +15914133 +5444805 +2420333 +9248497 +732789 +6891178 +7774599 +9781958 +5590950 +18950401 +11357436 +14686649 +11574359 +15121151 +9550617 +15742429 +3925032 +18336332 +8306094 +17796318 +18110234 +19137834 +13616451 +16344702 +16479050 +15519608 +553876 +17943118 +1524460 +8697997 +14551646 +7469203 +9392676 +14522154 +11011407 +13246174 +3109768 +10668656 +16394509 +2247319 +17845470 +8201892 +2134597 +14086997 +19323300 +17306111 +11590743 +8329687 +20983974 +9877640 +17266134 +5608644 +6905596 +13854346 +5568012 +18572261 +12807085 +12474819 +2550749 +9542097 +19529082 +19565126 +1053258 +15151297 +11304352 +4046929 +18071568 +9128567 +3537061 +13291394 +6541873 +8565615 +5865544 +18188877 +709196 +16309968 +4388370 +1351446 +4506989 +4168825 +14738422 +4601361 +2122145 +2021876 +10708632 +12913253 +8189440 +3596043 +16328318 +13725896 +21396849 +11704120 +15784372 +1431399 +13697715 +19607725 +12027866 +8249733 +12176632 +15060858 +17308077 +17197977 +19221064 +18464782 +5832121 +10160099 +21326070 +5463155 +19810885 +6771903 +3971563 +4566627 +8114729 +3520677 +8156672 +5405484 +18305530 +12377826 +17186181 +11140513 +20611731 +990999 +9932690 +20953172 +6089021 +19649667 +12120271 +18452986 +2614318 +16399097 +9416924 +9615497 +6699814 +12075052 +4840566 +14292124 +11649070 +7777876 +19845619 +11961019 +1192849 +17383443 +20957104 +3445311 +3236908 +5633548 +793081 +17484368 +8415538 +17034138 +2093310 +9125290 +19894116 +18399902 +12937501 +15693933 +17646896 +19446507 +15683447 +1920951 +17734714 +15748327 +10447800 +17671145 +9823245 +17808770 +16482983 +13963790 +17888068 +11215223 +1117483 +5147928 +2919715 +4250089 +18789184 +8821860 +2898743 +7925987 +15918720 +388726 +14115178 +18918289 +13645287 +1036874 +9084658 +694123 +16806073 +20635980 +3172683 +19199437 +17575463 +17285795 +6831540 +13015489 +489651 +3035058 +11772932 +20059921 +16636336 +6536630 +19795157 +18631243 +18981203 +675117 +4883164 +11584845 +20521947 +21330658 +10566420 +5369439 +9561758 +5504443 +15465868 +18791150 +11980680 +4454561 +5239023 +9451658 +13973621 +20894190 +12689121 +3059306 +6288905 +18540803 +5918628 +12901457 +13752110 +18770834 +9050579 +13214062 +6040525 +16637647 +13286151 +4697698 +4465702 +17546627 +19862003 +6426530 +1560504 +12749414 +8901813 +12397487 +8214344 +1673226 +3938795 +4660998 +16964670 +8100967 +4608570 +18336332 +2913161 +4940836 +253067 +6849235 +8568236 +16722843 +8730110 +18097127 +4585632 +13923158 +9569622 +379551 +2210619 +18559809 +16422690 +6497308 +2015322 +13700337 +7616003 +7485587 +18511968 +11897450 +2711967 +19955719 +1458924 +4041686 +3885056 +16212975 +815364 +14790851 +4115086 +20476072 +9614186 +7550467 +17228123 +10694870 +3508881 +15486185 +9672513 +7803435 +19279391 +5316355 +11173936 +14864251 +17966711 +690846 +4987366 +16150717 +19164703 +14851144 +3738911 +20725108 +15912167 +18738721 +18950401 +16977122 +6392451 +9637124 +8118662 +15953454 +16952218 +19958340 +1352756 +6984239 +1681745 +2430818 +19013971 +3444656 +8460758 +11103157 +3822141 +2158190 +2788643 +13130176 +1643079 +12801842 +18479200 +8459447 +19858726 +2289261 +5062732 +7121208 +12284110 +17878893 +19498280 +4379850 +20818824 +11854852 +3202829 +18842268 +20858801 +18065670 +6723407 +11654968 +16060277 +9909097 +17183559 +9593870 +15366910 +4144577 +14599487 +13938231 +8402431 +19286600 +13482758 +17949671 +1638492 +1998283 +7172981 +15490117 +16688109 +17430629 +797014 +1464167 +5763309 +882865 +7361069 +18444466 +15136224 +10969464 +21065238 +13919881 +14784953 +2505529 +14153188 +13499798 +4224530 +16338804 +14328169 +9456900 +5978266 +19092614 +8403086 +5500510 +19831857 +10875093 +8395222 +3717284 +281903 +20459033 +4248123 +9497533 +16221495 +4706218 +10547414 +12187118 +11045486 +1869833 +17315941 +17275309 +9396608 +18688914 +9298304 +1964204 +16935179 +903181 +14144013 +20255217 +8401120 +11346950 +315326 +7268664 +1946510 +20360074 +14603419 +2866631 +13726551 +12496446 +15026124 +677739 +19576923 +7539981 +3733013 +13765873 +18400557 +12605891 +1582131 +14003112 +1984520 +18747896 +18058461 +14257390 +11761136 +15891851 +9156747 +14898985 +1331129 +10664068 +19850862 +19301017 +7393837 +20942031 +9857324 +11633341 +4305139 +10215804 +10283306 +15729322 +9322552 +14761360 +2488490 +20957760 +7037978 +18695468 +16432520 +1247244 +2364627 +1710581 +11633341 +6456676 +6793530 +15200449 +16536066 +15393124 +9591249 +2919059 +3513468 +2104451 +17826464 +16441695 +18254412 +12111752 +2151636 +4697698 +19282667 +13033839 +4020714 +21130119 +10778100 +3451209 +5051591 +6265967 +10361948 +15616601 +7485587 +10729604 +5506409 +1936024 +12347025 +16482983 +20050746 +13921847 +667253 +6583160 +14996633 +19304294 +12390934 +21048199 +2753254 +2214551 +20310923 +11614336 +13115103 +14252147 +15768643 +6071326 +10958979 +5309802 +3467593 +8396533 +5250819 +3913236 +17794 +16543275 +19839721 +3491186 +12725821 +13593514 +15313826 +16969257 +7354515 +13476860 +12221852 +21177960 +13159667 +16976466 +10993057 +17230089 +8861836 +2168676 +1828545 +14271153 +17030861 +19759767 +3493152 +12432221 +7586512 +2084135 +16245088 +7132349 +16429899 +458194 +21116356 +4662309 +15469801 +8689477 +18154798 +6773869 +4497814 +1540844 +21092763 +18629277 +11487852 +11654968 +1049326 +16361741 +20809649 +14761360 +18852753 +14502494 +9852081 +5005716 +1729587 +19194194 +6167664 +8754358 +5228537 +7454130 +2043503 +10692248 +8113419 +19050671 +3674686 +13005658 +16667793 +7340097 +8904435 +8210412 +20056644 +8064267 +18897973 +496860 +14858353 +14763326 +6570708 +6493376 +5475607 +12437464 +11563218 +19991108 +5258684 +9071551 +5405484 +372998 +9487047 +1261006 +18784596 +19623453 +7986279 +14212171 +2770949 +4889718 +8526949 +2022531 +1802987 +6032660 +9924825 +6206330 +2913161 +17124577 +3383052 +14791506 +17533520 +2162122 +5403518 +5838675 +18046664 +12928326 +7533428 +4252055 +6251550 +18494273 +18092539 +12979444 +7711030 +19105 +16695974 +12527903 +11455739 +16218218 +18211159 +18745930 +14075201 +20081548 +2536986 +6257448 +15873501 +12677325 +14209549 +9610909 +20757876 +13962480 +16436452 +16265404 +16368295 +6961957 +18296355 +6414733 +7605517 +933983 +16770684 +11481954 +15636261 +4824182 +14642085 +9412992 +8155362 +13680021 +20993149 +1032942 +16587184 +14062094 +16173654 +21185169 +19455682 +3761193 +2711311 +20898122 +19405219 +10380954 +16672381 +18525730 +473267 +18191498 +6185359 +5150550 +21301167 +2569754 +9985118 +2193579 +2033672 +2895467 +5823601 +14209549 +18941226 +3731702 +11919732 +17125888 +20269635 +6128998 +4578423 +4067900 +13568610 +15928551 +20396774 +14279672 +3084209 +8781227 +6182082 +16966636 +18799014 +6781733 +21238908 +5062732 +9614186 +4314970 +11537003 +20418401 +6688673 +6859065 +18119409 +14446788 +7312573 +6235821 +17794352 +17347398 +6797462 +5742993 +766212 +4540413 +15307927 +4550898 +20116282 +19331819 +14673542 +11841089 +1756456 +4871368 +14228555 +82674 +16121881 +11791937 +10390784 +18242616 +5664350 +19853483 +9032229 +9248497 +13014178 +18494273 +1246588 +3476113 +11225054 +14111901 +8621320 +17838261 +15925274 +7688092 +2718520 +10108325 +10274131 +18595853 +8144220 +12641280 +18937950 +4929039 +635796 +546012 +12329985 +13894322 +16927970 +5018168 +20266358 +4581045 +1924228 +5427111 +7430537 +20246042 +3198897 +3468904 +18654180 +2110349 +2148360 +6268589 +17556457 +7695956 +13283530 +21098662 +12448605 +18330434 +20152982 +3328002 +414285 +12949953 +14322926 +10609018 +1361931 +8218276 +6543839 +10989125 +13598101 +11953155 +18841612 +5976300 +12392900 +19373107 +12550841 +2145738 +16370261 +20632703 +18732823 +19864624 +21059340 +20303058 +17977852 +16332250 +17720952 +15798134 +7820474 +18875035 +4159650 +21303788 +19533014 +2099863 +12358821 +19779428 +7110723 +19597239 +16697940 +15489461 +14474313 +16416136 +5293418 +5217396 +6826298 +4807798 +13793398 +19137834 +8407674 +7984313 +17621338 +6547771 +18498205 +3411888 +18872414 +18089918 +4299897 +536181 +9101697 +8685545 +898594 +12010827 +15370842 +13467685 +15648058 +10372434 +18158075 +20926958 +3395504 +15788959 +12921117 +16387956 +17909039 +20272256 +3925688 +13951339 +11358091 +1350790 +8848074 +13149837 +9988395 +9778681 +13096753 +20569789 +8981111 +4448007 +16773961 +8270049 +13990005 +20375148 +5858991 +13669535 +1854760 +20811615 +12008205 +16511818 +13221926 +19342305 +6639521 +12329985 +20735594 +16302104 +8471244 +3913891 +264864 +13250762 +21307065 +8087204 +20635980 +14903572 +9454279 +14038501 +6246962 +3087486 +11896 +11993787 +18812777 +6871517 +4011539 +6995380 +3957145 +17217638 +17457498 +7727413 +20697583 +20620906 +8987010 +12531180 +6913460 +7456096 +4882509 +4018093 +12935535 +14765292 +6351164 +17373613 +20791955 +16244433 +127894 +14599487 +2053988 +19802366 +12072430 +16315866 +19019869 +13668880 +13835996 +8633772 +12870655 +14043089 +18821952 +12300494 +6942296 +5581775 +5712846 +3405990 +3683861 +6242375 +5789523 +8452894 +2786677 +4834012 +13794708 +20113005 +20371215 +2796508 +15606115 +13529289 +21299856 +15921342 +7229998 +10130607 +9577486 +9845527 +19203369 +17846780 +17127198 +11580912 +20914506 +9446415 +21128153 +5836053 +19580855 +4100013 +2671990 +8708483 +13642665 +5869476 +5111884 +13416567 +7935817 +14556888 +18317327 +7371555 +8109487 +12931603 +19664741 +12948642 +8369008 +16922727 +19430123 +7672363 +18856685 +6891833 +11943325 +19766321 +17912316 +19853483 +2272877 +18555877 +4370675 +6006446 +9806861 +3058650 +13655773 +8613456 +3755295 +15613979 +15142778 +12900146 +15530749 +11446564 +5511652 +1531013 +17964089 +19687023 +814708 +13307778 +9583384 +11335809 +5764619 +12501034 +1284599 +17088532 +6555635 +9712490 +33523 +17861198 +1306226 +5438252 +9044681 +624655 +7054362 +3981393 +10220391 +3031781 +14452031 +12465644 +12734341 +2564511 +886142 +14897674 +4682625 +10572318 +16117293 +7841446 +20543574 +12174010 +198017 +1742038 +11040898 +5010959 +13480792 +10043445 +7321748 +14058817 +1601137 +16037340 +8351969 +13362828 +11479332 +4007607 +19013971 +18442500 +2693617 +1656187 +11407898 +1063744 +19939990 +5638135 +610892 +18972684 +21272331 +16356499 +7406289 +19019214 +20443305 +10887545 +13330716 +6900353 +9852081 +15778474 +2673301 +20487214 +295665 +1207267 +3510847 +20148394 +9093833 +15933138 +7648115 +13491278 +10667345 +5375993 +3685172 +12539044 +3268365 +11409864 +3076345 +11923009 +12657009 +2942652 +14220035 +15604804 +14629633 +14386496 +16262783 +51217 +5220018 +12896214 +16484293 +13181949 +7194608 +21156333 +6736514 +17838916 +5453325 +2481936 +10177793 +1220374 +7962031 +13556814 +12293285 +1977311 +10095218 +2710656 +10396682 +18067636 +16060933 +16764131 +18554566 +5415969 +2652984 +1069642 +4430968 +16371572 +487685 +20192303 +3008843 +816674 +6167009 +19451750 +18622723 +6109992 +7897806 +19179776 +3207416 +19553985 +9811449 +12236925 +16108774 +17762239 +15387881 +5683355 +15853840 +3489220 +5553594 +14010976 +11995098 +14481522 +706574 +15333486 +5944187 +13759974 +6018243 +66291 +19419637 +10961600 +15153263 +16121225 +4495848 +2027119 +619412 +18018484 +19772219 +12449916 +1459579 +3773645 +15684758 +3155643 +268140 +10722395 +23037 +10135850 +904492 +3181858 +12568535 +19205991 +20345656 +17681630 +14211515 +11433457 +19517285 +18825228 +21390951 +2735559 +1933403 +3336522 +11398068 +19260385 +4336597 +20087446 +15297442 +3855565 +14901606 +20890913 +9892058 +3265088 +15630363 +4427691 +4012850 +8579378 +12710748 +3018018 +16471841 +13326783 +15246979 +9538820 +18820641 +5344536 +19392112 +16956806 +12710092 +5824257 +1257074 +10089320 +14337344 +532905 +18568328 +17637066 +8409640 +5453980 +16424656 +21150435 +9184927 +4462425 +16953529 +768833 +11826016 +1295740 +9038127 +302219 +14607351 +9321242 +3167440 +19034943 +2567133 +6621171 +18553255 +20858801 +8716347 +2007458 +16602257 +18428082 +14562787 +3279506 +20317476 +7545224 +20796542 +11855507 +4233705 +10132574 +6958024 +6877415 +9205899 +985101 +3546891 +21468283 +2230279 +19608380 +16875541 +16527547 +39421 +6123755 +8654744 +19816783 +19605103 +6140139 +14204306 +20977421 +9215074 +4389680 +21456487 +4335286 +10451077 +10565109 +16775927 +18149555 +17544005 +753105 +13029907 +17917559 +20653674 +15766677 +14954690 +5164312 +198017 +19785326 +16446938 +6056909 +15174235 +13870074 +6277109 +3249359 +2291227 +7764113 +12438775 +9534888 +8656710 +954955 +11310250 +10179759 +2399361 +5895691 +11013373 +5453980 +5451359 +6669667 +6290216 +9083347 +14981560 +14842624 +6916082 +19395389 +6744378 +8414228 +8769431 +12147796 +2218483 +1513974 +2192269 +14773156 +20371215 +9270779 +15624465 +10371123 +3278850 +5185284 +9961525 +10358672 +8894604 +506690 +8173712 +1160737 +8576101 +20811615 +17930666 +17951637 +12158282 +1923572 +2928890 +7878801 +8505322 +3135983 +19008728 +14952069 +14833449 +8254976 +19131280 +5436286 +1915053 +13074471 +1661429 +16248365 +9918927 +13407392 +6020209 +9629259 +7265387 +12444018 +7374176 +9206554 +504724 +5178075 +9013879 +8102933 +12043594 +15712938 +18997587 +9454279 +4214700 +16338804 +16448904 +12109130 +10765648 +18949091 +2105106 +1238069 +17391307 +17348709 +2277465 +14310474 +2710656 +6616583 +13455233 +20050746 +3432204 +15757502 +14400258 +2957070 +13814369 +14739733 +11497682 +12459091 +12664217 +18706609 +7984969 +10962255 +13875317 +14219380 +13150492 +9997570 +4255332 +8858560 +3590145 +6595612 +8240558 +839612 +17048556 +15838767 +14402880 +19637871 +11753927 +12351612 +3330624 +12804464 +15370186 +12261173 +5088946 +9153470 +3210693 +1015247 +17793696 +11364645 +8348692 +3009499 +16165790 +5237057 +10650306 +19894771 +10449111 +11092671 +21470249 +4655100 +19477964 +6205019 +18403178 +6359028 +4187175 +8833656 +17980473 +8427990 +11890896 +2417711 +5140064 +3340454 +19279391 +11972816 +7347962 +19895426 +3632088 +11259132 +10729604 +1709926 +9373015 +15703108 +6090987 +4685902 +9314688 +18167905 +12506276 +10829218 +14919301 +15189308 +1285910 +19437332 +20171331 +16982365 +18970062 +13670190 +18637796 +9675790 +2662159 +12565914 +445742 +20764430 +15849252 +21254637 +18412353 +20023221 +11477366 +3532474 +15321035 +143623 +743930 +11674628 +16974500 +12284766 +13558124 +17829086 +17933287 +6879382 +20457067 +11370543 +14268531 +6506483 +17970643 +13915294 +4138023 +10200075 +17732093 +18047975 +2503563 +5678112 +12474819 +16848672 +19644424 +4262541 +2803061 +1425501 +6837439 +2525845 +7567506 +7637630 +19503523 +180978 +12874587 +3315550 +21371290 +21204174 +18781319 +19292498 +9457556 +10005434 +9867154 +14897019 +12254619 +610892 +8719624 +10074247 +18171837 +1172533 +17064939 +17736025 +9371704 +13245519 +3573106 +7859796 +7732656 +14698445 +757037 +16752990 +7439712 +3567863 +19049360 +10236775 +1567713 +17625925 +12250687 +713128 +20116282 +12226439 +10462218 +5389755 +312705 +5113195 +10457631 +2034983 +7940404 +5686632 +18774110 +6407525 +7730690 +8569547 +9277333 +19702096 +2232901 +19925573 +18680394 +13119691 +16367640 +9840284 +12925050 +20016012 +16931902 +16904377 +5600125 +8820549 +17365748 +19138489 +18360580 +15197827 +6062151 +12158282 +20922371 +13371348 +12965682 +16072074 +20409881 +5086980 +17163243 +1061122 +8146187 +20873219 +10211872 +11466225 +19560539 +18163973 +3804447 +5885205 +15293510 +15184720 +17347398 +15237149 +10979295 +15665097 +5854403 +7435124 +13466374 +20337137 +21415854 +17685563 +19150941 +2398706 +10316073 +18949091 +18731512 +14050953 +11497027 +5684666 +6362960 +654146 +8116040 +1628662 +1944544 +4989987 +4628230 +13769149 +20091378 +16062243 +10631300 +8332963 +16003261 +16073384 +9986429 +16843429 +20951206 +16876197 +4474221 +18576193 +3667477 +16775272 +17225502 +8112108 +13976242 +12568535 +16335527 +1693542 +16078627 +19176500 +8977179 +4532548 +10789897 +17009890 +8716347 +14903572 +4472911 +15638227 +18982514 +1264938 +15928551 +3588179 +14560821 +14145980 +1123381 +15790926 +21111769 +3968941 +15855151 +2597935 +16886027 +462782 +2318752 +11057938 +14341931 +10095218 +13600723 +18785252 +2883015 +8000697 +4350359 +17011200 +3041611 +3603252 +1672570 +5255407 +20709380 +19540878 +20707413 +309428 +1416326 +6045112 +2065785 +1129935 +2743424 +2819445 +16062243 +12329985 +19166669 +12227750 +1589995 +3455141 +21012810 +3221179 +14731213 +14095517 +6878071 +3717284 +18721027 +2851558 +8445685 +13675433 +18552600 +15275815 +18840302 +18713818 +1350135 +11112988 +19669983 +8290365 +13344478 +11858128 +13486690 +20607144 +6379344 +16327663 +579435 +10890166 +20999703 +1668638 +108889 +16167100 +16936490 +15845976 +11552732 +5173487 +3936829 +13311055 +16459390 +15364944 +19968826 +19717824 +2389531 +8614767 +8464690 +19681124 +1664051 +4613813 +621378 +3131395 +19422914 +9468697 +10177138 +15225352 +15416061 +19328542 +3729081 +1120105 +7299465 +3090108 +19737485 +20722487 +8885429 +15161783 +4711461 +1941922 +21458453 +20206721 +19538912 +15587765 +6328882 +10358016 +19382937 +4208802 +13807160 +18283248 +10434693 +12447950 +10217115 +5306525 +1694853 +1531669 +7621246 +1060467 +18194120 +16287031 +16416791 +1418947 +1859347 +2067751 +17433905 +1193505 +16747091 +18493618 +10584114 +11943980 +5037828 +18540148 +14558199 +11878444 +4436866 +4322179 +10193522 +318603 +8937202 +7249658 +2669368 +17813357 +18533594 +16733984 +1869833 +3726459 +18184289 +13784878 +10169929 +18094505 +2105106 +18908459 +10264300 +12390278 +19921640 +10033615 +20818169 +19590030 +17172418 +6395728 +19282667 +12600648 +5024066 +2312199 +14409433 +787839 +9576175 +3845079 +3373877 +226198 +13487346 +2588760 +10148302 +17906418 +6028073 +10734847 +4456527 +7638285 +10691593 +13136730 +5326841 +2316131 +13191124 +3465627 +18251136 +15212901 +2577618 +3128774 +2587449 +867137 +5352400 +15303995 +12147141 +5098777 +3186445 +6026107 +18394659 +152142 +673806 +15001876 +10182381 +6940330 +4874645 +15648713 +8294297 +407076 +11279448 +13581062 +8902469 +6687362 +15648058 +3032436 +9601734 +16939111 +17504029 +12744171 +3282783 +19160771 +13272389 +11136580 +7606172 +9076138 +9247842 +9656784 +15334797 +2237488 +9449036 +5277689 +19201403 +15805999 +8541367 +15148676 +18019139 +20675301 +9297649 +16152683 +7409565 +4200282 +8897226 +20916472 +12170734 +15348560 +16470531 +17114747 +13332682 +10420931 +3242806 +1620142 +20206065 +15390502 +19483207 +8142910 +11614336 +14987458 +14539849 +16302104 +18093195 +20168710 +2196201 +5860301 +4817629 +3253947 +238649 +1101755 +20326651 +2053333 +21413233 +4021370 +13099374 +17840882 +17110159 +4894961 +17266134 +8504011 +7984969 +11852886 +2158190 +9736083 +2226347 +8853972 +1057190 +19886251 +97092 +19905257 +7131694 +3465627 +7582580 +17125888 +15707695 +13977553 +14168917 +815364 +1483172 +17991614 +7919433 +10616227 +16585218 +948401 +4338563 +9375636 +4794691 +1028355 +11869925 +83985 +11758514 +7340097 +17899864 +16862434 +21445345 +13001726 +3993845 +6767316 +12760555 +9040093 +9834386 +16482327 +3453175 +16416791 +18347473 +13476205 +9506052 +6528110 +3618981 +13385765 +9267502 +759003 +21460419 +15007774 +12315568 +6167664 +18496894 +6634278 +180323 +13451301 +12747448 +17561700 +10730914 +14923888 +20907297 +6061496 +4489950 +10955047 +20233590 +8620665 +20908608 +5548352 +7449542 +19605103 +5176764 +2466208 +13056121 +4686557 +6853167 +2565167 +4630196 +11112332 +2065785 +13762596 +9933345 +5054868 +19077541 +9873052 +6872828 +417562 +12243478 +44664 +18511312 +1967481 +13831408 +16202490 +3109113 +5040450 +8736663 +8423403 +20352210 +4184554 +18606339 +13988039 +6054287 +16779859 +12202846 +10230877 +1549363 +9552583 +21156333 +10188279 +19744694 +13210785 +13500453 +4453250 +7506558 +12470887 +11523241 +7581924 +9757054 +4068556 +6322328 +5734473 +7125796 +3303754 +5275068 +20955138 +4963773 +5163002 +1036219 +2854179 +17378855 +2692306 +4999162 +20816858 +8694720 +4237638 +19734208 +16520993 +15813208 +1907844 +7436435 +19379660 +19964239 +4670173 +8072131 +20272912 +6068705 +2532399 +13292049 +19641148 +14425817 +18178391 +7484276 +3640607 +175080 +5133511 +18264243 +20839140 +13915294 +6519591 +7963342 +5786901 +3537716 +11362679 +6746999 +15847286 +8351969 +8406363 +18276039 +12240857 +2607110 +17995546 +12653732 +1999594 +9174442 +679049 +10008056 +15383949 +19655566 +2926924 +11114298 +5330773 +19563160 +9115460 +14621769 +2450479 +19915742 +10482534 +6142105 +10869195 +7340097 +17923457 +8448306 +21378499 +14674853 +13927090 +13600067 +13723274 +9412336 +16483 +15110665 +2386910 +16734640 +6147348 +3908648 +19164703 +2668713 +3675341 +17363782 +990344 +20023876 +17854645 +19235482 +13182605 +13786189 +16395165 +457539 +3468904 +3375188 +20362040 +14192510 +10889511 +16973845 +13961169 +19670639 +3455797 +1407151 +13578440 +21348353 +10968809 +6199776 +1470721 +12823469 +6048389 +6296114 +20055333 +18767557 +6497308 +5673525 +3347008 +2020565 +2388876 +1075540 +6551703 +14989424 +9186893 +18595853 +2356763 +18913701 +620067 +17100984 +12295907 +7838169 +1150251 +61048 +20895501 +11165416 +5837364 +922842 +11497027 +10347531 +7463305 +4443420 +945780 +9300270 +13457855 +5962537 +4025302 +14935685 +10350807 +13350376 +19579544 +17062973 +16019645 +334332 +12141243 +3226422 +5637480 +2478660 +2490456 +11841744 +1920951 +20939410 +4744884 +1491692 +8205824 +11152964 +9287163 +12192360 +10533652 +8131113 +6848580 +9940554 +6441603 +21282162 +16817870 +19205991 +7465271 +8127181 +7722171 +20582896 +16007193 +10793173 +16559004 +3503638 +9465420 +13044325 +11306973 +16310624 +18185600 +9750500 +18059116 +2293849 +8003974 +18354682 +14154499 +15605460 +19017903 +8836277 +1371762 +4364777 +13649219 +18611582 +18260966 +12562637 +14493319 +20839796 +11763102 +9558481 +6489444 +5853748 +14374699 +5494612 +12105853 +15980324 +10145681 +5031930 +7352549 +13647253 +196707 +6747655 +1411083 +10240707 +16101565 +8626563 +12123548 +13483414 +12010827 +12248066 +2428197 +6056909 +6632967 +7547846 +3907993 +7140869 +19399976 +16688765 +20090723 +122651 +131826 +7100237 +91849 +14351106 +5197080 +9920893 +12115684 +15348560 +3447932 +17688184 +5450048 +20204099 +15893161 +18979893 +20625494 +6658526 +15328899 +1547397 +149521 +11133959 +10732225 +2475383 +16532790 +5691219 +329744 +15434411 +5599469 +13591548 +3391572 +5356987 +15058892 +10494331 +4997196 +12404041 +13401494 +6551048 +2340379 +15725390 +11386271 +6742412 +8298885 +11343018 +13619728 +8498769 +7565540 +17593157 +15644781 +13122967 +227508 +11491129 +14994011 +16785102 +20727074 +3385018 +15409508 +553221 +9394642 +17019720 +14156465 +14082410 +4299241 +10597222 +16055034 +7354515 +15207658 +21342454 +21215970 +20479349 +4467668 +10813489 +8622631 +20890913 +2306956 +15591042 +12866723 +19409807 +8271360 +16159892 +15540579 +12212677 +6957369 +21246117 +6289560 +15111320 +7439056 +16638957 +20915817 +16336838 +5060766 +18076155 +17631168 +6877415 +11221777 +6052321 +141657 +459505 +6861687 +3618325 +12425668 +8935236 +8229417 +10605086 +5884550 +14031292 +14752840 +12382414 +19763044 +8587242 +6104094 +12820192 +9791788 +19388835 +15979013 +8901158 +2185060 +12934225 +20198201 +6990137 +15314481 +4246813 +10233498 +19678503 +18167905 +12387657 +11247336 +14357005 +12160248 +10975363 +7730035 +10133884 +11487852 +11287312 +8261529 +15083140 +8589208 +18234096 +19217787 +442465 +551255 +18251791 +8617388 +11751305 +12705505 +18570950 +16475774 +12273625 +1972724 +17745200 +20422989 +9653508 +5699739 +12795944 +13594169 +18204605 +10528409 +8745183 +10923589 +21234320 +14410088 +7051085 +11358746 +1194815 +14004422 +3150400 +18662044 +8797611 +4031856 +12555428 +19482551 +16749057 +21463040 +5396964 +21354251 +1698129 +20469519 +5087636 +6356407 +58426 +19036909 +16233292 +10466806 +1462201 +2520602 +16005883 +12546253 +5332739 +3569174 +17701946 +14786263 +18447087 +15495360 +11194907 +20017978 +18310118 +8194683 +3761193 +8566926 +3812966 +4339873 +8931960 +6575951 +7683505 +12501689 +13585649 +4892995 +20392842 +11153620 +7152010 +13726551 +677739 +16432520 +17232056 +12145175 +8235970 +19581510 +20780813 +13219960 +10995023 +20236867 +18732168 +3881779 +3799859 +5898968 +14373388 +1753179 +12390278 +17845470 +11551421 +9521781 +18232130 +3520022 +9235390 +1726310 +827815 +3660924 +1152217 +3698934 +4234361 +9131843 +21432894 +10994368 +16379436 +14254113 +8772708 +2311544 +18887487 +9617463 +2485213 +8993563 +17476504 +11673973 +13456544 +193430 +2609731 +935294 +18960887 +19231550 +15547788 +16411549 +4149820 +8110142 +11773587 +20411192 +5271791 +13411324 +19068366 +17554491 +13002382 +17273343 +3035058 +20658262 +13062019 +765556 +1766942 +3741532 +1031631 +20229003 +6892489 +14619803 +12314912 +1968136 +2362661 +7539326 +4166204 +2217172 +3284749 +19275459 +17266789 +14997288 +12248066 +12917185 +2806993 +10377677 +14621769 +12780871 +255033 +15883986 +16168411 +4987366 +8813340 +155419 +8222863 +12394866 +1525771 +15843354 +14117144 +11701498 +4855639 +17249095 +16190693 +15508467 +5501821 +2971488 +2968211 +8635083 +15297442 +6433739 +272728 +18519177 +13007625 +4741607 +3733668 +9002083 +7967274 +20355487 +20049435 +6178150 +8806786 +13594824 +5616509 +16758232 +13356930 +12245444 +17265479 +18780664 +17720296 +11858784 +20113005 +14608662 +10288548 +7134315 +10864607 +18035523 +13109205 +10079490 +8958829 +8381460 +7534739 +7313228 +15535992 +2573686 +21309687 +12880485 +8024290 +20400706 +20747390 +18587334 +5895035 +8032154 +14008355 +19719791 +17680320 +10384231 +9127256 +4054793 +12195637 +13187848 +18051907 +17589225 +3212659 +3032436 +8046572 +1634560 +3984014 +9833075 +13185882 +8616078 +5302593 +14290813 +6656560 +18785907 +12652421 +173769 +4282202 +8129803 +16967947 +12515451 +21461074 +5078461 +20460999 +7652703 +10350807 +13207508 +13505040 +424771 +765556 +9983152 +2560579 +15292854 +13284185 +6113269 +6600855 +3107147 +10988470 +10485811 +14659124 +3363391 +16663206 +14106658 +15221420 +5020134 +17639032 +9818658 +4189797 +462126 +21343110 +10879680 +17713088 +7790983 +12567225 +20770983 +10715186 +19179121 +3731047 +3208727 +13962480 +15532060 +15055615 +19466167 +3947314 +5178075 +4113775 +2181783 +4342495 +12112407 +11173280 +19934748 +3615704 +14443512 +2930856 +7849310 +14288192 +16268025 +3179236 +11789971 +8753702 +17410313 +14469071 +7293567 +14187267 +21289370 +18669909 +18693502 +15566793 +17158656 +11455739 +7594376 +13752765 +12551496 +15031367 +19925573 +16508541 +9230802 +2647086 +17795663 +8752392 +19945233 +1327853 +14217413 +2043503 +19297741 +5737094 +1342271 +16328318 +11926941 +12543632 +11115609 +8041985 +3923066 +1470721 +13734415 +5620441 +17742579 +620723 +14286881 +15536647 +966096 +19291187 +10013299 +2876461 +5372061 +7345996 +18245237 +3485288 +14243628 +10922934 +9256361 +5973678 +9120047 +17800905 +18504103 +4222564 +18979893 +5815737 +14806579 +8994874 +12931603 +9771472 +13673467 +11266996 +2156879 +11566495 +12340471 +8017737 +18924187 +5842607 +20977421 +18662700 +16283099 +2936099 +2836484 +9588627 +500137 +20798508 +19295775 +20059921 +10365881 +20915162 +6012344 +20401362 +19195505 +11713950 +13003037 +10472704 +17899209 +16780515 +12763832 +18192809 +11359402 +2523224 +1852138 +12204157 +14676163 +20958415 +15447519 +11214568 +17751098 +18002100 +7229342 +17547282 +4772409 +13923158 +8634428 +14494629 +18534905 +20434130 +4460459 +20078271 +12576400 +14530674 +3287370 +7308640 +17921491 +20757876 +18859307 +5679423 +2345622 +20708069 +11409209 +705264 +13381833 +20604522 +20451824 +10671277 +4450629 +17258270 +1166635 +346128 +21233010 +21440758 +3917823 +10832495 +18825228 +7819163 +15752915 +14979594 +8269394 +14919301 +17532209 +6378033 +17734714 +6558912 +5029309 +3170061 +8617388 +18869793 +12253964 +2240765 +4913966 +11080220 +14187922 +15991465 +17788454 +8592485 +4886441 +12523316 +2229624 +20959726 +20757876 +20276844 +7522287 +1167946 +18430703 +3200863 +6816467 +16022922 +21259879 +3728425 +18487719 +13592203 +14392394 +9308790 +4581045 +1723688 +2436061 +18287836 +8694720 +2133942 +10305588 +18596509 +18604373 +14263288 +11793248 +11439355 +15984256 +19110309 +17403759 +8182887 +20642533 +21016742 +5355677 +3797893 +11815530 +7289635 +13191780 +5372716 +6372791 +16918795 +9475906 +11680527 +4695077 +4986711 +13333992 +838301 +19634594 +16157925 +16903066 +15317758 +6708333 +10253815 +6642798 +14801992 +18298977 +3608495 +3643884 +15638227 +13470962 +19552675 +10865263 +15585143 +11251923 +17790420 +2192924 +7851276 +18975305 +4684591 +13036460 +12636037 +15528783 +298287 +16391233 +651524 +911046 +21256603 +9160024 +1921606 +5398275 +12978133 +14126319 +16640268 +5305869 +19181087 +14358315 +21374567 +3709420 +6824332 +19355412 +9530956 +8365731 +20934167 +544046 +15755536 +14872115 +1576888 +2803061 +20259149 +6484201 +1851483 +19312814 +4841221 +14199063 +10312141 +824539 +13659049 +12300494 +9329106 +16138265 +18078777 +15101490 +9658095 +11476055 +18465437 +21227112 +5537210 +1580820 +10449766 +20852247 +20077615 +11371198 +12310325 +12878519 +13466374 +21173372 +17235988 +11250613 +17029550 +7442333 +2669368 +8866424 +7959410 +9879606 +10830529 +7128417 +16619952 +16215597 +3124186 +15170303 +2700170 +3569829 +17922146 +19432089 +13606621 +13570576 +12305737 +20881738 +11040243 +20323374 +3150400 +11725091 +7995454 +5281621 +16999404 +10363915 +9507363 +19574957 +13131487 +4964429 +12835921 +3617015 +19406530 +10314107 +11375130 +3532474 +1059156 +2416401 +289112 +17355918 +2669368 +21396849 +14063405 +3170061 +19051326 +13906774 +690846 +12278212 +6448812 +6246307 +13653806 +13214717 +5164312 +7581924 +11036311 +13925124 +11921043 +19743383 +610892 +4981468 +2587449 +3945348 +13517492 +9032229 +1249210 +9114149 +1135178 +17054454 +16448904 +11519964 +18220334 +10709288 +19744694 +13997214 +13832719 +1689610 +2156879 +18874380 +1135178 +8192062 +4487329 +14864906 +13489312 +6767316 +6746344 +80053 +16644200 +15917409 +2177851 +9606977 +475889 +6087710 +12263794 +19482551 +12053425 +7168394 +3126808 +17643620 +9897956 +789149 +18060427 +6299391 +9875018 +11464259 +14153188 +11557975 +16043893 +5341914 +18393348 +15087072 +13623660 +10628023 +5313734 +12475475 +11325979 +4006952 +4189141 +5708914 +2195545 +20071717 +9646954 +5586362 +1998938 +6624448 +10436004 +1793812 +12832644 +11703464 +10846913 +19424880 +6567432 +10443868 +15944279 +4921830 +12021312 +584023 +5424489 +3808379 +13928401 +18325846 +17581361 +8129147 +5299971 +16152027 +3125497 +382828 +8617388 +5944843 +21300512 +1363242 +20900744 +974615 +8561028 +4458493 +20221139 +9785234 +14368801 +11827982 +10176482 +2091344 +5520171 +12072430 +3669443 +13809781 +4716048 +7433814 +8410951 +10706011 +8390635 +16045204 +1388146 +21352940 +20006182 +6939674 +19139800 +8580033 +8895260 +15460626 +7486897 +11579602 +2029085 +10242673 +8529570 +6363616 +11402655 +17090498 +6431773 +16748402 +4417205 +6515003 +9816036 +9457556 +6507139 +7292912 +14400258 +19617555 +6505828 +17239264 +15680170 +18766246 +11711984 +1759078 +15946901 +14596210 +9041404 +2338413 +2152947 +1925538 +7423983 +1300983 +10728948 +17896587 +3736945 +15952143 +19633283 +6799428 +4482741 +4020059 +19964239 +5206911 +9926136 +10564454 +7415464 +9230147 +6998001 +9412992 +9677100 +13107894 +6534008 +19620176 +18922876 +10425518 +20824067 +14431715 +9899266 +17690805 +17051832 +9975288 +20132665 +18926809 +289767 +1487760 +333021 +19868557 +3926998 +5453325 +12798566 +3042922 +12364064 +4301207 +13448680 +15263363 +1854104 +9091211 +10046722 +7034701 +16960082 +15374774 +4039064 +20459033 +17535486 +3215936 +14642740 +1544121 +14992045 +14265255 +636451 +5307836 +18017829 +5905521 +21430928 +5147928 +5847194 +9273401 +1912431 +10453698 +7616658 +12012137 +971339 +4577768 +11962330 +6655905 +4611191 +20582240 +150832 +12041628 +14716140 +17219604 +20186405 +14740388 +12695019 +1409772 +15335452 +2970177 +10751230 +16705149 +11732955 +18504103 +6219437 +14530019 +13432296 +12490548 +8758945 +774076 +16280477 +10527754 +20273567 +2072994 +4388370 +7825717 +8502701 +8137667 +18445121 +13900876 +11850264 +14290158 +9331072 +11242093 +8364420 +19910499 +17249750 +11164105 +8576756 +21062617 +3273608 +14232487 +5092878 +3317516 +2389531 +15533370 +2432129 +16003261 +10829873 +12497101 +17709811 +11767689 +19074919 +5215430 +17945739 +5132855 +11339086 +11396102 +6731926 +19181087 +20807683 +21468283 +11282725 +8975213 +18472646 +1874420 +10814800 +3955834 +4022681 +918255 +8235315 +13654462 +12204157 +14233142 +6921980 +3413854 +16559004 +7834892 +8678336 +21308376 +2310233 +13522080 +9387433 +9864533 +18491652 +7391215 +1080128 +6552358 +8656710 +1631283 +21352940 +8939168 +3347663 +17410313 +1175155 +15212901 +1221030 +3950591 +10348841 +9876329 +14632254 +15842043 +7419396 +18785907 +14597521 +5031930 +15425236 +3325381 +14714829 +11980025 +2082824 +18538837 +7486242 +5043071 +20727730 +18473302 +14096172 +2255183 +19445196 +12712059 +4041686 +3743498 +3570484 +319258 +10089320 +3871293 +1936024 +20088757 +1683712 +19363276 +6657871 +1020490 +14081755 +15970493 +2548127 +9618118 +10436659 +13520769 +19723723 +19582821 +17057075 +15686068 +3391572 +15250256 +9061065 +1367174 +14175471 +5303248 +755726 +10573629 +16110740 +6505173 +11236195 +3352250 +1897358 +3476768 +15935104 +18563086 +13174085 +8678336 +5583741 +10410445 +10841014 +13883181 +5626339 +18378275 +12185807 +249135 +5746925 +5520171 +20348278 +13017455 +17615439 +20760497 +12548219 +16983675 +17254338 +20158224 +6534664 +11211946 +11589432 +2783401 +20712656 +11759825 +7072712 +10906550 +11829948 +15815829 +12565259 +5916007 +13691162 +6989482 +4685902 +7171015 +2455722 +7785740 +9300270 +11285346 +12618998 +2764395 +12590817 +14632254 +7760837 +17607575 +5720055 +156074 +8689477 +5792800 +5374027 +18010620 +4541723 +21357528 +10595256 +6360994 +20612387 +7342064 +17371647 +18736100 +18797703 +515865 +8435199 +10354084 +4436211 +17545316 +18267520 +129205 +15418027 +15196517 +18963509 +18478544 +2280742 +5760032 +6123755 +13389042 +5307836 +11632030 +8953586 +5341914 +14576549 +4667552 +17192734 +19298396 +4868091 +8146187 +21071 +19928849 +3839181 +13054810 +9568967 +1050637 +19639182 +15379361 +7304708 +4492571 +8504667 +19379005 +7222133 +4599395 +9154126 +12884417 +2304335 +13412635 +1749247 +17294314 +10488432 +20629426 +4795346 +3568518 +7251624 +15980324 +10688972 +13110516 +16623884 +8801544 +15592352 +17133097 +20369249 +13250107 +2044158 +3736945 +91849 +21316240 +1127969 +19559883 +8235970 +17990959 +6712921 +10986504 +2907263 +17776657 +18922221 +7817853 +8212378 +5111884 +10798416 +463437 +12917841 +15595629 +9437240 +10619504 +18801635 +4352980 +21128153 +7134971 +16570145 +17604954 +13253383 +16699250 +68257 +13131487 +4600705 +16638957 +11405277 +17503373 +4392957 +2408536 +5592260 +8701274 +2022531 +10323938 +21245462 +18736100 +5489369 +15687379 +16455458 +16690731 +8399810 +2247319 +6686707 +2362006 +12380448 +15760779 +14144013 +21258569 +6243030 +3691725 +14499217 +15724079 +7272596 +5423178 +13174741 +17524345 +1552640 +1099133 +7589789 +16838841 +17548593 +4950666 +10513991 +12994517 +19542189 +11860094 +19774841 +11384305 +5456602 +17960812 +2103795 +20934167 +17144893 +3191688 +12582298 +9832420 +18181012 +10693559 +2071028 +2738181 +12951919 +17717020 +13918571 +19480585 +18479200 +12082916 +197362 +16995472 +5088946 +11816841 +1717135 +6954748 +18643694 +12511519 +7971206 +16907654 +20626149 +8050504 +5022755 +2982629 +2407881 +4828770 +21429617 +4719325 +17346088 +3299822 +14482833 +5841951 +21330003 +17316597 +8152740 +6300701 +2944618 +19185019 +2900709 +5601435 +14687960 +9757054 +4320868 +16207077 +6596267 +15577935 +12896869 +313360 +18609616 +19141110 +21183858 +20573065 +10250538 +10812834 +11031068 +4147854 +12811673 +18154798 +18631898 +11964952 +11462293 +565017 +2306301 +4529927 +6248928 +1829201 +10310175 +17650173 +3006877 +19006107 +18507380 +18593232 +18070257 +1721722 +21084899 +12436809 +19605758 +20105796 +1854760 +12731719 +18310773 +6138173 +4250089 +16738572 +15536647 +8575445 +13457855 +7377453 +120030 +1153528 +19112930 +14785608 +2624149 +12440085 +14959933 +1918329 +11721159 +3579004 +3243461 +15106078 +19122105 +4603327 +17941807 +20418401 +19257109 +21452554 +19854794 +17057075 +15371497 +9634502 +21255292 +20434130 +8545954 +6473716 +13946096 +12246100 +21326726 +9229492 +15473733 +8523672 +3617015 +13137385 +627931 +20860767 +16107463 +11416418 +11491784 +18856685 +2036294 +6214194 +19904601 +12558050 +14992045 +4334630 +7394492 +19346237 +20289296 +3775611 +8248422 +12582298 +8767465 +9335004 +954955 +2999668 +12997794 +18896007 +16449559 +6556946 +13134764 +18650903 +4816318 +6796151 +9571588 +14769879 +656767 +9015190 +13434262 +10919657 +21413888 +15127704 +17317907 +2105761 +2647086 +16511163 +19417671 +1595894 +20572410 +5524103 +13138696 +21090142 +10660791 +17096397 +15338074 +20890258 +5696462 +7787051 +2332515 +7925987 +16190693 +13222582 +20096621 +19230239 +18212470 +4757336 +15662476 +18386794 +9034851 +15115253 +21223179 +890074 +15853840 +18293078 +1724999 +13824199 +17977852 +4615123 +18918289 +20719865 +11323357 +15406231 +1186951 +4195039 +3839836 +19823992 +8350003 +1021146 +20365317 +21086210 +1574267 +11234229 +12902112 +16940422 +7591755 +12818226 +12527903 +8327065 +9498843 +2099208 +10897375 +3221179 +2338413 +12202846 +14929131 +16319799 +18198052 +8240558 +20329928 +11563218 +685603 +19600516 +3957145 +2902675 +20699549 +21463040 +2785367 +2609731 +4691145 +11807666 +14411399 +11067768 +4205525 +10789241 +1619487 +16498056 +6098851 +20725763 +15094936 +5304559 +11576980 +17167175 +8159294 +15909545 +6215505 +9295027 +1845585 +532249 +12236925 +3898163 +2390842 +240616 +17007268 +18543425 +7351239 +11177213 +11976093 +21141260 +17799595 +4339873 +445087 +5943532 +6274487 +13681331 +15117874 +18761003 +15628397 +3303099 +3814932 +19303639 +16334216 +8321167 +10848223 +16199868 +19510732 +2478004 +18536216 +19015282 +8800233 +8557095 +5175453 +6590369 +16572766 +12049493 +13467685 +14366835 +14946170 +852064 +12622930 +3151056 +11538314 +13569265 +13840583 +20008803 +20432164 +3809034 +7662533 +13092821 +19094580 +4329388 +11084152 +4362155 +12706160 +11886309 +7676296 +3480700 +15994742 +12213332 +4178000 +1774806 +9605667 +16954184 +8279879 +9359908 +3217247 +16587184 +745896 +1874420 +4747505 +326467 +7231964 +19087371 +6381966 +11470157 +20829310 +2670024 +1505454 +2637256 +9547995 +1926194 +14434992 +17696048 +17447668 +12649144 +6712921 +13866798 +13830098 +13491933 +6908217 +1123381 +14589656 +1871144 +5587018 +5638135 +1276735 +13974276 +5341259 +19017903 +11668075 +16806729 +3752018 +19882319 +13276976 +421494 +20015357 +14784297 +19508110 +7954822 +7526219 +13233067 +16941077 +2127388 +20844383 +12662907 +13116414 +14473658 +6894455 +15484218 +9538820 +3541649 +18323225 +3731702 +15990809 +18637796 +4111809 +828471 +18249825 +9449692 +18316671 +17123922 +15305961 +6992758 +2044813 +8732076 +16692041 +16195936 +1001485 +11394136 +8644258 +1979278 +16669759 +20543574 +15942968 +17812046 +9868465 +15534026 +10449111 +21081622 +6356407 +21315585 +7916156 +4084939 +7190676 +4232395 +18222300 +6446191 +18585368 +10624747 +18791805 +14999910 +11341052 +1304915 +2878427 +4145232 +17226157 +5342569 +14818376 +15329554 +577469 +3276884 +9151504 +13269112 +13149182 +12873276 +4064623 +18871103 +12782182 +2281397 +997553 +20231624 +4244191 +17818600 +12006239 +11352848 +11662832 +909735 +10322627 +3553445 +4028579 +3534440 +16853915 +15615945 +13339235 +19004796 +9224249 +16492158 +8511876 +8585931 +16406961 +19890183 +861239 +6501896 +21140604 +3913236 +8692099 +3354216 +11697566 +5393032 +13210785 +5919284 +19937369 +19141766 +5742993 +16280477 +14790195 +8824481 +770144 +6143416 +3473491 +3254602 +7403012 +15842043 +16321765 +5010959 +5588984 +2909229 +5428421 +7294878 +5581775 +20691685 +20141840 +17718986 +745240 +8281190 +2443270 +19886907 +21067860 +8475831 +16218874 +7665810 +11559286 +9130533 +17215016 +1545431 +603028 +9870431 +20656296 +10178449 +3269675 +3453831 +9528990 +18305530 +17283829 +1290497 +11014029 +7097615 +7620590 +7172326 +6197155 +2228969 +1205956 +4292688 +14640119 +5381891 +15901681 +9921549 +18935328 +19251866 +9659406 +5132855 +6414733 +277315 +3533129 +8690133 +7872247 +13583028 +6089021 +16587184 +2451790 +16342736 +272073 +11930873 +19540223 +16498056 +6811880 +2875806 +6157178 +11563873 +12790046 +14140737 +5433664 +3480045 +15669029 +11278137 +21402747 +9644333 +14353728 +5345191 +8316579 +1006728 +4314314 +16524925 +3953213 +9489668 +1614899 +15467179 +7620590 +13486035 +2555992 +14835415 +8855938 +15495360 +11137891 +331710 +3753984 +6562844 +19591996 +2527156 +18387450 +16820491 +9757709 +20255873 +19186330 +11221121 +10871816 +10992402 +8915576 +1569679 +2377079 +2569099 +16330284 +5086325 +19445196 +4782239 +20438062 +5864234 +13591548 +11473434 +11371198 +420183 +19348859 +7849965 +14058162 +4537136 +7582580 +15932483 +18986446 +16690075 +19369830 +7001278 +11324012 +8528915 +3961077 +14575238 +21224490 +2137874 +19177155 +19086716 +21726 +3898163 +3024572 +2227658 +3493152 +4988677 +11080220 +21290681 +14453997 +11634652 +21075724 +14288192 +14703033 +14488076 +5951396 +2221104 +3656991 +10568386 +21048199 +12725821 +15351836 +8633772 +18880278 +4937559 +2945274 +2547472 +17612818 +249135 +7464615 +15325622 +14565408 +11615646 +7498039 +5140720 +13176707 +19048050 +16891270 +15146710 +5711535 +13417878 +20421678 +14811822 +983135 +12634071 +13868108 +7880767 +3788063 +7893874 +17608230 +4989987 +13853035 +1748592 +8060990 +6556946 +15423270 +9804895 +1162703 +1986486 +3805757 +15996708 +17442425 +1968792 +20006182 +10941284 +12579021 +2535676 +3541649 +17425386 +18382207 +5031930 +14396326 +17783211 +19744694 +12128791 +11430836 +9325829 +5788212 +16673691 +17373613 +16695318 +21376533 +10875093 +8044606 +8129803 +12992551 +11137236 +12339160 +16952873 +3820831 +18679084 +18308807 +7255556 +5467087 +18610271 +82674 +21303788 +7910913 +2043503 +4554175 +18798359 +13444748 +6524833 +11282725 +9941209 +5235091 +9044026 +19939335 +21272331 +9531611 +10505472 +14311130 +2332515 +13311055 +17072148 +20970212 +6667046 +3750707 +21037713 +19006107 +3611772 +20173298 +8756979 +4818284 +19454371 +12417148 +12408628 +11319425 +7350583 +19019869 +18350094 +20476728 +15748983 +8229417 +6546460 +19506144 +11748684 +2586793 +19738141 +10806280 +15050372 +1889494 +21426340 +11195563 +6292182 +3168095 +21154367 +857962 +7724792 +19031666 +11432802 +7894529 +14790851 +6459298 +1502833 +9706591 +4742918 +15417372 +14406156 +8904435 +1510042 +18417596 +10439281 +7924676 +14949447 +9557170 +11475400 +3819520 +5468398 +5955984 +2694927 +6581849 +14279017 +3270986 +15047751 +9184927 +8991597 +12113718 +7943026 +20084824 +14286881 +12305082 +19908533 +464092 +12957817 +16222150 +13446714 +10226290 +15260086 +13739658 +10683729 +18492307 +18089262 +11500304 +10445834 +4714737 +15693933 +3444656 +4205525 +20914506 +19669328 +20904021 +11017305 +3641918 +13720653 +13282874 +19392767 +15477010 +15679515 +8296919 +13933644 +17481747 +480476 +2136563 +17613473 +2737526 +6882658 +7043876 +5419902 +405110 +9865843 +7325680 +6782389 +7351239 +10326559 +15069378 +16277856 +1017214 +9892058 +19530392 +8564960 +4672139 +376274 +21453210 +20636635 +15141467 +755726 +10728948 +17522379 +361857 +13485380 +14225933 +19922296 +13082991 +18947780 +7762147 +16633059 +5305214 +8692754 +12335884 +11400689 +12523316 +4461770 +18264243 +6230578 +13214062 +20715933 +14389117 +13092166 +3777577 +3546236 +2224381 +3419752 +2389531 +4343150 +14507737 +16206422 +6588403 +19806298 +18032902 +11957743 +4591530 +14366835 +20867321 +15427858 +748517 +7576681 +6138828 +5563425 +4794691 +12394866 +12495135 +9667925 +9739359 +7567506 +4889718 +10544138 +15429169 +9207209 +6128342 +16245088 +15245669 +16752990 +3980738 +8572824 +2977386 +5780348 +18380896 +12579676 +3215281 +540114 +15339385 +3207416 +10534307 +12163525 +9120702 +20168710 +12590817 +4248123 +17845470 +13937576 +3875881 +15353147 +20802440 +8699963 +14938306 +20320098 +12107819 +19224341 +20858801 +3529852 +19842998 +6867585 +11498993 +19276769 +13501108 +20337137 +1386179 +3727770 +19846274 +11859439 +4084939 +15565483 +4939525 +11241438 +6598233 +4071832 +14244283 +19637871 +11600573 +17983750 +21181237 +4851052 +11256511 +18284559 +18996932 +4222564 +3358149 +15001876 +21069826 +8285122 +20932201 +13293360 +10595256 +17764861 +6864964 +16449559 +20158880 +11540936 +20082858 +582056 +17083289 +3396815 +3559999 +1260351 +11271584 +11067768 +8705861 +12115684 +18481821 +8053126 +20495078 +7476412 +16592427 +3811000 +20209342 +3788718 +225542 +688880 +9963491 +20934822 +13599412 +16151372 +13117069 +8514497 +9281265 +4565316 +10976018 +6221403 +13997869 +17419488 +1673226 +2094620 +19681124 +6742412 +12782837 +15468490 +16492158 +18629277 +17344777 +18727580 +15482252 +9829799 +14344553 +9933345 +5195114 +12835921 +8574135 +769489 +11993787 +11272239 +597130 +17111470 +15140156 +14811167 +919565 +5514928 +15256810 +17523689 +7290290 +634485 +7207060 +6773869 +2177195 +17372302 +5688598 +7222133 +16720877 +1280012 +3432859 +4907412 +17567598 +9692829 +10306898 +15159161 +6471750 +12231682 +10252504 +10455009 +3177925 +20011424 +5843262 +14923888 +828471 +18091228 +8856594 +17187491 +15362322 +2494388 +17810736 +8241213 +17517791 +4350359 +12647834 +10814145 +19230239 +15927895 +7511146 +20358764 +17121300 +1774151 +20017323 +3292613 +466714 +17103606 +19422258 +1479896 +5499855 +15342661 +12748759 +16136299 +15413440 +11229641 +9144951 +20791955 +10054586 +9576175 +60392 +12716646 +7608138 +1011971 +17639688 +1470721 +15723424 +14647983 +901871 +15788959 +13558124 +13578440 +4540413 +5978266 +11031723 +9700693 +7467892 +2215861 +6123755 +11981991 +6280385 +19381626 +15356424 +12853616 +15813208 +4383127 +19763699 +13395596 +17732748 +3799859 +1500867 +12837887 +16207733 +10294447 +20758531 +5979576 +5375337 +9212452 diff --git a/2ano1/AED/aula11/aleatorios20000.txt b/2ano1/AED/aula11/aleatorios20000.txt new file mode 100644 index 0000000..038cc9a --- /dev/null +++ b/2ano1/AED/aula11/aleatorios20000.txt @@ -0,0 +1,20000 @@ +11444598 +11282725 +14644051 +12618998 +19629351 +17088532 +1984520 +6497308 +2060542 +16574732 +2004181 +648248 +3632743 +9492945 +9413647 +18290457 +7798847 +4267129 +4489950 +5316355 +12058012 +19691610 +15081174 +1293119 +11549455 +18728891 +17257614 +21440758 +12213987 +11289934 +16189383 +20688408 +12457780 +15296131 +15332831 +21016087 +10357361 +5531968 +756381 +97748 +18291112 +12023934 +13758008 +8995529 +13185882 +3546236 +9108251 +9553238 +19013316 +18633209 +1573612 +6598889 +13497832 +7897151 +4773720 +8563649 +5998582 +356614 +7332233 +5089602 +3376 +14621769 +5769207 +10607707 +15394435 +5528035 +16975156 +18876346 +12774317 +18677118 +3815588 +3361425 +2383633 +5950741 +1768253 +1711237 +8105554 +11344984 +15088383 +11194907 +18764280 +8378183 +13339235 +12529869 +5227882 +12523316 +4805832 +20761808 +6678842 +7621901 +2238799 +8173056 +20965624 +9072861 +7771322 +5916007 +3042267 +17509272 +4247468 +14592933 +7068124 +13957237 +15381327 +8996840 +3059961 +7881422 +7248348 +10843636 +4984745 +9951695 +15635606 +20786712 +19702096 +5341259 +14060783 +19759767 +2668058 +14155155 +14364213 +2744079 +17015132 +14149256 +578124 +18784596 +8814651 +5596848 +16182174 +8549231 +17916248 +14964520 +5443494 +14546403 +939226 +16584563 +8133079 +18434636 +21394883 +19960307 +7659912 +2006147 +4981468 +1258385 +10441247 +1677158 +8304783 +12506276 +156730 +1449749 +5801319 +18209848 +1095856 +13990660 +14258046 +7653358 +1621453 +1530358 +10679797 +18500827 +14921267 +7690713 +11932839 +18660734 +6582505 +1629972 +8130458 +12178598 +9108906 +20355487 +10816111 +15475043 +2609076 +3221834 +15295476 +11988544 +10603775 +11836502 +9304202 +4000398 +11667420 +14647328 +20653019 +11982646 +8479108 +15332176 +13910706 +11418384 +5310457 +4900204 +15303995 +1023112 +20791955 +1248555 +18211814 +20508185 +15825659 +21146503 +5472330 +11188354 +13805194 +12164835 +5953362 +3280161 +13849103 +19024457 +6214850 +7796881 +17156689 +10584114 +21257913 +10991091 +3404679 +7013730 +16336183 +7600274 +5503132 +19273492 +5303248 +19871178 +12259207 +10949804 +17469950 +17132441 +19057880 +17330359 +751139 +5034552 +20534399 +9012568 +18787218 +5943532 +7651392 +21465662 +15262052 +6324950 +20854213 +8987665 +18492307 +641039 +21066549 +8915576 +16551795 +14315717 +16749713 +10094563 +10955702 +20546196 +15513710 +4093459 +16019645 +20056644 +2276810 +21192378 +18002100 +5303903 +6388519 +6867585 +4748161 +13811092 +8737974 +6505828 +15510433 +13603344 +8961451 +20161501 +21027883 +18699400 +3769057 +16568834 +13020732 +5835398 +3232975 +5073873 +5823601 +8905745 +7857174 +10473359 +7179535 +5233125 +8842176 +21217937 +4520096 +13111826 +20268980 +13656428 +2287951 +14741044 +12337850 +15415406 +6281041 +16602257 +12087503 +9939899 +12069153 +11734921 +4506989 +10355395 +836335 +5638791 +7834237 +18789184 +21158954 +20576342 +20389565 +6027417 +16488225 +3782820 +19450439 +14195787 +13715410 +5328152 +10177138 +1951097 +10466806 +14268531 +4437522 +7304708 +4704907 +12105853 +13444748 +11354814 +19677192 +18740032 +19956374 +13615796 +9453624 +2732938 +13944130 +2873184 +13476860 +10894754 +14538538 +12130102 +15879399 +2463586 +11828637 +5992028 +6838749 +588610 +9026331 +3818209 +2363317 +3430893 +12665528 +15167681 +4400166 +9899266 +1030321 +19088026 +1245933 +10362604 +19129969 +14739078 +11619578 +18174459 +913667 +9821934 +14694513 +13824199 +3911925 +17265479 +5665005 +6412112 +6038559 +12535112 +19145042 +19828580 +14151222 +7910913 +16369606 +15057581 +20651053 +2833863 +15385260 +6970476 +20864044 +9618774 +16587840 +471301 +14016219 +20993149 +16893236 +4358223 +7275217 +11396757 +8515153 +5472986 +10097840 +10306898 +19386869 +11166071 +16883406 +17383443 +5320287 +21179926 +8115385 +12459746 +16007193 +15507156 +10941284 +1972724 +15453417 +12590162 +13162289 +11247991 +15184720 +5256718 +7787051 +7204439 +8173712 +544046 +5085014 +4468979 +18245237 +13769149 +10116845 +17355918 +10601154 +6771903 +17420798 +3331934 +21167474 +7220823 +20840451 +18750518 +14187922 +12378482 +4268439 +2346933 +19033632 +116753 +18667287 +8568236 +12715335 +15632985 +10493675 +5578498 +13154424 +12428944 +808155 +17072804 +30246 +17294314 +1023112 +1900635 +20887637 +18677773 +6878726 +14417953 +13415257 +19350169 +14938961 +18094505 +2236177 +17805493 +16647477 +2665436 +7841446 +15707040 +144278 +13574508 +3881779 +9103663 +780630 +13860899 +12080950 +17772725 +15775852 +3278195 +5252130 +3034402 +17233366 +14147946 +8332308 +7569472 +7811955 +711162 +3498395 +2521913 +9666615 +14583758 +7798192 +11630064 +16855881 +17355263 +15257465 +19144387 +16578009 +2101174 +106267 +16532790 +2061197 +11083496 +16673691 +16847361 +18041421 +12738928 +12780216 +5216741 +11335154 +19787948 +14950103 +19397355 +21354251 +3550824 +1605724 +6731271 +10630645 +7783774 +15218799 +16518372 +20519326 +17103606 +1367829 +9076138 +16570800 +4809764 +11562562 +12291319 +1365863 +15804033 +110199 +14315062 +17007923 +751794 +2195545 +1080128 +13769149 +8815306 +9345490 +21212038 +1643079 +4109843 +7336165 +21300512 +10344254 +20603867 +8104899 +21286749 +16802797 +6514348 +3856875 +7867004 +9935966 +8477797 +18519177 +8295608 +8153395 +3616359 +12944710 +1655531 +6099507 +8295608 +12283455 +1133212 +9694140 +7917467 +18648937 +7315849 +7115310 +14425817 +13084301 +15726701 +13318264 +10607052 +17962123 +14830828 +14261978 +1978622 +8437165 +7410876 +12849683 +21235631 +9157402 +13021387 +2772915 +5404173 +14525431 +19990453 +7819819 +13443437 +4289411 +16476429 +12855582 +17245818 +14883912 +4631507 +9926136 +12956507 +1426812 +19998973 +7166428 +7681538 +9134465 +17244507 +9224904 +5730541 +2521258 +9430031 +10146991 +443121 +21460419 +21269710 +7437746 +9841595 +12483339 +7366312 +13819612 +11831259 +4386404 +4528616 +10983227 +10474015 +19470755 +3449899 +15115908 +3150400 +2946584 +2124767 +5230503 +15707040 +20808338 +5454636 +12941433 +18367789 +20883705 +3919790 +17323805 +18342886 +8643602 +17897243 +7925331 +13067917 +18385484 +4275648 +9903854 +14112556 +1235447 +12591473 +4850396 +18955644 +19879042 +797014 +13727206 +11826016 +12504310 +20000283 +17772070 +21126842 +9758365 +6494687 +5280966 +13992626 +2791920 +19261696 +13394285 +20568478 +2597935 +10946527 +1821992 +10867884 +4101979 +13434917 +7455440 +2696238 +8677026 +19304950 +8781883 +9392020 +11803734 +10791863 +13473583 +5223950 +2183749 +18825228 +12805775 +11128061 +7867660 +19534980 +15650024 +6168975 +20959071 +1766287 +20421023 +3624224 +8262185 +12982721 +8886740 +18567018 +11221121 +1714513 +13495865 +8140944 +5658452 +15552376 +20003560 +5320943 +18574882 +14480212 +14752840 +11958398 +720992 +8894604 +2803717 +756381 +16632404 +18310773 +5645344 +21472870 +14606040 +1765631 +14983526 +9369083 +17491577 +7531462 +18717094 +21349663 +18245237 +5957294 +11188354 +3896197 +13098719 +18129895 +17894621 +11510134 +14638153 +4164238 +3821486 +1233481 +5197736 +16440384 +17690805 +14602763 +16456768 +17179627 +11791282 +1448438 +16483638 +15994742 +11817496 +10989125 +4852362 +12708782 +11939393 +4643304 +18548668 +14526742 +11855507 +16003261 +19806298 +20882394 +528317 +19763044 +12828712 +8817927 +2714588 +20308956 +16933868 +5490025 +14467760 +924808 +6865619 +1493003 +8144876 +8102933 +6147348 +6334780 +4894961 +11918421 +14725315 +21236287 +8614767 +10215148 +21206140 +15836801 +14094206 +17582671 +17152757 +6106716 +12193016 +20305680 +6052321 +19385558 +11494405 +10723706 +10311486 +920876 +20744113 +10383575 +4476188 +6154557 +11535037 +2135908 +14251492 +2987217 +20281431 +2698859 +8867735 +14826240 +931362 +2559924 +19645080 +14535917 +16950907 +4729155 +4931005 +20928924 +18956955 +18076155 +1628662 +1190883 +11284036 +540114 +19077541 +9398574 +4183243 +15958697 +749828 +14198408 +18072878 +19991764 +18184945 +17614129 +8974558 +11329911 +13330716 +3942727 +3040300 +6615928 +5308491 +20053367 +8650156 +16915518 +13360862 +11962986 +15461936 +21044267 +10704045 +19642458 +13971655 +6214194 +20026498 +11320736 +1352756 +6876105 +21117667 +2210619 +14523465 +18947125 +17598400 +18080087 +5882584 +20952517 +19122760 +11730989 +10671932 +747862 +6855789 +1469410 +13406737 +4592841 +3674686 +2768327 +5260650 +21351629 +16239845 +731478 +4929039 +19234826 +13345133 +6992103 +19464201 +12284110 +8325099 +19178466 +18245237 +1569679 +1922917 +12463678 +3954523 +11892862 +3715318 +17562355 +17502063 +4546966 +17339534 +6670323 +10445834 +15775197 +14356349 +6771903 +1662740 +828471 +18211159 +11504891 +855996 +12434187 +1004762 +3620291 +8278569 +314015 +15186686 +2822067 +2746045 +10874438 +5181352 +64324 +12578366 +9289129 +233407 +15207658 +9747224 +17198632 +4634784 +10259713 +1032942 +2992459 +7450853 +2479315 +13522735 +3151056 +7714962 +2197511 +4659688 +18983825 +4778307 +12252653 +16937145 +16928625 +102991 +14554267 +6159800 +6229267 +3126808 +8857249 +6960646 +6771248 +1603103 +7796881 +65635 +9738704 +17877582 +10321972 +16157925 +1567713 +18244582 +7879456 +12620964 +3544270 +11586811 +2561890 +15064135 +4235672 +18540803 +5660418 +16971223 +16282443 +11175246 +17306111 +513899 +5898312 +19810230 +20073683 +1366519 +12491859 +13052844 +8702585 +760314 +13485380 +5375993 +2913161 +18565052 +2084790 +19776151 +1040806 +18850787 +4850396 +16258195 +14746287 +1708615 +12917841 +14967797 +13674778 +163939 +4689834 +9321897 +6220092 +12368651 +12359476 +5341914 +20839796 +17379511 +2083479 +18754450 +20813581 +18839646 +14072580 +992965 +10794484 +7155942 +10302966 +19587408 +2992459 +20708069 +4955254 +19838410 +15430479 +3423029 +11197529 +8642947 +6330192 +4309072 +14341931 +8853972 +2982629 +8275292 +20373837 +2270911 +7026182 +8240558 +3360770 +4208147 +20385633 +15885952 +15469801 +15292199 +10025750 +19765666 +3932241 +14914058 +5449393 +17618716 +6707678 +21154367 +18232130 +2746045 +13490623 +16539343 +20485903 +9830454 +13484724 +668564 +15140811 +14158431 +10505472 +12020002 +5429077 +4360189 +11446564 +14905538 +3848356 +1175810 +4894305 +9266847 +16828356 +20219173 +346128 +1605724 +16531479 +8953586 +15963940 +1449094 +7813921 +13550260 +20907953 +3769057 +8497458 +4550243 +20816858 +14391738 +8034121 +3539027 +13310399 +14379942 +1883595 +4185864 +2084790 +6331503 +16363708 +7737899 +11215879 +17093775 +6548426 +9905820 +9080726 +6578573 +14410088 +1548708 +5622407 +8129803 +18818019 +13354964 +17626580 +20645155 +14915369 +9239322 +15412129 +20850937 +12172700 +2240110 +18047320 +2476038 +16206422 +4371986 +20997737 +2702792 +5779693 +12419769 +9217695 +1166635 +13016800 +6187980 +18764935 +16958116 +17605609 +10884923 +6026107 +9715766 +20727730 +6876105 +3035058 +17652795 +9467386 +17646241 +17313320 +9738704 +5661728 +8905090 +4402788 +13748833 +17308077 +15554342 +15757502 +18859307 +590576 +611548 +12645212 +21236942 +15720802 +13132142 +7079921 +11945291 +18922876 +20371871 +20424955 +17921491 +10644407 +2713933 +5298661 +16818525 +3784131 +8713070 +15992120 +8263495 +16628472 +7173637 +21404713 +19381626 +5265237 +6701780 +10785309 +5010959 +4573836 +479821 +1033597 +277315 +6028728 +13421810 +16023577 +13510939 +13214062 +2742113 +11782107 +17177661 +18024382 +17936564 +11251923 +18709230 +16328974 +6138828 +14453997 +10590013 +20835863 +12455159 +12204812 +17779279 +18118753 +10903273 +12793978 +20366628 +20820135 +8192717 +1766287 +12489893 +11681182 +21046888 +1898669 +18352061 +16293584 +10954391 +3204140 +4256643 +15336108 +21290026 +15947556 +1411738 +19091303 +20885671 +16501332 +13351032 +14994011 +21101283 +17558423 +1247899 +3647816 +13430985 +11054005 +14895053 +5847850 +15524195 +15309238 +10998955 +19825958 +8874288 +17698670 +6390485 +4537136 +13109860 +1413704 +422805 +18514589 +15715559 +19407185 +13506351 +10306243 +2112970 +10186968 +19662119 +12775628 +19683091 +5726609 +12651766 +1066365 +5265893 +18140380 +5051591 +16188072 +18376964 +19173223 +6558257 +7294878 +8395222 +7816542 +17100984 +16087147 +15650679 +288457 +16644856 +6088366 +20567167 +2099208 +8716347 +3175959 +18671875 +11202116 +13645942 +436567 +8066888 +4571214 +4132125 +14560821 +16199868 +158041 +1244622 +4540413 +2865976 +17715709 +1348824 +18406455 +2489801 +8968660 +16491502 +21079656 +20497044 +10118811 +6108682 +5288175 +3886366 +7338131 +4061347 +10426829 +2088722 +4465702 +4127538 +7066814 +724269 +19782049 +15313170 +2131976 +16781170 +7158564 +441155 +334332 +2242076 +8271360 +2014667 +5079116 +15857772 +15785027 +18477234 +16557693 +16797554 +4520752 +20772949 +16967291 +19056569 +18529662 +15921997 +7945647 +3302443 +19474032 +10652272 +4261886 +2915783 +7006521 +18013241 +5907487 +18605684 +9165267 +2973454 +2940031 +6554980 +2519947 +17296936 +13763251 +2498320 +4320213 +11674628 +17912316 +3918479 +9838974 +4915277 +20251285 +16364363 +17159966 +12255275 +289767 +14920612 +5875375 +4583666 +4979502 +12080294 +4574491 +9305513 +9870431 +4535170 +6205019 +1871799 +247824 +11608437 +16519027 +20818824 +4502402 +20784090 +16161202 +5022755 +15972459 +10115534 +14229865 +764901 +7939749 +13294671 +16825734 +1080128 +20979387 +10611639 +2515360 +570915 +11945946 +19608380 +7393837 +598440 +2141806 +18333711 +3664856 +11163450 +20672024 +10580838 +18004066 +20615008 +15469145 +16333561 +1834444 +970028 +1078162 +17635100 +7151355 +5882584 +14391083 +8175678 +8226795 +21027228 +18577503 +5005716 +8734042 +10479257 +13586960 +20368594 +10839704 +12126825 +21030504 +2359385 +13358240 +17036759 +8539401 +111510 +2069061 +1194160 +1231515 +3881779 +13385110 +16346668 +15883331 +16365018 +19726999 +21173372 +1019180 +20371215 +18445121 +3753984 +19803676 +12642591 +8209101 +12132068 +21435515 +5166934 +19961617 +21185169 +17751098 +13449990 +15210935 +4210768 +10728293 +18984480 +12031798 +8584620 +15159817 +11294521 +15312515 +2617595 +16102875 +10888855 +4263852 +1632594 +12107164 +6696537 +4685902 +4155063 +5295384 +9976599 +5085670 +10029682 +3400091 +7940404 +1852138 +16426622 +2215861 +19089337 +18469369 +5836053 +13554192 +12027211 +18906493 +15309894 +21268399 +18590611 +11135270 +392003 +16345358 +9797686 +3218558 +12483339 +15086417 +15773231 +545356 +16555072 +18112855 +15204381 +7300776 +18264898 +7494106 +11055316 +6000548 +20667437 +4151786 +11375130 +7028803 +7134315 +3664856 +9804895 +13155080 +7532117 +5908143 +6731926 +12452537 +14790195 +21073103 +15381327 +16379436 +2173919 +9795065 +7894529 +20234901 +1666672 +5024066 +3378465 +10120122 +21336556 +8277913 +16748402 +985101 +19784016 +15296786 +5934357 +15155885 +16190038 +21433549 +8713070 +7385317 +17207807 +18194775 +5442184 +10901963 +10991091 +3082243 +21077690 +16572766 +10269543 +14132217 +2755220 +9985118 +8210412 +18037489 +7793605 +683637 +770144 +6849890 +2168020 +17389341 +3714663 +3286715 +19072953 +10824630 +3242806 +7528185 +20559958 +3028504 +4634784 +15028090 +18602407 +16769373 +10475325 +9363184 +13324817 +16581286 +6970476 +16698595 +4088872 +17768138 +4668207 +18527696 +17732748 +15110010 +18821296 +2532399 +1633904 +16460045 +14223967 +12643246 +19801055 +4743573 +414285 +5701705 +19854794 +6207641 +1426156 +20052712 +17126543 +2506840 +79398 +12497101 +6676876 +14801992 +10494331 +19244001 +19974069 +11574359 +13740314 +18787218 +2095931 +11261754 +17683596 +2011390 +12105853 +9949729 +18891419 +13993937 +14441546 +19335096 +20286019 +7098926 +184910 +16983020 +11253234 +21442724 +6705057 +8194683 +20943997 +16932557 +1447783 +1516596 +1164669 +1807574 +14402224 +11301730 +14647328 +18104991 +12581642 +18201328 +12663562 +6207641 +8414883 +1001485 +21366047 +10852155 +2761118 +13634801 +20820790 +20592726 +18223611 +12754001 +13991315 +10481223 +16745125 +10994368 +20611731 +16834254 +119374 +3619636 +20761808 +19269560 +1484483 +7445610 +12573123 +17233366 +8753047 +3339143 +15621843 +11780796 +484408 +13818301 +12615066 +648903 +6294803 +21134706 +4543034 +19510732 +7257523 +334332 +97748 +15328899 +17871684 +8884774 +7152665 +14197097 +14731213 +6077880 +18912391 +4507645 +10524477 +9517849 +19569058 +19308882 +2917749 +4192418 +2077581 +10502195 +11063180 +18182323 +1405840 +20200167 +15166370 +16716290 +7037323 +5682700 +11867303 +7157908 +15769299 +16541965 +874346 +6626414 +2676577 +16034063 +8211722 +7146112 +6883314 +2271567 +4487329 +19519251 +2615629 +447053 +16807384 +8697342 +9885504 +1915053 +13576474 +16592427 +7912879 +1123381 +11124129 +5923216 +19713892 +12959783 +2882359 +226198 +16885372 +6758796 +9724286 +10666689 +13001071 +4594807 +2512738 +2654295 +16127124 +945124 +16952218 +15678860 +15600872 +15771265 +18502137 +2165399 +17171107 +2519292 +9264226 +14166296 +1006072 +8994218 +20482626 +3044233 +9932034 +11961019 +10137161 +11279448 +6191257 +16698595 +17933287 +87917 +4730466 +14159087 +17339534 +6079846 +13923158 +408387 +10268888 +20970867 +12582953 +16078627 +18785252 +8401120 +9550617 +2483902 +4039720 +10226290 +6696537 +11945946 +11073666 +4706218 +19003485 +10646373 +11332532 +5830810 +15499947 +4810420 +20711346 +1791845 +20632047 +7724137 +7916156 +7079921 +3607184 +20045503 +20647121 +19492382 +10048032 +13341857 +1436642 +6215505 +13166876 +3432204 +21287404 +10903273 +3227733 +10186313 +16405650 +11997719 +7246381 +11829293 +13872696 +10772857 +20828655 +12539044 +17441770 +798324 +16549174 +9245876 +2439338 +18150866 +10759750 +19386214 +6999312 +9966113 +9642367 +19935403 +16988263 +21297890 +9663338 +2422299 +18404489 +8390635 +2093965 +15734565 +492928 +14549024 +6432428 +14851144 +4204870 +16713013 +17966055 +10101772 +20707413 +7122519 +1684367 +12957162 +6372135 +4729811 +11050073 +15249601 +12221852 +2396085 +5499200 +13227824 +7071401 +16972534 +3525920 +12700917 +15113942 +12087503 +16361741 +5193803 +18332400 +11059248 +12566569 +1693542 +8270049 +19428812 +2789954 +6543183 +2611042 +10116190 +1091269 +18050596 +3084209 +20183128 +16500022 +2805027 +10782032 +10919002 +3013431 +16156615 +10995023 +12665528 +7602896 +7835547 +693467 +12837232 +14937651 +571571 +13708201 +1179087 +7560953 +8869045 +2002215 +17247129 +19402598 +20748046 +520453 +12881141 +14180058 +10894098 +4520752 +18888143 +10796450 +7370244 +8338862 +20685131 +8133735 +8553819 +21050821 +10647029 +2489145 +8659331 +14052264 +8447651 +15126394 +14413365 +2571720 +1760388 +15173579 +10604431 +1388146 +6613307 +20407915 +14752840 +13815024 +6490755 +3461695 +6843337 +8979801 +12442051 +14832794 +3205450 +3500361 +3272297 +21396849 +17534175 +9320586 +9556515 +645626 +6343300 +6753553 +14656503 +4094114 +14279017 +5145307 +905147 +21425685 +15308583 +6608064 +7402356 +3042267 +8789747 +21129463 +12204157 +1451060 +16769373 +12944710 +20738215 +16065520 +4653789 +12367341 +1424846 +17232711 +15821072 +15263363 +7398424 +13248141 +5472330 +11758514 +17923457 +13396251 +7880767 +2561235 +10202697 +8483040 +14944860 +910390 +9923515 +15161128 +6961301 +7376797 +8462069 +4868746 +7421362 +19943923 +10492364 +21390295 +1460890 +2187026 +14026049 +7202473 +19259075 +810121 +14814444 +7690058 +9276677 +13244208 +8957518 +15693277 +17369025 +11316804 +21212694 +18101059 +17490922 +867137 +4001054 +876312 +17413589 +7916156 +21163542 +1769563 +21378499 +121996 +3097972 +10067693 +675773 +20672680 +2740802 +17378855 +12409284 +6480925 +2799784 +18799669 +16146129 +18793771 +10422241 +10767614 +1151562 +14497251 +5102709 +21167474 +16864400 +15068722 +3575072 +3252636 +10643097 +16209699 +755071 +15483563 +10324593 +1191538 +7536049 +3465627 +18762314 +2234867 +8932615 +14094206 +7557021 +14619803 +20412503 +7773288 +21394228 +8488283 +1494969 +12925705 +7106135 +14840003 +19206646 +3381086 +1644390 +15273849 +12449260 +6670978 +13905464 +20020599 +835680 +17068216 +19848241 +20848315 +3153677 +6655905 +7146767 +10122743 +15098869 +16289652 +16356499 +10301656 +20099242 +18441189 +7477722 +4494538 +17794352 +6230578 +14285571 +13017455 +1055224 +636451 +7285703 +13299914 +16426622 +698055 +13569921 +12497101 +2648397 +19666051 +317292 +13111826 +14592933 +17171107 +5811150 +9189515 +11873202 +20681199 +3229699 +11079564 +12735651 +10112257 +2548127 +106267 +7241794 +9169199 +4678038 +4415895 +847476 +236028 +12520694 +4072488 +11888930 +20504253 +13712133 +6987515 +7539981 +13188503 +10886234 +3760538 +9763608 +6283662 +14231831 +14166296 +12220541 +20908608 +7753628 +19259075 +4101979 +2515360 +18753139 +13316298 +21004290 +14528053 +1291808 +12527248 +3417786 +21325415 +6754864 +18437257 +5731852 +15527472 +8681613 +9277333 +20914506 +9766884 +5293418 +121996 +6729305 +3675341 +3120254 +8802854 +1418947 +4590875 +11236850 +11465570 +12766453 +19458303 +14566063 +3856220 +19439953 +10527754 +12827401 +16019645 +4761268 +11487196 +7684815 +3214625 +18195430 +10100461 +3187100 +19070332 +12908010 +8718969 +9442483 +13978864 +13037771 +19076230 +7241794 +8332308 +15425236 +16182829 +13891046 +5085670 +7652047 +15747672 +14699101 +4700975 +1051947 +20772949 +7756249 +2349554 +9573554 +1751869 +12344403 +8310681 +2012045 +21189756 +9444449 +14389117 +16178897 +1146319 +8281845 +11709362 +11559286 +17627891 +14095517 +4193729 +14101415 +19223030 +5176764 +15707040 +834369 +4139334 +16485604 +13690506 +13535842 +4002364 +8392601 +4970982 +13572542 +6632967 +4400822 +11828637 +10075557 +3687138 +4599395 +12194982 +16537377 +16189383 +8378183 +3044233 +2911195 +4682625 +18226887 +13157701 +21069171 +10949148 +14550335 +9560447 +4984089 +8515153 +9547340 +17742579 +3309652 +2172608 +19760423 +13419844 +2131320 +4067245 +921531 +13309089 +9648920 +18547357 +14193821 +8580688 +11556664 +6923290 +1719756 +18134482 +17891345 +7291601 +20388255 +12742860 +3394849 +15492083 +11092016 +8678992 +5119093 +17104916 +16811316 +17437838 +7501315 +12772351 +12683223 +21343110 +7506558 +18740032 +3712697 +5222639 +18909114 +13746867 +4243536 +20681855 +276005 +7426605 +17972609 +12512175 +2613008 +8088515 +19186985 +6526144 +5827534 +603683 +11044175 +1819370 +19145698 +12923083 +11251268 +16416791 +541424 +16868332 +19498280 +15857117 +19981278 +20907297 +10268888 +1873110 +6803360 +14651915 +5383857 +12194327 +21428306 +15408852 +12198259 +7988901 +5171521 +5383202 +10666689 +1251831 +12777594 +9850770 +11415762 +12125514 +10298379 +19012005 +2959692 +15179478 +6715542 +3838525 +3483977 +1502833 +9941865 +7792294 +13851069 +14994667 +17262857 +6395728 +1346203 +10528409 +3301133 +10443213 +11483264 +15151297 +8184853 +18935984 +507346 +10489088 +9829143 +18357303 +1300328 +17525000 +5146618 +20919749 +597785 +16671725 +5556871 +16279822 +11363989 +12500378 +6542528 +1141076 +18876346 +4898237 +1699440 +4204214 +5201668 +4222564 +15121806 +13177362 +9784579 +2540918 +7827683 +479165 +1338338 +17055109 +18608960 +18776077 +12669460 +10424207 +8465345 +4641993 +12987964 +18826539 +5225916 +13093476 +12282144 +13311710 +17528277 +5895691 +1156805 +18553911 +14102726 +2298436 +5968435 +14549679 +17344122 +15736531 +12974201 +16534100 +5845884 +5334705 +19861348 +8973902 +18458884 +17374923 +11318770 +64980 +4221254 +15416717 +9642367 +1445817 +4021370 +3731702 +18514589 +6273176 +15033988 +7159874 +10948493 +6601510 +16439074 +18127273 +15754226 +15834179 +1382247 +10818077 +2556647 +8338206 +21229078 +4372641 +6263346 +21170751 +1184985 +17412279 +19208612 +7876179 +20518671 +3149090 +5987441 +11434112 +426737 +15385260 +20160846 +10087354 +8162570 +7474446 +4757336 +3128118 +13101341 +8471899 +7381385 +12506932 +2712622 +14119765 +5291452 +8982422 +2780779 +14772501 +6842682 +18502137 +7907637 +13297292 +11203427 +9516538 +10875093 +4096081 +20288640 +10179104 +8057713 +2498320 +6950815 +13189158 +19141766 +9774749 +11892862 +9867809 +19804332 +3018674 +15635606 +11850264 +18895351 +6946883 +15720147 +15450140 +6974408 +14744976 +19895426 +3307686 +7733967 +8273981 +20383667 +2788643 +2130665 +16575388 +3599320 +16579975 +21162887 +12010827 +17443736 +16747091 +5323564 +12470232 +6958024 +10976673 +5845884 +17190768 +20284708 +7188055 +3635365 +15766677 +1787258 +14094206 +6919358 +20019289 +10512025 +11263064 +4145888 +14703033 +16411549 +4793380 +3663545 +12949953 +5142686 +16253608 +15899059 +5047003 +16297516 +13613174 +16284409 +7922054 +8372940 +18378930 +2339724 +3940761 +12850994 +11113643 +11379062 +19331164 +19715858 +19858726 +18968096 +1998938 +13843205 +13661015 +14088964 +6735203 +12606546 +7186744 +20825378 +3994500 +8728799 +20092689 +18928119 +13516182 +12336539 +17986371 +5514273 +7804746 +10337700 +15490117 +21409956 +7584546 +15604804 +17283173 +19327232 +7512456 +2614974 +20588794 +20144462 +3933552 +9393331 +12674048 +4991298 +20670058 +9152815 +15024158 +10880991 +18082053 +3261156 +394624 +6434394 +10874438 +3353561 +13580407 +15448829 +730823 +10639820 +21435515 +424771 +6294148 +3803791 +16281788 +16747747 +11318114 +599096 +5598814 +20807683 +6140794 +11276827 +4113120 +14530674 +7722826 +13356274 +4785516 +16990229 +18665977 +2107727 +1850172 +8709138 +3712697 +10037547 +20944653 +5018168 +15948211 +20885015 +14725970 +17558423 +14338655 +15031367 +8507944 +17329048 +20212619 +7395147 +10729604 +1968136 +4008263 +14069958 +8351969 +1501522 +21033126 +2058576 +12966992 +17863164 +9042060 +16049136 +5279655 +11601228 +2596624 +21192378 +1430088 +16973845 +5218707 +20902710 +2928890 +4922486 +16600947 +10116190 +10721084 +4625609 +14227899 +895972 +15467835 +17225502 +135758 +2956415 +15720147 +17676388 +19527771 +2713277 +19024457 +7803435 +4274993 +16699250 +13202266 +8505322 +13746212 +5271791 +13175396 +18609616 +17326427 +1609656 +20248008 +113476 +5807873 +5706293 +20695617 +3215281 +5517550 +19831201 +10903929 +18430703 +9273401 +11398068 +4089527 +12786769 +20789988 +7899117 +5862923 +16566868 +11892207 +2478660 +21033126 +8931960 +10628023 +3654370 +14492663 +5755444 +12257896 +15128360 +17426697 +12099300 +17121300 +30901 +1036219 +6450778 +16200524 +2074960 +9679722 +5691875 +13637423 +5535244 +3808379 +12842475 +14392394 +7157908 +11980680 +3933552 +1881629 +10778100 +20861422 +13742935 +5581119 +9722975 +9203933 +4305795 +4257298 +11375130 +5707603 +5424489 +1037530 +18656146 +18394659 +17828430 +15973770 +1318678 +16047170 +17871684 +10209906 +8043296 +2622183 +5393032 +2776192 +1247899 +113476 +4138679 +7590444 +16577354 +2257804 +20786056 +8740595 +14241006 +15192585 +822572 +9637124 +2683131 +11245370 +2065785 +9055167 +16503954 +19336407 +1310813 +4060036 +13719998 +6375412 +5855714 +1705994 +4430313 +9355320 +14249526 +10635888 +3525920 +724269 +4086906 +15951488 +12134034 +11170659 +6587092 +15862359 +6986860 +13869419 +16290308 +16102220 +13552882 +8427335 +10358672 +17670489 +5900934 +1849517 +19079507 +1264938 +9776059 +2641188 +6672944 +8392601 +1542154 +4547621 +19386869 +390037 +940537 +11604505 +16392543 +3371256 +14742354 +16595049 +12263794 +5584396 +14500528 +6051666 +10963566 +7820474 +13498487 +11274861 +16539343 +15478976 +18072878 +20808994 +8465345 +7854553 +4323489 +10067693 +16513129 +16859157 +17495509 +10929488 +11282070 +7140214 +8174367 +4548277 +2978697 +11926286 +17990959 +11161484 +146899 +1820681 +6842682 +9827177 +6189946 +5297350 +20223760 +18924843 +6033971 +1064399 +10154200 +13290739 +13401494 +15158506 +8302817 +8826447 +2195545 +7351894 +7730035 +11934150 +7205094 +1211199 +15634295 +14280328 +2896122 +20923026 +20073683 +9424133 +17285795 +10042790 +10919002 +18537527 +3770368 +3956489 +12758589 +15846631 +13803883 +1065710 +12320810 +20204099 +23692 +19234171 +17302834 +7191987 +7469858 +18733478 +312049 +15540579 +18061737 +6417355 +7777876 +16367640 +12720578 +2373147 +15731943 +4917898 +10209906 +11976748 +5579809 +12154350 +2839106 +6719474 +13576474 +1966826 +20556026 +13788810 +4350359 +17064284 +7344685 +17116713 +9378258 +2450479 +20620906 +6110648 +15696554 +13137385 +8060335 +3621602 +2787988 +20255873 +16140231 +1343581 +20956449 +744585 +20398085 +20747390 +470646 +18688259 +16954184 +13001071 +809465 +17127854 +16266059 +9238667 +9485736 +16252297 +20312233 +19893460 +21259879 +7298810 +10725016 +8555785 +1125347 +1844929 +7600274 +18888143 +10919657 +19745349 +11738853 +6969821 +17035448 +2951172 +18916978 +15938381 +2685752 +18275384 +4824182 +9091867 +9576831 +6208296 +4847775 +19785982 +2287295 +18665977 +15545822 +20185749 +17736025 +9495567 +13779635 +16886027 +20584206 +13251417 +13632835 +11689702 +12858858 +12289353 +6097541 +13427708 +11911212 +5567357 +2321374 +18276039 +15503879 +8699308 +3915857 +15625120 +19114896 +4729811 +13736381 +1363897 +10968154 +4666241 +18018484 +12686500 +9892713 +1025078 +10329181 +15971804 +7084508 +16367640 +9688897 +5421868 +5727264 +8608869 +14478901 +15178822 +19544155 +6883314 +16285720 +16052413 +9490979 +3512157 +15296131 +866481 +6209607 +18819985 +11071700 +14816410 +10899341 +14659124 +17695393 +5349123 +8131769 +8971281 +12684534 +21047544 +5385823 +2818790 +18993655 +11261754 +3332590 +7785740 +14755462 +13670846 +4920520 +21414544 +20398740 +2983940 +10238741 +2345622 +14850488 +16177586 +19308882 +14948792 +8977179 +20743458 +11261754 +15302685 +13882526 +12489893 +7950235 +6650007 +17462086 +2660849 +18646971 +14703033 +7473790 +15827626 +16830977 +9644333 +4215355 +16022922 +3422374 +19763699 +12208089 +11418384 +6803360 +5222639 +4303173 +18794427 +9568967 +16067486 +19412428 +9258327 +17420143 +9703970 +14827551 +10362604 +2438027 +2285985 +5306525 +13662981 +584023 +15123117 +1045394 +13164255 +9760986 +18112855 +19000209 +16976466 +11225054 +18508036 +1817404 +14048331 +18390727 +3086175 +4735054 +17439148 +3369945 +10894098 +12250032 +15703108 +13304501 +1685678 +2630047 +18262277 +4711461 +11963641 +8608213 +4857605 +8557751 +6051010 +19239414 +7918122 +3947314 +5342 +8128492 +9077449 +5765275 +16124502 +18915668 +7534083 +1869178 +16350600 +13400183 +5910764 +8942445 +16583907 +14489387 +13598101 +11444598 +14798715 +13122967 +6527455 +9830454 +20883049 +21048199 +7774599 +6899042 +14371422 +17756341 +13188503 +8110797 +10601809 +1663395 +12352268 +15067411 +18534905 +1220374 +870414 +2091999 +6329537 +19808264 +19527771 +5419902 +1520528 +6337401 +8957518 +14299333 +12383725 +18657457 +9274711 +8257597 +4716048 +6005135 +20864699 +1628662 +7164462 +348749 +12844441 +10105049 +20980697 +14007699 +18141691 +15151953 +614824 +3921756 +7153321 +12852305 +10506782 +15976392 +15790270 +8268083 +8469278 +10778755 +5128268 +20414469 +5248853 +21149779 +14366180 +1876386 +7709063 +13890390 +19888873 +17343466 +1307537 +20177230 +19188296 +5270480 +2078892 +14524121 +10135195 +3807068 +4303173 +20770983 +19282667 +14881290 +4383782 +10920313 +21726 +1039496 +13024664 +10879680 +11962330 +4963118 +2721 +387415 +8443063 +5796076 +5752168 +21185824 +8614767 +17607575 +20453790 +16298827 +2474072 +1169912 +15168992 +7745763 +223576 +8473210 +4897582 +6705712 +3824763 +2312199 +12682567 +5755444 +11478677 +6590369 +7927953 +5552284 +4699664 +8197960 +10177138 +17560389 +7238517 +8414228 +2013356 +16659274 +15195206 +9761641 +14129596 +21465662 +16433175 +14143358 +4757991 +18506069 +6005135 +11456395 +3881779 +15440965 +949712 +13044325 +15564172 +3909304 +4132781 +1809540 +19973414 +9818658 +6374101 +3665511 +19408496 +11645793 +19494348 +1827235 +18935328 +11947912 +14773812 +6001203 +14777744 +21177960 +17149481 +19440608 +9938588 +2785367 +14906194 +1178431 +1332440 +11122818 +21069826 +17380822 +857306 +12816916 +10696836 +13411324 +13215373 +9663338 +5841951 +1842963 +11437389 +18118753 +10916380 +12108475 +4712116 +8066888 +5801975 +17206497 +3253947 +171148 +74155 +20673335 +17770104 +16466599 +12108475 +3842457 +5620441 +19088026 +19368519 +2499631 +8610179 +4219943 +1348824 +12949953 +7967274 +21101938 +14098139 +18093850 +20612387 +4008263 +9775404 +5311768 +5220673 +3061927 +5878651 +9066963 +16292274 +14618492 +16957461 +7070746 +2921025 +18557843 +9848804 +3571140 +12611134 +3033092 +3915202 +21231044 +3550824 +4193073 +18983169 +13036460 +4219943 +5855714 +13934299 +17002681 +17017754 +5824257 +12563948 +6754208 +18234752 +7921399 +1321299 +18470680 +9401851 +10203352 +10288548 +7253590 +21375878 +6139484 +4963773 +13411324 +4710150 +4786827 +210469 +5828844 +1591962 +848131 +2452445 +4377229 +17513204 +8018392 +19690299 +20338448 +9410370 +601062 +3109768 +8781227 +9747879 +5661073 +2806993 +16098288 +8709138 +18890764 +14857042 +7980381 +519798 +7924021 +16998748 +12000341 +9336315 +19880353 +13760630 +17148170 +6800739 +12633416 +8471899 +6773214 +9148883 +6393107 +2168020 +18255068 +8274637 +3305065 +1257730 +4570559 +3153022 +13961169 +5099432 +13834685 +779319 +3588179 +19791880 +11025825 +16808695 +10917691 +4900859 +8280535 +9470663 +16277200 +14166951 +21258569 +13166876 +5179386 +7428571 +2558613 +18781975 +18698744 +2824033 +21300512 +17441114 +14136805 +3549513 +2346933 +12436153 +14470381 +3179891 +2941997 +8039363 +5007027 +19215821 +18117443 +16142852 +12781526 +7886665 +13476860 +3552790 +20413158 +17909695 +14218069 +14134183 +21091453 +6726028 +4120329 +2107072 +16735950 +20514083 +224232 +18702677 +8308060 +11186388 +13972965 +9297649 +16534756 +13124278 +6863653 +13581717 +10230222 +17304800 +2329894 +4381816 +16691386 +7862417 +10939318 +7380074 +12190394 +14136149 +16536066 +16530168 +17351330 +20481315 +2519947 +3799859 +16920106 +16385990 +8197304 +10493020 +21335901 +7702510 +1132556 +17494198 +18460850 +13829442 +6397694 +11169348 +4029889 +509967 +20947274 +6705057 +10973397 +9306168 +3703522 +16114017 +4058070 +3906682 +6439637 +1861969 +10963566 +16461356 +5907487 +18102370 +12642591 +6727994 +17692771 +639073 +7039289 +17211739 +9292406 +8906401 +5227882 +15618567 +21100628 +16020956 +8981111 +7800813 +12797255 +7228031 +8000042 +5788868 +15620533 +19682435 +2864009 +4586288 +652180 +3417131 +6034626 +3306375 +640383 +16897168 +5499200 +9562413 +2860077 +14252803 +15184720 +19751903 +224232 +16757577 +3449899 +43353 +18778043 +11550766 +17070182 +11027791 +14878013 +5081737 +12839853 +6927223 +18538837 +3790684 +14861629 +10656859 +8210412 +5898968 +2265013 +2375113 +855340 +13041703 +16587184 +8059024 +14391083 +16775272 +920221 +4916587 +21283472 +11632686 +10386197 +1319333 +1333096 +11246680 +5402207 +15448174 +19168635 +11825361 +17609541 +9685620 +4993264 +8359178 +7310606 +20335826 +1609001 +7846033 +9015845 +2851558 +19401287 +16047825 +12789391 +18677773 +4612502 +6509760 +6191912 +4727189 +7474446 +20145117 +11072355 +9301581 +3258534 +17568254 +3117633 +6611996 +11166727 +19027734 +20871253 +1922261 +7073367 +3799859 +8528915 +11910557 +17330359 +17994236 +21338522 +9507363 +18508691 +5580464 +15802722 +19099823 +8806131 +4858261 +3823452 +380207 +4840566 +10439936 +7738555 +7387939 +7452164 +14115178 +15576624 +3325381 +12333918 +18578814 +17711777 +10952425 +1755145 +532905 +2130665 +637762 +14666333 +3690415 +10973397 +2588104 +16704493 +16061588 +6695226 +17123922 +10985848 +5322909 +15598251 +16267370 +3819520 +2888913 +17902486 +18516555 +8549231 +9171165 +9152815 +14684028 +2291227 +18676462 +2778813 +5845228 +18778698 +1856070 +12062600 +17175695 +12907355 +13502419 +17553180 +5119748 +2317442 +6910183 +1124037 +15592352 +14235763 +17518447 +9773438 +16746436 +20777537 +16077317 +8238592 +211780 +13715410 +9161335 +20387599 +10577561 +15365599 +9189515 +17821221 +9821279 +4790759 +803567 +12696985 +9548650 +6952782 +19687678 +6475682 +12684534 +1888183 +19710616 +15385915 +4195695 +8912954 +9542752 +17573496 +4938870 +2924302 +5781659 +21268399 +20185749 +17816634 +4565971 +13024008 +4303173 +8175678 +12626862 +6837439 +16728086 +17536797 +17651484 +17642964 +3521988 +9627949 +3305065 +8175022 +2423610 +18258345 +17658038 +19244001 +12394210 +15218799 +13814369 +17024963 +3470870 +1532979 +8342138 +11002888 +16579975 +601717 +18626655 +19123416 +13082335 +7602240 +2607765 +4290066 +3527231 +3184479 +13649219 +3010154 +8011183 +21400126 +20909263 +11978714 +12548219 +14837381 +15972459 +3730391 +10710598 +817985 +6446191 +2221760 +15785027 +16874231 +1880319 +9641056 +3850977 +4299241 +734755 +15977702 +16611432 +6979651 +19337717 +11479987 +19327887 +9728218 +21218592 +18784596 +386105 +18083364 +2522568 +438533 +15198483 +4438177 +5987441 +2176540 +16750368 +333676 +18532284 +1130590 +13002382 +2745390 +18878312 +12624241 +6904285 +17136373 +1382247 +10604431 +1546087 +12478751 +6292182 +626621 +20115626 +3650438 +4081663 +15204381 +15167681 +14929131 +7659912 +5341914 +3419752 +11144445 +2425576 +20854869 +21412578 +1174499 +3529852 +9044681 +2021220 +13811092 +2118869 +10866573 +4670829 +348094 +2551404 +19755180 +18786562 +8167158 +19728966 +3058650 +9543408 +13953960 +2306956 +16964670 +5267859 +18510657 +1909154 +12937501 +15096903 +6559567 +17239920 +18157420 +5733818 +8419470 +4997196 +8815306 +5079116 +17277931 +1902601 +8429301 +3240840 +20419712 +12223818 +9202622 +19337717 +5500510 +13108549 +12377826 +4607914 +6958680 +11312216 +346783 +14655847 +10702079 +9692829 +7618624 +20705447 +18390071 +10331147 +17519757 +7441022 +3540993 +20035673 +2040226 +6473716 +17840882 +13281564 +3500361 +4350359 +8083272 +11618923 +17112781 +18379586 +10141749 +19848896 +2604488 +28935 +1222340 +20964313 +20194924 +9483115 +12383069 +6357717 +3061927 +20476072 +18792460 +7085819 +20576342 +13731794 +16420724 +16789690 +7564885 +18774766 +17412934 +8273326 +7157908 +10824630 +7746419 +20259805 +9863877 +9731495 +7444955 +911046 +6915426 +8500079 +19261696 +7404978 +6260069 +13921192 +6098196 +18678428 +6467817 +20142496 +5195114 +3549513 +20519981 +4421793 +3962388 +16741849 +15914133 +2116247 +7617313 +20136598 +13360862 +6553669 +9383501 +17798284 +17243852 +8536779 +14254769 +8845452 +20109728 +7030114 +20358108 +3107802 +12067843 +5126957 +1522494 +11660211 +1132556 +16120570 +9857979 +20957104 +18346818 +7881422 +12451882 +12979444 +6337401 +3639952 +10468116 +18637796 +16117949 +9665959 +11824050 +9158058 +9495567 +9432652 +19177155 +20702826 +14014253 +16874886 +12415182 +16309968 +13691162 +20306335 +1488415 +9260293 +361857 +2875806 +21394883 +16366329 +19859382 +21457797 +16323075 +228819 +15068067 +14459240 +143623 +13198989 +8754358 +7628455 +10757129 +14897674 +20186405 +1804297 +9291095 +5522137 +756381 +18419562 +14713519 +11223743 +20124801 +16193970 +2107072 +5433664 +260932 +4496504 +5491991 +11090050 +2002870 +2401983 +17858577 +16684832 +17901830 +18593232 +460160 +15491427 +18279316 +1776772 +2038915 +15643470 +20308956 +1188262 +12846407 +8315269 +3630122 +14418608 +5098121 +20832587 +654146 +19826614 +20953828 +5746925 +13266491 +14364213 +8040019 +14830172 +19669328 +17215016 +15220765 +989033 +2231590 +10400615 +19145042 +19184364 +2396085 +12964371 +15750949 +19039530 +4666241 +2196856 +12314257 +206537 +20791955 +7372210 +17370336 +2356763 +4371330 +3537061 +7681538 +13674123 +9947763 +16741193 +12527903 +21326070 +12067187 +3818865 +15329554 +8623286 +13117724 +4004986 +6142105 +14970419 +5751512 +18131861 +13893667 +20368594 +10675209 +5309146 +921531 +6789598 +13324162 +11174591 +7024215 +1139765 +20189026 +1586063 +17581361 +1158771 +15368220 +17126543 +7358447 +18467403 +16648132 +7553744 +21107837 +11263720 +11667420 +4507645 +12445984 +5294073 +16431209 +13083646 +10767614 +3820831 +15250911 +1420913 +15573347 +6674255 +2900054 +13144594 +16165790 +18277350 +16912241 +8730110 +8530881 +21152401 +15738497 +18962198 +20824067 +9528334 +6092298 +1820026 +19273492 +16616020 +17488300 +7431847 +6558912 +15431135 +5193148 +20945308 +12691087 +13256660 +9733461 +2074304 +11276827 +4893650 +9932690 +6557601 +19533669 +18895351 +12378482 +6340678 +6921324 +7811955 +7549156 +2396085 +21074413 +9941209 +13400839 +4036443 +5587673 +11469502 +8424058 +17664591 +18981203 +932017 +17926734 +5370750 +7264731 +9947108 +5232470 +20734938 +11246680 +9385467 +3347663 +9798997 +3942072 +13267801 +9934656 +21445345 +3004911 +1861313 +16716945 +14492663 +18616825 +16271958 +18292423 +5747580 +9302236 +14507081 +6387208 +4020714 +7403667 +13132798 +9284542 +1896703 +6863653 +18584057 +10669311 +7142835 +11276827 +14552301 +886142 +20471485 +6650007 +3436791 +16321765 +5960571 +20602556 +3215281 +11905969 +18554566 +10996334 +19185019 +2248629 +19548742 +3402058 +20782124 +15760124 +16922072 +5642723 +7361724 +18105646 +18479855 +11469502 +21339178 +15052338 +5168245 +8133079 +20778847 +18624034 +13823544 +20739526 +6706367 +715094 +21312963 +793081 +16576699 +12002307 +19986521 +21292647 +14104692 +10483189 +19344926 +5975644 +17036104 +6978340 +20236212 +13415912 +20614353 +7507869 +18624689 +2928234 +15376085 +16266715 +20806372 +17079357 +630553 +8621320 +19746660 +8408985 +13077748 +8994874 +314015 +8940479 +7490830 +11267652 +8982422 +20399396 +16954184 +5410071 +12182530 +1614244 +77432 +19764355 +8364420 +18187566 +17420798 +13212096 +10582804 +7518355 +15710317 +20551439 +21073103 +18821296 +12402075 +20253251 +1170567 +16142852 +2120179 +13819612 +987722 +18140380 +12452537 +662665 +1243967 +6209607 +17184214 +15604804 +18194120 +9648920 +5602746 +20290606 +2582861 +14209549 +1844274 +8885429 +19152907 +16810006 +10801038 +11978714 +1394044 +1610967 +6684085 +15469801 +19050671 +9916961 +5178730 +15222076 +9467386 +14662401 +13167532 +9513261 +17663280 +8182231 +4332664 +21230388 +3596043 +14019496 +15260742 +16247709 +3801170 +1974035 +16438418 +3213315 +6522212 +18441189 +17836950 +9392020 +5388444 +17324461 +20523258 +3031781 +20252596 +4213389 +16294240 +15253533 +13380523 +589265 +11849609 +16529513 +4997196 +11259788 +327778 +15505190 +15734565 +17169141 +7031424 +21126842 +11128061 +4987366 +3339799 +13704924 +12596060 +12689121 +8886085 +16846050 +13163599 +9240633 +4210113 +7867660 +12690432 +17095086 +16918795 +16324386 +4144577 +16462666 +3547547 +19403908 +10924900 +18567673 +19021180 +5306525 +6786976 +18648937 +16726775 +6633623 +11626787 +1191538 +7322403 +2455067 +1428122 +8772052 +5187250 +6471750 +11512100 +17515825 +18203950 +3732357 +6972442 +17104261 +3687138 +10357361 +6817123 +16838841 +3201518 +4632818 +14206928 +10641131 +14019496 +3934863 +3113045 +9037472 +3230354 +14358315 +7689403 +20687097 +8788436 +20151015 +6332158 +5595537 +3385018 +18990378 +11808321 +4700975 +2291883 +12505621 +16471841 +17003336 +5161036 +1039496 +10666034 +724924 +16714324 +20893535 +2516015 +20630081 +15467835 +15359701 +20980042 +16070763 +8059024 +7271285 +8887395 +6439637 +16848016 +20788022 +17336913 +15324311 +9506052 +5393687 +6880692 +14657813 +4808454 +4384438 +10461563 +7668431 +19759767 +4799934 +6488133 +15058892 +6355751 +11708052 +20789333 +18784596 +1458269 +20019944 +20576342 +14423196 +15324311 +18728891 +11781452 +11744096 +11109711 +1401253 +10279373 +5621096 +16280477 +10426173 +19187641 +14602763 +9593870 +17061663 +4868091 +16010470 +11116264 +8387358 +3830006 +3714007 +18947780 +18760348 +9563068 +18942537 +5374682 +4454561 +7715617 +15210935 +2656917 +7740521 +1926194 +9002738 +18736755 +15166370 +12180564 +12220541 +6336091 +20722487 +16836875 +4781584 +12291319 +20772949 +13476860 +1709270 +438533 +466058 +19404564 +641039 +11764412 +3572450 +15135569 +14442201 +4830080 +1878353 +16789034 +17796973 +18684327 +21141915 +1542810 +12449916 +1294430 +3523299 +907769 +18508036 +10126675 +13820267 +99714 +3202174 +20524569 +11721814 +1197437 +5480194 +5577187 +12156971 +17218948 +16872265 +17045934 +6279730 +11215879 +5841296 +7619280 +14189888 +19951132 +11128061 +4527961 +7009142 +3823452 +4119018 +9736738 +4986055 +6198466 +4088872 +500137 +3346352 +13478826 +17486334 +6802705 +11088739 +13188503 +5960571 +16707115 +4769787 +6462575 +12628828 +8244490 +18053218 +21253981 +7039289 +9195413 +18736755 +11491784 +7835547 +10952425 +8785815 +10627368 +613514 +2884981 +20566512 +16788379 +16712357 +17817289 +15299408 +20912540 +19282667 +4075764 +1175810 +20162157 +5312423 +16003917 +12094712 +19972758 +12908010 +1537567 +6751587 +17350020 +13020076 +857306 +16237879 +11725091 +19149630 +13235033 +20058610 +14512324 +7678262 +2497665 +7583235 +17766827 +3832627 +6889867 +5479539 +469990 +11834536 +7720205 +12743516 +18740687 +15381327 +16492813 +10437315 +7520321 +6193223 +13429674 +9209176 +5758066 +9076793 +3814277 +1063088 +3140570 +18278005 +18338953 +14684683 +13027285 +6861032 +1761044 +11928252 +20597314 +9776715 +17345432 +18052562 +2850247 +12864757 +2727040 +8561028 +13070539 +13524701 +20071717 +9656129 +10993057 +6776491 +21420442 +21071137 +11105779 +4740952 +7663188 +3527886 +15574002 +15066101 +10058518 +12035075 +3581625 +431980 +21121599 +8617388 +1908499 +2350210 +12464334 +15490772 +14631599 +422805 +16095667 +13440160 +8559717 +12404696 +20202789 +10186968 +11455739 +6227301 +21008878 +5623062 +4279580 +477199 +3197586 +21002979 +8084583 +10397338 +18695468 +4871368 +3856220 +1143042 +7461994 +19038219 +33523 +20765740 +2519947 +1983865 +14843279 +8934581 +19282012 +6927223 +9015190 +12210710 +13704924 +18664666 +8455515 +1242001 +3894231 +10195488 +1483172 +20691685 +9550617 +8952931 +515210 +17587259 +11259788 +17618716 +3139259 +14486765 +13501108 +10308209 +6239753 +16093700 +5361575 +20903365 +1373728 +15070033 +10207284 +7456751 +19184364 +1076851 +18298321 +3355527 +711162 +16665827 +15066756 +2945274 +14349796 +13733105 +6424564 +6410146 +16522304 +5123025 +17600366 +15206347 +18390071 +7401701 +9814070 +16294240 +6992103 +11686425 +13413946 +4157029 +10712564 +15420649 +13765873 +14446788 +1042772 +8389324 +17367059 +3482011 +20537021 +10281340 +6267278 +19881008 +14199063 +10145025 +15005153 +8649501 +11883032 +12428289 +16662550 +16116638 +10086043 +18457573 +2569754 +7191331 +7473135 +19209267 +6687362 +20388255 +14928476 +30901 +8225485 +935949 +566983 +11670696 +405765 +15948867 +19995696 +7650737 +8590519 +20180506 +19806953 +17720296 +2090033 +5170211 +15574002 +13834685 +19754524 +970683 +3470870 +16919450 +2674611 +11637928 +6149314 +15610702 +19179121 +19390801 +20008803 +9017156 +10378332 +9774749 +6801394 +2384288 +20611731 +2410502 +18819985 +10008056 +19581510 +18200018 +20805062 +1659463 +1351446 +10496297 +13204232 +18660078 +3862773 +13250762 +19919019 +9327140 +4006952 +18249170 +8308060 +17943118 +19096546 +6233855 +13252728 +19279391 +4708184 +9111527 +17646896 +11349571 +8582654 +5261305 +11450496 +2016633 +20231624 +19073609 +17892655 +8214999 +18890109 +11978714 +15030711 +4052827 +3058650 +524385 +13716065 +985101 +10354084 +10238741 +5407450 +3044888 +18287836 +176391 +19417016 +20328617 +13860899 +11150343 +3027193 +12565914 +15218144 +6809258 +287146 +10399304 +11141168 +4170791 +20808338 +7027492 +9628604 +5714157 +9932690 +18165939 +11025170 +7523597 +20272912 +10347531 +11054005 +3607840 +8155362 +9620084 +21002979 +3185134 +20678578 +4765200 +17158656 +2542229 +3645850 +46630 +21470904 +14144013 +17567598 +3402058 +10806280 +8714381 +6081812 +4451284 +7090406 +1808885 +11370543 +7399080 +2753909 +11747373 +2390186 +1405840 +9350733 +13060708 +17222225 +19417671 +12611789 +20337792 +114787 +17684907 +14444167 +18603062 +13035805 +6147348 +9536199 +3960422 +9046647 +11586155 +12677980 +960853 +19109653 +3077000 +5926493 +19782049 +4061347 +5884550 +7614037 +12946021 +8622631 +17941152 +3491841 +9411681 +19492382 +19468789 +6426530 +13328094 +14083721 +12015414 +6418010 +17082634 +9962181 +12393555 +12934225 +16568834 +246514 +2205376 +15747017 +13244208 +14547713 +16156615 +1850828 +19755835 +18878312 +4757991 +4967705 +10740745 +1508731 +19695542 +3091418 +7387939 +1139765 +13871385 +5661728 +1145663 +16344702 +19135212 +16958772 +12525937 +3627500 +15199794 +2563856 +11883032 +10418309 +16525581 +17924768 +19568403 +6119823 +12783492 +3102559 +4982123 +15854495 +10532341 +4033166 +9297649 +12663562 +4969671 +2251251 +3993845 +1007383 +549289 +6047078 +17352641 +5013580 +16711047 +14490042 +19584787 +7779187 +4227152 +13376590 +12839853 +6138173 +16435141 +1076196 +10027716 +12457780 +2529122 +10065072 +5125646 +17553180 +18131861 +14745631 +5434975 +3976806 +5582430 +13461787 +13716065 +2295160 +3591456 +3508225 +9192792 +445087 +3102559 +8202547 +8619354 +20898778 +8389324 +3663545 +20192303 +3930931 +14133528 +11726402 +14443512 +4991298 +6541217 +13389042 +4057414 +880899 +21370635 +13623660 +13175396 +6009723 +1855415 +19330509 +6638866 +8174367 +4793380 +3571140 +10702079 +17117368 +3858186 +4402132 +1764320 +14486110 +10205318 +1951097 +9378913 +12541010 +17137684 +1225617 +10103738 +10235465 +16439074 +7254246 +15496015 +11074977 +1167946 +19396700 +16709736 +20215240 +9260293 +10591979 +17215672 +13416567 +15340040 +18391382 +9354009 +10060484 +4269750 +12891626 +18884210 +6615928 +12359476 +12006894 +8808752 +10148302 +18802291 +1831167 +2859422 +14149912 +10120777 +3679929 +5177420 +5958605 +14293435 +17350675 +12143864 +19844308 +19320023 +10400615 +15023503 +2917093 +2399361 +5105986 +10204663 +1842308 +5953362 +3399436 +1590651 +8025601 +14208894 +16199868 +11926286 +12213332 +17566943 +1852138 +1726965 +14174160 +18453641 +1576888 +13225858 +1551329 +807499 +18937950 +8523672 +8615422 +3466282 +17127854 +19995040 +11319425 +18934673 +10586736 +17709811 +5593571 +8134390 +1974035 +4563350 +3817554 +10314763 +20182473 +1556572 +17237298 +15950833 +10417654 +4430968 +16950252 +11306973 +3828695 +3592111 +5661728 +12814294 +17069527 +19679158 +21033126 +6022175 +1894736 +10500884 +9551272 +15294165 +3843113 +9695450 +14507737 +4253366 +12598682 +9255051 +15729977 +4952632 +6674910 +10697491 +14965176 +3978772 +18603062 +14710242 +5216086 +4930350 +14613904 +8986354 +9904509 +10236120 +16285065 +3252636 +1958306 +19630662 +436567 +20883049 +17551214 +2995081 +4753404 +10190245 +16886027 +9307479 +18374998 +14300644 +34833 +4347738 +20489835 +4344461 +16114017 +6910839 +3883090 +15527472 +15472422 +8802199 +2880393 +12283455 +20683821 +12147141 +5577843 +14691237 +7671053 +12891626 +6028073 +19756491 +15716215 +6319707 +11848953 +13486035 +6524833 +15260742 +5227882 +15399677 +12569846 +2078236 +16374849 +429358 +8987665 +8695376 +6771903 +4913311 +6310532 +20683165 +420183 +3959111 +13041703 +7047808 +10120122 +17182248 +291078 +18271452 +3720561 +8633772 +11407243 +21166163 +15698520 +16449559 +11938737 +18812777 +4778307 +13600723 +9413647 +5286864 +13912017 +21185169 +16802797 +2797818 +18588644 +18586023 +2596624 +10128641 +19788603 +144933 +2661504 +2612352 +3777577 +1833133 +21413233 +5809839 +2934133 +18087296 +4839255 +18065014 +8648190 +18837025 +6838094 +18832437 +13446058 +8354590 +15356424 +9762297 +19263007 +13850414 +10765648 +3318172 +9862566 +9850770 +2137874 +13275010 +3483322 +9888781 +12554118 +4836634 +11919732 +9422167 +16811972 +9032885 +644315 +11504891 +17420143 +15537302 +19768942 +12404041 +4533859 +20384323 +20639256 +6885280 +7201162 +14494629 +302874 +19214510 +3052097 +10337045 +10115534 +4843843 +1171222 +7308 +5016202 +15376740 +856651 +6461919 +14622424 +20815547 +12168768 +13837962 +11376441 +17903141 +12757934 +2997702 +21328692 +11840434 +5407450 +7085164 +3104525 +6260725 +7830305 +5226571 +19167980 +18251136 +10299690 +20111694 +10185002 +17075425 +11837157 +1374383 +18717094 +18128584 +20208031 +10835772 +1244622 +16041272 +19066400 +12352923 +10340322 +9930724 +2263047 +18557187 +14830172 +19468789 +14223967 +4603327 +10912448 +1165980 +17237298 +19088026 +14203651 +14510358 +18489030 +9633192 +5853748 +10493020 +19976690 +8048538 +2518636 +180323 +9399229 +20753944 +1222340 +18813432 +6119823 +11692978 +11828637 +20322719 +15227974 +10610984 +14067992 +19687023 +11175902 +3774300 +8884774 +16725465 +18762314 +5088946 +1046705 +18746585 +4910689 +7636319 +18365168 +17781245 +14095517 +20313544 +4462425 +3581625 +3165474 +18449709 +12561982 +18447087 +1678469 +13073816 +354648 +12942089 +10565764 +3295890 +18507380 +2472761 +7528840 +16465943 +6956714 +4622988 +8859870 +574192 +13028596 +21001669 +19225651 +9786545 +2578274 +15933793 +12367341 +18076155 +13768494 +5424489 +10489743 +16595049 +17957536 +15473077 +18738066 +8915576 +1082094 +1667983 +11392170 +1450404 +16560315 +4547621 +5343880 +11193596 +14427783 +9892058 +9458867 +16292274 +13779635 +3164163 +14257390 +447053 +15208313 +9403161 +3771679 +16645511 +5550973 +6488789 +3689759 +13209474 +10002813 +18465437 +18811466 +13372658 +7021594 +19161426 +2757842 +4827459 +4680004 +17208463 +13611208 +1617520 +8005940 +17122611 +11242093 +21340488 +4145888 +12806430 +8336240 +10556589 +17030861 +8771397 +9401195 +19714548 +14778399 +10707322 +20282742 +16235258 +681015 +2162122 +13422465 +2143117 +6591680 +20755255 +2555992 +18158730 +18908459 +7102203 +4701630 +13446714 +6939674 +12309669 +181633 +452296 +19429467 +7723481 +12137966 +1571645 +3627500 +11641205 +8254320 +13818301 +21349663 +12895558 +3839181 +13628903 +1027699 +19467478 +4570559 +13215373 +827160 +12689121 +17726195 +18814087 +14465794 +6342644 +6418010 +9610254 +15644781 +12687810 +15661820 +2440649 +2854834 +7361724 +1203335 +20399396 +10340322 +17291038 +19425535 +8975868 +18768868 +15544511 +8610835 +11779486 +10572973 +4970327 +13157046 +5221984 +17604298 +17485023 +16597015 +4865470 +19523183 +2843693 +20276189 +14615215 +13016800 +20950551 +5971057 +1951097 +2876461 +2871874 +11295832 +7256212 +20301748 +10002813 +20603212 +12096678 +5342569 +20329273 +7587822 +18100403 +2454411 +20914506 +4105256 +4236982 +12156971 +15368876 +16032752 +20880428 +12187773 +16760854 +4254677 +2557302 +6546460 +21283472 +9312722 +8720279 +14516256 +11652346 +15040542 +2023186 +8396533 +7019628 +16250986 +2270911 +12665528 +15121151 +14661746 +4700975 +8237281 +10803659 +95782 +6845303 +4872679 +11399379 +6214850 +5077805 +11280759 +8024946 +18658768 +4449318 +8294297 +16545897 +18110234 +10280684 +19720446 +7282426 +590576 +2183749 +21172717 +20145117 +21278885 +9286508 +17718986 +9534233 +18262932 +8169124 +9164611 +4854984 +20858801 +19984555 +2023186 +2141806 +4987366 +20892224 +1723033 +844855 +242582 +20808994 +15267951 +9283886 +11790627 +10500229 +19370485 +3338488 +18134482 +3168095 +10166652 +5471019 +15904302 +20887637 +3652404 +10949804 +7642872 +15818451 +17028239 +14279017 +11109711 +6038559 +7477722 +13014833 +7555055 +7915501 +13316953 +5756755 +14864906 +1903911 +1588685 +11821428 +9745913 +7605517 +10639820 +528973 +13700992 +11063180 +5848505 +15313826 +2550093 +13396251 +15575968 +15520263 +18664666 +8174367 +8454204 +262242 +16814593 +6315775 +14655847 +1629972 +16081249 +1799054 +16688765 +17711777 +2835174 +18452330 +4983434 +9574865 +6895765 +2271567 +2985906 +11200150 +10632611 +159351 +6062807 +4078386 +5750202 +2997702 +3993845 +13468340 +7831615 +1333096 +9885504 +13611208 +21269710 +18112855 +7585201 +13001071 +878278 +1042117 +19603137 +14374699 +17560389 +4724568 +14344553 +5781659 +8614111 +8274637 +4983434 +20982008 +7237206 +13319574 +15838767 +17524345 +17064939 +4305139 +10873782 +18762969 +18290457 +7992833 +18530318 +10475325 +1332440 +5865544 +10654238 +16861779 +20684476 +753760 +5938944 +18385484 +14596210 +12879175 +20069096 +7387283 +5967125 +5971712 +10871161 +15732599 +632519 +12576400 +20472796 +2403949 +5134821 +8250388 +18531628 +15112631 +17030861 +18496894 +13606621 +19926228 +1812162 +8145531 +1165324 +6255482 +10130607 +15547788 +14636187 +18902560 +19913776 +16878163 +19814162 +15833524 +658733 +4377229 +4922486 +19428157 +20713312 +49907 +6632312 +8898536 +14358315 +16222150 +16330284 +150832 +17351330 +6573330 +855996 +18483132 +15296131 +12331951 +3467593 +2371836 +20221794 +10380298 +914322 +9454279 +13659049 +11554043 +19257764 +11349571 +6525489 +1773495 +12495791 +13488001 +4432934 +16602913 +6653939 +1346203 +21349663 +6300701 +13396907 +19762389 +16136954 +18168561 +1054569 +15568760 +2262392 +9677756 +6962612 +7927297 +11928907 +12447294 +13280253 +1840342 +14615215 +3504293 +13778324 +15967217 +8127837 +10623436 +1140421 +5280966 +17079357 +1456303 +1625385 +6739791 +2162122 +18818675 +15475043 +9349422 +16416791 +4470945 +11394136 +5630271 +10567731 +9990361 +5289486 +5043727 +10185002 +833714 +6510416 +15410819 +2299092 +16627161 +12118960 +9109561 +18027659 +1154183 +4214700 +8937858 +6522212 +640383 +2002215 +9762297 +8273981 +874346 +16253608 +21179271 +8343449 +15851874 +793081 +11734266 +20495078 +20612387 +13737037 +18434636 +19025112 +18829816 +17401793 +8846108 +11574359 +9615497 +2042847 +17199288 +20030430 +15271227 +12675359 +12944710 +5109918 +20322064 +12514796 +1709270 +17131786 +5056178 +21282162 +10369813 +7271940 +9804895 +10941939 +5222639 +11301730 +5149895 +18586678 +17733404 +11254545 +19707994 +1996972 +11454429 +15237149 +22382 +4953287 +807499 +4402788 +4530582 +7511146 +19757801 +8148808 +12871966 +6838749 +96437 +20976765 +16930591 +4480120 +16349290 +599096 +18465437 +16140231 +12141898 +4328077 +19907223 +16081249 +1907844 +16136954 +19726999 +18130550 +13092166 +15356424 +13044980 +12102577 +11120196 +11183766 +8896570 +602373 +17173073 +14155155 +388726 +5324875 +16799520 +12354889 +6541217 +8644913 +19727655 +9409059 +14684028 +268796 +19224341 +20241455 +6606098 +8832345 +18104336 +17209773 +4720636 +9050579 +20048124 +1779394 +20790644 +13796019 +3016052 +1076196 +15267295 +5493302 +9635158 +14147946 +7499349 +16202490 +6273832 +7932540 +15357079 +10778100 +10763027 +9229492 +7482965 +11325323 +11613025 +6126376 +19164703 +9974632 +6900353 +5830155 +13732449 +812087 +7792949 +5300627 +5564080 +108889 +12757278 +6883969 +5117782 +20624183 +12173355 +7152010 +1424846 +19440608 +7927297 +5238368 +14919956 +21330003 +327778 +1825269 +6532698 +7622556 +12809051 +13604655 +19519251 +8781883 +20888292 +9938588 +17837605 +12147141 +6142760 +11289279 +12294596 +15675583 +1683056 +19922951 +2687718 +10924900 +6296114 +984446 +5050280 +11379062 +20268324 +13939542 +14344553 +16724154 +15649368 +3817554 +21390951 +7706442 +8063612 +17963434 +20268980 +12494480 +21350974 +14140081 +17615439 +17062973 +4776996 +4220598 +1521838 +18222300 +9490324 +21419131 +10307554 +13269767 +18232786 +11065146 +1171222 +10152234 +14175471 +13340546 +2600556 +2443926 +4992609 +7833581 +14313751 +14484799 +8227451 +3075034 +9762297 +10673243 +14722694 +20092689 +20373181 +10487777 +572881 +16273268 +12303771 +9939899 +4389025 +21337212 +7343374 +8093758 +18206571 +16323075 +8405708 +18533594 +9466075 +20654330 +9451002 +20801785 +15680826 +4092148 +15347904 +10874438 +6448812 +2744079 +7922054 +19793846 +12762521 +12978133 +19927539 +1820026 +3533129 +20947930 +16960082 +19580855 +9285197 +20742147 +6735858 +4801245 +15870224 +13792087 +11356780 +16012436 +20804406 +14356349 +21317551 +14128940 +11290589 +10758439 +17844159 +12868033 +20297160 +14578515 +10539550 +11447220 +19777462 +18618791 +5114505 +8183542 +653490 +17319873 +19974069 +17830396 +20134632 +17829086 +2022531 +4735709 +7646805 +2114936 +18155453 +19710616 +11879100 +4554830 +14449410 +1740072 +14521499 +7701855 +13438194 +4864159 +14652571 +13909396 +20020599 +10704700 +3282783 +17017754 +12466955 +1084060 +16629782 +17022997 +19192884 +9542752 +16450215 +16673036 +13554192 +10161409 +778664 +14075856 +13859589 +6746344 +7490830 +16158581 +13474894 +8975213 +6011034 +1160081 +20861422 +870414 +5318321 +5319632 +6205019 +17692771 +8483040 +4254677 +13009591 +7123174 +13045635 +405110 +16562281 +20328617 +9593870 +8511220 +2389531 +745240 +6051666 +6910183 +18416941 +16838841 +8553163 +19067710 +8228106 +13391664 +7900428 +6571364 +16648788 +13473583 +9846838 +17180282 +16715634 +17455532 +7880767 +11472123 +13674778 +15814518 +1177121 +4931661 +18667943 +6344610 +20817513 +13462442 +10877714 +3020640 +9245220 +9676445 +17665902 +13024008 +9978565 +683637 +1977311 +12136655 +18631898 +5275068 +8661952 +2385599 +16680900 +19725033 +1299672 +10331802 +11479987 +7806056 +12963716 +2532399 +2668058 +4249434 +21046888 +6050355 +20590105 +2166054 +19258419 +2523224 +6554980 +14315717 +19032321 +12520694 +2670024 +201949 +2489801 +3118943 +13054155 +5946153 +10167307 +13948717 +4178000 +15630363 +20578308 +5796732 +7415464 +11397412 +19569058 +20295849 +18466093 +20164778 +2439993 +4446697 +338919 +21468283 +6138828 +17368370 +6663769 +9700038 +400523 +1221030 +1888183 +20815547 +14313751 +5485437 +17891345 +8762222 +5060111 +3603907 +8823826 +4478809 +17114091 +19364587 +764246 +13209474 +9797686 +2681820 +5356987 +18565707 +8840210 +357924 +14871460 +50562 +2806338 +18525075 +20276189 +10349497 +3809690 +14980904 +4702941 +4366088 +15492738 +19409151 +4222564 +3167440 +5576532 +3668132 +16495434 +5645344 +12504310 +15512399 +21033126 +16313900 +11036966 +4670829 +20474106 +10074902 +9922204 +4976880 +1536256 +9085968 +6490100 +15556308 +4224530 +6670323 +13607276 +8556440 +4688523 +20788022 +20063853 +7722171 +15048406 +11984612 +13915294 +21044267 +19686367 +12778250 +15769299 +8017737 +1002796 +10129297 +15307272 +8336240 +17726195 +13838617 +15722768 +11250613 +8956208 +2856801 +14958622 +14555578 +17180938 +10540861 +21037713 +2750633 +9515883 +19373762 +16267370 +14161053 +11881066 +12084227 +10571663 +5098121 +14551646 +21466317 +12828057 +2962968 +20183128 +10456320 +17508616 +20153637 +14873426 +4581700 +7307985 +5924526 +18621412 +7690058 +4626264 +16730707 +17218293 +15697865 +796358 +1747281 +17819911 +2865976 +10672588 +6846614 +8771397 +2073649 +17041347 +468680 +1510042 +3265088 +9522436 +17284484 +21002979 +6288905 +11270929 +16363708 +7815887 +16739227 +18978582 +20892880 +13651185 +20361385 +7177569 +585989 +9211797 +3808379 +8246456 +20887637 +8354590 +14356349 +11101846 +12715335 +20654330 +4248779 +12098644 +8996185 +20956449 +10622125 +4063968 +8441097 +6380655 +8658676 +773421 +12180564 +7228031 +10392095 +11640550 +16475774 +14885222 +4514854 +20981353 +13197023 +15294165 +8966038 +15465868 +17513859 +5189871 +3436136 +6748310 +2690340 +7872903 +13581717 +6999967 +19133901 +8660642 +6704401 +11690357 +12496446 +20069751 +21012154 +11776209 +4550243 +3596699 +16420724 +3748741 +1302949 +8464690 +19331164 +19688333 +12890316 +17992270 +6400316 +16937145 +700021 +14270497 +13832719 +14603419 +7407599 +9496222 +3118943 +15866292 +6206985 +17791075 +12686500 +17394584 +4082318 +16488881 +19025112 +9914340 +21316240 +21049510 +15276470 +13550260 +9626638 +461471 +10011332 +9017811 +18317327 +14986803 +3228388 +1571645 +5128923 +2462931 +7363690 +14358315 +9180340 +3036368 +20014701 +11852230 +18278005 +12322121 +16177586 +1002796 +11749339 +16640268 +17023652 +10120777 +5001784 +1614899 +2356108 +21330003 +18621412 +15343972 +2962313 +7585856 +12959128 +13003037 +11140513 +21240219 +11660211 +15055615 +2668058 +12702228 +4122950 +5295384 +9150193 +13376590 +664631 +14982215 +18603062 +17829086 +2167365 +12581642 +8287744 +6077225 +301564 +2411813 +16511163 +20792610 +6313808 +16136299 +20519326 +10165341 +9722975 +13863521 +21132085 +16916829 +15244358 +1548053 +15345938 +16220840 +16337493 +16394509 +21325415 +4472911 +10738123 +7788362 +8809408 +6741101 +2273533 +17063629 +6730616 +3556066 +8426679 +17913627 +4851052 +3202174 +17944429 +14033914 +7106790 +2482592 +3852288 +13501764 +3788718 +19164703 +602373 +4031200 +5512307 +3505604 +7113999 +21046888 +13469651 +5331428 +3603252 +3236908 +4491261 +17532209 +15773231 +21440103 +20166089 +1293774 +20325340 +17171107 +9044026 +7836858 +11917111 +1731553 +5097466 +59082 +4052827 +2522568 +12282800 +18989723 +4856295 +20308956 +6591024 +19267594 +19388180 +14204962 +5244921 +18568984 +12081605 +6325605 +13128866 +14036535 +9806206 +755726 +10870505 +9985118 +21434860 +2046779 +9398574 +17969332 +18859307 +21180581 +13280908 +8403742 +20382356 +10597877 +3557377 +18421528 +6049700 +2780124 +18601752 +8621976 +6499930 +7454130 +14231176 +16980398 +8979801 +6306600 +11087429 +9306824 +646281 +8308715 +17243852 +17468639 +7541292 +10631956 +19306916 +7713651 +19864624 +30901 +2411813 +5895691 +5534589 +11482609 +13216683 +7821130 +10024440 +13898910 +11540936 +8256942 +7603551 +4744884 +18665977 +20415780 +17366404 +18982514 +7314539 +11427559 +20322719 +4666896 +19835133 +12172700 +19139144 +744585 +2562545 +4854329 +13024664 +11061870 +14685994 +18484443 +14611283 +10110947 +20413158 +14194476 +10157477 +11402655 +8669161 +12008205 +11404621 +11220466 +14183990 +19524494 +14528708 +17817945 +11118230 +20863388 +14497251 +290423 +4700975 +15826315 +19133901 +10131263 +12850994 +2551404 +17925423 +9056477 +5559493 +987067 +195396 +21175994 +9407093 +10467461 +20633358 +14258046 +15488151 +20178540 +20254562 +20776881 +5493302 +8764844 +2067095 +10873127 +13399528 +8902469 +11835191 +6435705 +639073 +1289187 +7816542 +12870655 +20550783 +14536572 +14750219 +55149 +20485247 +2132631 +1728931 +2965590 +15062824 +1803642 +8084583 +15142778 +435257 +19612312 +21347697 +3165474 +20923681 +15254844 +2550093 +15956076 +15586454 +10720429 +13915294 +8414883 +6404903 +11585500 +6679498 +18922876 +19425535 +20794576 +18658112 +19567092 +21377188 +6013000 +17180938 +14206272 +14703688 +14486110 +8157328 +3869982 +15201104 +17333636 +11974127 +8067544 +12248066 +20801130 +11578946 +19200748 +885487 +4924452 +10337700 +14225933 +13934299 +12387001 +4360845 +8131113 +7192642 +12438119 +6889867 +15690656 +19815473 +12989930 +15338729 +13423121 +11947257 +2800440 +15630363 +4438832 +16463322 +3589490 +327123 +20413158 +6882003 +7275217 +9287818 +13041048 +10941284 +13745556 +19035598 +6082467 +738687 +8779261 +11682493 +9382845 +3037679 +11629409 +6649351 +1552640 +3583591 +10416998 +20964969 +19559883 +3134017 +739342 +20534399 +17679664 +13803228 +10063761 +21449933 +6493376 +9809483 +1197437 +17186836 +5541798 +7790328 +9842906 +19599205 +19666707 +11597296 +1512663 +18411698 +2150981 +18203295 +17554491 +18270796 +14687304 +12911287 +9669892 +1010005 +10412411 +175080 +18571605 +15124428 +8391290 +19698164 +10262334 +3904061 +21352940 +840922 +4109843 +3711386 +11148377 +6302667 +20947274 +1721067 +6823676 +9436584 +12921117 +20200167 +15535336 +13866142 +11999686 +17281207 +11521930 +3352250 +14604729 +20985940 +19909844 +15187342 +11085463 +554531 +741308 +18343541 +21094074 +20684476 +980514 +18489030 +6708989 +10940629 +708540 +6682774 +18289802 +18057805 +7167739 +2068406 +15406231 +15695243 +16127124 +20111039 +18486409 +10529720 +7697922 +1960928 +12034419 +13155735 +4086250 +8932615 +18851443 +11381684 +12809051 +9010602 +2333170 +8329687 +11719848 +10341632 +16271302 +5206911 +14108624 +18951712 +1536256 +12645867 +5161036 +17304145 +14145980 +13428364 +2777502 +20746735 +4923141 +3436136 +12570501 +454262 +21133396 +12173355 +1192849 +9084002 +14750874 +14951413 +1407151 +18572261 +20359419 +3156954 +603683 +21040990 +16176931 +17314630 +5352400 +9624672 +16480361 +1350135 +19596583 +3623568 +9553893 +12904078 +6948849 +13982796 +10265611 +3858841 +4190452 +6118512 +13199644 +6577262 +5469709 +13785533 +8074753 +4437522 +20519981 +10055241 +15163094 +47285 +12297873 +11199495 +1810851 +10683073 +9974632 +19553985 +2834518 +10423552 +16792311 +1998938 +5243611 +20967590 +8724867 +4029234 +5979576 +5534589 +8510565 +16248365 +17850712 +4055448 +15606770 +15378051 +2870563 +13735726 +12865412 +11350227 +2090033 +10248572 +2267635 +7207060 +11640550 +177046 +11346950 +3994500 +2932167 +6051666 +1165324 +340230 +1780049 +3452520 +4018093 +11524552 +1650288 +12160903 +13711478 +14784297 +12334573 +17238609 +21007567 +17458809 +19250555 +7920088 +17737336 +4385748 +4349704 +3463661 +18572916 +4122950 +18578159 +10255781 +9858634 +8912299 +5908143 +15534681 +3340454 +9441827 +13115758 +4976225 +18305530 +8177644 +12892937 +2132631 +19631973 +14613904 +17407036 +9601079 +335642 +15069378 +10548070 +228164 +21376533 +6272521 +10904584 +10027061 +10755818 +20940721 +8456826 +8669817 +15132292 +19853483 +1131246 +7252935 +18802291 +8108831 +3045543 +14773812 +1789224 +13851724 +14374044 +2365938 +17611507 +7986935 +17933287 +2127388 +17585293 +4457182 +13891046 +5680078 +18262932 +11579602 +7376797 +4021370 +16752990 +9601734 +3345041 +5620441 +14295401 +11508168 +9367117 +9248497 +3807068 +17170452 +14807890 +4706218 +2597279 +3774300 +11489162 +20905331 +7454130 +20312233 +2811581 +15275160 +17711121 +13677399 +2015978 +10510059 +3503638 +12494480 +9519159 +14936995 +7771978 +17049866 +12935535 +3647161 +1522494 +6711610 +21198931 +12091435 +3029159 +14492663 +4610536 +17975886 +16058311 +14429094 +9911063 +6752242 +18626000 +926119 +81364 +3923722 +8343449 +5739060 +10099806 +18480511 +13744901 +2249285 +18036834 +2812236 +13212096 +1046049 +15328244 +9631225 +14502494 +7305364 +19217132 +7017007 +268140 +15117219 +17284484 +4551554 +14039812 +9912374 +16548518 +16088458 +6174873 +3812311 +15260086 +18198052 +14884567 +10621470 +5441528 +9657440 +1192849 +6774524 +17580705 +8905090 +20313544 +21164853 +14872770 +8922785 +5359609 +13633490 +13497832 +5644034 +17655416 +7161185 +96437 +11975437 +3348318 +4689179 +1463512 +1734174 +17971298 +5302593 +6473060 +17704568 +1591962 +15754881 +9344834 +1572956 +1780704 +7008487 +3124186 +9443138 +12932914 +12413871 +20686442 +5617164 +7055673 +16555072 +9180340 +5716123 +11744096 +3180547 +300253 +19526460 +15894472 +4520752 +18703987 +6301357 +9846183 +5022100 +19166669 +1568369 +4931661 +14235763 +3455797 +5402862 +16995472 +11569771 +6220092 +5976955 +9182306 +13222582 +14986147 +7501971 +14797404 +6954748 +7469203 +6880692 +6021519 +5012270 +20971522 +2948550 +8464035 +3812311 +7574715 +4077731 +5868166 +14803958 +12674703 +10658170 +6092953 +19540878 +1067021 +2653640 +5963848 +13377246 +18449053 +16119259 +11369232 +12296562 +12560671 +16756266 +521108 +15491427 +1815438 +19462891 +8216965 +12946676 +1548053 +11632030 +4297275 +9171165 +9189515 +311394 +1815438 +2008769 +16830977 +20140530 +3689104 +16520993 +8900502 +14164985 +8619354 +4021370 +20778847 +4261230 +7146767 +6904940 +1335717 +12298528 +16848016 +12802498 +6183392 +19927539 +1637837 +6082467 +13655773 +7938438 +3347008 +5292762 +19160116 +19477964 +8431267 +14754806 +556498 +8903124 +6819089 +1025078 +2194235 +381517 +1980588 +15694588 +16151372 +17353297 +21205485 +16916173 +15687379 +6334125 +14023428 +5036518 +12729098 +10744677 +9865188 +3257879 +474578 +2179817 +14887844 +4775686 +18006687 +11374475 +19067710 +18620757 +4735709 +9220972 +1484483 +13526667 +3676652 +8282501 +4271061 +20894190 +16308658 +6986205 +12826091 +2915127 +3605218 +10684384 +13406737 +4605948 +1694197 +9485736 +8646879 +2556647 +9223593 +18194120 +18526386 +12082916 +1435987 +15296786 +19137178 +15918720 +7197885 +15202415 +18557843 +18438568 +2698859 +3284749 +7452819 +3289336 +9034195 +10890822 +5164312 +12526593 +18536871 +16911586 +3348974 +17759618 +8218276 +17506650 +6451433 +16149406 +8793679 +14999910 +14007699 +287801 +15193240 +9843561 +15239770 +20053367 +7690058 +4358879 +12712059 +6947539 +19863969 +16258850 +16670415 +8505978 +7139558 +3289991 +5370094 +9361874 +10468772 +19102444 +7744453 +8036087 +3808379 +7787051 +3081588 +19948510 +5879962 +8149463 +8815961 +10006745 +16648132 +3358149 +8132424 +5092878 +15418027 +15246324 +2611042 +3244772 +10474670 +1017214 +13402805 +15762090 +12095368 +1318022 +15508467 +9357942 +4767821 +11527828 +15206347 +20151671 +5175453 +3752018 +18977271 +13362173 +2622183 +861239 +18069602 +18189532 +18781975 +7301431 +16228704 +4365432 +19013971 +20136598 +9984463 +8399810 +19508110 +10941284 +13443437 +18936639 +15121806 +16119915 +15509777 +405110 +7763458 +11508168 +4423104 +15359701 +17859887 +9485081 +11969539 +8631806 +15178822 +11505546 +11606471 +8273326 +16617986 +18055184 +9394642 +5755444 +8049194 +8111453 +11665453 +12715991 +2265669 +4208147 +15039231 +7676296 +18953678 +6349853 +3367979 +12334573 +19582821 +18236062 +11321391 +10856088 +12619653 +13470962 +2964934 +16176275 +18362546 +795703 +11602539 +18239339 +1435987 +14539849 +10047377 +10787930 +18580780 +17536141 +549944 +3435481 +2585483 +15133603 +8301506 +899905 +9818002 +2491111 +16759543 +6429807 +8601660 +826505 +1162703 +9848149 +14424506 +19554641 +12586230 +17235988 +14296056 +6727994 +17934598 +18252446 +13787499 +11238161 +6561533 +12552151 +14157776 +17913627 +4490605 +12754001 +16862434 +1091269 +13016144 +16581941 +13175396 +1384213 +6562189 +15961974 +13280908 +19626730 +6593646 +14207583 +8128492 +5134821 +1378971 +11712639 +4309072 +11462293 +7565540 +17180282 +3780198 +2210619 +431324 +1858692 +4267129 +2839106 +8762877 +4138023 +21011499 +16620607 +15326277 +1321299 +12432221 +14128940 +1835099 +13638078 +11008786 +15710972 +15595629 +14349796 +19833167 +17974575 +16927315 +3647816 +19091303 +19973414 +7294878 +13466374 +7988901 +7490174 +3982048 +14364213 +18363857 +784562 +17652795 +6992758 +4023991 +2719831 +6635589 +11602539 +14494629 +17062318 +7243105 +1892115 +20354176 +16830322 +5935012 +12036386 +13582373 +10996334 +10325904 +12238235 +7794260 +3518056 +13707546 +17850712 +3452520 +14496596 +9435929 +5949430 +15361667 +367099 +7545880 +18502793 +12796600 +14723349 +16673036 +4530582 +19900014 +17197322 +8070165 +16643545 +11934150 +15573347 +18079432 +13694439 +5358298 +12996483 +19281357 +13774392 +20270946 +15954765 +17348709 +21102594 +12528559 +4385093 +3818209 +20059265 +12430910 +12220541 +7053051 +18255723 +8941790 +4967050 +477855 +2401327 +9607633 +3284093 +17713088 +3599975 +8407019 +10310831 +18944503 +6998657 +12539700 +19897392 +8496803 +9785890 +10693559 +7098926 +12352268 +5414659 +12331951 +6285628 +7562264 +4773064 +19066400 +6425219 +13604655 +1030976 +14699101 +5117127 +8119972 +10355395 +6813190 +15359701 +5936323 +9329106 +13204232 +1557883 +6769282 +8631151 +4571870 +11195563 +172458 +19392767 +18873725 +6237787 +12307703 +1475963 +7802124 +4281547 +18035523 +1034908 +17327082 +12046871 +3537061 +8281190 +5058145 +17633134 +2975420 +510623 +3761848 +18042732 +7860451 +1945854 +19675226 +4811730 +2115592 +2696238 +9878295 +13093476 +36799 +19356723 +14564753 +6707678 +18028970 +10694214 +15381327 +5155137 +7623212 +16849982 +3693691 +10358016 +2782090 +20750667 +1748592 +10280029 +15091660 +7535394 +5195114 +3725804 +15723424 +21335901 +19428157 +1363897 +10222357 +8027567 +7897806 +11685770 +8146842 +16377470 +10749264 +9899922 +960853 +9336970 +15700486 +5848505 +7927953 +8232694 +11336464 +15668374 +2751943 +14871460 +19470100 +10339666 +16929281 +4820250 +21345076 +10909172 +17821877 +16695974 +3839181 +16990884 +7730035 +7957444 +18962853 +2753909 +6403592 +17426697 +10367191 +10590668 +19673260 +4386404 +8817272 +18343541 +234717 +11858784 +20860767 +18291768 +10642441 +2430818 +19370485 +5256718 +14729247 +14232487 +4429002 +11382995 +1426156 +6915426 +6369514 +13793398 +17520413 +2278120 +20917128 +3012775 +18762314 +18241961 +5937634 +16869643 +17799595 +14273774 +15638227 +19755180 +8850695 +12677325 +439189 +11774243 +18751173 +12561982 +14069958 +11432146 +508657 +11223743 +12518073 +17231400 +4888407 +7450853 +7857174 +21314929 +2583517 +846821 +19280701 +8724211 +7230653 +11996409 +4551554 +15419994 +675773 +8720279 +8751736 +6827608 +10107015 +20950551 +4883164 +15130981 +10244640 +7345340 +6801394 +17900520 +228819 +13864176 +14921922 +17758963 +14274430 +15636917 +10120777 +20412503 +7712340 +3822141 +7237206 +5684666 +272728 +9416924 +18518521 +18377619 +10193522 +2969522 +2856145 +1139765 +10685695 +6387864 +16212320 +11578291 +694123 +12192360 +16318488 +16289652 +13458510 +3473491 +9496222 +11416418 +4482741 +13483414 +14151222 +6009068 +773421 +2737526 +13400183 +16503954 +1982554 +7944337 +15618567 +16612743 +15303995 +18515900 +8827758 +12412560 +15425236 +13517492 +13613174 +15142778 +18093850 +1329819 +20481315 +17053143 +15655922 +984446 +16351911 +523074 +6083123 +709851 +14946170 +21370635 +14154499 +4442764 +16587184 +10015265 +14202996 +8580033 +5458568 +18618791 +18154798 +19717169 +17193389 +20988562 +2048090 +20076305 +19782705 +14847212 +20666781 +12838542 +5747580 +5698428 +11666109 +11147721 +17076081 +20596003 +3911270 +17091809 +6960646 +10221702 +16644200 +4744229 +11453773 +2325306 +20607799 +18014552 +19676537 +21331313 +20844383 +10835116 +15703108 +8328376 +9509984 +12870655 +10248572 +7851276 +20237523 +12068498 +19890839 +18158075 +10906550 +8382770 +5228537 +7644838 +21102594 +16531479 +4868746 +9481149 +9000772 +21155022 +4214045 +2544851 +7230653 +5829500 +12153039 +6146037 +2458343 +16351911 +13484069 +10706666 +6443569 +14687960 +12471543 +86607 +2478004 +20857490 +7161185 +9856668 +20216551 +19978001 +2487179 +4754714 +1335062 +2902675 +9165922 +13543051 +9667270 +4211423 +7563574 +3867361 +18767557 +12069153 +16798865 +21223835 +2342345 +258310 +12058012 +10211872 +11468191 +21331969 +2167365 +13987383 +19155528 +9888781 +10408479 +19757146 +10736813 +8011183 +12928326 +17386064 +14741044 +10905239 +7213614 +11405932 +15863015 +15927895 +7289635 +16624540 +3033092 +9907786 +9268158 +13847792 +8302817 +5503787 +3072413 +3286059 +2991804 +11839778 +9538165 +3307031 +751139 +7187399 +3976150 +3265088 +19224341 +13702303 +6036592 +18711852 +13740314 +19865935 +3689759 +13862 +14554267 +941847 +12641935 +388726 +1229549 +19340994 +3421718 +10791207 +3388295 +10954391 +18922221 +17973920 +4370020 +12433532 +21381120 +15279747 +8176988 +5996616 +6318396 +7100237 +18042732 +7875524 +8304783 +15728011 +7828338 +6484201 +20710035 +2681820 +21139294 +11359402 +12626862 +13885803 +6910183 +12217264 +701331 +9814070 +20269635 +1802331 +15476354 +12092091 +10903929 +12201535 +5870787 +6205019 +20984629 +17658693 +15317758 +17049211 +14883912 +18616169 +7478378 +11719848 +12429600 +9707247 +18639762 +3335866 +5609955 +17577429 +14715485 +10280684 +8362454 +18631243 +1116828 +8446340 +19999628 +8477142 +21098006 +3301133 +15694588 +11696911 +11038277 +15771265 +2266324 +3063893 +7237862 +1384869 +16460045 +1282633 +6991448 +12060634 +18084020 +5726609 +21454520 +18702021 +6147348 +15769954 +9610909 +4617745 +9722320 +17942462 +16117293 +5630927 +2508151 +8697342 +9051235 +19706683 +15575968 +2456377 +19522528 +20303058 +3364702 +6815157 +14731869 +17745200 +16570800 +471301 +20554715 +16289652 +784562 +3135327 +11129371 +4449973 +10736157 +15295476 +17089188 +19515975 +8679647 +2980663 +12890316 +15825004 +15304651 +6054287 +13385765 +7213614 +17927389 +8302162 +4517475 +19928194 +17804182 +12930292 +9442483 +4307105 +7863072 +4674105 +852064 +14600142 +5001128 +5916662 +3758572 +10681107 +14144013 +15399677 +13601378 +20500321 +5260650 +15429169 +9527024 +17040691 +16760199 +7981037 +9818002 +12406662 +15483563 +7900428 +19822682 +1970103 +13269112 +18017829 +12644557 +3516745 +5885205 +287801 +7682194 +17582016 +19548087 +18091228 +735410 +3594732 +2627426 +5460534 +4039064 +20152982 +19550053 +4086250 +14371422 +1266249 +12065221 +1750558 +17272032 +4087561 +14372078 +19766976 +17302834 +13429019 +1372417 +12561326 +9135120 +9721665 +20331239 +12242823 +8230072 +8498769 +21431583 +16858502 +12947987 +4957220 +16028165 +12239546 +16861123 +4132781 +21030504 +12675359 +7519010 +5807873 +10213182 +16406961 +6021519 +17321184 +18068291 +18871103 +19231550 +6352475 +15697865 +1160081 +1921606 +17158656 +5020789 +15154574 +1335062 +18752484 +15211590 +3627500 +1638492 +9146917 +18144312 +13637423 +5824257 +8570203 +5109262 +12016725 +1378971 +14813788 +5354366 +4226497 +3675341 +4581700 +9543408 +8977179 +16699250 +11062525 +8175678 +10069004 +19143076 +17989648 +693467 +17660004 +8768120 +1054569 +13516182 +16840152 +19789258 +7277183 +4207491 +126583 +17329048 +1880319 +12134034 +12084227 +13202921 +17542039 +3322104 +16148095 +6427841 +13434262 +6104094 +5765930 +6817123 +395280 +6724062 +19614278 +2747356 +11456395 +8230072 +10559211 +2626115 +1611622 +989689 +1219719 +11130027 +7674985 +11932184 +3341109 +5322909 +7869626 +2339724 +4995230 +7952201 +5264582 +17498786 +18221645 +904492 +10927522 +14447444 +18663355 +12342437 +21412578 +7345996 +6038559 +13131487 +10051965 +21137983 +17011856 +20501631 +5191837 +20584862 +18649593 +1604413 +17138995 +13990005 +7943026 +17862509 +15821727 +4802555 +9369738 +9487702 +88573 +11877134 +16791656 +4677382 +17061007 +3374533 +1165324 +2531088 +663321 +8038708 +8892638 +13549605 +17885446 +12608512 +21301822 +688224 +18813432 +16468565 +8117351 +11539625 +1102410 +2631358 +17210429 +8407674 +7053707 +2875151 +3337833 +8963417 +4969016 +16125158 +11255855 +1293774 +17849402 +865826 +7901738 +9816036 +14226588 +1306881 +492928 +12089469 +10097840 +5326186 +14418608 +18568984 +4139334 +1932092 +9429375 +15336108 +1876386 +8071476 +16655341 +17432595 +8694065 +17121956 +16629127 +18721027 +11141823 +3972873 +12636692 +21474181 +19687023 +3458418 +12841819 +17529588 +20578964 +10498263 +10437970 +18299632 +17340189 +19354101 +18872414 +5469053 +9560447 +14785608 +15176856 +7062882 +3603252 +17768793 +20233590 +20380390 +10269543 +20027153 +18701366 +7944992 +16668449 +17420798 +11856162 +10109636 +16177586 +19384248 +13427708 +20629426 +19317401 +8247767 +2535676 +12442051 +584023 +4793380 +8865769 +17675077 +4700975 +20612387 +589265 +4861537 +2265013 +10670622 +7880112 +15737842 +18903871 +14657158 +2192924 +3955834 +20530467 +20716588 +7110723 +9883538 +14397637 +19303639 +3881779 +6444880 +20339758 +16987607 +73499 +7231308 +6821710 +5499855 +17734714 +8055747 +4532548 +20917128 +4427691 +9584695 +19704717 +9112838 +3340454 +14341276 +2835174 +18906493 +6018243 +9491634 +10390129 +9547995 +17199288 +503414 +20605833 +8718313 +12987964 +21198276 +13400839 +15058892 +21212694 +13478171 +11744752 +16333561 +5191182 +17648863 +7308640 +11158207 +15977047 +8275947 +4600705 +18861273 +15143433 +9760986 +20518015 +8348692 +4964429 +19862658 +15825004 +9719699 +18383518 +10266266 +3505604 +17377545 +4335941 +4870057 +9851425 +12810362 +19793191 +10981916 +4392302 +16435141 +12494480 +18841612 +11388893 +2746045 +13748833 +16446938 +3607184 +17678354 +3790029 +20364662 +5847850 +10291170 +11385616 +5081082 +8929338 +18325846 +10813489 +10735502 +14250837 +5008337 +6121134 +11146411 +2889568 +8119972 +16099599 +15256154 +20505564 +6071326 +6286939 +5370750 +233407 +11693634 +18312084 +13522735 +8728799 +13225203 +6017587 +3755295 +693467 +15503224 +15216177 +11989200 +3266399 +15596940 +1778738 +17990959 +8872322 +15560240 +10806936 +1099133 +4010884 +13922503 +11578291 +19308882 +13853035 +14160397 +3653059 +11744096 +10315418 +13252073 +10957013 +1643735 +14455308 +8557095 +20866010 +13338580 +4630196 +7594376 +519798 +15273194 +4214045 +14535917 +4436866 +18595853 +3257879 +20942031 +11725091 +20603212 +2001560 +17507305 +901871 +8450272 +2411813 +11385616 +7978415 +13075782 +20904676 +1447128 +10098495 +20722487 +12862135 +3404024 +3168750 +11172625 +18312084 +12735651 +8396533 +15988188 +11366611 +18826539 +11082186 +14893087 +20485903 +1192849 +17574152 +14564097 +2158190 +21214660 +18977926 +20597969 +13593514 +18130550 +4571214 +10688972 +16693352 +2518636 +6799428 +6334125 +9220972 +19812851 +20151671 +7508524 +8709794 +18727580 +12016069 +16472497 +5202323 +6450123 +18133171 +1051292 +9669892 +2718520 +3882434 +2074304 +13548294 +2824688 +20890913 +20575687 +7711030 +20027808 +18070257 +18274728 +5170211 +9383501 +8376217 +10547414 +1080128 +1169256 +14819031 +5590950 +7602896 +9703970 +3096006 +5201012 +11306973 +2771604 +18943848 +14151222 +12146485 +12858858 +7446265 +15884642 +13156391 +9690863 +4825493 +11845677 +12537078 +1821992 +8162570 +17720296 +17593157 +8242524 +20309612 +6550392 +3350284 +2679199 +4919864 +14112556 +7104824 +8433233 +12645212 +9970700 +2569754 +16927970 +20151015 +7304053 +2559924 +15186031 +700021 +14908815 +12411250 +10155511 +4170791 +3830661 +3900129 +12989275 +13643976 +7427260 +4306450 +35489 +681671 +11917111 +19416360 +6919358 +10833805 +13909396 +13947406 +7418085 +14318994 +9351388 +11808977 +12654387 +19135212 +11215223 +2787988 +20853558 +9730184 +10677175 +18734134 +16967291 +15234527 +589921 +1408462 +17473227 +20704792 +18958266 +18334366 +16058967 +3898163 +9083347 +19335096 +18776077 +4303173 +12440741 +12199569 +2894156 +13029907 +18504103 +498171 +9513261 +19781394 +9063031 +3641918 +10903273 +5501821 +15161128 +17595779 +20311578 +2183094 +15535336 +129205 +20788678 +8424058 +10080800 +18171837 +8978490 +11063836 +11318114 +18401212 +9593215 +8875599 +8220897 +2870563 +12919807 +9449692 +10445834 +6371480 +13200299 +2640533 +12580987 +13107894 +14337999 +10552657 +7924676 +3937484 +8973247 +2682476 +20260460 +14052264 +12120271 +12426978 +3973529 +5826223 +5096155 +7348617 +10461563 +16505920 +21252015 +21202208 +20216551 +20400051 +14485454 +14214792 +10339666 +8206479 +21226456 +12580987 +444432 +2293194 +20646465 +15132947 +2479315 +16655341 +3778232 +3395504 +3970907 +2487179 +21380465 +15442276 +17585293 +2836484 +12558050 +18467403 +4393613 +20417090 +9930 +12915219 +4379195 +15311860 +2960347 +17213050 +2415745 +9089901 +17401793 +858617 +13556814 +3409266 +16019645 +16199213 +1776117 +11735577 +16766097 +16853259 +8629185 +19639182 +656767 +21109803 +20065819 +492273 +6943607 +901215 +12299839 +16774616 +14415987 +4349704 +5600780 +18426116 +1425501 +21333935 +8575445 +12685844 +8131113 +14181369 +3932241 +2114281 +13735071 +9476561 +8609524 +164594 +10557900 +7369589 +15663131 +14927820 +1814783 +12399453 +1130590 +9753777 +4307105 +6638866 +18004721 +10561177 +19102444 +18853409 +2186370 +3463661 +8472554 +3110424 +21232354 +7262110 +13961169 +2640533 +10932764 +7396458 +2880393 +11755237 +9713800 +7047153 +7600930 +11614336 +325157 +10831184 +16087147 +672496 +3733013 +3506915 +6250239 +1671915 +7127106 +18315361 +12050148 +16336838 +5887171 +13762596 +12648489 +17022341 +20594692 +18546702 +4965739 +10874438 +3855565 +5741027 +8010528 +8074753 +13428364 +20357453 +15733254 +15622499 +8062956 +21400126 +11837812 +17072148 +7625833 +5486093 +20365973 +16728086 +16867022 +1993695 +4826148 +1348169 +3428272 +12885728 +19194194 +5226571 +16644856 +2573031 +15520263 +2858111 +7593065 +10963566 +12123548 +8332308 +16768718 +1139110 +5641412 +19751903 +10656859 +8728799 +8780572 +16037995 +12113718 +11139857 +5061421 +9475250 +20575687 +19304950 +9137742 +17772070 +1930126 +3369290 +2498320 +1933403 +2413124 +4648546 +19032976 +20267669 +663321 +2351520 +21431583 +587955 +3242806 +16223461 +14682062 +3689104 +19249244 +13615140 +16169722 +15092315 +11305007 +16241156 +6520246 +9294372 +16880129 +18069602 +17559734 +10703389 +384139 +2234211 +9085313 +15029401 +16513784 +12020657 +12944710 +10709943 +9078760 +5457912 +2847626 +7086474 +19059191 +6917392 +11345639 +8267428 +18747896 +6083123 +16842118 +11189664 +16881440 +10311486 +14686649 +9766229 +16679590 +1398631 +9965457 +19199437 +20731662 +9498843 +2444581 +16462011 +8249733 +12265105 +1924883 +4290066 +14193165 +795047 +15618567 +8787781 +21037713 +6363616 +2856145 +3248049 +7454785 +22382 +17899864 +19252521 +14980904 +17395239 +20789333 +8169779 +18604373 +12729753 +6482891 +14746287 +20702826 +9272090 +18114166 +11176557 +3918479 +7096305 +7453474 +17758963 +12092746 +684948 +10312141 +8858560 +16322420 +18373032 +20172642 +15528783 +7049774 +20561924 +6311842 +9407749 +12203502 +19777462 +18030280 +728856 +9856013 +1783981 +5221984 +20952517 +15237804 +10829218 +5571944 +14834760 +9916961 +21183203 +6477648 +21113079 +14469726 +990344 +3147124 +906458 +15398367 +5354366 +11938082 +15130326 +4661654 +17468639 +2033017 +2648397 +14388462 +18971373 +19932782 +10785964 +18587334 +8327065 +18872414 +1082749 +13907430 +18917634 +11249957 +17478470 +956921 +5978266 +13217339 +11609093 +6431117 +19121450 +12976823 +5037173 +17872339 +14191855 +11761136 +11941359 +14271153 +377585 +3955834 +15538613 +7275217 +5155137 +9775404 +1586719 +18523764 +16130400 +5470364 +20117592 +15246324 +5124336 +14811822 +21054097 +8810063 +288457 +13544362 +14676819 +16241156 +10955047 +17931977 +1949786 +3497084 +7223444 +9095799 +10915725 +4443420 +16695318 +21304444 +6304633 +18909769 +3481356 +2980663 +8558406 +12634726 +21388329 +14798715 +17614129 +9015845 +5773139 +8564960 +13227824 +15648058 +18080743 +8956863 +13733760 +11808321 +6906907 +6239098 +14042433 +19027734 +6994069 +16953529 +20989217 +8461413 +11772277 +7254901 +6856444 +10802348 +11379718 +7036012 +20638601 +10653582 +11587466 +2138529 +20179196 +12566569 +10158132 +18703332 +8351313 +10994368 +3780854 +8417504 +14931097 +15142122 +2091344 +13140662 +13416567 +11289279 +14556888 +2927579 +1633249 +13558124 +8214344 +16242466 +13263214 +21286094 +16771995 +17861854 +9956282 +12503655 +12531180 +17363127 +989033 +6412112 +814708 +14017530 +18004066 +2252561 +12763176 +10337700 +12622930 +20731006 +5229848 +3691070 +13132142 +12434843 +9359252 +4971637 +6748310 +9732806 +21167474 +15192585 +12499068 +7429226 +18669253 +9009947 +4508955 +13078403 +6897076 +6360339 +403144 +9929413 +2896122 +2044158 +17552525 +15710317 +12378482 +6243685 +18627966 +1704683 +17485023 +8747804 +129205 +5642723 +5868821 +12510864 +1776117 +9585350 +17597745 +13730483 +18626655 +2236177 +3863429 +9652197 +1828545 +11593364 +10870505 +18664666 +15766022 +11987234 +10443868 +605649 +7372210 +6817123 +19578233 +5459223 +6979651 +19218442 +2263702 +8852661 +1734174 +12815605 +2540263 +20231624 +299598 +11660866 +2116902 +8038053 +2320719 +12010827 +15927895 +12998450 +4829425 +19465512 +4866125 +15336763 +16749057 +18882900 +11687080 +12915875 +20427576 +17304800 +13429019 +4965739 +1656187 +10261023 +3715318 +16289652 +8597728 +11698221 +13026630 +6918048 +17469950 +19358034 +502103 +16859813 +16389266 +12912598 +12538389 +4370675 +20791299 +7006521 +4878577 +6556291 +2333826 +20280121 +2642499 +16312590 +3056029 +4012195 +16448249 +11146411 +8661952 +20941376 +2541574 +319258 +3037024 +9235390 +15227974 +10464184 +14085031 +2006147 +1996317 +4975570 +14650604 +8461413 +12404041 +903181 +4006952 +19091959 +13419844 +13594169 +4826148 +6699814 +17863164 +6907562 +470646 +20581585 +19281357 +16108118 +19956374 +9474595 +10415688 +19989142 +8891327 +7424639 +8089826 +8481729 +15860393 +17544661 +18072223 +15587765 +10424207 +13088889 +13071194 +5546385 +12553462 +13559435 +7737899 +4830080 +21437481 +11036311 +3194965 +2829931 +15479631 +5097466 +13803883 +13805849 +5347812 +7414808 +13117069 +16239190 +3849011 +16694663 +11735577 +11850264 +1890804 +18325846 +18104991 +6306600 +7562264 +9399229 +9086624 +3563931 +1375038 +17563666 +4921175 +9139052 +15021536 +7017007 +10352773 +5409416 +14894397 +5150550 +2439993 +1610967 +12470232 +21038369 +5980232 +14254113 +18375653 +3392227 +7580614 +16207077 +4546311 +10452388 +7011764 +10810213 +6685396 +1934713 +21288715 +11582223 +16044549 +5313734 +17992270 +19443230 +7472480 +2139840 +1312124 +14248871 +10462873 +7503937 +12558050 +9608943 +11792593 +10456975 +10931454 +15982945 +4505679 +12290009 +19080818 +3980082 +14792162 +2268945 +5298005 +13500453 +13476205 +357924 +15732599 +6724717 +16130400 +6532698 +7013074 +18609616 +20822756 +7684815 +21071 +9629259 +1607035 +10569041 +5207566 +17358539 +14800026 +15570070 +18070257 +11646448 +13374624 +7122519 +7638940 +7027492 +6335435 +4401477 +3304409 +8909022 +8087204 +11894173 +9567656 +3594732 +6631657 +20850937 +4370020 +19647046 +18380896 +8595106 +8271360 +19677192 +7452164 +789149 +7711685 +15147365 +16393854 +14796749 +20238833 +12936191 +7045842 +13647253 +20540953 +14462517 +16185450 +10880991 +15153919 +19712582 +17272032 +4801900 +6156523 +20742147 +7053051 +11259788 +2883670 +1427467 +8994874 +2354142 +15227974 +13931022 +18371721 +20164123 +15779784 +5058800 +10479257 +15208313 +19111619 +21321483 +15326277 +860583 +7762803 +14912747 +15202415 +8996840 +3554100 +8248422 +12072430 +8609524 +13790121 +11094638 +21193688 +2801095 +651524 +18428082 +15784372 +14925199 +11360057 +19921640 +8638360 +7493451 +16120570 +5604712 +16338149 +2951827 +20922371 +5965159 +6064117 +20455101 +2202754 +727546 +151487 +11841744 +15703108 +13729173 +8887395 +12235614 +5052902 +13392319 +9660061 +1278046 +6005791 +639073 +8018392 +12539044 +14163019 +11116920 +12203502 +8593140 +18833748 +5564080 +21149124 +16351256 +7745763 +19418326 +7818508 +18661389 +15758158 +8644258 +19356723 +10871816 +800290 +20562580 +10866573 +19014626 +6756830 +19291187 +6708333 +15861049 +9964147 +16060277 +12875898 +3948625 +16406961 +5800664 +16653375 +8561028 +21048199 +16681556 +12485305 +13533221 +9811449 +10200075 +3730391 +12364719 +2209308 +2950517 +5128268 +14240351 +14488731 +18806223 +17122611 +5632237 +5703016 +6425875 +18347473 +7746419 +8717002 +18012586 +11835846 +15725390 +14622424 +11138546 +20947930 +2828620 +5843262 +20544885 +6146692 +11718537 +7072056 +18768868 +6630346 +684948 +12421735 +19240069 +5522137 +3803136 +1550674 +19873799 +15884642 +15153263 +10513336 +18671875 +15117219 +5790834 +19117518 +13207 +10247261 +20446581 +7097615 +15771920 +12007550 +11038277 +5296694 +2240765 +6934432 +19690299 +263553 +15348560 +6010378 +3268365 +12358166 +9750500 +1418947 +19504178 +12513485 +16079938 +17281863 +2288606 +19216476 +13739658 +59737 +18007343 +19377694 +9924825 +13659049 +15754881 +11710673 +8795645 +12470887 +6243030 +9557825 +16432520 +1000830 +4362155 +1139765 +1702717 +3617670 +4501746 +4809109 +1625385 +8846763 +10772202 +2540263 +12196948 +20405949 +4691145 +18082709 +3575727 +14332101 +1325887 +15640849 +1245933 +20300437 +12029832 +14348485 +13708201 +19108343 +341540 +8505978 +6018898 +3276229 +14256735 +2954449 +370376 +105612 +1616865 +11237505 +9110217 +17610196 +7221478 +3821486 +10250538 +13298603 +722958 +19084094 +14453997 +18027004 +12412560 +16321109 +4047584 +20982663 +19249244 +5612577 +7815887 +5706293 +538148 +12312291 +6205019 +914978 +13619728 +2987217 +16602913 +20647776 +327123 +17763550 +10373090 +15179478 +12076362 +13134108 +11298454 +7874869 +6003825 +3784786 +5662384 +2571720 +7392526 +7489519 +13589582 +8441753 +5553594 +16565557 +16326352 +3161541 +13323507 +15330210 +3170716 +9529645 +944469 +9352699 +4533204 +20468208 +5640102 +45974 +9766229 +11973471 +20285364 +20709380 +1314746 +15168336 +5422523 +17258270 +3827384 +14578515 +14568029 +11855507 +14708931 +8863147 +3985325 +10565109 +15399022 +1114862 +4043652 +7349928 +15753570 +18733478 +8595106 +17977852 +8707827 +15900370 +1802987 +2225692 +2321374 +16346668 +15709006 +15981634 +6402282 +5842607 +15207002 +660699 +11955777 +18007343 +19114241 +2497010 +12455159 +8764188 +17778623 +14387151 +19276114 +5985475 +10010022 +18102370 +12923083 +811431 +20427576 +20829310 +18609616 +2754565 +11988544 +19619521 +11597952 +4250745 +5762653 +9830454 +12662251 +19070332 +588610 +14078478 +14651915 +4672795 +4683936 +11582878 +14619147 +4723912 +8068854 +2094620 +7238517 +21202208 +14592278 +19878387 +20712001 +16738572 +5381236 +9827833 +7929919 +7599619 +16920761 +3930275 +17684907 +3696313 +12310980 +16256884 +7735278 +13740314 +8087860 +8789092 +3684516 +772110 +6295458 +11979369 +8433233 +6182082 +928085 +738031 +1089958 +5332739 +16457424 +17755030 +9910408 +13541085 +18058461 +16023577 +18350094 +5540487 +16318488 +19824648 +10909827 +16849982 +12779560 +11624166 +3757916 +11643827 +1724344 +15296131 +1738762 +14404846 +18138414 +19344926 +5926493 +4051516 +17777313 +17260236 +13336614 +3393538 +8766810 +1957651 +4088216 +12939467 +5907487 +19641803 +7976449 +7155942 +12369962 +12664217 +9511295 +7271285 +7971862 +7686781 +19603792 +19235482 +19880353 +13653151 +8542022 +1247899 +18695468 +14081099 +6951471 +14534606 +16414170 +19461580 +4966395 +13121657 +1861969 +5955328 +20725763 +6104750 +4172757 +6795496 +11372509 +5214775 +5826223 +10801038 +19142421 +18724303 +17286450 +20311578 +10978639 +19901324 +13273044 +8840210 +19000864 +731478 +21240219 +1908499 +18788528 +17623304 +19147009 +21360804 +2491767 +17719641 +18986446 +9249808 +5842607 +18235407 +14632910 +8458136 +9216384 +19418326 +20160190 +7477722 +8686856 +8818583 +6026107 +5686632 +5412037 +17276620 +2237488 +7199851 +16045859 +4493227 +4082318 +5694496 +2814858 +7039944 +13970999 +11898761 +19235482 +4550898 +5308491 +14344553 +19150285 +1380281 +13067262 +10965532 +11578946 +15687379 +8154706 +2145738 +9096454 +787183 +17936564 +18373032 +1237413 +13501108 +21151746 +8687511 +1940611 +10095218 +15168992 +6657216 +15994086 +14046365 +20041571 +13543707 +16433175 +14741044 +9276677 +15380672 +14083065 +19224996 +4236982 +3125497 +10543482 +2661504 +21436170 +4585632 +1713858 +7809988 +2271567 +18752484 +16427277 +10342943 +15753570 +11575670 +13691817 +15052338 +4776341 +14125008 +9654163 +21239563 +10745988 +9734772 +91194 +226853 +18247859 +16139575 +6594301 +17192079 +10979295 +6258103 +5516894 +17505995 +3397470 +9204588 +3436136 +11061214 +16543275 +13708856 +18194775 +2976075 +20183128 +15522885 +14522154 +17618716 +3003600 +2797163 +4280891 +15302029 +21203519 +6255482 +16731363 +5647310 +675773 +8154051 +20016667 +6639521 +2105106 +8643602 +14658469 +3053408 +15518952 +577469 +15185376 +4244191 +15084451 +1066365 +11843055 +11381684 +6403592 +19654255 +15058236 +15598251 +2544851 +4060036 +16891270 +8925406 +4648546 +8421436 +15119840 +645626 +9245220 +2217827 +20073028 +20932856 +10757784 +15781751 +18061737 +18504759 +21319517 +19099168 +4811730 +20710035 +11953155 +15059547 +19772219 +11802423 +11997719 +1554606 +15552376 +5200357 +13126899 +4413273 +8750426 +1704683 +743274 +7374831 +2820756 +8825792 +16792966 +2554681 +412974 +6465851 +18440534 +9084002 +3830006 +12637348 +16462011 +4207491 +20404639 +5607989 +106923 +1060467 +14389117 +6477648 +3433515 +2670679 +15425892 +14161053 +13143939 +1970758 +3077656 +10872472 +8490249 +15071999 +13704924 +9262259 +5093534 +16936490 +3269020 +15710317 +6684085 +2922992 +19723067 +9762952 +15785027 +2385599 +3827384 +7505903 +7348617 +10114879 +8259563 +8198615 +16359120 +5387789 +3549513 +20822756 +7203783 +2947240 +17752409 +12814950 +19407841 +5026032 +14604729 +20580930 +21314929 +13488001 +20867321 +6378689 +9268158 +14149256 +14969763 +1797088 +20088101 +6448157 +1753835 +15051683 +14580481 +12013448 +188842 +6108682 +8546610 +6435705 +3777577 +8141599 +1001485 +8452894 +5600780 +12138621 +11651036 +13146560 +18873069 +15296786 +13556814 +3364702 +13145249 +336298 +8613456 +5140064 +19170601 +10151579 +10293791 +13299258 +431324 +20505564 +9487702 +10724361 +2042847 +11409864 +10008711 +14839347 +3237563 +4320868 +16329629 +9721009 +5621752 +14817065 +17164554 +19507455 +19626075 +10022474 +19255142 +9722975 +8893949 +13706890 +3187756 +1038840 +13384455 +18825228 +5917318 +17654105 +17007923 +766867 +8554474 +18607650 +16785757 +13183916 +5884550 +14015564 +9688897 +15432445 +606960 +20622217 +10546759 +14792162 +19587408 +15719492 +10442557 +693467 +2483247 +16265404 +10481879 +17897243 +3638641 +12752035 +18857996 +6182737 +20727074 +13509628 +17257614 +11188354 +19900669 +14899640 +20759842 +7401701 +7787051 +2753909 +1039496 +2381667 +11422971 +15258120 +11780141 +6802705 +9741981 +7576026 +6937708 +2527811 +21302478 +20849626 +12875898 +8705861 +5324219 +9322552 +16173654 +13014178 +16943043 +30246 +13370692 +18378930 +16059622 +3223145 +13948062 +15243047 +6906251 +4370675 +13319574 +848787 +15085761 +14249526 +6298080 +5950741 +20865355 +14058162 +14864251 +14193165 +21188446 +8276603 +7431192 +13732449 +17076736 +728201 +5545075 +1927504 +12982721 +20682510 +19007418 +10875748 +18026348 +14448754 +19449128 +17563666 +6847269 +8457481 +1364553 +21157644 +1793156 +15703108 +18515244 +888108 +19424880 +5641412 +8490904 +15571381 +116753 +10694214 +2002215 +7893874 +599096 +2280742 +14297367 +4014816 +16604224 +17538763 +535526 +13898255 +16111395 +19334441 +10011988 +814053 +1316056 +13672156 +19147009 +19995040 +14109280 +14474313 +7612726 +14404846 +10565764 +14783642 +15212901 +11867303 +13134108 +5309802 +13746867 +18224266 +15075276 +6115235 +18664666 +7182156 +2883015 +2029740 +17056420 +10185002 +722303 +5290796 +7918122 +19770908 +8717002 +7150044 +10415688 +10411100 +18280627 +20459033 +13978208 +5021445 +19270216 +17945084 +5100743 +18709230 +10369157 +11116264 +1740728 +1222340 +13373314 +10093252 +15444242 +17669179 +16883406 +1940611 +935949 +15901026 +405110 +9899266 +13951994 +21406024 +7310606 +6037248 +14276396 +740653 +9638434 +18883555 +7221478 +19602482 +5634859 +15290888 +3445966 +979858 +7110067 +5474296 +17909039 +10146336 +13917915 +14877358 +17361816 +6853167 +19182398 +6763383 +15686068 +12968303 +13723930 +462126 +11736232 +983790 +11834536 +18198052 +11950534 +668564 +2441960 +19552019 +4181277 +8464690 +19592651 +14799370 +17631823 +3626190 +82674 +793737 +6513037 +20774260 +8713070 +18023071 +14416642 +3046199 +5069286 +15440310 +13427708 +8277258 +11483264 +14976317 +3823452 +19959651 +6399005 +4641338 +4596773 +21302478 +16248365 +9167888 +5270480 +13639389 +9232768 +3331934 +3138604 +14741044 +21179271 +9520470 +3147779 +18921566 +9473284 +1740728 +18655491 +18922876 +15570726 +590576 +14678785 +7038633 +3247393 +2848936 +3701556 +12524626 +17502063 +1371762 +20881738 +6834162 +9804895 +18112200 +16937800 +12920462 +17551214 +19409807 +18327157 +13913983 +467369 +1443196 +13166876 +18884210 +352682 +7602896 +19894771 +9856668 +12798566 +625965 +11859439 +20406605 +1055224 +16954840 +4524029 +5583741 +20496389 +10766959 +21406024 +11190975 +3396159 +8421436 +9236701 +1511353 +9978565 +2228969 +19738141 +3839836 +1530358 +11033689 +19836444 +14814444 +5972368 +15672961 +12796600 +4771754 +10846913 +3535750 +3872604 +2001560 +3143191 +2088722 +20525224 +13298603 +6316430 +13455889 +21453210 +20391531 +18526386 +9106285 +11854852 +1911776 +3102559 +4107222 +5887826 +5736439 +7051740 +4917243 +3441379 +6627724 +277315 +506035 +8713726 +3490531 +5242955 +5530657 +20416 +5271136 +2377735 +3217902 +7179535 +16226738 +9159368 +11440666 +12611789 +13185882 +11436734 +12265105 +4320213 +4050861 +16091734 +11398068 +4243536 +9837008 +10963566 +10769580 +13608587 +16557038 +15248290 +10348186 +20900088 +18416286 +6288905 +15705074 +14071924 +5344536 +13341201 +17096397 +13765873 +16340115 +13914639 +2481281 +4738986 +4282857 +9167233 +13188503 +18492307 +20220483 +21330003 +4014161 +8074753 +11826671 +3089452 +10371123 +4282857 +1732208 +3204140 +19207301 +945780 +4850396 +19935403 +3365358 +15580556 +20903365 +15419338 +10015265 +9325174 +19604448 +16473808 +11221777 +5049625 +18501482 +1884906 +8564960 +1673881 +20596658 +17055764 +13986072 +2100519 +19120139 +1313435 +12216609 +10493020 +8387358 +4984089 +20899433 +15668374 +14826895 +2351520 +10152234 +9597147 +1218408 +20573065 +12432221 +14835415 +1824613 +5400896 +12655698 +19559228 +19328542 +14939617 +13853035 +8772708 +19792535 +11969539 +18645005 +11829948 +7521631 +17856611 +21156988 +11256511 +640383 +5960571 +7371555 +19548742 +18127928 +18382862 +15577935 +18608960 +6491410 +12815605 +18695468 +4083629 +10091286 +9238667 +2258460 +1053258 +19382282 +272728 +21303133 +14162363 +15824349 +1655531 +8659331 +14874081 +12816260 +7306019 +19827924 +14828206 +10089975 +10694214 +21222524 +5868821 +4528616 +7301431 +14334722 +8990942 +17796318 +11037621 +10622781 +12773007 +4560073 +20885671 +5436286 +601062 +9726908 +13579096 +2650363 +19034287 +8967349 +5954018 +2094620 +14194476 +15704418 +5105986 +1454337 +11279448 +17688184 +18811466 +10630645 +20489180 +4209457 +8785815 +1374383 +8255631 +12145175 +2193579 +4947389 +4242225 +917599 +7741831 +1447128 +17293004 +21432894 +16208388 +6807948 +2592692 +16635681 +10907205 +1134522 +4192418 +19386869 +10244640 +18473302 +6491410 +20881083 +3444000 +20198856 +5376648 +17616095 +16333561 +977237 +4406720 +4042341 +17966055 +13898910 +17247784 +10892788 +12328675 +5408105 +17975230 +20743458 +4432279 +5609300 +6337401 +11123473 +13257971 +6227301 +753760 +21153712 +14105347 +7384662 +18775421 +19586098 +4299241 +16443661 +8086549 +7096960 +10389473 +7625178 +2538952 +1847551 +16026199 +12201535 +15323656 +19051326 +15214867 +4380505 +8188785 +15686724 +19801055 +10373745 +7161185 +18454296 +11138546 +19863314 +16484293 +19586098 +8391290 +19993730 +15977047 +8921474 +7197885 +10269543 +15644781 +6027417 +4104600 +17841537 +1788569 +9819313 +10806936 +14509703 +6127032 +8617388 +15923308 +12620309 +3333245 +11052695 +13077092 +4974914 +18831782 +4532548 +10063106 +4436211 +1920295 +16432520 +9033540 +20160846 +17876927 +12915875 +1319988 +11391514 +13454578 +3830661 +9778681 +20805062 +10073591 +2685752 +7525564 +12963060 +605649 +16868988 +3653059 +6401626 +17488955 +17778623 +17414245 +3434825 +13152458 +1588685 +16717600 +5556216 +20493112 +4427036 +14869494 +5069286 +19622798 +10886234 +14857042 +4598739 +118719 +6195844 +16585874 +19538257 +10052620 +3601286 +12582298 +7728069 +15320379 +18101714 +15784372 +3512157 +4794036 +11369232 +1977311 +13946751 +14483488 +15221420 +3769057 +18728235 +12322121 +7505903 +2443926 +18148245 +3950591 +5455291 +4908068 +19681780 +462782 +14802647 +16493468 +14893742 +15222731 +20548817 +17661970 +9060410 +9886815 +1253797 +20438062 +4870057 +21156333 +2431474 +11983302 +2600556 +1860003 +14695169 +11446564 +4034477 +15906268 +14353072 +4562039 +18094505 +20057955 +19476653 +3605218 +12493169 +918910 +3742843 +18645005 +2665436 +733444 +14996633 +15919376 +7535394 +5817703 +18715128 +14325547 +20416435 +4322834 +6588403 +9317965 +3785441 +15339385 +19244657 +4054138 +13274355 +9508674 +574848 +8872977 +8653433 +17065595 +13143939 +9775404 +15484874 +21349008 +2001560 +3220524 +1955029 +19623453 +1454992 +12004928 +5720710 +21025917 +15058236 +7729380 +4109188 +19890839 +12422391 +19710616 +19575612 +14923888 +3230354 +12236269 +18173148 +5089602 +9302236 +3286059 +7039944 +11220466 +2462931 +6633623 +17510582 +11255200 +15604804 +12744171 +14783642 +9909097 +783251 +19876421 +569605 +1853449 +6796807 +8689477 +6056909 +6233855 +13882526 +610892 +5396309 +17518447 +19437987 +7356481 +5389755 +7553744 +13059398 +11875168 +19455026 +17087222 +5303903 +2846315 +9758365 +20673335 +6167009 +9725597 +20985285 +11230952 +10310831 +10160754 +9810138 +9650886 +13875317 +351371 +1568369 +16231981 +12538389 +14282949 +13765873 +17346743 +5665005 +17343466 +12848373 +21186479 +20621562 +18582091 +9593215 +21224490 +10306243 +5011614 +1197437 +11576325 +3039645 +20734283 +15753570 +17321184 +14271808 +15763401 +10128641 +6260725 +13353653 +2071683 +5790834 +10262334 +13160978 +12891626 +20327962 +521108 +17489611 +16249675 +7399080 +16705804 +1378315 +8901813 +7114655 +8418815 +2870563 +12162869 +10905239 +17774036 +7453474 +2512738 +588610 +11210636 +4339218 +13879905 +9279954 +10814800 +3190377 +14979594 +19611657 +5074528 +3913236 +13355619 +19361966 +10154200 +8774674 +10989125 +8472554 +19318057 +5025377 +5409416 +19867246 +18324536 +7299465 +4776996 +12463678 +19150941 +2072338 +14653226 +20928924 +10713220 +12288043 +7865694 +12537078 +15156540 +17072148 +6992758 +7476412 +19531703 +9060410 +11698877 +20351555 +14387806 +10159443 +7819819 +14142703 +16462666 +6153901 +5175453 +4197661 +6359028 +7510490 +18886832 +9587317 +1991729 +3531163 +5603402 +10886889 +5404173 +17204531 +13015489 +19725689 +800946 +6422598 +17175039 +11149032 +20567167 +12198914 +6662458 +17416211 +6148003 +20374492 +2865320 +5412037 +17429318 +1877697 +17053798 +8111453 +2096586 +6036592 +20077615 +3417786 +739342 +20398085 +11262409 +10812834 +20645155 +8428645 +4633473 +6520901 +3088797 +10335079 +19039530 +20239489 +18997587 +9722320 +19163392 +14150567 +1108308 +9667270 +1360621 +14630944 +6487478 +20927613 +20989872 +11478677 +16887993 +19318057 +11575670 +9179029 +13115758 +4465702 +8513842 +2719831 +18066980 +2234211 +4897582 +4778307 +7096305 +14174815 +9211797 +4172757 +3148434 +13996558 +4923141 +3874570 +19086716 +15880054 +16645511 +18463471 +14330135 +13992626 +4389025 +7534739 +673806 +11289934 +5302593 +11480643 +13440160 +1394699 +8209756 +15191929 +18403834 +14258701 +1820681 +20837174 +7513112 +3501016 +4033822 +5602746 +10257747 +8254976 +19302984 +9321242 +15991465 +2335136 +10642441 +6391796 +6526800 +13891046 +5055523 +207192 +8396533 +14252803 +10927522 +15951488 +20506874 +8811374 +16500022 +496860 +5748891 +437223 +5662384 +13927090 +17042002 +588610 +2479315 +12748759 +2133286 +16298827 +16268025 +17339534 +1863279 +16406306 +6012344 +6642142 +7061571 +19962928 +15106733 +10537584 +16973190 +9527679 +15394435 +595164 +15357735 +5568012 +19515319 +6688017 +20607799 +4667552 +522419 +17223536 +11939393 +10390129 +5992684 +4573180 +16838186 +9827177 +5587018 +20004871 +11495716 +17290382 +9603045 +12500378 +5323564 +16718911 +18964164 +2956415 +4214045 +10158132 +578124 +10466150 +8909677 +3865395 +6857099 +18563741 +825194 +10570352 +10569697 +910390 +7274562 +6811224 +3303754 +15130326 +5172832 +9763608 +14617837 +19200748 +12847717 +19226962 +20333860 +20402017 +206537 +10655548 +19820716 +17954259 +9821934 +4060691 +14501183 +5755444 +11816841 +8135701 +17100329 +11739509 +13964446 +14754806 +17155379 +10769580 +14296712 +14984836 +10812834 +9717077 +17002681 +18499516 +20443960 +12782837 +21021985 +4580389 +18833093 +15389192 +8851351 +1340960 +5579809 +13881871 +16756266 +6611996 +160662 +7555055 +13266491 +11549455 +6007757 +1728276 +10748609 +12203502 +10698147 +9854047 +8068854 +12401419 +12194327 +20440683 +17357884 +10574284 +7374176 +12666839 +9111527 +16815248 +18688259 +7942371 +7148078 +6905596 +9291095 +5077150 +17352641 +9924170 +20175919 +1058501 +249135 +21417165 +14591622 +9515883 +815364 +3183168 +20962347 +21183203 +1350135 +5231814 +16650754 +11715261 +18825884 +5262616 +14923233 +5576532 +12531180 +16616675 +12212677 +726235 +16071418 +17093775 +348749 +20515394 +16571456 +13367415 +1473342 +11611059 +16630438 +8135045 +8217620 +4690489 +16625195 +12946021 +1586719 +20506219 +9298959 +2686408 +15037265 +9201967 +3424340 +19082784 +9168543 +14161708 +18139070 +18570950 +19432089 +10745988 +325157 +15480286 +19167980 +19219098 +14650604 +8498113 +3304409 +6656560 +14400913 +5159070 +14218724 +5320943 +15163094 +18858651 +13791431 +5259339 +960853 +9535543 +10352118 +5655830 +19848241 +7609449 +945124 +18910425 +13284841 +5757410 +8766154 +3965009 +8111453 +8439786 +12430910 +16766097 +708540 +17047900 +3960422 +17505339 +11817496 +18443155 +15104767 +9089245 +6682119 +12464989 +5294728 +10895409 +8676370 +17332980 +9179684 +5391721 +15170958 +2613663 +7547846 +5927803 +844199 +10807591 +5492646 +18205916 +3757916 +9195413 +17840227 +781285 +21043612 +12181219 +16196592 +5123680 +10164686 +15767333 +10089320 +20776226 +1787913 +5221984 +15914788 +6785010 +18920910 +7083198 +250446 +7964 +1623419 +17047900 +2229624 +8384736 +11779486 +11122818 +6138828 +9268158 +15289577 +436567 +5156448 +18607650 +10080800 +14954035 +20667437 +14199719 +12061944 +19462891 +2673956 +927430 +1686988 +12126169 +19986521 +1208578 +8979801 +8329031 +21468938 +859928 +10186313 +9801618 +6515003 +20164123 +7177569 +5320943 +14883256 +18207227 +5724643 +17095741 +971994 +15033333 +6063462 +2903986 +11978059 +10829873 +1053913 +14628322 +4879887 +793081 +9441827 +15252222 +851408 +8481074 +10680452 +12651766 +19438642 +6810569 +2107072 +19611657 +18644350 +14577204 +1958306 +4497814 +13398217 +1428778 +4290066 +7721515 +18749862 +18025037 +9929413 +8605592 +11723780 +12510209 +10668656 +18447087 +9144951 +7733967 +7887976 +5853748 +4414584 +14442201 +7231308 +1296396 +10860675 +11286002 +6113269 +8436510 +19062468 +11101191 +1560504 +4745539 +8410295 +7446265 +13704269 +2565822 +13565333 +14125008 +2109038 +2172608 +21008222 +13149182 +13829442 +1238069 +18476578 +2397395 +10906550 +21128808 +15409508 +1376349 +16829666 +13780290 +13613830 +13063330 +8205824 +17592502 +3974839 +14988113 +19363276 +18087296 +11355470 +20481315 +14978283 +10605741 +5830810 +4071177 +19927539 +21437481 +3036368 +11134614 +18507380 +4847120 +21452554 +9561102 +4847775 +16620607 +4667552 +18275384 +18778043 +1789879 +20669403 +5960571 +12115028 +5173487 +8702585 +8929993 +2386254 +13541740 +8511220 +4431623 +15372152 +1827235 +13644631 +9812104 +15773886 +14947481 +18585368 +8253665 +14594244 +20161501 +2662815 +21173372 +15658543 +5747580 +12497757 +13914639 +11342362 +17996202 +40732 +19233516 +12058668 +10997645 +7439056 +14885222 +18914357 +17262857 +12208089 +4248779 +9995604 +19746660 +2454411 +8078029 +15828 +11816186 +3664856 +8311992 +7560297 +12303116 +4023991 +2990493 +11130682 +6773869 +15176201 +19940646 +7408255 +11653657 +648903 +12058668 +16709081 +17595123 +16218218 +18720371 +20198201 +8722901 +15277126 +746551 +17435872 +7418740 +7065503 +12636037 +17029550 +19162737 +20833242 +12113718 +20109073 +20356798 +5453325 +13657739 +2673301 +13980174 +19487794 +14900295 +20950551 +16827045 +3714007 +16018334 +16327008 +3170716 +6505828 +11989200 +2331204 +12214643 +3755295 +20117592 +16945009 +14663056 +11933494 +1235447 +7349928 +3476113 +1038840 +16165790 +18209193 +11522586 +5393032 +3394849 +13078403 +5791489 +3455141 +13461132 +698710 +5116471 +7562264 +6847269 +10504816 +6013655 +20668092 +7923365 +9285852 +20633358 +335642 +897939 +12001652 +4691800 +2460965 +16739882 +6247617 +868447 +727546 +11763757 +7787051 +17833018 +5249509 +8321822 +16977777 +13335958 +19347548 +12397487 +234717 +16925348 +6944262 +6741101 +9947108 +9099731 +10823975 +6792219 +8656054 +490962 +14411399 +5579809 +4828114 +13777669 +9449692 +9596492 +1601792 +3902095 +12549530 +13311055 +777353 +20590760 +20545540 +6940985 +14391083 +4505023 +12696985 +15470456 +4031200 +14940272 +11154275 +5845884 +878278 +1229549 +7077299 +3926343 +4502402 +1670604 +45319 +416907 +20777537 +10979295 +1097822 +8846763 +8747149 +13541085 +10825286 +5144652 +10899341 +3286059 +16117949 +4489950 +455573 +15010395 +16992850 +4995886 +20790644 +9446415 +19738141 +10961600 +260276 +1976001 +7787051 +15558929 +10820043 +19590685 +19838410 +5378614 +10122743 +18298321 +3038334 +17022997 +7280460 +11291900 +236028 +7515733 +14086342 +3215936 +17009234 +19696198 +13223237 +2325961 +20090723 +17815323 +13927746 +6509760 +14191199 +3354872 +18603718 +20225071 +4609880 +1029010 +13808471 +19808264 +7365001 +9601734 +2381667 +10084732 +145589 +1392733 +18340919 +3853598 +18760348 +684948 +12462368 +2753909 +13215373 +2787988 +1136488 +4344461 +11691012 +178357 +1364553 +6541873 +13275010 +6338712 +15614635 +12771696 +7407599 +114132 +18908459 +8976524 +13328749 +3315550 +18591921 +1732863 +622689 +21135362 +10298379 +2727040 +13643321 +15147365 +7939749 +5883894 +17311354 +3522643 +14182024 +14207583 +1831167 +7271940 +1865245 +12297218 +14127630 +1561815 +9051235 +6019553 +9307479 +20417746 +10134540 +3833938 +5999237 +15516986 +9293717 +18297666 +9367772 +3922411 +18726269 +5196425 +13864176 +19568403 +2865976 +12097334 +484408 +16806073 +9374326 +2814858 +4358223 +13902187 +9760331 +16108118 +17132441 +2036294 +14010976 +17747166 +14718762 +15065445 +3572450 +18359269 +3705488 +14444822 +10830529 +9460833 +11943325 +6052976 +18287180 +10928832 +2504218 +358580 +5577187 +18521798 +1586719 +17929355 +10792518 +15867602 +11552077 +9414958 +18875691 +11324012 +21137328 +20860112 +15980324 +6427841 +6151935 +1032287 +1089958 +6669667 +17958846 +11103157 +14628978 +2776847 +16815904 +18644350 +18295700 +11767689 +19834478 +14781020 +7977104 +20072373 +5872098 +1542810 +707885 +3862118 +18279316 +8442408 +19822026 +19222375 +15183410 +7427915 +19922951 +441810 +15601527 +14105347 +4660343 +10651616 +5174143 +8144220 +21239563 +3291958 +20957760 +3710731 +5484127 +10426829 +7918778 +10225634 +20371215 +9649575 +16884716 +21008222 +2864009 +20546851 +14485454 +6326916 +12931603 +4569904 +3675341 +5478884 +13685919 +11912523 +4548277 +15233872 +4719980 +20400051 +14222656 +5491991 +10032959 +17355263 +10891477 +17191423 +12474164 +5668937 +13445403 +7594376 +1812817 +12604580 +4071177 +20756565 +13623005 +18776732 +4400822 +4711461 +3959111 +14685338 +5239023 +3495774 +16836875 +16350600 +18973994 +2605143 +17051832 +11201461 +19118828 +5679423 +17144238 +9359252 +14615215 +7544569 +21364081 +21154367 +1875731 +11925630 +7429226 +7158564 +20718555 +16655997 +5800664 +8119972 +14212826 +7313883 +3341765 +7172981 +19254487 +10964222 +10261023 +10860675 +1332440 +14718106 +17209773 +8739285 +10620159 +15534681 +9625327 +18919600 +15825004 +5970401 +2424265 +8156672 +7011108 +11984612 +4434900 +1229549 +3005567 +8983077 +4517475 +17893966 +17741923 +3995156 +17621338 +1822647 +7688747 +2806338 +3540993 +2588104 +5038484 +21085554 +18755105 +2010735 +7845378 +8647535 +6086400 +10995679 +3575072 +17701946 +12046871 +21461729 +19377694 +11770966 +410353 +9980531 +17211739 +11205393 +8910333 +7225410 +21037713 +14932408 +10874438 +363167 +15049717 +7805401 +13958547 +4602671 +148210 +8602970 +15484218 +6601510 +5336671 +17066906 +2939375 +8587897 +11740164 +8294953 +5701705 +4733087 +15418027 +4686557 +21469594 +11263064 +14891776 +8678336 +16728086 +3323415 +20684476 +19745349 +18019139 +8927372 +1662740 +4802555 +20883705 +19730276 +15791581 +2528467 +12434843 +11913178 +10597877 +16005227 +6209607 +16093045 +13401494 +3044233 +20196235 +14134839 +3331934 +5129578 +4065934 +9816691 +13396907 +15689345 +11559286 +8271360 +12312291 +15173579 +1303605 +14929786 +6991448 +9863877 +12974857 +3635365 +1297706 +7979071 +16180863 +7611415 +15737186 +6225335 +7183467 +3774300 +18447743 +6249584 +15904302 +1770874 +15102801 +5300627 +18522453 +8234004 +19242691 +2030395 +19386869 +19939335 +326467 +4683936 +18391382 +17001370 +3466282 +18197396 +20159535 +2420333 +1261662 +18916978 +15930517 +16163824 +15292199 +833058 +8599038 +19776151 +3273608 +16154649 +11797836 +9195413 +6465196 +14929786 +7579303 +15544511 +10405202 +7840135 +8324444 +7982347 +13549605 +13283530 +14173505 +2621527 +14590312 +12213332 +11604505 +5058145 +5010303 +16098288 +19194850 +4619711 +21242185 +20506219 +4072488 +12942744 +20877806 +14092896 +18694157 +21394883 +2354797 +8770742 +16385990 +20274223 +3721872 +3148434 +17395239 +18726925 +13363483 +16811972 +19470755 +15042508 +8111453 +160662 +2607110 +6585126 +1291153 +15066756 +1774151 +10509404 +15481597 +18632553 +17457498 +12703539 +12873276 +10380298 +17001370 +9392020 +20113660 +3995811 +11324668 +15892506 +8079996 +4147854 +9041404 +13676089 +21169440 +7841446 +4335941 +10883613 +9177718 +17563011 +15392469 +15640193 +6665080 +21240219 +7593721 +11430180 +5520827 +12180564 +18935984 +13038426 +15297442 +4016782 +21243495 +13149837 +614169 +6433083 +6403592 +5494612 +18416941 +2613008 +3021295 +1994351 +8163881 +1557228 +18792460 +15053649 +8692754 +12929637 +536837 +8355245 +18614203 +17584638 +457539 +2042847 +16304725 +17660004 +17814012 +13533876 +568949 +3161541 +5214120 +19844964 +9707247 +4824837 +2624149 +9215729 +1539533 +5754134 +7851931 +7275873 +3082899 +10473359 +19037564 +16677624 +4415895 +941847 +8232694 +13150492 +5428421 +13741624 +3904061 +1312124 +12109785 +3565897 +19968826 +15507156 +4529927 +6391141 +9198690 +4576457 +16764786 +9761641 +8093758 +1217097 +7313228 +614169 +6819744 +20933512 +3869327 +6105405 +11957087 +5323564 +7713651 +18040766 +7454785 +6324950 +12737617 +2915127 +2364627 +2749322 +10920968 +17013822 +21071137 +18176425 +17140961 +5815082 +9842906 +17429318 +6619860 +15813863 +9350733 +14488076 +12631450 +11455084 +8621320 +19381626 +20074994 +3826073 +1874420 +20689064 +9914995 +5918628 +7315194 +17742579 +4841221 +5712191 +10975363 +19993074 +20173953 +8761567 +2704102 +6149314 +6594957 +19417671 +2969522 +18246548 +10854777 +12363409 +11357436 +18194775 +18259655 +21291992 +11648414 +4079697 +3735634 +9862566 +7305364 +13758664 +20357453 +16836220 +7506558 +19120139 +14608006 +4297275 +1984520 +4250745 +13304501 +8241869 +16602913 +16142852 +6387208 +20435440 +8752392 +8737974 +20179851 +7557021 +16629127 +20549472 +5965159 +11912523 +20826033 +12755967 +17014477 +9597147 +18194775 +15361011 +19736174 +7275217 +2641188 +15705074 +5355021 +10478602 +9209176 +692156 +5495268 +1017214 +2010735 +16507231 +12345714 +7368933 +20063853 +12961750 +8083928 +19090648 +17998168 +1943233 +18335677 +920221 +8956208 +17939841 +7804090 +15309238 +11074977 +2103140 +5280966 +385449 +18340919 +21222524 +18485753 +6654594 +12586230 +19668673 +18568984 +9944486 +1200058 +9597147 +5693841 +17997512 +11424282 +4835323 +6039214 +17716364 +4334630 +2464897 +11636618 +8023635 +4442109 +4707529 +14028671 +8928683 +4032 +20048124 +14321615 +12597371 +17341500 +14741044 +10285272 +3246083 +10162720 +11329255 +14878669 +11634652 +10133884 +4662309 +20954483 +8885429 +7894529 +20905331 +9461488 +13405426 +10770891 +11497682 +1814128 +890730 +4065279 +14919956 +17512548 +12677980 +4496504 +20538331 +2105761 +9462143 +18550634 +10332457 +16085181 +15967872 +8426024 +20791955 +19659498 +17701291 +460815 +13600723 +16429243 +5044382 +9215074 +20163467 +19773530 +12360132 +19483862 +4989332 +3675997 +10504161 +53839 +20372526 +10455009 +15805343 +19681124 +11470812 +18796393 +16220184 +9609599 +16033408 +2242076 +13284841 +16199213 +10504816 +17756996 +16804763 +15538613 +17890689 +2916438 +11732955 +4758646 +8307404 +1792501 +13334648 +271417 +14313751 +4168170 +15362322 +13406737 +13423776 +10781377 +11752616 +20215896 +21377844 +3152366 +3934863 +17380822 +12989930 +1190228 +2484558 +9217695 +6780423 +15994742 +21093419 +17701946 +16102875 +16614709 +7167083 +3453175 +9712490 +18822607 +7681538 +4354947 +13972310 +6667701 +20677267 +14681406 +5720710 +9584695 +2818790 +18778043 +7184778 +2892190 +20280121 +2810926 +10471393 +18875691 +4060036 +15037265 +14176781 +7440367 +20403983 +12216609 +14404846 +5328152 +2044813 +13584994 +17967366 +2555336 +1256419 +20827999 +5972368 +653490 +17820566 +10747298 +1471376 +16422034 +11914489 +17386064 +19031010 +10402581 +14013597 +9011258 +6977030 +9162645 +18413009 +6229267 +11125439 +14052264 +1947165 +17773380 +5033896 +8484351 +12207434 +4017438 +2149670 +21458453 +1127313 +3097317 +2241420 +1044739 +13946751 +6935087 +950367 +13885803 +1407151 +1208578 +1407151 +9040093 +15509777 +14263288 +20507530 +5828844 +13741624 +9192136 +7332889 +8417504 +10624747 +947090 +9902543 +12888350 +16245088 +17960157 +13813714 +10829218 +6693916 +10963566 +3721872 +11586155 +10314763 +15689345 +14794783 +8690133 +17834329 +6406869 +16441695 +19979967 +15007119 +4683936 +18209848 +19550708 +17648863 +9176408 +3925688 +19902635 +21154367 +10183691 +19559883 +15048406 +2056610 +19854139 +20879772 +21470904 +12586230 +16693352 +21124221 +13599412 +11858128 +14438924 +15916754 +12163525 +11513411 +3634709 +10900652 +14716795 +7660567 +18913701 +15855151 +5225261 +19219753 +15894472 +8662608 +11173936 +5187905 +3976150 +12052769 +15593663 +2388220 +11571737 +7321092 +14590312 +19999628 +7926642 +21225145 +6292837 +10962255 +2318752 +2873840 +8537435 +14891776 +15286956 +20097276 +20050090 +19514008 +13831408 +5558837 +969372 +312049 +20636635 +11590743 +2217827 +7528840 +16809350 +10749920 +4174068 +8602970 +19975380 +7794260 +2176540 +20888292 +190153 +15478976 +6670323 +6513692 +15500602 +15619222 +1626040 +21297235 +14854420 +16172343 +1477929 +3658302 +12338505 +3663545 +13987383 +17565632 +16000640 +9071551 +6334125 +13347755 +7218856 +613514 +3957145 +6300701 +19597239 +14809201 +11432802 +16093045 +12048182 +3047509 +13756042 +1182363 +14549024 +19774185 +5009648 +11704775 +5000473 +14784297 +2149670 +500137 +17144238 +6060185 +12349646 +9641056 +2411158 +3007533 +19019214 +325157 +10065072 +5568668 +19365898 +572226 +15240426 +7401046 +6800083 +10359982 +2201444 +6480269 +16975156 +16527547 +18954989 +15747672 +1892770 +8056403 +15982290 +12726476 +15947556 +451640 +1261662 +14007699 +5897657 +2788643 +2231590 +20251940 +10749264 +569605 +1784637 +17609541 +20597969 +16808695 +4670173 +17432595 +21236942 +2361351 +14842624 +19523839 +10458286 +4465702 +15714249 +9655474 +18918289 +20921060 +13019421 +5446116 +7403012 +10331802 +17496164 +3630777 +16964670 +2727695 +5632237 +14614560 +14259356 +7887321 +14832138 +15866292 +1840997 +9270124 +3250015 +10040824 +7528840 +20065819 +17184214 +19396700 +7214269 +16811316 +17103606 +9114804 +17998823 +6260725 +12577055 +578124 +7999387 +19485173 +7499349 +2157535 +10033615 +9712490 +19348859 +18559809 +21110458 +6227301 +17445702 +2497665 +10504816 +6930499 +1012626 +9748534 +4881854 +4814352 +19058535 +13336614 +14923888 +17505339 +9277988 +2973454 +8129803 +21215970 +9614186 +18773455 +14369456 +1846240 +18380241 +15220110 +10520545 +3103215 +13642665 +20463621 +14361592 +19310192 +9045992 +14464483 +12579021 +20791955 +12548219 +12537078 +2733593 +2461620 +1462856 +14046365 +10272165 +21370635 +16501332 +2147704 +16825079 +6468473 +15769299 +19401942 +4486018 +15014328 +20900088 +11238161 +9347456 +10205974 +3014742 +20431508 +2454411 +6278419 +19205335 +16559659 +6843992 +20696272 +4293343 +8022324 +11129371 +13983451 +7722171 +21228422 +2402638 +8431922 +1173188 +14735145 +1029665 +7878146 +3803791 +114132 +12106509 +17180938 +15774542 +7848655 +12352268 +19790569 +13050223 +19711271 +16066831 +18783941 +9518504 +21312308 +16814593 +21234976 +9933345 +17105572 +20244731 +6851857 +10044100 +11213257 +7666465 +18460194 +17737336 +11109055 +2846970 +7250969 +15331520 +14567374 +17215672 +21322138 +8654088 +15440965 +2995081 +5377303 +18611582 +10156166 +18940571 +14851144 +10565109 +19012660 +8066888 +4957220 +3755295 +18267520 +14810512 +19394733 +12506932 +11851575 +4781584 +3637986 +18504103 +9844872 +7185433 +3126152 +12400109 +13703614 +759003 +14212171 +3426961 +11597952 +5609955 +11984612 +13775703 +19423569 +16549829 +2624149 +20846349 +20521947 +4082973 +1648978 +14455963 +11474745 +5191837 +460160 +3263122 +7002589 +14691237 +15798790 +8644913 +18063048 +21403403 +5378614 +9124635 +6501896 +7300776 +1981899 +2451790 +2152947 +17660004 +13069228 +19569714 +20658917 +12984032 +16716945 +21356872 +10871816 +18760348 +8947688 +6292837 +6969165 +4651168 +3782165 +2246663 +5470364 +9166577 +5486748 +12828057 +755 +5851782 +4685902 +21000358 +16093700 +5565391 +17802871 +13033839 +20546851 +19721101 +6748966 +18097782 +20061887 +14004422 +20456412 +19223030 +8935236 +14302610 +8618699 +10093907 +16110084 +446398 +14309163 +10441247 +18722337 +7187399 +2570410 +13872040 +15412129 +3596043 +10165341 +3011465 +5047003 +13252073 +2439993 +5791489 +13813714 +3451865 +15100179 +5657796 +2218483 +5821635 +9819313 +1629317 +9701349 +18023727 +21468283 +9522436 +3339143 +20099898 +4408686 +21097351 +3078311 +20207376 +20074994 +13079714 +14411399 +12326053 +1477929 +1355378 +18802946 +18392037 +16032097 +17523034 +3755950 +11521930 +4640682 +3120909 +3657647 +177701 +4343805 +14096828 +4433589 +5494612 +4257298 +699365 +5280966 +18357959 +12608512 +6326916 +4608570 +12050803 +3376 +7563574 +10181070 +11149032 +17549248 +2721797 +12390934 +13318919 +4643304 +604339 +20660228 +920221 +14556233 +1423535 +15992120 +10860020 +7539326 +8127181 +5575221 +5689253 +4014816 +9751811 +10987159 +8302162 +5271791 +17996202 +4100668 +6999967 +1787913 +12745482 +8786470 +7399735 +13463753 +6575296 +17436527 +17107538 +9441172 +19553330 +4843843 +17512548 +16872920 +2565167 +10566420 +9277333 +8616733 +15870224 +13973621 +14080444 +8059679 +13938231 +2604488 +11813564 +1052603 +15695899 +974615 +17898554 +7269319 +11247991 +9500154 +774076 +8327065 +19136523 +7215580 +16008504 +20573721 +10253159 +10905239 +20849626 +9869775 +5111228 +730167 +3394193 +696744 +17643620 +5619130 +19015282 +12499723 +1897358 +8170435 +16617986 +3793306 +11667420 +5300627 +13730483 +15281058 +20777537 +13220616 +9080726 +5326186 +592542 +9384811 +19861348 +20004871 +3108458 +8018392 +18882244 +19262351 +8703240 +4159650 +8497458 +1413704 +17030206 +4312348 +6495342 +5213464 +11286002 +7479033 +9043370 +8951620 +16635681 +4355602 +6522867 +14481522 +11888275 +8781227 +9979220 +13507007 +1095201 +17426041 +13689851 +16665827 +4153752 +19172567 +1896703 +14533296 +15416061 +14617837 +11118230 +8129147 +11493750 +16814593 +12478096 +21008878 +14296056 +15155885 +12015414 +15769299 +11345639 +2373802 +4573180 +13601378 +18567018 +3602597 +7414808 +17583327 +1688954 +14206272 +2451790 +16896513 +5894380 +68912 +13233067 +16232636 +16568179 +17374268 +16721532 +2508806 +8167813 +4264507 +1907844 +7920088 +4705563 +10098495 +4149164 +9625327 +7566851 +6651973 +19246623 +18382862 +716405 +4045618 +12698951 +10536273 +17846780 +2289261 +14055540 +12707471 +9092522 +7298810 +17870373 +15073310 +7246381 +7355826 +3312929 +1116172 +8984388 +10012643 +8681613 +5935012 +6616583 +13937576 +14535262 +18578814 +15354458 +15703763 +1174499 +5541143 +16226083 +11920387 +20099242 +21215315 +3226422 +10799727 +920221 +16727431 +11880411 +13569921 +13826821 +130516 +17158000 +1296396 +414940 +9070895 +7421362 +16369606 +15096247 +12027211 +14962554 +9152815 +11379062 +15275815 +1793156 +11492439 +475889 +19242035 +4019404 +6940330 +3098627 +15494704 +3955179 +16433831 +20575687 +11628098 +19216476 +5509030 +4516164 +17605609 +6796151 +2952483 +8200581 +2276154 +6933776 +15478320 +4993920 +11330566 +17414245 +20970867 +7947613 +4449318 +1624074 +11422316 +18820641 +10928177 +14925199 +3037024 +11200805 +11196218 +15165060 +6105405 +12818882 +14680095 +7586512 +965440 +19297741 +20599935 +4065279 +20033051 +19171912 +10009366 +17447013 +17144238 +12743516 +20765085 +402489 +10737468 +3972218 +2751943 +13993281 +10322627 +19746005 +20435440 +19976690 +19491071 +6895765 +6171596 +11541591 +11456395 +4897582 +17870373 +5344536 +20061887 +15117219 +11178523 +8251044 +6017587 +7504592 +15357735 +18510002 +6374757 +977892 +2185060 +2986561 +12258552 +14164985 +14938961 +17534830 +18431359 +16019645 +18593887 +4126882 +11839778 +16564247 +16810006 +11641205 +20592071 +19270871 +4219943 +8843486 +11988544 +18270796 +20416435 +14995322 +18762969 +19603137 +3001634 +17277275 +2968211 +12002962 +6749621 +13904153 +8473865 +16754956 +13788810 +17190113 +4132781 +13267146 +9234079 +11862716 +11533071 +20211308 +19623453 +3506259 +5290141 +44008 +15494049 +2124767 +7998076 +17070838 +19696198 +11282070 +18123341 +16220184 +658078 +18118753 +21151090 +17766827 +21045578 +11770966 +1449749 +9268158 +6294148 +4008263 +11886309 +7830305 +11460327 +15184065 +3909304 +3470215 +7284392 +20804406 +12004928 +20453790 +20966935 +15072654 +8693410 +7393837 +17604298 +14920612 +2498320 +7724792 +14206928 +10557900 +17178316 +20687097 +5513618 +8176333 +9258983 +4455216 +241926 +20510151 +6394417 +11342362 +4705563 +572881 +8207790 +4785516 +16196592 +3769057 +18030936 +13761285 +13393630 +15340695 +4899548 +2533710 +6208296 +7541947 +13896944 +4016127 +3453175 +7083198 +9445104 +2017288 +3715973 +7096305 +13248141 +3281472 +18147589 +19566437 +14108624 +20819480 +15778474 +16571456 +18039455 +1412394 +14845245 +13333337 +16548518 +20082858 +17454222 +19943267 +5293418 +1322610 +11063180 +7389249 +2784711 +20017323 +13290739 +1304260 +8051160 +12355544 +18449053 +19555296 +18756416 +14088308 +15596940 +10045411 +5730541 +14130251 +921531 +20249974 +8338206 +3992534 +3927654 +3232975 +10447800 +19706683 +7294878 +7063537 +19108998 +5115161 +16098943 +2055954 +5695807 +1852794 +5939600 +6853167 +2791265 +977892 +5665660 +3997777 +16556382 +4524684 +1298362 +5365507 +4915277 +18483132 +2731627 +15803377 +10798416 +10078834 +2768327 +19124726 +13573198 +1835754 +19745349 +13969689 +17409657 +13172774 +17732748 +8947033 +4129504 +531594 +2929545 +4554175 +11588121 +719026 +4339873 +148210 +8091792 +5691875 +1143697 +10510714 +17167831 +9680377 +20226381 +1429433 +12868689 +14578515 +15310549 +8018392 +18454296 +5016202 +8865113 +1599170 +14531329 +1143697 +846165 +5083048 +3593422 +7275217 +18083364 +1205301 +8839554 +7384662 +1627351 +4710805 +10623436 +18856030 +13253383 +14627012 +6423908 +11894173 +7468547 +2981318 +4417861 +6645419 +15280402 +21172717 +7704476 +5105986 +7558331 +536181 +14003112 +5448737 +5061421 +15493393 +1970103 +13538464 +3628156 +6021519 +14868838 +20095965 +2416401 +6996035 +12084227 +8609524 +4333975 +9996915 +7231964 +5391721 +18864550 +11203427 +13037771 +672496 +842233 +15220110 +11088739 +9812104 +13079058 +11586155 +3500361 +17627236 +9531611 +15927240 +21000358 +10500884 +20827999 +20715933 +15634295 +11050073 +9998225 +12008861 +6509105 +19387525 +8422747 +4514854 +20223105 +11970194 +14598176 +15131636 +1146319 +9447070 +8029533 +13203576 +6276453 +20896156 +11826016 +3863429 +843544 +4714737 +19436676 +3544925 +20371871 +18635175 +19747316 +21062617 +15354458 +11915144 +406421 +18110234 +15412129 +12012793 +13271078 +5518205 +14988769 +8467311 +10041479 +12892282 +2706724 +7113344 +4429002 +2086101 +8876254 +8336240 +11226364 +20463621 +13469651 +17414900 +17964089 +20171331 +18544736 +12457125 +19362621 +4435555 +20052057 +20926958 +5180041 +13010901 +11227675 +15526161 +17559079 +6507139 +10178449 +16641579 +18170527 +20696928 +7660567 +4747505 +3354216 +6296769 +20922371 +8513186 +192774 +4503057 +20759842 +14940928 +16652065 +9334349 +3565241 +2860077 +8210412 +16752990 +18458228 +3809034 +20015357 +19631973 +13263214 +19181742 +8637704 +19040185 +18082709 +19788603 +17870373 +4199627 +14850488 +7031424 +19354757 +14516256 +11603850 +18257034 +6592335 +21308376 +13450646 +12526593 +18188877 +325812 +960853 +13286151 +13176051 +18575537 +15973115 +14690581 +4400822 +19366553 +14578515 +6584471 +7746419 +9545374 +16765441 +11433457 +19913776 +10719118 +19209923 +15772576 +12019346 +5991373 +7433814 +11583534 +1415015 +17096397 +6251550 +8695376 +17179627 +6593646 +10810868 +18865205 +226853 +19171912 +16321109 +1489726 +11814219 +20510806 +10243984 +7824406 +18306186 +19545466 +16200524 +19740107 +12529869 +18473302 +10411756 +20546196 +18732823 +11288623 +14678785 +8642947 +11357436 +4673450 +14923888 +19104410 +3299822 +2858111 +9286508 +14276396 +11740164 +16180208 +6611341 +9121358 +6899042 +13482758 +136414 +13236344 +2777502 +6923946 +16394509 +4956564 +8680958 +17545972 +6447501 +13375935 +585333 +2799129 +1567058 +8315269 +17703913 +9764918 +21333935 +17656071 +6431117 +12499068 +5931080 +281248 +10943250 +19369175 +12221852 +1410428 +10515302 +16184140 +500137 +11192286 +2831897 +8848729 +9851425 +10405857 +19899358 +10535618 +6054942 +10664068 +10111602 +874346 +6694571 +14634221 +3229043 +2795197 +3638641 +4314970 +19370485 +3888332 +8373595 +11738853 +9934000 +18231475 +19531703 +15055615 +212435 +15548443 +1870488 +15022192 +12944055 +13656428 +19641803 +13380523 +7009142 +18110234 +12316223 +11919732 +11782107 +19104410 +21320172 +11405932 +4170136 +8710449 +12144519 +325157 +9497533 +13767183 +14596865 +20002249 +16209043 +123962 +4722602 +16857847 +13755387 +8623942 +14940928 +19350169 +1331785 +13463753 +3299822 +6756830 +19137178 +13635456 +11339741 +7345340 +6874794 +19881008 +12632760 +7842756 +13601378 +18373687 +2951172 +18468714 +5310457 +3059961 +13302535 +4302518 +9099731 +7536049 +16977777 +5762653 +12103887 +13659705 +13133453 +8650156 +10455009 +11362023 +363823 +15394435 +12985342 +956265 +15402299 +6777801 +8401120 +19147009 +14836070 +9575520 +1280667 +1499556 +11204082 +2331860 +18253102 +13550915 +5122370 +3547547 +17921491 +19075575 +17450945 +10088009 +13889080 +18331745 +20831276 +1238069 +873690 +3984670 +10186313 +19794501 +14739078 +9171820 +11520620 +8770742 +2316786 +17541384 +10900652 +16389266 +3662234 +9727563 +10990436 +18440534 +485719 +1978622 +3735634 +13638733 +19304294 +7828994 +2149015 +6114580 +14849833 +14736456 +5699739 +15296131 +14916679 +13948062 +20774260 +6475682 +9221627 +3734979 +10713875 +11163450 +20510806 +4238948 +4270405 +8418815 +12301805 +4085595 +767523 +8041329 +7044532 +5850471 +8175022 +14190544 +4685902 +4629541 +2711967 +9681033 +10991747 +2386910 +17336257 +4575146 +1826579 +21168129 +18886176 +10159443 +3904061 +3113700 +17461430 +3402713 +10832495 +11322046 +3374533 +671840 +869103 +18211159 +4938214 +5158414 +11424937 +17551870 +12753346 +11223743 +21341799 +4501091 +20802440 +1905222 +4007607 +1488415 +15918065 +15420649 +9701349 +17865786 +15602838 +2163433 +17465363 +13798640 +7249003 +20477383 +16192659 +14019496 +17587914 +20252596 +12275591 +12406662 +15080519 +20326651 +15482252 +6299391 +2938720 +14638808 +1055224 +16254263 +5486093 +5096811 +7070746 +652180 +4900859 +11496371 +21462385 +14790851 +3492497 +5487403 +11012063 +8469278 +10858709 +5471019 +4413929 +19728310 +2230279 +245203 +1896703 +8418815 +12413871 +2715243 +10054586 +1374383 +3622257 +8855283 +17317252 +7598963 +15201760 +12917185 +15443586 +10181070 +18797048 +4387059 +11317459 +8736663 +8437165 +11804389 +5569978 +11070389 +6775180 +11552732 +11175902 +12287387 +1578854 +2967556 +2628081 +10356050 +9099731 +3447277 +19176500 +10476636 +20714622 +7207715 +12080294 +2808304 +7989556 +4976225 +2960347 +16243122 +270762 +878278 +14351762 +18042732 +1918985 +16441040 +17414245 +19700785 +20994460 +17976541 +2158845 +8537435 +19458958 +14958622 +7114655 +971339 +13750799 +7954822 +20523258 +8756979 +6952782 +12263794 +19486483 +20868631 +2879083 +7604862 +16198558 +7066814 +19527771 +18551289 +12619653 +2877772 +8630495 +4238948 +11898105 +2852868 +6761417 +19746005 +9365151 +1000830 +16718911 +5564735 +4040375 +12647834 +9064342 +11137236 +17896587 +8583965 +14980249 +15614635 +13498487 +3779543 +13139351 +1491692 +19380316 +16783791 +11236850 +2613008 +10188279 +13233067 +3407300 +9110872 +1274769 +558464 +10903929 +9121358 +12136000 +769489 +16112706 +6883969 +14795438 +3981393 +18747896 +17902486 +15435722 +16110084 +2838451 +9615497 +20312889 +2751288 +384794 +3009499 +12784803 +14469726 +18835059 +2972143 +14604729 +16345358 +18257689 +15766677 +14710897 +7638285 +6002514 +14701722 +10474670 +18853409 +5231159 +5002439 +9051890 +13728517 +8061646 +6003825 +19051326 +13548294 +13309089 +15777163 +9023710 +20354831 +1856070 +12537734 +13297948 +13508973 +14073890 +14980904 +18073534 +4176034 +10517923 +19687023 +1578854 +14191199 +2451790 +9531611 +18888143 +6813190 +4564005 +1566403 +18016518 +894006 +17264168 +6191257 +8040019 +9438550 +20425610 +16397786 +8149463 +12592784 +14142703 +6283007 +11843055 +14062749 +2495043 +14666333 +17933287 +4455871 +20295849 +13828787 +18989068 +9393331 +12919807 +4288755 +20343035 +2944618 +12791357 +14154499 +1774151 +14537883 +14594899 +14461862 +2367249 +16645511 +14273119 +8874944 +4429657 +7282426 +424771 +8500735 +11728368 +3470215 +19556607 +21343765 +19388180 +16114017 +17908384 +3381086 +13022698 +1602447 +10813489 +8155362 +16563591 +10917691 +3123531 +9420856 +4234361 +16163824 +18392037 +20287330 +18257034 +367755 +3950591 +4866125 +7090406 +5212153 +12515451 +12598026 +4957220 +13893012 +19430778 +9791788 +17147514 +7996110 +12421080 +10339666 +17090498 +11162139 +13603999 +1630628 +20989872 +7469858 +4906102 +9920238 +1763665 +19742728 +17939186 +15920686 +16108774 +20972178 +15881365 +462126 +5784280 +7005210 +215057 +2772915 +11995098 +11059248 +12814294 +20259805 +6294148 +1676503 +15267295 +18890764 +12436809 +3021950 +3123531 +11905314 +1788569 +14060128 +14816410 +3506915 +504724 +1091924 +6416044 +12963060 +19914432 +12637348 +3580315 +18718405 +12120927 +3953213 +7929263 +16467254 +20584862 +21453865 +4797968 +9321242 +19037564 +12213332 +557808 +16640268 +16519027 +16188072 +6961957 +5562769 +7772633 +6338057 +8089171 +3605874 +3203484 +5436286 +20605833 +17192734 +18282593 +2438683 +3751363 +14478246 +20375148 +18044698 +8936547 +5361575 +13519458 +14100105 +3243461 +4595463 +1448438 +17965400 +14412054 +18265553 +9369083 +6163076 +10123399 +11348916 +12170734 +4333975 +8842176 +18089262 +14003112 +12245444 +6833507 +9312722 +19516630 +17591191 +3862773 +540769 +12862791 +7992833 +12834610 +15017604 +6862342 +8705861 +13775703 +20441339 +20750667 +12496446 +16572111 +11870580 +5947464 +990999 +21073103 +15980979 +7762803 +9858634 +17504029 +17352641 +2670679 +7642217 +9065652 +11470157 +21172062 +13030562 +6388519 +13302535 +17367714 +5651243 +18677118 +11396757 +9351388 +12222507 +12678635 +18485753 +15977047 +9038127 +14642740 +15267295 +13455889 +1160081 +4278925 +2772259 +17163243 +5180696 +12097334 +2932167 +18187566 +16762820 +4732432 +8021669 +8848074 +11941359 +12564603 +19224341 +19993730 +20443960 +19823992 +3207416 +17753064 +19366553 +7067469 +14322926 +12054735 +7583890 +9810793 +10669966 +9828488 +9232113 +3385018 +19666051 +14898329 +1571645 +14665678 +9559792 +8110142 +9485081 +13054810 +15155229 +2333170 +18323880 +2830586 +3033092 +19992419 +11784728 +19576267 +3061927 +1854760 +1271492 +1825924 +12964371 +10131263 +9836352 +13730483 +9451002 +4472255 +5992684 +16798209 +2187026 +4885130 +8201892 +10102427 +13132798 +6062151 +11722470 +16176931 +3423684 +6161766 +1577544 +1867867 +16877507 +8460758 +3978116 +5910764 +3943382 +15325622 +10448456 +4163582 +3212004 +1761044 +6186014 +20493767 +15440965 +16840807 +1308847 +14239040 +11004854 +13725240 +17353952 +9298959 +7008487 +7548501 +13586305 +17245818 +10729604 +11551421 +6116546 +4769787 +1858692 +7149389 +20806372 +16186106 +7893874 +21077035 +4096081 +14125664 +15666408 +6953437 +19933437 +116753 +9571588 +12441396 +19421603 +21118322 +8336895 +7206405 +5282277 +943814 +4351670 +3182513 +6608719 +11958398 +20988562 +14153188 +20273567 +2571065 +20137908 +13693128 +194085 +3917168 +4241570 +18314050 +7868315 +3060617 +2093965 +3886366 +4088216 +12191050 +3519366 +18391382 +18015207 +15053649 +4655755 +5819669 +1724999 +19454371 +14179403 +4909379 +20502287 +4447352 +10426173 +1307537 +1108308 +12514796 +384794 +10968154 +10401925 +3558032 +20182473 +16958772 +7382696 +180323 +13303846 +15355113 +19560539 +12221196 +5982853 +7161840 +8825136 +12339160 +601717 +20136598 +12668805 +8945067 +6546460 +18916978 +19203369 +15821727 +15903647 +2091344 +11492439 +7705131 +21305754 +15759468 +4716704 +4743573 +12185807 +17146859 +17781900 +10042134 +3778232 +5017512 +17620682 +7636974 +13657739 +6854478 +14029326 +2798474 +18684982 +17424730 +21162887 +11367266 +416251 +15570726 +20592071 +1488415 +4470289 +3523299 +7102858 +16580631 +21273642 +2301058 +15920686 +10449766 +213091 +11920387 +19284634 +9936622 +19361310 +20298471 +20524569 +7158564 +20886326 +5157759 +18834403 +3454486 +14745631 +12803153 +1093235 +15127049 +10469427 +392003 +20472140 +12111096 +21297235 +19484517 +2784056 +7683505 +1746626 +19476653 +6028728 +12654387 +19936058 +20497044 +15758158 +7716272 +10359982 +20266358 +1700751 +12476130 +9711179 +19444541 +5465777 +18297011 +6709644 +2390842 +18409732 +13790121 +7889942 +177701 +20772294 +20417090 +8645569 +8350003 +5583741 +1971413 +20511462 +15127049 +14865562 +16357809 +15785027 +19911155 +11624166 +1008039 +4890373 +18620757 +1698129 +11316804 +204571 +7521631 +14212171 +2782745 +17340189 +3536406 +11113643 +19198126 +17917559 +3873259 +247169 +6414733 +9244565 +11784073 +14434992 +6658526 +11666109 +8357867 +16263438 +17340189 +1628006 +18629932 +13808471 +11641861 +13667569 +1580820 +17519757 +6121134 +15442931 +12972891 +16108118 +6891178 +18195430 +5504443 +9682343 +20266358 +15283679 +15887263 +20276844 +2379701 +17899864 +17431939 +10656859 +19565782 +16843429 +15941658 +18074189 +91194 +10603120 +11095948 +4367398 +14748253 +14523465 +14585069 +8258253 +15916099 +19515975 +4861537 +15331520 +15561551 +8355901 +9787200 +2706724 +18331745 +19502212 +3755950 +3381741 +3004911 +1408462 +3841802 +3013431 +20088101 +5613232 +8616078 +8035431 +11618923 +10601154 +13849758 +11981336 +783251 +10620814 +6440292 +5635514 +21190412 +5053557 +20466242 +15585143 +3915857 +7120553 +6374757 +16137609 +1464822 +8171090 +5230503 +21309031 +407076 +16334216 +13962480 +8570858 +2487835 +19885596 +12053425 +2530433 +12496446 +15581867 +8070821 +13193091 +11416418 +16737261 +18117443 +6647385 +4105256 +9501465 +6412767 +10846257 +5279000 +8330342 +732789 +18932707 +10103082 +7315194 +4889062 +7528840 +6427841 +21310997 +6879382 +11607127 +10564454 +13520769 +5531312 +15020226 +11820773 +10867884 +10686350 +6333469 +979858 +10523166 +4162272 +1976001 +10888200 +401833 +9813415 +21288060 +730167 +19119484 +2230279 +8763533 +6088366 +19870523 +17150136 +10169274 +21290681 +601717 +21318206 +18030936 +14665678 +14603419 +12242823 +7914190 +15651990 +8508599 +12965682 +10488432 +8674404 +3761848 +2784711 +10653582 +2215861 +10198765 +7402356 +12639969 +8006596 +16001295 +2888913 +19417016 +19582821 +1019180 +7258833 +7613381 +4309072 +17073459 +14045055 +11362679 +19596583 +3049475 +12822159 +9732806 +16431209 +1182363 +8764844 +10320661 +20772294 +12837232 +7017007 +2194235 +19708649 +9856668 +2804372 +20444615 +6709644 +5510996 +7498039 +17005957 +6781733 +13921192 +1228238 +16224772 +20466242 +16736606 +14057506 +13608587 +8146187 +2166054 +11576325 +10354084 +3913236 +1871144 +1657497 +7134971 +8017737 +19011350 +16771340 +6164387 +4853018 +9189515 +2053988 +16818525 +13198989 +844855 +15133603 +6435705 +268796 +1456958 +16305381 +6354441 +17264168 +12328675 +20124801 +14147290 +1435331 +13050223 +15857772 +9474595 +10369813 +2207342 +19835789 +3709420 +11387582 +19846274 +10750575 +11247991 +13233067 +2035638 +3573761 +12983376 +6551048 +15815174 +13120346 +14604729 +6410146 +16200524 +12619653 +12504310 +6953437 +17125888 +3398781 +12903423 +12594750 +11270929 +382828 +2873184 +20271601 +15256810 +6563499 +18871759 +9790477 +4661654 +17374923 +18194120 +10042790 +7949579 +20750667 +21072447 +18975305 +16404340 +12315568 +14088964 +16874231 +633830 +12978133 +18207882 +1171878 +12853616 +992310 +5353711 +3174649 +21275608 +3449243 +2432129 +14903572 +14149912 +1585408 +2287951 +1211199 +19797778 +2221104 +20499010 +11256511 +348749 +15629052 +3396815 +6154557 +17146859 +12976823 +12116994 +18182323 +2772915 +11649070 +1517251 +658733 +10081456 +18011275 +5318977 +5354366 +15513710 +18865205 +3359459 +3597354 +18230820 +8850040 +3131395 +9411026 +6249584 +8829069 +19527116 +14113867 +15729977 +19552019 +12514796 +4183243 +4918554 +15966561 +3532474 +1300328 +5123025 +12369962 +829781 +9831765 +12527903 +3111079 +18978582 +3941416 +18787873 +2325961 +16041272 +11390859 +9295683 +8887395 +12147141 +18188877 +4935593 +12664873 +19704062 +8852006 +19158805 +18615514 +6026762 +16770029 +6205675 +11520620 +12541666 +5499855 +15901026 +9689552 +7112033 +13836651 +8079996 +1591306 +1643735 +20415780 +14509703 +21120288 +11532416 +3639297 +15475699 +5123025 +2563856 +17756341 +4145888 +11014684 +3117633 +9267502 +13900876 +8627874 +11890896 +10526443 +1920951 +17381477 +7844722 +5221984 +8467311 +17665246 +14712863 +16701216 +12708126 +20982008 +11373820 +14471037 +11888275 +6923946 +5505098 +18042077 +2390842 +4131470 +18861928 +14919301 +2959692 +1849517 +964130 +7490830 +13366105 +12186462 +20818824 +20355487 +5831466 +12620309 +1842308 +17774036 +14309819 +2972799 +15339385 +13761940 +10902618 +13767839 +11147721 +2370526 +21056063 +21015431 +803567 +12163525 +16510507 +12371928 +1344892 +19807608 +16147440 +9380224 +3475457 +5302593 +19623453 +11574359 +2355452 +12621619 +10662102 +10751886 +11149688 +4375918 +19949165 +19719135 +9696761 +18499516 +12082260 +6117857 +6119167 +7562919 +15990809 +19232205 +13427053 +19032321 +5592260 +13841239 +11561907 +11177213 +14528708 +2609731 +19032976 +5900278 +13214062 +19612967 +1030321 +2034983 +10569041 +11086773 +17311354 +6794185 +16045859 +16467254 +14632910 +16930591 +2194890 +4196350 +10628023 +6648041 +18772800 +4528616 +9464765 +11522586 +18831127 +11184421 +9646299 +400523 +20218517 +14920612 +2632668 +11075632 +12617032 +5933701 +525696 +5495268 +18802291 +7508524 +12957162 +6191912 +20890258 +20797853 +11445254 +12641280 +9936622 +7549156 +16089768 +1548053 +19975380 +5422523 +20748701 +3677307 +18321914 +8801544 +20432164 +2891534 +7138248 +10370468 +7358447 +15077242 +14817720 +8175022 +6150625 +6726683 +10067693 +8360488 +14613249 +10860020 +18531628 +104957 +6461919 +14150567 +2400017 +18838991 +12779560 +15885952 +19055914 +16570800 +9066308 +4432934 +4468323 +20486558 +11207359 +15612668 +19501557 +19465512 +21327381 +18648937 +4196350 +16732018 +12106509 +8857904 +7054362 +10405857 +20023876 +9774749 +20265048 +18053873 +20701515 +20301748 +1376349 +14373388 +424771 +17590536 +6902319 +5488714 +4375263 +8292987 +9058443 +1616210 +17308077 +2670024 +8317235 +4200938 +15562206 +11567150 +12963716 +5509685 +3178581 +5175453 +4432279 +9408404 +5944187 +19474687 +17945739 +6877415 +7934506 +5692530 +6264001 +897939 +19131280 +16691386 +2615629 +14268531 +973960 +3494463 +14396981 +3170716 +10228256 +9139708 +13377901 +18076155 +8859215 +11594020 +12359476 +19421603 +936605 +9645643 +14189888 +11755237 +8690788 +11528484 +16365674 +11158207 +11860094 +4801245 +7441678 +15733254 +6713576 +18202639 +9633847 +9348111 +8228762 +10414377 +17934598 +18104336 +1488415 +18569639 +18973994 +13504385 +9372359 +794392 +4379195 +3900784 +3438102 +20367939 +11524552 +828471 +18338298 +12515451 +20544230 +8532192 +3390261 +17643620 +19658842 +2462931 +7882733 +14649949 +3272952 +2105106 +18966785 +1908499 +139691 +10631300 +5784280 +17897898 +3423684 +12652421 +4069211 +18929430 +7343374 +17306766 +303530 +14614560 +732133 +15823038 +8012494 +13457199 +14836726 +12619653 +9386777 +7411531 +11268962 +20529156 +4480120 +20233590 +8068854 +7423328 +12974857 +18973994 +15049061 +6954092 +13075126 +14086997 +4588254 +15594318 +6098196 +18657457 +4429002 +17568909 +19544155 +20411192 +1782015 +17539418 +977237 +2098552 +2986561 +14611938 +16800175 +13579096 +2460965 +12291975 +21064583 +9081381 +11913178 +19419637 +16410893 +11313527 +10917691 +7863072 +1137799 +15241081 +12785459 +18226887 +9091867 +21421097 +20928924 +14281638 +1458924 +19723067 +5227227 +20967590 +3039645 +12682567 +17184214 +17836295 +5864234 +6683430 +15049061 +15391158 +11266996 +17278586 +11606471 +961508 +12440085 +16838186 +8431267 +9759675 +9409059 +21150435 +7197885 +7751006 +8781883 +6958680 +12803809 +13804539 +14320305 +7368933 +18256378 +18882244 +3615049 +12691742 +14925199 +897283 +4303829 +2186370 +18114821 +1026389 +7418085 +13421810 +1231515 +1747281 +3078967 +16403684 +7675640 +1891460 +4993920 +14560165 +11607782 +7513112 +5372716 +10890166 +11468846 +11726402 +5882584 +3674031 +13305812 +4450629 +1838376 +15115253 +1230205 +20782124 +827815 +16673036 +3035713 +11238816 +17387375 +12143209 +4703596 +15035299 +17557113 +13406082 +15100179 +11621545 +12624241 +19577578 +13112482 +17540729 +18192153 +13640044 +14107969 +18578814 +13451957 +1403219 +9432652 +3626190 +3350284 +20974144 +15848597 +12336539 +17872995 +18724959 +10079490 +12039662 +820606 +13867453 +6850546 +9907131 +2113626 +18125962 +12649800 +1084715 +3234941 +3769057 +6203053 +8466001 +4593496 +9253084 +31557 +8089171 +5064043 +10035581 +11951844 +17313320 +8570203 +8864458 +886142 +10906550 +10081456 +16062243 +3869327 +6619205 +10000191 +9038127 +13226514 +6856444 +9301581 +13990005 +2594658 +9176408 +12930292 +12486616 +5845884 +8442408 +15291544 +9156092 +13341857 +10091286 +16824423 +6134896 +19061812 +20287985 +2524535 +5744303 +4516164 +10957668 +17323150 +1801676 +21191067 +18746585 +11485230 +16603568 +7112033 +10812179 +20420367 +15147365 +14660435 +20106451 +8494181 +11320736 +12795289 +11253234 +5634203 +4352325 +5225916 +1147630 +16655341 +17304800 +14251492 +2766361 +9978565 +4753404 +6078535 +15659199 +2526501 +8803510 +16007193 +18160696 +10609018 +8467311 +12430255 +12995173 +12432221 +13355619 +15724079 +16889304 +14157776 +18498205 +10990436 +2911195 +79398 +6180116 +20387599 +8279224 +9171165 +19628041 +2869252 +8334274 +11189664 +517832 +11494405 +5642723 +17868407 +16418758 +18422839 +20821446 +16482983 +11815530 +9562413 +4554830 +10998300 +9469352 +16677624 +1648322 +15780440 +3115667 +1735485 +6757485 +7910913 +17313320 +12915875 +14436303 +5202978 +4926418 +11660866 +3803136 +18261621 +15096903 +4945423 +16859157 +745240 +1559849 +10990436 +6332158 +18605028 +4791414 +20154948 +20113660 +10845602 +13423121 +16098943 +11605816 +6834817 +2190302 +4200282 +14847212 +898594 +10193522 +4955254 +16680900 +5627650 +5117782 +2281397 +7144146 +45974 +19959651 +19211234 +12783492 +14876047 +7268664 +10243984 +14248871 +6634933 +4813696 +539458 +3853598 +20497044 +14735801 +10901963 +20021910 +14474969 +18306841 +5464466 +6290216 +16663861 +792426 +2309577 +18979237 +9567000 +517176 +4123606 +8433888 +19980623 +13688540 +17973264 +20068440 +1726310 +5295384 +14563442 +18636485 +11182455 +7956133 +10171895 +10177138 +5207566 +700021 +14245594 +8635738 +19105066 +517832 +4385748 +6227301 +11271584 +15714249 +15287611 +9939243 +3329313 +14738422 +9457556 +2578274 +17129164 +10476636 +2810270 +19624108 +7941060 +5681389 +5596848 +7013730 +3874570 +6885935 +15549099 +16188072 +6599544 +2797818 +10228911 +14987458 +13748833 +7153976 +3670754 +21039679 +18711852 +19079507 +6943607 +8032810 +4596118 +932672 +652835 +12347025 +2822067 +5843918 +16716290 +19274803 +18388761 +18077466 +7941715 +13368071 +21104560 +3476768 +10749264 +8355901 +19581510 +12301805 +405110 +11672007 +9268158 +15686068 +8532192 +18220989 +4582355 +5202978 +9631225 +9886815 +10850845 +15293510 +17532864 +12462368 +17269411 +18236718 +5898968 +14712863 +16910275 +17127854 +7775255 +15993431 +6136862 +7366967 +8324444 +7139558 +12415182 +3284749 +7220823 +716405 +16975811 +15150642 +15148020 +1255108 +14581137 +1391422 +17293004 +10089320 +12441396 +3386984 +11872546 +19830546 +17253027 +15231906 +6253516 +7210337 +5677457 +10569697 +14296056 +8171090 +13134764 +1010660 +1891460 +4757991 +14100760 +11379718 +17595123 +8347381 +7967929 +18092539 +4370675 +4338563 +5123025 +15082485 +1776117 +13988694 +5179386 +17358539 +19865935 +2949206 +5622407 +16286375 +14971729 +21033126 +3949936 +18795082 +247169 +2118213 +10090631 +12811673 +12468921 +16739882 +10711254 +12589507 +10939318 +19734864 +9570933 +4766511 +9796375 +14333412 +21105871 +13238310 +4175379 +18661389 +12548875 +17785177 +13016144 +4432279 +15376085 +8963417 +13695749 +9829799 +14832794 +97092 +5387789 +16541309 +10122088 +21185824 +19275459 +7697267 +4340529 +1458269 +11874512 +11421005 +16103531 +16365018 +17938530 +9863877 +772765 +11167382 +5275068 +12371928 +9470663 +13789465 +1229549 +844855 +1342271 +13511594 +19052637 +2979352 +2312199 +2780779 +10323938 +1480551 +4343150 +2953793 +15882020 +20808994 +19247934 +12909321 +11291245 +13656428 +3197586 +1996317 +5847850 +17573496 +1550674 +15089694 +19998973 +10655548 +15394435 +17312664 +6260725 +1148940 +3854909 +18638452 +4220598 +16094356 +17477814 +20031085 +14899640 +8481074 +17750443 +20690374 +13907430 +13747523 +833714 +14606696 +18149555 +16750368 +2057920 +1247899 +2766361 +10375056 +19417016 +3000979 +12556084 +7541292 +12440085 +6819089 +6850546 +15341351 +14685338 +15972459 +18335677 +12230371 +824539 +508001 +14453342 +1439263 +19018559 +18201328 +20401362 +9723631 +14802647 +15448174 +21221213 +18722337 +7498039 +9371049 +8713070 +20161501 +2429508 +10261679 +12790046 +10377677 +20792610 +20562580 +10571663 +8027567 +16984986 +6383932 +3790029 +17823187 +831747 +5956639 +7490174 +2693617 +5668282 +13320230 +4377229 +1950442 +4963118 +16395165 +15807965 +6901008 +19731587 +21011499 +184910 +10643752 +4039720 +10551347 +8927372 +15298752 +8539401 +16361741 +10119466 +5385823 +16053068 +12387001 +3296545 +14191199 +13596135 +2444581 +7256867 +12674703 +16956150 +13590237 +7493451 +5447427 +10926866 +20401362 +3483322 +20424299 +15245013 +7550467 +6199121 +11614991 +3097972 +2217827 +18709230 +5895035 +11101846 +4543034 +551910 +19300362 +17289072 +12738273 +20556026 +9267502 +11914489 +6644108 +18964164 +11128716 +9409059 +437878 +6310532 +16616675 +18269486 +6811880 +12520039 +386105 +17863164 +1854760 +12406007 +17375579 +1888183 +12119616 +11896 +3927654 +8612145 +5104020 +8474520 +57116 +4360845 +5254096 +11653002 +17764861 +12829367 +9358597 +19567092 +15086417 +13079714 +16068797 +3264433 +16816559 +20284053 +1103721 +4100668 +4088872 +917599 +2551404 +20101864 +285835 +14990735 +18985135 +2922992 +18415630 +800290 +13645287 +9036161 +18257689 +2808304 +6585782 +1152872 +10856088 +432635 +11159518 +9225559 +7698578 +9510640 +11490473 +18189532 +16576699 +764246 +16486259 +12614410 +17691461 +6380000 +482442 +17871684 +14627667 +1983210 +2303679 +9648920 +7857829 +21020674 +21025917 +3853598 +6878071 +2926924 +1709926 +5469709 +14534606 +3894886 +355958 +21033781 +13739003 +13917915 +5299316 +6571364 +18990378 +8931304 +19706683 +20077615 +8144876 +18593232 +11236195 +20888947 +11599262 +1004762 +11394136 +14535917 +2542229 +13586960 +13601378 +6878071 +15745706 +20439372 +16937145 +15162438 +9716422 +18675807 +14885878 +7813921 +7044532 +17329704 +18359269 +20602556 +6300046 +14455308 +19700785 +20346967 +7039944 +21414544 +8405053 +28935 +6341989 +806189 +9698727 +5319632 +7793605 +3241495 +20484592 +18047320 +8710449 +4360189 +7070090 +19386214 +6528110 +6457332 +10981261 +7954822 +11605161 +13490623 +11884343 +16452836 +8619 +14345863 +1943888 +9384156 +8277913 +12620309 +6534664 +6140139 +3078311 +1584097 +11712639 +11357436 +6916737 +8475831 +5817048 +10915725 +5461189 +20896156 +9702004 +2030395 +10258402 +5345846 +2322029 +15175545 +17140961 +2484558 +2723108 +10380298 +19365242 +15227319 +407732 +13648564 +9055167 +17848746 +16608811 +10997645 +18608960 +16973845 +9907786 +8792369 +6796807 +20160190 +16107463 +14098139 +6288250 +14765292 +21051476 +142967 +15198483 +6075259 +20723142 +18624034 +6457332 +2624804 +3537061 +8555129 +10029027 +19179121 +8504667 +255689 +19015282 +6777146 +15672961 +6495342 +18272762 +16519682 +15782406 +20206721 +15424581 +12589507 +15545167 +12078328 +7819819 +6264657 +3369945 +3850977 +1546087 +12297873 +18475268 +3248049 +16059622 +5509030 +4626264 +5213464 +18723648 +1738106 +20932856 +17186836 +1996317 +11500304 +18495584 +12442051 +18717094 +11970194 +13035805 +5442184 +1683056 +7762147 +12617687 +2916438 +20478039 +4002364 +15209624 +3125497 +7179535 +5117127 +15009085 +11785384 +11926286 +13157046 +10153545 +10882957 +19983244 +10226290 +15166370 +20649742 +4721946 +6214194 +6343300 +19140455 +21253981 +7553744 +18168561 +9991672 +5830155 +9672513 +18318637 +2818790 +9139708 +19181087 +15572036 +3548857 +13243553 +15209624 +6704401 +15368220 +17317252 +6237787 +1935369 +18738721 +14387806 +5940910 +14188578 +17054454 +7365656 +19980623 +15501913 +9028297 +8685545 +17568254 +3540338 +17315286 +49251 +1222340 +9771472 +13001071 +11335154 +19685057 +20431508 +15785027 +16007193 +1205301 +6930499 +16195936 +16815248 +3769713 +15347249 +21171406 +19133901 +7869626 +17736025 +19640492 +8032154 +20181817 +11775553 +19126692 +12962405 +300253 +7043221 +14436303 +11095948 +13828131 +19388180 +17966055 +10884923 +16586529 +12331951 +12709437 +2458343 +16848672 +14326858 +431324 +9057133 +20360074 +7228031 +6092298 +12010171 +11128061 +8071476 +17729471 +4938214 +16981054 +3926998 +2040226 +14110590 +18975960 +11622200 +17816634 +18512623 +11337120 +7977760 +9154126 +14579826 +13957237 +2364627 +9227526 +8825136 +550599 +18702677 +14448754 +11523241 +16938456 +994931 +2103795 +7945647 +1574267 +10829873 +16989573 +1789879 +12291319 +799635 +5594227 +21396194 +6313808 +4700320 +10527098 +11592053 +6354441 +7001278 +17198632 +17163243 +14592278 +10320661 +1030976 +959542 +13429674 +14361592 +4066589 +3291302 +16119259 +17041347 +16169067 +7096960 +12242823 +8941135 +5079116 +786528 +7347962 +7401701 +20832587 +11263064 +1728276 +15494049 +10145025 +19209923 +283869 +16600947 +17886102 +1595238 +5810494 +18702021 +3227077 +13470962 +1766942 +1389456 +12008205 +17153413 +5708914 +15937726 +18802946 +15112631 +6170941 +12280834 +8437820 +1370451 +14510358 +8286433 +18464127 +8578067 +1530358 +3386329 +3660924 +1783981 +14843935 +15732599 +17169141 +3438102 +10556589 +10002157 +10994368 +7381385 +17350020 +9127256 +8161260 +1924883 +16233947 +6753553 +13695749 +3377809 +3717940 +16638957 +8689477 +12103232 +8208445 +4656411 +17391963 +7204439 +12002307 +18141036 +11771621 +20776881 +21121599 +530939 +8553819 +21278229 +20606489 +14082410 +15808620 +12023934 +14572617 +15001876 +12295907 +9934656 +17489611 +11144445 +3191688 +9898611 +2719176 +4335286 +13270423 +7893219 +18367134 +10578216 +18232130 +16436452 +4033166 +11182455 +18834403 +16655997 +12441396 +20705447 +818640 +16772650 +4470289 +17357884 +6786321 +10967498 +7444299 +7675640 +20035017 +8419470 +19970137 +14052919 +15380017 +12386346 +2207997 +20711346 +5813116 +11748684 +570260 +10309520 +10529064 +15206347 +15604804 +19382282 +9395297 +18741343 +5646000 +1224306 +2662159 +977237 +63014 +4219943 +4779618 +8839554 +6024141 +3268365 +5200357 +20120214 +4723257 +21159610 +4227807 +10434038 +162628 +6385242 +6451433 +18535561 +8420126 +18350750 +15402299 +14716140 +14908815 +14676819 +19358689 +10496297 +2314165 +6294148 +11920387 +21059340 +12297873 +3874570 +15815829 +17993580 +37455 +5914041 +3232320 +20658917 +3054718 +10339666 +3255258 +12773662 +18319293 +20795231 +10543482 +4336597 +1712547 +8003974 +7284392 +11381029 +6604132 +12099955 +13216028 +15975081 +16631749 +2742768 +3316861 +1087337 +4840566 +5018823 +15957386 +15362322 +10487122 +578780 +11953155 +18824573 +14048331 +4632818 +586644 +1422879 +3033092 +52528 +14505115 +18063704 +9148227 +360546 +20071717 +9279954 +15480942 +8744527 +10795795 +17540729 +8173056 +16036684 +5341259 +2632668 +6834817 +19536946 +4477498 +16448249 +4567282 +12354234 +15009085 +5031930 +16914207 +11034345 +1774151 +19686367 +20289951 +6735858 +4606604 +19104410 +679705 +15089038 +2169986 +1371762 +535526 +2620217 +17256959 +12875242 +19578889 +15216833 +2520602 +21354251 +1052603 +7326990 +1220374 +16154649 +16813282 +19495003 +14583103 +823228 +2337758 +9660717 +5935012 +4858916 +14050297 +7291601 +10072936 +15992775 +16418758 +3148434 +4938870 +2763084 +20914506 +7534739 +7988901 +14648638 +13792087 +11957087 +11373820 +14142047 +842233 +7861106 +3560654 +7831615 +14105347 +12128135 +13650530 +2042847 +685603 +16777238 +17993580 +6497964 +18457573 +5815737 +10426173 +19567092 +14568685 +21127497 +11311561 +3825418 +19552675 +12308359 +16057656 +239305 +11481298 +10676520 +1894081 +3143847 +3793961 +18791150 +15052338 +2032361 +19253832 +5367473 +6163076 +5604057 +9755088 +19687678 +15836145 +3103215 +7196574 +20846349 +13162944 +532249 +6795496 +15733909 +10577561 +863860 +18390071 +15197827 +15519608 +1415671 +1847551 +15745706 +12845096 +6359028 +14748253 +10154856 +10860020 +20151015 +9301581 +19584787 +1327853 +19859382 +14672887 +253723 +16665172 +1025078 +12837887 +3816243 +5811150 +9129877 +7912224 +14994667 +12637348 +15079863 +5104675 +17422764 +13314332 +19239414 +12685189 +11883032 +3869327 +6187325 +19343616 +1030321 +16487570 +5881273 +17381477 +8385392 +11529139 +12260518 +2636601 +16838186 +11016650 +14967797 +107578 +1816749 +12549530 +2593347 +3225111 +8791058 +6439637 +21321483 +4600705 +20764430 +106267 +18542769 +6176184 +16402374 +7443644 +6270555 +14824274 +7393181 +14577204 +16239190 +18694812 +4719325 +8577411 +16447593 +14773812 +3088142 +16113361 +12633416 +18534250 +19091959 +2390842 +10536273 +18763625 +14653881 +6864964 +19477964 +1726965 +20502287 +991655 +9339592 +7752317 +12051459 +16301449 +1467444 +788494 +2758497 +6602166 +12313601 +7950890 +14715485 +14050953 +8863147 +8966693 +4988021 +17011856 +2685097 +11040898 +8760256 +7965308 +12153039 +3815588 +19451750 +1502178 +19677848 +15197827 +17190768 +5280311 +18570950 +5663694 +9407749 +19041496 +18675152 +15108044 +1003451 +8673749 +19496969 +20654985 +15566138 +6306600 +13235689 +5408105 +20662849 +4267784 +4972948 +18684982 +7524253 +8618699 +5052246 +19021180 +13724585 +6007101 +2373147 +10663413 +17062973 +16282443 +2489145 +7115310 +4630196 +6079846 +10383575 +10343598 +16427277 +7621901 +20329928 +11656934 +16545241 +3190377 +95782 +9577486 +14041122 +5431043 +17787798 +7789017 +7353205 +1297051 +4679348 +9938588 +2581551 +18006687 +10993057 +17330359 +1609001 +302874 +18467403 +3347008 +17110814 +15071344 +16373538 +20945963 +10426829 +168526 +6099507 +9060410 +2621527 +3017363 +18190187 +12587541 +18479855 +18437912 +249135 +16718256 +6388519 +6202398 +3178581 +2934788 +16629127 +13825510 +8763533 +7227376 +7927297 +18715128 +19358689 +14781676 +15765367 +16486259 +10382920 +8547265 +9345490 +12510864 +1295740 +5943532 +20388255 +14016219 +17572186 +14569996 +20991838 +1920295 +6072637 +20337792 +4862193 +1196126 +13188503 +3328002 +6853167 +14204962 +975926 +8886085 +21211383 +210469 +18677118 +11563873 +4421138 +9113493 +18935328 +7436435 +8951620 +8382115 +14635531 +7982347 +11031723 +5125646 +16001295 +5986130 +15625120 +2287951 +14377976 +16140886 +1728931 +4377884 +10681107 +3120909 +11999030 +19711271 +11341052 +14541815 +14244938 +16903066 +11206048 +9458867 +10599843 +18798359 +15069378 +471301 +435257 +12401419 +9916961 +82674 +15125083 +8334929 +3989257 +2832552 +2524535 +14269842 +1797088 +9249808 +15497981 +19641803 +9713145 +1027044 +9912374 +13792087 +5699739 +2297126 +7075989 +5999237 +10755818 +7583235 +11938737 +5116471 +2353486 +18666632 +12544287 +13181949 +734099 +13885147 +10382265 +12183841 +3905372 +6230578 +20596658 +19829891 +16302759 +13738348 +13168187 +228819 +18771489 +12637348 +13197023 +5978266 +17444391 +18894041 +9287818 +15446863 +19174534 +3527231 +17003336 +13541740 +6676876 +2087411 +10824630 +15969838 +18736755 +16298172 +7148078 +5470364 +612203 +3827384 +11765068 +16897823 +2437372 +5166278 +6979651 +17496820 +4206180 +16378125 +13923158 +12541666 +9572243 +299598 +18689569 +1189572 +9161335 +10020507 +12590162 +19456337 +4657721 +1196781 +21046233 +2540918 +16495434 +15674927 +6355751 +4043652 +8707827 +12341126 +12766453 +10390784 +18840302 +6206330 +9601079 +16858502 +18456918 +6373446 +15613979 +11534382 +6900353 +5892414 +3262466 +18205916 +14155810 +8059679 +15768643 +16312590 +72844 +20046158 +17119989 +17813357 +13010246 +19888873 +15246979 +11715261 +15323001 +21004946 +27624 +13174085 +17927389 +4033166 +107578 +13813058 +17275964 +11967573 +14948136 +5738405 +11893518 +6585782 +18717750 +4757336 +21308376 +18356648 +7176258 +9046647 +19461580 +16043238 +5007027 +12052114 +6060185 +6697192 +4740952 +5867510 +20603212 +7012419 +12423701 +7977104 +418217 +10196143 +20847660 +4653134 +17564977 +18809500 +21080967 +15701142 +1397976 +10044100 +1952408 +2038915 +18508036 +11261098 +5286209 +14073235 +2074304 +1934713 +14742354 +1721067 +2363317 +13098719 +3752018 +6155212 +724924 +11586155 +6307910 +3799859 +15215522 +4600050 +20696928 +15281058 +12659630 +16306036 +17966711 +7552433 +11672662 +6931810 +15524851 +8636394 +20306335 +8829069 +15226008 +6144071 +21046888 +13107239 +2566477 +6059530 +11886309 +10151579 +21080967 +16240500 +15568760 +18272107 +3181202 +8986354 +1290497 +9888781 +15765367 +13670190 +17508616 +20457722 +542080 +7249658 +7697267 +5953362 +10996989 +11349571 +15711627 +13283530 +4478809 +20767706 +16397786 +14703033 +19521873 +315982 +13663637 +13554848 +11633341 +4335286 +6731271 +8618699 +5874719 +11549455 +15817795 +16386645 +11247336 +2054644 +4175379 +17715709 +11623511 +19418982 +16604224 +6691949 +15108699 +14549679 +6277109 +8166503 +4118363 +8876910 +13603344 +5573910 +4284823 +8437820 +18638452 +10559211 +7105480 +13123623 +1921606 +1285255 +7389249 +3662234 +7690713 +3884400 +19272837 +14369456 +14209549 +987722 +9730840 +2436717 +6470439 +6215505 +21379810 +8343449 +13031217 +10032959 +15475043 +17513859 +8342138 +7013730 +7548501 +17798939 +674462 +3185790 +5113195 +6506483 +13717376 +20225726 +19234171 +12066532 +2791920 +16651409 +2989183 +12896869 +15041853 +484408 +10088665 +11829948 +11777520 +17295625 +18665977 +19825303 +5936978 +8948343 +14149912 +14045055 +18728235 +34833 +12447950 +10569697 +14505771 +6022830 +16070108 +16183484 +5138098 +12752035 +13909396 +20976110 +10468772 +1093890 +17303489 +10949148 +1704028 +1359965 +6888557 +12036386 +8258908 +939881 +19074919 +15889884 +20963003 +11879755 +10437970 +13583028 +1006728 +14510358 +8036087 +9055822 +14091585 +19400632 +12134689 +2236177 +4577768 +6709644 +9032885 +6930499 +2190302 +6678842 +11448530 +7519010 +18397280 +15916099 +11700843 +5456602 +16971879 +13211441 +1372417 +16647477 +10437315 +5759377 +7125140 +20388910 +1190883 +4458493 +17159311 +116098 +12258552 +9485081 +5708259 +12214643 +12402075 +12183841 +15945590 +15127049 +1987142 +8575445 +14773812 +17768793 +21385053 +9046647 +16757577 +323846 +4729811 +18056495 +18850787 +16103531 +13892356 +11360057 +6977685 +13439505 +2393463 +13438194 +5596193 +1047360 +9194102 +1999594 +1820681 +9920893 +17991614 +21392917 +15874156 +2763740 +16873575 +17061663 +20593381 +47285 +9362529 +9108906 +3246083 +15360356 +17785177 +9711179 +1214476 +4722602 +1789224 +1816094 +18270796 +2337102 +12121582 +6631657 +18067636 +3214625 +8563649 +20459033 +8937858 +1364553 +5741682 +20195580 +8614111 +1690265 +18652214 +11315493 +10332457 +6252205 +20653019 +17009890 +18093195 +7795571 +8525638 +3785441 +14866872 +12669460 +812087 +7250969 +17401138 +18665321 +21094074 +2432785 +16990884 +12858203 +21248083 +18576848 +2833208 +867792 +11107089 +21290026 +17635755 +3772334 +5957294 +19037564 +12610478 +12631450 +15357079 +2746045 +9871086 +8634428 +6822365 +3729736 +17237298 +17363782 +3445311 +7542603 +10194177 +4543034 +12771041 +8969315 +5826223 +11244714 +10409134 +10180415 +6606753 +13824199 +19320678 +11046141 +10668656 +13911362 +14327513 +8387358 +16743159 +15532060 +14902262 +10191556 +5655830 +8146842 +9893368 +17165209 +19842342 +20694962 +12820192 +20594692 +646281 +361857 +20237523 +11828637 +20250630 +10657514 +1410 +9419545 +9674479 +8597072 +4070522 +13320230 +6228612 +17697359 +17270722 +21039024 +369721 +21002324 +1726310 +15142122 +18827194 +4311038 +6093609 +14046365 +17850057 +10682418 +4719980 +9614186 +8690788 +13624315 +1595894 +12329330 +10665379 +6916737 +21261845 +6079846 +17672455 +11095293 +6149314 +11877789 +3010809 +8001353 +15609392 +19574957 +19531703 +18819985 +15962629 +8379494 +11934150 +14889810 +424771 +8508599 +21020019 +5556216 +7407599 +16766097 +10170584 +13824855 +2967556 +19023146 +15323001 +4917243 +11930218 +18281282 +20519981 +15348560 +12502344 +20666781 +2612352 +10768925 +371687 +6870207 +19624764 +20829310 +16279822 +13179983 +13281564 +14891776 +6195844 +6038559 +16237224 +2415745 +16739882 +17852023 +5019478 +15119840 +15180133 +13238966 +3322104 +3781509 +8437165 +17880859 +20262426 +15425236 +8114729 +623999 +20212619 +18071568 +610237 +19525150 +2737526 +17945739 +6182082 +15121806 +2710001 +8121283 +20955794 +19305605 +3232975 +6965233 +11651691 +12764487 +933328 +4514854 +14710897 +6100817 +1510697 +10736813 +15680170 +7077955 +13309744 +2324651 +4125572 +19615589 +10070315 +4930350 +8798267 +16152683 +16520993 +117408 +14386496 +7525564 +8803510 +1300328 +15554342 +1658153 +19611001 +9433963 +2232245 +18160696 +11180489 +20924992 +2997047 +14552956 +13401494 +13264524 +1998283 +20067785 +4271061 +16444316 +6584471 +10618848 +8494181 +2371836 +16651409 +14165640 +20299126 +994276 +1087992 +1538878 +11527828 +3559999 +18875691 +8998806 +17607575 +18761003 +10394716 +4651823 +4126227 +13994592 +19274803 +9413647 +534871 +110855 +5255407 +6125066 +10424863 +13361517 +8407674 +18654180 +13117724 +16687454 +18454296 +1972724 +16960082 +10932109 +8878876 +10931454 +6641487 +13059398 +4974914 +9552583 +2615629 +20141840 +1269526 +3315550 +10512025 +2763084 +5494612 +6576607 +14204962 +3645850 +3072413 +12197603 +5168900 +20068440 +11910557 +12398798 +8513842 +3595388 +21465662 +1698129 +12431566 +20740837 +7359103 +10924900 +19147664 +6159800 +8768776 +17300868 +16729397 +10973397 +8910333 +15787649 +3946659 +12748103 +13855656 +10781377 +17867096 +17945739 +5575877 +20103174 +17200598 +17274654 +14132872 +679049 +572881 +9373015 +6378689 +2594658 +19479275 +18320603 +7896496 +9972666 +14107969 +19759112 +5202323 +11558630 +12272314 +1774151 +2002870 +17172418 +18333711 +10890166 +12750725 +4562695 +3508881 +1308192 +2218483 +6737824 +11638584 +3454486 +5297350 +2205376 +18716439 +486374 +6260725 +11438700 +11226364 +7330923 +4960496 +19080162 +7486897 +20089412 +20993804 +17814012 +14609317 +8253665 +12345059 +8159294 +10327215 +4114431 +17882825 +13906774 +6741757 +10843636 +6290216 +11869925 +6068050 +19841687 +19986521 +7465271 +12783492 +9165267 +10725016 +4476188 +19660153 +20352210 +19831857 +14617837 +3222490 +13653806 +13889735 +5572600 +17903141 +7018973 +7347962 +19019869 +16435797 +5566046 +19083439 +13732449 +1132556 +12137310 +483098 +8852006 +4755370 +12223162 +12202191 +18002100 +11692323 +9089245 +14086997 +5754789 +5347157 +2409847 +17857921 +1337028 +16241156 +7714306 +9993638 +21294613 +13121001 +9934000 +7858485 +412974 +5498544 +12793978 +120030 +5375337 +6653283 +12916530 +5646655 +7061571 +10762372 +17417522 +1924228 +1341615 +19740107 +19773530 +148210 +11974782 +15751604 +9781958 +18015862 +13857623 +890074 +18299632 +12630139 +18880934 +21446656 +14881290 +18462816 +19059846 +19094580 +2594002 +15918065 +7716928 +6243030 +20769017 +11668075 +9601079 +21316240 +13407392 +6621171 +18601752 +17641654 +4147854 +10570352 +10171240 +677083 +20119558 +15619222 +13003692 +8920163 +12321466 +1517251 +20539642 +17012511 +9402506 +13857623 +6026762 +614824 +878933 +1728931 +14963865 +5358298 +1411083 +14102726 +18850132 +8462069 +6916082 +12071119 +19453716 +16621918 +14972385 +3579004 +1634560 +16973190 +13562712 +15460626 +9174442 +9962836 +3243461 +8142254 +6077880 +20122180 +21199587 +20904021 +12551496 +12930292 +17540073 +8816617 +6317085 +287801 +3251325 +2852213 +14047021 +5114505 +19519251 +11331221 +12426323 +17255648 +4249434 +15028090 +20679233 +19229584 +7423328 +10974052 +4063313 +20736905 +15091660 +6301357 +13119691 +8658020 +5429732 +3078311 +6385898 +9161335 +12053425 +4313004 +17581361 +18323225 +1992385 +17665902 +7593065 +19358689 +9212452 +1139110 +19332475 +14656503 +8983077 +6454710 +18733478 +11554043 +16926004 +13435573 +18483132 +18890109 +5404828 +11720503 +18091884 +14741044 +13731139 +16423345 +13288117 +6813190 +1896047 +15718836 +16365674 +17040691 +17561700 +9399884 +18352716 +4486673 +11291245 +7547846 +6420632 +9073517 +20066474 +19515975 +10358672 +14842624 +11121507 +9734116 +12359476 +8537435 +20248008 +859928 +16058967 +11392170 +5439562 +139691 +1698785 +1569024 +7095649 +15400988 +20422989 +20518671 +14164330 +8343449 +4230429 +15643470 +20071717 +8591829 +17053143 +13179983 +11426904 +21438792 +8089826 +1881629 +8263495 +17157345 +7598308 +14045710 +6184703 +21363426 +19566437 +20689064 +3607840 +14489387 +14585069 +20040915 +7407599 +3437447 +7486242 +583367 +6892489 +16430554 +302874 +7480344 +2687063 +19060501 +11340396 +15104111 +16023577 +17937875 +13855656 +6303323 +14693858 +6348542 +5140720 +4058070 +3293268 +18331745 +8037397 +5203634 +20727074 +9994949 +10915725 +12844441 +13442126 +6283662 +13229135 +9756399 +14543126 +17277275 +10880336 +4973604 +17446357 +11905969 +2595313 +17342811 +17173073 +11491784 +1882285 +20860112 +15949522 +11207359 +6919358 +16221495 +15266640 +6595612 +20311578 +17180938 +5790834 +5030620 +6647385 +8768776 +20236212 +20114971 +8640981 +9567656 +2905952 +14771845 +9144295 +15922652 +11962986 +5782969 +17506650 +3232320 +14227244 +16363708 +10526443 +19891494 +3310308 +3613738 +13189158 +12174666 +1526426 +5791489 +13865487 +16912897 +10677175 +13481448 +20639256 +16655997 +9007981 +2864665 +17861854 +8283812 +16501988 +243237 +753105 +9248497 +3670754 +14730558 +18943848 +15539924 +9611565 +8910333 +20240799 +627276 +8270049 +2065785 +5312423 +12426323 +17517791 +3337833 +5421868 +6565466 +11472779 +19751248 +7352549 +9872397 +1810195 +8242524 +3362081 +16140886 +20291262 +16642234 +11151654 +14805924 +3196931 +17682941 +5459878 +5579809 +18553255 +3083554 +14280983 +13121001 +20790644 +13598757 +20681199 +19205991 +3229699 +6365582 +9103663 +19761733 +12195637 +8509910 +11888275 +16849982 +12700917 +7395803 +975926 +2634634 +14382563 +4997196 +17389997 +3120909 +18127928 +8892638 +18399246 +2482592 +20297160 +821262 +6745033 +9031574 +36144 +20371871 +7743797 +19221064 +19207301 +18197396 +7676296 +11891552 +16852604 +2867286 +20563235 +8327720 +7522942 +6908873 +10194832 +8201237 +7690713 +9603700 +6316430 +8772052 +13041703 +7798847 +12984687 +3333245 +16574732 +7239828 +5048314 +15925929 +3762504 +18303564 +18789184 +3901440 +595819 +437878 +9905820 +7482965 +3398781 +10987814 +274039 +12811017 +16555727 +8792369 +14866872 +15018915 +5561459 +19196160 +8149463 +5516239 +13014178 +3499706 +11467536 +4950011 +8739285 +10633922 +13554192 +16342736 +831092 +18505414 +20428887 +19886907 +279282 +21333935 +75466 +12739584 +901871 +6639521 +7855208 +541424 +18206571 +13136074 +4770443 +8442408 +5320943 +20559958 +8125215 +18343541 +11725746 +13018766 +807499 +7522287 +16388611 +9829799 +2510117 +16821147 +15784372 +18896662 +8283812 +15541890 +13138696 +7231308 +4484707 +6632967 +16941732 +15475699 +3708765 +10447145 +17191423 +17110814 +8140288 +5594227 +4455871 +14265910 +14711553 +2041536 +224887 +13786189 +14436303 +2852213 +13313021 +10380298 +13424432 +8247112 +19621487 +7062882 +6459298 +11653657 +8889361 +6441603 +16556382 +12575744 +2457688 +3056029 +2518636 +17420798 +21249394 +17699980 +5618475 +10179104 +15369531 +10653582 +15294820 +14404846 +13698371 +15410819 +10893443 +13640699 +10961600 +7707097 +2936099 +2082169 +975271 +1744660 +15554342 +18496239 +17140306 +17285139 +5370750 +5706948 +9073517 +1479896 +2053988 +14389772 +17741923 +14813133 +14871460 +13645942 +5531968 +13436228 +11933494 +20392842 +18385484 +9691518 +10367191 +3301133 +14944204 +7537360 +4309072 +15627086 +18368444 +754415 +5170211 +12663562 +11668730 +10457631 +6950815 +1428122 +17464707 +20308301 +757692 +21278229 +19236137 +682981 +1607690 +1759078 +14661746 +9059099 +18396625 +5695807 +8424058 +20998392 +16032097 +1896703 +20329273 +15845320 +15340040 +19076885 +2033017 +14494629 +14678785 +18637796 +17375579 +13507007 +7722171 +15788959 +21282817 +6850546 +17566943 +1402563 +256999 +18086641 +13598101 +806189 +2682476 +12129446 +17823187 +15185376 +5931735 +17445047 +9407749 +9995604 +7490830 +5683355 +20017323 +18177736 +7910913 +9931379 +7234585 +7190021 +15108699 +7117276 +6018898 +7138248 +17005302 +2789299 +16637647 +20168055 +9059754 +15612013 +179012 +15132292 +2223070 +13246830 +19905257 +142967 +11971505 +12358166 +19081473 +4571870 +18358614 +7868315 +3680584 +6061496 +5128923 +8621976 +13240276 +20649087 +3406645 +16385990 +4006952 +5037828 +11773587 +10596566 +15497326 +3845734 +18899284 +11997064 +14473003 +19073609 +548633 +8414228 +2189647 +13157701 +9737393 +9087279 +15155229 +16756266 +17120645 +10790552 +3960422 +1025733 +6942296 +13322851 +14978283 +923497 +7089751 +17928045 +15251567 +20453135 +237994 +17368370 +125928 +13107894 +17407036 +18584057 +3105181 +5305869 +17316597 +20771638 +3246738 +11818807 +3178581 +11288623 +15297442 +4271061 +1790535 +9576831 +14284260 +11204082 +12974857 +6781078 +1240035 +9479838 +5201668 +3048165 +12099955 +7653358 +1005417 +11650380 +11377096 +2557958 +5916662 +17182248 +9521781 +16453491 +17796318 +14663712 +1982554 +3364702 +20609110 +9426754 +4439488 +3756606 +6259414 +18724303 +18453641 +14041778 +14416642 +19354757 +8741251 +14508392 +19211234 +11093327 +5471019 +8695376 +17796318 +11380373 +4781584 +2411158 +20812926 +720337 +17139650 +11658245 +20575031 +20803751 +1162703 +6165698 +2083479 +15303995 +11044830 +6647385 +8272015 +1896047 +16041927 +6279730 +2456377 +15145399 +20806372 +20392842 +11845021 +782596 +9436584 +20782124 +15911511 +2951172 +19931471 +15684758 +20531122 +8901158 +745896 +10346875 +17905107 +7477067 +13839928 +1854104 +15486185 +12404696 +6426530 +852064 +5715468 +5431698 +16455458 +19080818 +16842118 +1308847 +12560016 +15345938 +9264226 +17857921 +18753794 +18022416 +15344627 +2793231 +3793306 +8701274 +7989556 +15933138 +13672156 +21290026 +3303099 +9814070 +5703016 +19700785 +11456395 +1245278 +12973546 +8445029 +18966785 +19776807 +11729023 +3684516 +3069792 +2856145 +13103307 +18420218 +11052039 +11466880 +9431997 +11478021 +4584977 +12628173 +17418832 +18407766 +17330359 +10563798 +20169365 +5933046 +3712041 +9131188 +7418740 +11653657 +13051533 +7517699 +1873765 +3278195 +2519292 +5706293 +13288773 +19084094 +9003393 +6959990 +1473342 +2400672 +14830172 +15321035 +4599395 +20670714 +12674048 +15366910 +20086135 +2713277 +12624896 +18104991 +9172476 +6853823 +2832552 +9943831 +20485903 +3234941 +14703688 +17466018 +9144951 +11170659 +3434170 +17557768 +12416493 +4349048 +16978432 +13001726 +781285 +16726775 +20622217 +3088142 +997553 +12250687 +610892 +19029700 +3281472 +15667718 +14625046 +18152832 +12985998 +3128774 +17996202 +21395538 +16585218 +6915426 +13925124 +8929338 +7600930 +18877001 +12992551 +1371762 +14074546 +18063704 +6627724 +13200955 +15524851 +7796881 +19648357 +5205600 +13121657 +1105687 +17045934 +16492158 +12152384 +11577636 +9280609 +1593272 +8735352 +10021163 +2441304 +4163582 +19006762 +11367266 +8666540 +21016087 +6528110 +15977702 +20877151 +16186106 +3832627 +12747448 +16912897 +18586678 +4680659 +4383127 +4474877 +11333843 +8856594 +4546966 +175735 +18751173 +10803659 +10205318 +18536871 +13225858 +13301224 +6236476 +7164462 +4980157 +7794915 +5646000 +18699400 +1359965 +2586793 +10634577 +18907803 +5417280 +19019214 +5251475 +8048538 +19577578 +8011838 +15195861 +5206255 +9411026 +15110665 +1906533 +14387806 +8040674 +9529645 +13039082 +15984256 +15579901 +5997926 +12888350 +16502643 +2961002 +2267635 +8124560 +6892489 +18144312 +17495509 +21232354 +12695019 +16897823 +12048837 +11653002 +449674 +17407036 +16902411 +5674180 +16841463 +7637630 +16956806 +19664741 +2917093 +11451152 +2335792 +16237224 +3445966 +75466 +11172625 +14801337 +20481315 +11992477 +19595273 +16269991 +16442350 +17516480 +17812046 +13702303 +2974765 +19972758 +20645155 +6349198 +12242168 +15655922 +7804090 +9709868 +15750293 +3828040 +14695824 +538148 +16853259 +12520039 +3996466 +4159650 +16970568 +9298304 +17951637 +5333394 +17247784 +6339367 +5403518 +18878968 +13378557 +14222656 +16789690 +1291153 +16475118 +3483977 +10783343 +3995811 +14752840 +760314 +8777295 +13240932 +16297516 +6132930 +12675359 +6130309 +1774806 +8829069 +14164985 +11385616 +13248141 +2626770 +4871368 +17150791 +14699101 +20428231 +14902262 +8354590 +8108176 +3453831 +3300477 +18879623 +19217787 +18437257 +14446788 +8621320 +7335510 +15498636 +15914788 +9019777 +498826 +5160380 +3622913 +3557377 +16435797 +18972684 +4521407 +8281845 +6217471 +2071683 +4328077 +12112407 +3808379 +11453773 +10359327 +5774450 +9739359 +9297649 +19282667 +16811316 +6861032 +11662177 +13927090 +14453342 +1472031 +10738123 +16682211 +9808172 +15327588 +1494969 +1502833 +406421 +7739210 +3336522 +14163019 +20147739 +18324536 +21067204 +2137874 +8095069 +15703108 +7572094 +4398200 +14866217 +408387 +8745183 +9225559 +9104974 +19082784 +16199868 +1486449 +17518447 +15482908 +8928683 +1386835 +11287312 +12868033 +10108981 +14861629 +14649294 +16423345 +17448979 +19729621 +20249974 +1456958 +19809574 +15153263 +15265329 +20248664 +1453026 +833058 +3540338 +20213930 +17806804 +20841106 +5622407 +7542603 +7865038 +9695450 +7834237 +20128733 +6934432 +5054212 +14067992 +7093683 +16837531 +13667569 +21111113 +2115592 +3993845 +9073517 +6772558 +687569 +12637348 +13391008 +9311411 +14414021 +4609225 +11548800 +890074 +13112482 +14263288 +15375429 +20104485 +13084957 +15187342 +4420482 +8608213 +846165 +1373072 +17982439 +10167307 +15104111 +1660119 +17829086 +5353055 +11855507 +14695169 +10843636 +18742653 +7178224 +12718612 +8131113 +8055747 +15227319 +1430744 +9167233 +290423 +18304875 +5073873 +17027584 +5779693 +1912431 +6927878 +15571381 +3413199 +12483339 +15005153 +524385 +403799 +12998450 +3975495 +16810661 +8872977 +9593215 +10470082 +14902262 +7043876 +9598458 +3955179 +15402954 +6515003 +4950666 +3594732 +8097690 +14204306 +13868108 +20345656 +10251848 +10452388 +9653508 +15524851 +11043520 +11042864 +5737750 +13446058 +12163525 +12506276 +18456262 +1013937 +20313544 +17316597 +4871368 +9575520 +8366387 +2761774 +12535112 +11915800 +1562471 +8640326 +15721458 +8213688 +4868746 +14275740 +18632553 +19765666 +13759319 +16228049 +7479033 +20670058 +17823843 +20151015 +9814070 +20218517 +3248049 +14567374 +14820997 +4064623 +13881871 +5089602 +12930948 +11324012 +19251210 +5055523 +15855806 +12746792 +14297367 +18158075 +14749563 +17431284 +13299914 +16417447 +16766752 +8792369 +19176500 +13488001 +10354084 +8408985 +17152102 +437223 +21021329 +18787873 +9574865 +15781751 +546667 +14819031 +12017380 +9542752 +12012137 +14126319 +5967125 +9333038 +2666747 +9555204 +4472911 +12007550 +13533876 +8733386 +11289279 +1527081 +10411756 +6910839 +8427990 +10478602 +13366760 +9155436 +10348186 +3129429 +10027061 +14010976 +19036253 +12869344 +7650081 +10280029 +4132781 +11253889 +9915650 +6398350 +27624 +5936323 +15729977 +15220110 +14597521 +16496745 +19250555 +13684608 +13311710 +17437838 +1057846 +14926510 +16962704 +12748103 +18526386 +14605385 +18409732 +9179029 +20250630 +13439505 +14292124 +9692174 +7966619 +6566121 +7422017 +8965383 +20512117 +12872621 +18112855 +5042416 +4918554 +13437539 +3103870 +9015845 +15535992 +1080128 +20987251 +2405915 +11727712 +10148957 +5928459 +17386720 +17144893 +6438326 +3976150 +10364570 +18505414 +276660 +19006762 +4701630 +1813472 +4978191 +479165 +1283944 +19320023 +10428140 +517176 +3892920 +19472721 +2012701 +1691576 +1660119 +20329928 +1403219 +1369796 +19354101 +15084451 +9062376 +4337907 +13349721 +18397280 +18268830 +15631018 +3199552 +7233274 +2000249 +7399735 +1911776 +14590312 +20993149 +16180208 +6006446 +967406 +10725016 +791771 +16477084 +19639182 +18408421 +3780198 +8121938 +21440758 +18243927 +10406513 +11662177 +8382770 +11591398 +5148584 +11348916 +10647684 +12768419 +6262035 +15758813 +16488881 +4348393 +20025842 +4470945 +16751679 +21018053 +17339534 +962164 +14377976 +16382713 +3140570 +17355918 +10294447 +15354458 +2148360 +13982796 +9308134 +13253383 +9917616 +5950085 +14467760 +16880784 +11883687 +8691444 +10563143 +10811523 +12013448 +19127348 +12590817 +7946958 +1935369 +3576382 +8064267 +10523822 +5446116 +3151056 +19324610 +19141110 +414285 +5655830 +7345996 +1906533 +3297856 +16840152 +14994011 +4213389 +10929488 +1503488 +13538464 +10591323 +20360730 +19926883 +698055 +18334366 +14684028 +15382638 +7290290 +20227692 +6785010 +7692680 +2421643 +12491859 +7468547 +19737485 +20012735 +4442109 +9897300 +19439953 +2666747 +17116057 +7129073 +20170676 +7801469 +4434900 +5835398 +20801130 +14358315 +6267934 +10028372 +14256080 +17949671 +15985567 +2315476 +3480045 +17843504 +736065 +3881123 +17458809 +3811000 +7989556 +4486018 +1775462 +18691535 +2017944 +15484874 +5840641 +18156764 +8106865 +15683447 +4416550 +11537003 +14884567 +75466 +11774898 +11934150 +19296430 +8661297 +19409151 +296976 +8207135 +1798399 +7596342 +11516032 +3457763 +17611507 +12714025 +10334423 +7313883 +5485437 +6682774 +8729454 +18080087 +7384662 +21407990 +6670323 +17235988 +16595049 +16900445 +14623079 +11981991 +13835340 +11835191 +18887487 +13060708 +4256643 +18202639 +19286600 +10278063 +18408421 +19609691 +289112 +18864550 +8055092 +7346651 +8041985 +1386835 +7952856 +13134764 +1120105 +17542039 +542735 +2333826 +12529869 +19990453 +5001784 +17502718 +11619578 +13630214 +20869942 +6594957 +3418441 +17938530 +4105911 +4855639 +11763102 +12928326 +21188446 +18801635 +11284036 +17000715 +7482965 +2178506 +12954541 +4796657 +5651898 +2417056 +3212659 +6611996 +9667270 +8502701 +5765275 +11565184 +11038277 +8254320 +9051890 +16096977 +17055109 +696744 +6994069 +11776864 +14893087 +20543574 +3381741 +17782555 +16448249 +6362305 +12775628 +16443661 +7422672 +20434785 +15655267 +4594152 +21440103 +7615347 +8058369 +19129314 +12377171 +9234734 +17542695 +5904866 +3383052 +19352791 +10979950 +13149182 +13990660 +12852305 +16965325 +20181162 +7563574 +19879698 +1818060 +11452462 +4710150 +3029815 +15229940 +14727937 +3639297 +13067917 +15682136 +4757991 +3397470 +14530019 +20537021 +14020151 +7186089 +7300776 +12407318 +8285122 +1057190 +7315194 +10479257 +18921566 +21400781 +18575537 +17566288 +3782820 +5883239 +10575595 +15345283 +14486765 +13693128 +11870580 +19205991 +13101341 +15826970 +11750650 +87917 +1921606 +13079714 +16987607 +6855133 +2644465 +4588254 +20029774 +17418832 +11750650 +6248928 +10864607 +2476038 +5257373 +6929844 +3689104 +9248497 +12301150 +18846855 +17310698 +18943848 +8572169 +2658883 +1911776 +8098346 +14139426 +16910275 +16162513 +10468116 +17840227 +7312573 +3071102 +8334274 +5394998 +14995322 +5439562 +8236626 +14071924 +4457838 +18966785 +1147630 +18616169 +4457182 +1766942 +11783418 +762280 +20268324 +11426904 +1482517 +7041910 +2521913 +528317 +1152217 +10348841 +18248514 +14862940 +2485868 +2723763 +7405633 +3128774 +5431043 +5982853 +646937 +3818209 +7804090 +19637216 +9811449 +3991879 +12911287 +730167 +15929206 +20888292 +12874587 +2430818 +17838916 +1717790 +2039570 +7658601 +7861106 +6689328 +21118322 +14075201 +9424133 +12923083 +7270630 +14086997 +143623 +19047394 +9124635 +18181668 +5569323 +2868597 +5064698 +1462856 +15297442 +3909959 +12637348 +7597653 +6676221 +12042284 +6581194 +10880336 +6963267 +19907223 +11207359 +6840715 +6720785 +6254826 +13473583 +18005377 +20378424 +14626356 +19548742 +12790701 +20852247 +8593795 +8574135 +3958456 +1198747 +11595986 +20512117 +2490456 +19039530 +19309537 +2956415 +7409565 +4292688 +20778847 +18854064 +8057058 +1987797 +2816168 +10517923 +7554399 +7932540 +16174309 +1058501 +1002796 +4578423 +6220092 +14507737 +3054718 +20581585 +2003526 +15948211 +15462592 +5354366 +1365863 +11904659 +7756249 +7829649 +17156034 +11026480 +16410238 +21229733 +8730110 +6787632 +6149314 +4548277 +13472928 +4356257 +6781733 +869103 +9263570 +17133752 +18880934 +4245502 +15882020 +12170078 +8430611 +10662757 +9230802 +9131188 +20630081 +12166146 +6050355 +11369232 +2822722 +4627575 +367099 +16721532 +10994368 +4438177 +1990419 +1350135 +3260500 +15752915 +8612145 +16857191 +2155569 +8015771 +11504236 +14824929 +945780 +17165864 +16689420 +11460982 +9234079 +773421 +9787856 +13216683 +21098006 +11472123 diff --git a/2ano1/AED/aula11/aleatorios40000.txt b/2ano1/AED/aula11/aleatorios40000.txt new file mode 100644 index 0000000..a1bd4c5 --- /dev/null +++ b/2ano1/AED/aula11/aleatorios40000.txt @@ -0,0 +1,40000 @@ +12746137 +20588139 +3135983 +1607690 +6394417 +14066026 +18102370 +21214660 +9950384 +14953379 +7494106 +18199362 +20381046 +9748534 +4445386 +11909902 +20672680 +1567058 +3811656 +15901026 +8002008 +3456452 +6393107 +4592841 +10553313 +1381592 +3802481 +15023503 +21154367 +16411549 +9351388 +3201518 +1418947 +19804332 +14819031 +8688822 +13444748 +2322685 +21419787 +10700768 +9959559 +15906924 +3366013 +7880112 +5697118 +16579320 +16768063 +5678768 +10569041 +13912017 +11614336 +14009010 +17918214 +12328019 +10547414 +18264243 +8240558 +13351032 +18907803 +4906757 +3954523 +15038576 +7635663 +4714737 +6774524 +20018633 +20698238 +20138564 +3573761 +9844216 +18490341 +14606040 +1146319 +4448007 +2793886 +2035638 +18064359 +14102726 +13267146 +6360994 +15503879 +2657572 +4189141 +15229285 +17364438 +13058087 +7461994 +19807608 +15005808 +15574658 +10780722 +7152665 +14301955 +16293584 +21398160 +18554566 +13613174 +7772633 +2092654 +11466225 +12668805 +20235556 +20917128 +3491841 +12770385 +5538521 +686914 +21306410 +928740 +5553594 +11080875 +10857398 +7192642 +15079863 +16877507 +4803211 +13035805 +12403385 +3705488 +16358465 +14811822 +18584712 +17614784 +19919674 +20136598 +14351762 +9058443 +3035058 +2038260 +5175453 +5417936 +20594692 +18232786 +20458378 +8761567 +21068515 +4970327 +15283024 +14099449 +19896082 +11149032 +18996276 +17282518 +3318827 +17075425 +5171521 +21269054 +8908367 +17667213 +20478694 +17256304 +2302369 +8398499 +4058725 +13851724 +17880859 +16913552 +6743067 +4867436 +11092016 +11879755 +5479539 +13335958 +19007418 +3808379 +829781 +16442350 +12394866 +19086060 +928740 +17808114 +14419919 +4250745 +21427651 +7403667 +19570369 +7472480 +5444150 +11097914 +8760256 +7083853 +7802124 +13076437 +2222415 +13280908 +10713875 +17552525 +16644200 +6125721 +15828936 +11536348 +18489030 +13845826 +16029475 +9179029 +19124726 +1927504 +19443885 +3888988 +17156034 +5860957 +8241869 +8736008 +19478619 +6221403 +4674105 +11333187 +18260966 +430669 +19552019 +2245352 +5034552 +6100817 +12672737 +10485156 +6476992 +20804406 +5462500 +4501091 +8328376 +16783136 +2901365 +234062 +9711834 +16896513 +15315136 +19900669 +9879606 +8213033 +8905745 +6862342 +19333130 +18714473 +11179834 +5951396 +4710805 +6141450 +6866930 +5945498 +9713800 +13297948 +817985 +11262409 +17869718 +2621527 +12322121 +18736100 +14149256 +17614129 +12260518 +15575968 +4516164 +19508766 +18506725 +17963434 +20921060 +3819520 +17391307 +8701929 +21139949 +2850902 +12546909 +8108831 +11634652 +20469519 +19269560 +7718238 +2166710 +20603212 +5068630 +996897 +12976823 +15775197 +2555992 +12423046 +964785 +12065877 +8809408 +15543201 +11570427 +7134971 +4730466 +6427185 +14775778 +12442707 +9173131 +15761434 +11100536 +17129164 +7458062 +3878502 +16337493 +15018260 +12630139 +1782670 +16965981 +12200880 +13180639 +12972891 +20407260 +7817197 +1171878 +17653450 +12871310 +15817140 +6275798 +2145738 +13381833 +12944055 +7551778 +11500304 +15271227 +9567000 +13537153 +19275459 +3711386 +21237597 +10682418 +20497044 +12385035 +8743217 +6281696 +12921773 +21312963 +15507811 +16249675 +14920612 +2533054 +11761136 +9150193 +21322138 +1556572 +17930666 +424115 +2589415 +2943308 +16678934 +7577337 +20470830 +4794691 +11278793 +17319218 +7138903 +7557021 +18938605 +19015282 +11114298 +19815473 +13161633 +19223685 +6024796 +1207922 +11781452 +5773794 +1046049 +16946975 +2624804 +12379793 +69567 +8690788 +10828563 +16032752 +11568461 +14574583 +21232354 +11429525 +21262501 +6938364 +16918795 +16155304 +735410 +8761567 +19135212 +7289635 +14395015 +932672 +3105181 +15591697 +4031856 +2191613 +4474221 +12866067 +555842 +5674835 +11714605 +11936116 +20035017 +3580315 +2191613 +14824929 +7085164 +20092689 +17860543 +13828131 +6135551 +19032976 +15524851 +3197586 +215057 +14374699 +10396682 +12847062 +5795421 +13880560 +11666109 +14419263 +13667569 +16626506 +11125439 +11786039 +20786712 +16779859 +17472572 +15983600 +761624 +19668673 +10793173 +1916363 +14969108 +1013937 +3118943 +19270216 +11329255 +8642292 +15142122 +18101059 +6644108 +15440310 +4652479 +12517418 +6245651 +2023186 +7751662 +14056851 +13280253 +6734548 +13016144 +14597521 +18235407 +20165433 +1459579 +8735352 +20385633 +20132010 +16070108 +13356274 +14720728 +2845659 +6567432 +9901888 +17499441 +5563425 +357269 +3280816 +21050821 +19392112 +1733519 +15561551 +15385260 +2291883 +19972103 +15109354 +10188934 +19799089 +14923233 +7334199 +1489071 +14843935 +10418309 +8541367 +9837663 +7277839 +13769805 +196051 +5455291 +9736738 +13169498 +14594244 +18972028 +9483770 +13367415 +19749937 +16999404 +11529139 +16373538 +12202846 +12953885 +20218517 +14949447 +7011108 +13845826 +19019869 +12982066 +11523241 +15761434 +18971373 +11679871 +15793547 +13817646 +20765085 +18620102 +325157 +3097972 +3888988 +18597164 +15492083 +767523 +2544195 +6238442 +11187698 +1462201 +16688765 +19348203 +7937128 +3512813 +11199495 +15248290 +8838244 +18104336 +9197379 +1505454 +7345996 +5659762 +17142927 +5644689 +5665660 +16614709 +2480626 +16039961 +12219885 +8433233 +5041761 +15461281 +18852753 +2570410 +1699440 +3257879 +12139277 +10291170 +13491933 +20259149 +19458303 +4495193 +10289204 +7969896 +7979726 +10703389 +16323075 +10051965 +2293849 +14549024 +14604074 +10795795 +2603177 +16605534 +10591979 +4487329 +4797968 +17807459 +3466938 +19851517 +4965084 +8597728 +10629334 +6294148 +10484500 +2746045 +1134522 +14796749 +4697043 +17192734 +12553462 +354648 +16133022 +17359850 +6311187 +942503 +3065204 +8483040 +15161128 +19894771 +5031930 +13219305 +9012568 +1616210 +14389772 +8709794 +11283380 +603028 +19536946 +14333412 +20845694 +10264300 +16473152 +16770029 +14044399 +2511427 +10834461 +9523092 +11342362 +9661372 +344162 +5306525 +10639820 +5062077 +2768983 +19280046 +8032810 +15279092 +11945946 +10382920 +15436377 +5502477 +11394791 +14980904 +16671070 +13964446 +13978864 +9093833 +7646149 +12597371 +20905331 +12594094 +19305605 +12680601 +18858651 +14606040 +11265686 +70878 +15924618 +18733478 +7247037 +4026613 +20349589 +2090688 +16647477 +13057432 +5752823 +884831 +5979576 +20345001 +3044888 +9131843 +1384213 +19539567 +19081473 +10632611 +6128342 +18716439 +8212378 +2599901 +7570783 +693467 +4755370 +8924095 +15210279 +4853673 +19801055 +5906832 +17733404 +970028 +3655025 +16142197 +15444242 +9367772 +14178747 +14198408 +15985567 +9058443 +11879100 +7165117 +20877151 +2284674 +1825924 +19603792 +19649667 +13336614 +7671708 +2381011 +19080162 +3525265 +18026348 +17691461 +16935179 +17053143 +13246174 +11067113 +12170734 +2790609 +19599860 +16618641 +3925688 +13246174 +19707339 +20398085 +6832196 +10989780 +9811449 +6004480 +13524701 +5297350 +11295177 +8618044 +17749788 +6967199 +4898237 +14393705 +7492140 +8688167 +3047509 +3842457 +20048124 +15770609 +14023428 +19079507 +18127928 +12502344 +5990718 +16701216 +1049981 +17800905 +11171970 +8935892 +2730317 +8027567 +5744303 +18609616 +3981393 +10974707 +6372791 +6978340 +12122893 +20044192 +18980548 +8625253 +13295982 +11140513 +1486449 +9717733 +7530151 +11953811 +12975512 +18565707 +3752673 +12235614 +2373802 +15094936 +12999760 +8333619 +10383575 +13437539 +2908574 +13545673 +1527081 +10146991 +2072994 +5429732 +14157121 +9293061 +16710391 +6705712 +17079357 +4311693 +12623585 +13187192 +10320006 +502758 +11463604 +8330342 +16384679 +989033 +17420143 +14058817 +5625684 +18559809 +16588495 +9430031 +3341765 +14739078 +1388801 +10401925 +14223967 +295010 +4580389 +13412635 +11767034 +5263271 +9341558 +10135195 +14795438 +2372492 +20615008 +12343093 +4818284 +7342719 +13857623 +15075931 +7002589 +10449111 +3450554 +8837588 +2580240 +5765930 +11330566 +11966262 +16947631 +8716347 +6299391 +19166014 +8334274 +6210917 +2593347 +9129877 +8668506 +9177063 +1626040 +14619147 +12664217 +1441229 +8434544 +11391514 +2336447 +19181742 +13207 +15876777 +10991091 +4605293 +12642591 +19152907 +12599992 +11646448 +10652272 +18267520 +13052189 +20802440 +4366743 +8680958 +348749 +5334705 +15252877 +5608644 +1375694 +21329347 +12424357 +977892 +9701349 +18970718 +19803021 +9682999 +10555934 +6507794 +2713277 +4484052 +17764205 +6562844 +12372584 +597130 +5195114 +6778457 +3783475 +3423684 +12561982 +10160754 +20240144 +16052413 +7498039 +575503 +9619429 +13247485 +19964894 +14648638 +8642292 +14125008 +2059886 +6684741 +3205450 +9920893 +15189308 +19970792 +7695301 +7899772 +4399511 +7486897 +14998599 +12215298 +19518596 +8666540 +16509852 +9521781 +14069303 +3738911 +1546087 +16358465 +17170452 +1993040 +6632967 +19877076 +2659538 +7606172 +16692041 +19274148 +14438924 +11352193 +3333245 +20958415 +1121415 +16912897 +9669236 +1551329 +4879232 +13881215 +8508599 +13867453 +7244415 +13549605 +1676503 +20475417 +12344403 +16626506 +1441229 +16546552 +13921192 +7507869 +18181668 +5092878 +18587334 +16024233 +17400482 +21252015 +7893874 +19186330 +13175396 +4934282 +11668075 +3019329 +3442034 +19131935 +3389606 +21422408 +114132 +11923664 +4822871 +13815024 +9749190 +6011034 +3282783 +13060053 +3016708 +21196965 +4341184 +11511445 +7857174 +12344403 +16625195 +9304202 +20981353 +8703240 +12329985 +6648696 +1461546 +6992758 +3703522 +13282219 +6120478 +18867171 +21429617 +8636394 +332365 +18443155 +6311187 +11767034 +5245577 +18708575 +1477929 +1343581 +7647460 +1010005 +12276246 +16532134 +14327513 +12350301 +6965889 +7272596 +20746080 +4365432 +5201012 +1016558 +18170527 +7879456 +18745275 +4090182 +2356763 +2164088 +6157834 +11477366 +565673 +8376217 +13908085 +15644781 +15569415 +2519947 +21425685 +1645701 +10809557 +5616509 +6131619 +12395521 +7158564 +10842325 +3652404 +13672156 +7427915 +19420948 +13553537 +7794260 +12348991 +16836875 +19707994 +18155453 +15962629 +10826597 +18587989 +7032735 +7929263 +5661073 +2468829 +14553612 +21010844 +12703539 +5592260 +1423535 +15016294 +14714174 +9941209 +5429732 +536837 +5347157 +11953811 +8410295 +485719 +21316240 +3883090 +16336183 +16548518 +9509329 +20796542 +6895765 +6576607 +4864159 +6926567 +11002888 +18555877 +10315418 +17440459 +4094770 +14744976 +11678561 +15418027 +2487835 +4044307 +12708782 +16326352 +19181087 +16211009 +7783774 +11582223 +16685488 +20570444 +13690506 +15467179 +5183973 +10032304 +13541740 +10582804 +15573347 +9483115 +20181817 +7266698 +9803584 +14592278 +4754059 +13628248 +16410238 +6663769 +5154482 +2767672 +16777238 +6617894 +9716422 +17452911 +20353521 +13088233 +16764131 +4885786 +4687213 +2464897 +15686068 +15743084 +8176988 +7664499 +11002232 +16551140 +8447651 +2499631 +6880692 +13983451 +3105181 +16435141 +9143640 +19317401 +11679216 +13332026 +5166934 +14777744 +7477067 +1932092 +194085 +8338862 +13564678 +19038219 +6049700 +16590461 +6520246 +2179161 +17807459 +19299707 +12494480 +8763533 +3257224 +4435555 +17762895 +3936173 +5150550 +18441844 +13865487 +17740613 +15998018 +18411698 +14275085 +1171222 +4564661 +20755910 +19091303 +9931379 +11538314 +20909263 +922187 +2521913 +6323639 +6853823 +17300868 +10319350 +2256494 +13465064 +7403667 +9238011 +14816410 +3580315 +1189572 +14393049 +16534100 +16713668 +19548087 +6538596 +10045411 +6254171 +7034701 +18429393 +7909603 +20809649 +20670058 +11343673 +19179776 +222266 +7068780 +20250630 +3133361 +13697715 +14136805 +4579079 +18998243 +17318563 +19287255 +11924319 +16692041 +1329163 +5665005 +5748891 +12809051 +12468921 +5191182 +7362380 +10958979 +19825303 +9783924 +10610984 +2687063 +11407898 +6436360 +18916978 +9359908 +10739434 +16026199 +6693260 +7340097 +14133528 +4997852 +4448663 +18943848 +10387507 +757692 +2236833 +18236062 +19145042 +760314 +21089487 +20064508 +9002083 +6112614 +4132125 +1366519 +18160696 +5903555 +5879962 +1698785 +16585218 +6868896 +9279954 +9063031 +4255332 +20486558 +20801785 +20921060 +13330060 +16224117 +9370393 +15333486 +14889810 +10723050 +17308077 +7363035 +20840451 +992965 +9090556 +11572393 +16573422 +18788528 +826505 +21333935 +14973040 +14225278 +14795438 +19061157 +17684907 +17612818 +15403610 +20698894 +2427542 +8394567 +15133603 +18253757 +1453026 +4582355 +12932258 +16991540 +3379120 +16340770 +18038145 +9590593 +1197437 +12023278 +14962554 +19462891 +4586288 +12771696 +15246324 +12579676 +17201254 +12999760 +8770086 +3288025 +11824050 +14677474 +3182513 +3130740 +11423627 +1590651 +7166428 +9306168 +8353279 +12627517 +17272032 +3902095 +1538222 +11432146 +14355694 +10221702 +12725821 +12123548 +7872247 +5530657 +18065014 +8086549 +5218052 +15716870 +21148469 +13218649 +8797611 +19398010 +10505472 +20329928 +3906027 +8441097 +6227957 +14290813 +18623378 +4227152 +3114356 +16415481 +4073798 +11545523 +15032022 +18501482 +2782745 +10117500 +6402937 +19250555 +9894679 +8566270 +1405185 +21466317 +16458079 +3138604 +6485512 +9508674 +4605293 +16325041 +15292199 +1605069 +18774766 +14729903 +10795139 +3225111 +18367134 +10186313 +18951712 +20556681 +1061778 +14615871 +21326070 +3225111 +16281788 +2319408 +17226157 +4150475 +21163542 +1148285 +21296579 +17661970 +14569996 +15280402 +7966619 +19985210 +14944204 +8437165 +18178391 +16819181 +16905032 +15317102 +10301656 +20824067 +7769356 +8794990 +14257390 +21438137 +7112033 +20166744 +20432164 +20164123 +17275309 +11130027 +12083571 +465403 +19719135 +16256884 +2316131 +12800532 +12523971 +11706741 +11871891 +7699888 +9175752 +7447576 +20630081 +5441528 +15416061 +12016725 +846821 +20480005 +11670696 +2023186 +603683 +7062882 +784562 +17850712 +20436751 +17281207 +19723067 +2380356 +16671070 +471957 +3180547 +19589375 +10666034 +15042508 +20516049 +18865860 +14724004 +2451135 +861894 +18122686 +11563218 +1804953 +4707529 +403144 +20232280 +19216476 +6469783 +10505472 +12921773 +890074 +10132574 +4025957 +16192659 +4557452 +20810305 +21245462 +10757784 +8900502 +7131694 +2026463 +6290216 +13935610 +55149 +7431847 +12758589 +843544 +12050803 +13904153 +5592260 +17672455 +8159949 +2763740 +14209549 +2353486 +20883049 +4784861 +1704683 +17464707 +17638377 +6571364 +8817927 +14277706 +20766396 +1261006 +15256154 +15262052 +2924958 +4367398 +12949953 +4375263 +14893087 +16655341 +2003526 +6307255 +4212734 +12557394 +17401138 +9066963 +17899209 +434601 +4579734 +17806148 +11439355 +18462161 +17007268 +1652254 +246514 +5058145 +17018409 +21434860 +12018036 +8924095 +10726982 +20907297 +17825809 +11915800 +13025975 +20328617 +9040749 +1593928 +15148020 +1717790 +11388237 +17647552 +9142985 +9908441 +9954316 +14481522 +5515584 +16416791 +5939600 +15769299 +12488582 +5813771 +7181501 +16716290 +20506219 +3419752 +1438608 +2465552 +3391572 +10098495 +15114597 +10836427 +1248555 +13927746 +5761343 +6530732 +17349364 +1580820 +13159012 +10392750 +8843486 +10349497 +16670415 +14632910 +4183898 +14783642 +9568311 +20236212 +4328077 +11009441 +17197322 +6626414 +1263628 +6804016 +11329911 +19488450 +7136937 +1306881 +5925837 +15026779 +19506144 +6046423 +7471824 +11621545 +9286508 +19367864 +19223685 +15372808 +7218856 +5936978 +8741251 +12796600 +10358016 +8151429 +16568179 +12546253 +20643189 +11647103 +14803303 +21416510 +1470721 +13841239 +15521574 +923497 +21368669 +3605874 +16340115 +11831259 +5636169 +372998 +3898818 +13114448 +9289784 +11067113 +10570352 +16631749 +2675922 +10243984 +15686724 +21061962 +18668598 +16561625 +8711104 +18352716 +17892000 +5887171 +5634859 +11622855 +20232935 +13360207 +13920537 +15657888 +9405783 +14368801 +16437763 +406421 +8509254 +1195471 +12655042 +6312498 +5145962 +17085256 +15747672 +5353055 +16663206 +6144726 +926119 +15786338 +17030861 +13929056 +4300552 +1521183 +15925929 +17291038 +2504218 +21173372 +11527828 +4253366 +8621320 +7401046 +232096 +11979369 +14642740 +6635589 +1000830 +13457855 +1243967 +2122801 +19859382 +5219362 +10177793 +63014 +19637871 +14895708 +6161110 +17144893 +13739003 +15883331 +17469295 +5042416 +5423834 +4780273 +2938065 +15872845 +20262426 +14108624 +20493112 +21411267 +17654105 +15356424 +16053724 +12195637 +14961899 +233407 +1205301 +4064623 +16904377 +1907188 +2913161 +19899358 +19311503 +519798 +16799520 +17730127 +2016633 +11614991 +12976823 +4768477 +8197304 +1135178 +11213913 +7872903 +10179104 +11512100 +16720222 +11170659 +2615629 +13665603 +5136787 +3782165 +1588029 +19760423 +5708259 +12151073 +3987947 +14470381 +20253251 +2225036 +15221420 +3398125 +20191648 +19913776 +6324950 +15560240 +16921416 +4101979 +15913477 +14986803 +18333055 +5706293 +337608 +9321242 +17062973 +10839048 +12554118 +9823900 +16545241 +15667063 +12442051 +1813472 +4255332 +1993695 +17903141 +9439206 +7032735 +10186968 +6867585 +5811805 +9045992 +1436642 +359235 +10072281 +17601021 +6596267 +15928551 +15052338 +14408778 +17378200 +20943342 +1213165 +13090855 +9791133 +4551554 +2635945 +3480045 +6543839 +18635830 +8298885 +3508881 +9970045 +5916662 +8021013 +20706758 +12841164 +17154068 +9248497 +15252877 +4525995 +12826091 +11948568 +10201386 +8059679 +1559194 +4003675 +11336464 +1154183 +11342362 +7325024 +11112332 +14427128 +1550674 +855340 +18310773 +2160811 +6374101 +8367697 +1340304 +15104111 +16391233 +5453325 +8904435 +12936846 +17730782 +19479930 +12385035 +17687529 +17675077 +12504310 +12839853 +10168618 +3708109 +6817778 +21377844 +13017455 +8466001 +150832 +4843187 +20097276 +12830678 +1382247 +6868240 +1103721 +9959559 +12932258 +20828655 +6202398 +5432353 +11527828 +18031591 +19727655 +18619446 +11211291 +8327720 +17254993 +10771547 +2578929 +21070481 +3932897 +19681124 +2455722 +12466955 +15941002 +18399902 +7978415 +16741849 +13275010 +14079789 +3405334 +10289204 +10814145 +11800457 +6895765 +20976765 +10780066 +15849908 +4923141 +16203145 +19133246 +15447519 +19272182 +15977702 +9660061 +19997662 +3957145 +7572094 +10912448 +4965739 +10276097 +631864 +7969240 +5267203 +16709081 +14054885 +5973678 +2506840 +12184496 +11399379 +11837157 +14757428 +8591829 +5618475 +1892770 +13751455 +12734996 +6298735 +18441189 +13733760 +20138564 +8717658 +11996409 +21284128 +17954259 +20014046 +1664051 +18560464 +16431865 +21153712 +20149049 +12860169 +10301000 +10297068 +7802124 +2835174 +18381552 +4774375 +2648397 +1625385 +16862434 +18441189 +17746511 +10210561 +469335 +20446581 +17225502 +16800831 +8441097 +21056719 +5114505 +1475963 +5925182 +11380373 +15562206 +422805 +16072729 +10013954 +18539493 +15697210 +6887246 +7891253 +2084790 +18144312 +14005078 +21382431 +8951620 +1190228 +3472181 +1995661 +2175229 +11022548 +20108417 +5995960 +3138604 +3506259 +18156109 +7216890 +11582878 +11685770 +5699739 +14085031 +814708 +1773495 +6936398 +2972143 +12953885 +8862492 +1321954 +6785666 +3229699 +16152683 +9406438 +21224490 +16513784 +18600441 +11934805 +3191688 +1504799 +13969689 +864515 +10337045 +17539418 +18580780 +20691030 +4603982 +10610984 +1067021 +4801900 +12994517 +20934822 +3233631 +16869643 +18104336 +20122180 +19203369 +14809201 +13950683 +4071832 +9322552 +5018168 +7650081 +12088814 +6551703 +5058145 +15944934 +11159518 +4628886 +16783791 +8912299 +3061272 +15215522 +7899772 +192119 +14081755 +4802555 +18049286 +21315585 +2902020 +12670116 +867792 +7668431 +12132068 +10366536 +12027866 +20873219 +19232860 +18747896 +11114954 +19069676 +5593571 +87262 +16197902 +7915501 +139691 +19825958 +7793605 +19991108 +14946826 +2196856 +20441339 +3822797 +15786338 +3801825 +11854196 +15103456 +16867022 +7231964 +12292630 +18221645 +13216028 +8500079 +15269917 +12803809 +11749339 +1673881 +4875300 +8135045 +3331934 +11696255 +10309520 +1810195 +8024290 +15010395 +3095350 +875656 +14341931 +6360994 +22382 +5602091 +9153470 +8416194 +15467179 +15608736 +4935593 +3430238 +11411830 +21437481 +3315550 +13081025 +4202248 +19820060 +16370916 +5045693 +3912581 +15739152 +20191648 +2789299 +9782613 +6572674 +5119093 +12690432 +16779859 +18799669 +18646316 +16139575 +20514083 +20761153 +321880 +5798698 +18513278 +18165284 +13309744 +13016144 +16567524 +5521482 +6228612 +19685057 +16664516 +15760124 +10572318 +2181783 +16706459 +5649277 +14699756 +676428 +20004215 +12535768 +11689702 +10487122 +20316821 +19377039 +20384323 +18255068 +3373222 +6541873 +18569639 +1087337 +16554416 +13891046 +17119334 +18185600 +4068556 +4419172 +20771638 +19818749 +17645586 +18696123 +18475923 +18555877 +6164387 +3362081 +6660492 +11405932 +8977179 +17656727 +16575388 +18591921 +20789333 +7981692 +20200823 +14162363 +9239977 +4779618 +8007906 +6794841 +18770178 +17639032 +5681389 +3037679 +4412618 +10468116 +965440 +3976150 +16273924 +5723987 +20199512 +3788718 +13275010 +12356200 +3576382 +12337194 +12820192 +19731587 +19331819 +5820980 +5285553 +9878950 +14935685 +20922371 +17871029 +15587110 +10562488 +17300213 +14412710 +4895616 +18809500 +3019329 +15684758 +6042491 +16121225 +4839911 +19431433 +17210429 +1504799 +12876553 +18748552 +7740521 +17030206 +18409732 +20174608 +6136862 +15369531 +16678934 +16525581 +1707960 +7214269 +7536049 +9095799 +20236867 +8758290 +16104186 +12785459 +14638153 +7336821 +16005227 +9939243 +16878163 +2272877 +13518148 +1190228 +20327962 +16905032 +3438757 +11725091 +17344122 +9997570 +12052114 +7996110 +4854329 +12003618 +2407226 +12786114 +17658693 +6360339 +7636319 +8583965 +2228313 +10137816 +9802929 +3069792 +20214585 +3060617 +15929206 +18476578 +14618492 +8914265 +20476072 +13546328 +14393049 +21297235 +5288175 +15242392 +10419620 +13303191 +9869120 +17977196 +13560090 +2268945 +14970419 +13402805 +173769 +1160081 +15975081 +9170509 +19580855 +20993149 +7570783 +13179328 +18530318 +20285364 +19968171 +13490623 +757692 +8899847 +14067337 +16348634 +12261828 +8987665 +12052114 +681015 +12040973 +15973115 +13105273 +1831167 +20867321 +5885860 +6311187 +11119541 +6534008 +3133361 +16981054 +11338430 +5531968 +18794427 +4550898 +6586437 +4022025 +2376424 +20723797 +1481206 +13624971 +3667477 +16519027 +2887602 +15223386 +423460 +7547846 +20687753 +13025975 +18027004 +7642872 +11886309 +935294 +18327812 +10676520 +2255183 +19044773 +12002962 +10511370 +7703165 +16403684 +495549 +16790345 +11056627 +20012080 +8602970 +13564023 +2962968 +4039720 +7034701 +11742786 +20492456 +2198167 +7496072 +13512249 +20359419 +7580614 +768833 +18227543 +14240351 +9618774 +20329928 +16773306 +2478660 +13126244 +2006803 +18013896 +4796002 +2523224 +1354722 +11361368 +3476768 +18344852 +9775404 +16457424 +11745407 +8470588 +16958116 +16636991 +18374343 +7726758 +11631375 +13054810 +21250049 +7658601 +9861256 +17621993 +8303472 +5684666 +17636411 +6894455 +12635382 +3470870 +16971223 +20113660 +14341931 +14225278 +11117575 +15535336 +9144951 +20550128 +3370600 +11843055 +16334216 +6993414 +9481149 +21399470 +2525845 +8912954 +21112424 +1486449 +9142985 +1164013 +20344346 +17492232 +9148227 +19190262 +5630927 +6665735 +17160622 +13903497 +344162 +2117558 +21434860 +4738330 +4328732 +12425668 +4133436 +10780722 +9908441 +8488283 +4925762 +2246663 +21305754 +7558331 +415596 +17922146 +5638135 +18911735 +5401552 +3645195 +15093626 +12870655 +18160041 +11367266 +443776 +21244151 +990999 +13226514 +6448157 +15503224 +12145175 +13115758 +11623511 +14345863 +14660435 +10824630 +17030206 +2565822 +15081174 +7328301 +11618923 +5476918 +14646672 +14307853 +10768925 +8201237 +17906418 +20267014 +10308865 +21121599 +10836427 +5170866 +9707247 +2266979 +3090108 +20390221 +11136580 +2379701 +3514779 +17874961 +19260385 +7187399 +2090688 +3662234 +12870655 +14434337 +20692340 +6385242 +20583551 +13480792 +5184628 +6389175 +14051608 +18460194 +7799503 +3303099 +8570203 +16083870 +2816168 +2624149 +20123490 +561085 +20702171 +13243553 +11061214 +21144537 +8166503 +8273981 +10296413 +6747655 +13391008 +5541798 +3367979 +1814783 +17977852 +5345846 +14471037 +19542844 +14894397 +6273176 +18748552 +17787798 +19012660 +8471899 +21049510 +19803021 +8233349 +10425518 +3872604 +4661654 +18670564 +16001295 +16275234 +19018559 +5328807 +14866217 +20565856 +6216816 +13870730 +17469295 +4786171 +19128003 +17223536 +307462 +20745424 +12099300 +5558837 +14480212 +11377096 +7236551 +5512962 +12589507 +10585425 +2196201 +15906924 +12071775 +21020674 +6700469 +8257597 +21168129 +2616285 +4431623 +821917 +2019910 +7471824 +12786769 +10879680 +5766585 +13459165 +15663131 +1354067 +2515360 +7508524 +6181426 +13025975 +13502419 +21298545 +423460 +18629932 +3891609 +4579079 +1386835 +12204157 +14687304 +11934150 +10457631 +20305680 +13671501 +8412917 +1177121 +11588777 +8273981 +6043801 +17035448 +14138771 +7660567 +8462724 +7414808 +9028297 +11869925 +3231009 +14383219 +16864400 +1837065 +15931172 +2347588 +10219736 +755726 +14657158 +7686781 +4285479 +8817927 +1106997 +7745108 +1607690 +10642441 +12460401 +14517567 +14365524 +7739210 +5188561 +7139558 +11878444 +17633134 +10700113 +15257465 +16788379 +13467030 +18560464 +10331802 +4330698 +3402713 +20148394 +2843693 +21421097 +8897226 +12086848 +2473417 +8159294 +12320155 +5756100 +2981974 +17665902 +19533014 +14032603 +13943474 +16195281 +7253590 +18606994 +413630 +2392808 +8205824 +17874961 +10374400 +14185301 +17962123 +8432578 +7449542 +10559211 +19445196 +168526 +10847568 +12750725 +2263047 +3881779 +17078702 +19663430 +15144088 +5522793 +4760612 +17608230 +21274297 +16305381 +12445328 +7205749 +2823377 +19515975 +10969464 +2474072 +20046158 +10646373 +11227020 +10836427 +5512307 +16089768 +23692 +13503074 +8174367 +7865694 +16056345 +19384248 +2111004 +7629110 +1627351 +18712507 +17601021 +18252446 +21316240 +16903066 +10013954 +11826016 +10766304 +17789764 +9418890 +20368594 +11881066 +7913535 +9361218 +21232354 +14640119 +4259264 +8843486 +7100892 +18232130 +2393463 +9564379 +18440534 +11534382 +16233292 +17385409 +12927016 +13190469 +3445311 +393969 +15425236 +165905 +18047975 +2865320 +15011051 +15351181 +19121450 +2402638 +9674479 +3927654 +20809649 +10231532 +8786470 +12660941 +12516107 +1907188 +7422017 +1179742 +12349646 +6618549 +321224 +6796151 +4856950 +6775835 +6623137 +19283978 +18710541 +19006762 +1369796 +6534008 +9490979 +8259563 +4079697 +5839985 +17996857 +6127032 +5632893 +13072505 +11497682 +20670058 +5258684 +13988694 +7232619 +1485794 +10650961 +18774766 +14412710 +5631582 +15315136 +14592278 +7477067 +12117650 +20909919 +19328542 +3740877 +3025227 +11324668 +1007383 +7203783 +16652065 +10676520 +17859232 +20520637 +17659348 +3104525 +21381120 +15733254 +19757801 +18373032 +20986596 +1355378 +5262616 +10810868 +9622050 +11980025 +12632105 +7408910 +5355021 +7674330 +743274 +2280742 +16335527 +3257879 +11337120 +8872977 +4957220 +6704401 +2175885 +4847775 +2216517 +865826 +1182363 +9205243 +18608960 +20200823 +18532284 +5102053 +9926791 +19840376 +1903911 +12362098 +16743159 +18165284 +1985831 +1653565 +5807218 +16960738 +17418832 +18757727 +4578423 +8517119 +8385392 +17628546 +14176126 +3240840 +20472140 +6892489 +12803153 +604339 +6078535 +8482385 +7356481 +8782538 +15132947 +3568518 +15792236 +14347830 +20278810 +8715036 +2394118 +7359758 +5335361 +6459953 +13559435 +6169630 +11685114 +2096586 +20878462 +15488806 +19794501 +16746436 +19762389 +12352923 +4740952 +9333693 +19233516 +909735 +18449 +10003468 +20180506 +15916754 +14571306 +6611341 +4226497 +8498113 +2389531 +17153413 +9038127 +9445759 +8812029 +18624034 +11580257 +9690208 +5645344 +14826240 +17270066 +17654761 +11716571 +21017397 +12100610 +12288043 +10955047 +11677905 +3894886 +15265329 +6927878 +17310698 +3033092 +1156149 +5093534 +8543333 +18496239 +19365898 +4003020 +11130027 +5457912 +10441247 +1461546 +4227807 +12065877 +12651110 +10979950 +2601867 +10689627 +5216086 +8629185 +3976150 +4854984 +19679814 +20371215 +8907056 +4520096 +2017288 +12297873 +9156747 +9954316 +14010321 +8574790 +1612933 +4881198 +20279465 +13641355 +9626638 +13250107 +21295269 +13134108 +18498861 +5560148 +14973695 +16632404 +258966 +9740015 +10317384 +8668506 +20360074 +19230894 +5203634 +7327646 +149521 +10333768 +1450404 +10979950 +8195338 +5061421 +12215298 +10993713 +10089975 +19114896 +6012344 +1299672 +14235108 +3014742 +89228 +12328019 +15670995 +2559268 +11246025 +14287537 +9745258 +2400017 +12390278 +17958846 +14542471 +1017214 +10943250 +3225766 +8799577 +17118679 +10854122 +3508881 +3414509 +17396550 +17266789 +19282667 +2929545 +2531743 +17409002 +2936754 +10687661 +5166278 +10842980 +17655416 +5835398 +500792 +1177776 +18021105 +2919715 +20110383 +904492 +20723142 +14883912 +18673841 +4394923 +5699084 +8726833 +20421678 +2223070 +15459970 +18237373 +9097765 +13301224 +7663188 +9141674 +2350210 +14726626 +14583103 +4669518 +10567731 +3529852 +14220690 +2460310 +20417746 +5796076 +2281397 +19013316 +3761848 +9646299 +13361517 +7345340 +6306600 +2627426 +736721 +5545730 +16009159 +4100668 +10308209 +4187175 +9196724 +15473077 +21217281 +19129314 +3267709 +15088383 +17531554 +8003974 +20020599 +6521557 +7119898 +9540786 +3212004 +10871161 +15239115 +15172924 +2419677 +11784728 +5180041 +16507231 +1100444 +1529047 +11187698 +17270722 +1544776 +7968585 +6511071 +2350865 +2338413 +14553612 +6542528 +17601021 +8576756 +18255068 +15805999 +9445759 +11085463 +8692099 +18103025 +7451508 +10475325 +6017587 +5119093 +19708649 +811431 +5232470 +6585126 +9466075 +10192866 +7444955 +9914995 +10044756 +5650587 +7219512 +11590087 +16323731 +17364438 +9154126 +2315476 +10484500 +10423552 +7258178 +20829965 +17998823 +9466075 +277971 +13994592 +14673542 +4411307 +19471410 +3091418 +10236775 +13775703 +5773794 +14793472 +428703 +5595537 +6772558 +19049360 +5709569 +9474595 +15032678 +19510076 +17395239 +12426323 +4094770 +1907188 +4906757 +14973040 +20552749 +14830828 +19696853 +11959709 +8078029 +2426886 +12662907 +16861123 +16344702 +7064192 +1913086 +1412394 +19770908 +17884136 +14414676 +19650978 +20496389 +18868482 +8895260 +1671915 +4109843 +6248273 +19573646 +1569679 +14524776 +13503730 +19416360 +19797123 +2414435 +21149779 +201949 +12622275 +14258701 +4300552 +4303173 +3469559 +11334498 +16683522 +4178000 +6901664 +14556888 +5757410 +8729454 +2135252 +14817065 +9219661 +13342512 +10448456 +1139765 +19529737 +968717 +19455026 +18745275 +16421379 +19081473 +1877697 +8045262 +12368651 +3006222 +8013149 +2372492 +9681688 +14691892 +21179271 +5983509 +14854420 +9082692 +6307255 +1283944 +8829069 +11905969 +12769730 +8110797 +18804257 +14303265 +9983807 +21246117 +18458228 +17155379 +4082973 +6699814 +16950907 +2974109 +6815157 +19163392 +20634014 +10510059 +18413664 +19862658 +13090855 +4052172 +3628811 +15572036 +2487835 +13212751 +1181708 +12111096 +2708690 +20430853 +2234211 +16539999 +18713818 +7562264 +17315286 +10873127 +9970700 +3854909 +10240052 +2677233 +9785890 +9814070 +11086773 +10947838 +9290440 +4324800 +876312 +6733237 +20149049 +16911586 +8863147 +10493675 +10641786 +57116 +15081174 +599751 +329089 +20327306 +13158357 +6747655 +7966619 +9306168 +19314780 +21225145 +9013879 +1112240 +17483057 +15908234 +5434975 +11594020 +13018766 +20038294 +20537676 +13533221 +13136730 +9799652 +14171538 +475889 +20645155 +15705729 +3480045 +13691817 +9427409 +5549662 +19455026 +17513204 +11210636 +13349066 +12689121 +12951264 +2881704 +7619280 +4292032 +17133097 +3069792 +12345714 +15554342 +19301017 +2833208 +16950252 +7886010 +13345789 +10312797 +16815904 +10872472 +2880393 +6001859 +21316895 +4250745 +14396981 +2582206 +5842607 +10812834 +14508392 +5978266 +9837663 +9001427 +3053408 +7164462 +13749489 +14826895 +6252205 +16117949 +11647759 +6287594 +5476918 +9750500 +19792535 +18458884 +19749282 +19969482 +8405708 +18000134 +12449916 +18946469 +12331296 +14098139 +12147796 +21018708 +21282162 +14598831 +10671277 +15353802 +12737617 +5159070 +6846614 +19952442 +7361724 +11163450 +16724809 +21444035 +16087147 +12200225 +10700113 +5349778 +16427277 +5066664 +6364926 +13063985 +20437406 +6575951 +19806953 +741308 +6825642 +12965682 +18286525 +16151372 +15836145 +7823096 +6508450 +17717675 +7624522 +13847137 +2873840 +2132631 +18968096 +1203990 +16443661 +982480 +4273027 +12859514 +17238609 +11483920 +3108458 +18991689 +10592634 +1578854 +20221794 +11202771 +14917335 +11547489 +2564511 +20428231 +10648995 +19937369 +7958754 +10907861 +3324070 +3986636 +5044382 +21328037 +10860020 +12670771 +419528 +11563873 +10616882 +16819836 +18520487 +882865 +21389640 +20166744 +7390560 +20470174 +12297218 +2495699 +11917111 +15157195 +7004555 +6949505 +492928 +11784073 +10817422 +7093028 +8812029 +1887528 +230130 +16115983 +8223519 +6462575 +10497607 +9344179 +12026555 +6719474 +2453756 +15070033 +20413158 +15303995 +16605534 +9300270 +16790345 +14853765 +16552450 +12373239 +2733593 +16888648 +15642815 +1573612 +5125646 +10852811 +17787798 +16224117 +21271020 +13358240 +1262972 +4950011 +7331578 +8924095 +13280253 +6353785 +4711461 +13727862 +2880393 +19519251 +15836801 +10727638 +18266864 +5248198 +3122875 +9135120 +9582729 +18710541 +9106285 +19550708 +13575164 +12461057 +19938024 +4468323 +4105911 +19166669 +21179926 +3482666 +13147871 +16782481 +18410387 +20460999 +20968246 +13720653 +20629426 +858617 +5408105 +344817 +16656652 +1839686 +14012287 +3689759 +6939019 +2906608 +4681970 +20582240 +13586960 +18060427 +5806562 +1645701 +2204720 +129860 +19405219 +4959841 +3415820 +5024721 +3508881 +4655100 +2561235 +20650397 +1540188 +10098495 +14334722 +14138771 +3311618 +2415090 +18197396 +10160754 +13423776 +401178 +21018053 +2343656 +19046084 +20286674 +8679647 +4484707 +10755818 +5166934 +10139782 +644315 +6100162 +3954523 +14231831 +14898329 +14817720 +9964147 +5620441 +16886027 +2762429 +18148245 +10532341 +12784803 +8199270 +11738853 +10663413 +16374849 +16560315 +7822440 +2411158 +13599412 +5015546 +1453026 +16899134 +1823303 +20651708 +2249940 +12863446 +2464897 +16424000 +3090763 +16212320 +20814237 +17325772 +10416998 +10317384 +2037604 +18837680 +18713818 +15253533 +14891120 +18291768 +15736531 +10390129 +3463661 +10712564 +8411606 +9688242 +4190452 +6172907 +5662384 +8528915 +18141036 +7598308 +12522660 +4073798 +6324294 +6062151 +14720728 +1229549 +14049642 +18399246 +8108176 +12955851 +11633996 +9437895 +9167888 +9947763 +15825659 +2845659 +15066101 +213746 +14815754 +8139633 +21291337 +315982 +3512813 +3443345 +918910 +14370767 +17015788 +9546684 +17961468 +18792460 +18004066 +939881 +13777014 +4463080 +19877732 +11499648 +18823918 +9875674 +739998 +8696686 +6593646 +3668788 +11529139 +1378971 +13173430 +1071608 +11893518 +19420948 +18445121 +14969108 +8948343 +810776 +19089337 +11373820 +11008130 +19006762 +4157029 +6870207 +6372135 +5694496 +5674835 +5378614 +16129090 +3059961 +20949896 +19183709 +1552640 +14803958 +513899 +408387 +18661389 +17583327 +20488524 +13794708 +13960514 +18129895 +17280552 +4517475 +19019214 +9074172 +19420292 +7284392 +9036817 +9375636 +18237373 +136414 +11274861 +20898122 +4162927 +12965026 +7662533 +1143697 +19013971 +16296206 +2706724 +5805907 +20918438 +7073367 +15778474 +21327381 +13524701 +10266266 +3813622 +6205019 +21402747 +5023411 +10378988 +4814352 +19689644 +9574865 +10279373 +14990079 +1176465 +11495716 +3344386 +9994949 +9722975 +20484592 +19837755 +10862641 +1068331 +16156615 +11330566 +8461413 +4171447 +3587524 +19601826 +17802216 +14652571 +13540430 +17598400 +20987906 +7572094 +2398706 +8294953 +16906998 +16513784 +4141300 +11692978 +19968826 +483098 +16940422 +10426829 +11232263 +3942727 +19659498 +21066549 +6343955 +9363184 +8859870 +17995546 +7422672 +9097110 +616135 +5804596 +3305065 +18068291 +16605534 +10028372 +26969 +17214361 +20240799 +2990493 +9743291 +150832 +15587110 +7028803 +1439919 +5616509 +17129820 +5326186 +20795887 +7524253 +17245818 +9987084 +10116190 +17616095 +3029815 +3489875 +8137667 +14857697 +20485247 +17244507 +2930200 +13616451 +15611358 +20449858 +10321972 +13609242 +8734697 +11824705 +16132367 +14810512 +9500809 +8870356 +11065802 +12112407 +14121076 +5138098 +14230521 +2599901 +7693335 +19636560 +13488001 +6130309 +12529869 +8211067 +19259730 +3236908 +19430123 +18734134 +9656129 +5784280 +14617837 +16332906 +6512382 +14086342 +3706798 +18194775 +17247784 +11476055 +9194102 +7127106 +17701946 +7739865 +7266698 +5714812 +11517998 +3238874 +16651409 +16468565 +19107032 +13970344 +4630196 +16545241 +10275441 +7925331 +16241156 +13072505 +20108417 +361857 +19980623 +4058725 +11219155 +8027567 +4873989 +1256419 +1124692 +2584172 +15511088 +2902675 +17860543 +14233142 +15660510 +8273326 +16043238 +10394061 +18682360 +4937559 +3702866 +1091924 +10284616 +20641222 +18152177 +17377545 +15936415 +20384978 +7956133 +6414078 +10285927 +19795157 +10884923 +19692266 +20897467 +2081513 +19186330 +7876835 +16277200 +9685620 +7974483 +6756830 +16406306 +19373762 +11975437 +6324950 +15745706 +14848522 +17768793 +8308060 +6611996 +15939036 +7735933 +15113942 +15012361 +6001859 +8748460 +4564005 +7328956 +10524477 +9365151 +19928849 +9454934 +10852155 +6589058 +122651 +17593813 +10460252 +3008188 +16453491 +20836519 +2114281 +622689 +3917168 +15393779 +3021950 +5450048 +18500827 +8468622 +13688540 +3316206 +1109619 +20491146 +3157609 +6824987 +15152608 +19283978 +12568535 +5058145 +2839106 +9619429 +7269319 +1905222 +5737094 +18471991 +20390876 +17523034 +2014011 +6153246 +3363391 +2597279 +5282277 +1968792 +12187118 +12354889 +6947539 +672496 +16095011 +10179104 +20440683 +4257954 +352026 +12852305 +2518636 +3052097 +14916024 +11692323 +17361816 +1483828 +3185134 +16543931 +10657514 +11341707 +7437746 +491617 +10357361 +10519234 +5382546 +6341989 +13921192 +4804521 +17369025 +20958415 +13669535 +18922876 +17847436 +7336821 +21347042 +4060691 +11454429 +1150251 +6656560 +3474802 +597130 +17420143 +18874380 +5071252 +11625477 +17623304 +19775496 +15827626 +13843860 +5022100 +19089337 +1702062 +5833432 +4604638 +19242035 +13138041 +17422109 +16903066 +17017098 +10974052 +1145663 +2711967 +19852173 +13508317 +5761998 +9460177 +2285329 +15099524 +4373297 +2338413 +17962779 +17890034 +5957294 +4840566 +6184048 +13572542 +16108774 +4470945 +2308267 +20567167 +3362736 +13509628 +11824705 +13524046 +16722188 +19766321 +21196310 +852719 +9455590 +2464897 +6566776 +1283944 +8720935 +5890448 +5422523 +3367979 +14271808 +16444972 +4921175 +2525845 +8110142 +809465 +12632105 +6258103 +16688765 +1186296 +20446581 +16252297 +6224680 +1074885 +12654387 +6836128 +3706798 +15903647 +8120628 +15882020 +9407093 +14587035 +8382770 +2546817 +7576026 +18964164 +13404115 +17450945 +6208951 +8667195 +19752558 +17552525 +4543034 +21311653 +12609167 +171148 +12436153 +11143789 +16716290 +3165474 +20297815 +6357717 +2904642 +1474653 +768833 +20842417 +15963940 +20127423 +12617032 +2876461 +19851517 +21467628 +15602838 +6667046 +19267594 +15561551 +3652404 +10266266 +18030936 +15964595 +662665 +16732018 +8195338 +10621470 +10890822 +12385691 +1321299 +21064583 +5109262 +11012063 +16672381 +11658245 +13014833 +15557618 +16269336 +1228238 +16524270 +18794427 +2219138 +9968079 +15082485 +3352906 +8561683 +695433 +585333 +19646391 +9775404 +5698428 +19750592 +1435987 +15041853 +18410387 +18594543 +20337792 +5359609 +12968303 +11928907 +16241811 +4071832 +14480867 +14824274 +5599469 +2314820 +3242806 +21269710 +19291187 +8493526 +5220018 +3835248 +20416435 +7704476 +1717135 +4816973 +20086135 +14312440 +10550691 +13517492 +18780664 +3607840 +14590967 +764246 +12843130 +13124278 +4094770 +20080892 +15777163 +6259414 +1970103 +16470531 +11810287 +3542959 +16266059 +3837215 +6130964 +9760331 +3780198 +15790926 +3366013 +6049044 +3829350 +18407111 +14283605 +7637630 +10668656 +5733162 +8180265 +5356987 +1315401 +15648713 +18314705 +6349198 +9381534 +7682849 +17208463 +13583028 +17418832 +6132930 +5384512 +9264226 +9361218 +20578308 +16271302 +17986371 +19986521 +18291112 +8396533 +14058817 +7594376 +18981859 +13316298 +6550392 +9582074 +6558257 +16487570 +2065129 +20574376 +7519010 +3942727 +6992103 +9840940 +9165267 +17058386 +5463811 +11571082 +2847626 +4029889 +10342288 +17557113 +18698744 +19006762 +16098943 +13860899 +7564885 +20632703 +15319724 +19881008 +16415481 +14225933 +15089694 +20414469 +19018559 +4080352 +230130 +14199719 +19968171 +6208296 +15865636 +5121059 +8585276 +17507961 +15659199 +9226215 +15714904 +19861348 +13246174 +11120852 +272073 +1059156 +11418384 +7303398 +11814875 +6632312 +10368502 +5597503 +12415837 +11206704 +20504908 +10858054 +18851443 +10013954 +16087802 +16429899 +12803809 +11795869 +12887694 +10074247 +928085 +11615646 +12846407 +13826821 +16068142 +11363989 +20415124 +16192004 +11983302 +16138920 +2396740 +9397263 +1219719 +9873708 +17445702 +11598607 +1926849 +10188279 +509967 +7581924 +14415331 +12555428 +8171745 +9973322 +1277390 +9670547 +2168020 +2713933 +5963193 +3480700 +19992419 +11744096 +18565707 +2495043 +3122220 +245858 +2876461 +7723481 +2937409 +5178075 +15591042 +1344237 +13394940 +19179121 +15678860 +5879307 +201949 +13104617 +3470215 +13217339 +19787948 +11283380 +1574267 +1594583 +9992327 +13478171 +1783326 +11668730 +4751437 +19222375 +12845751 +5879307 +11105779 +12945366 +11145755 +19096546 +160662 +15238460 +15070033 +2629392 +1943233 +15720802 +20671369 +19922296 +4178000 +226198 +19410462 +2733593 +9981186 +16628472 +7388594 +5302593 +18925498 +19580855 +13575164 +14966486 +7306674 +18294389 +13495210 +20523914 +15665097 +9945141 +13575164 +19561850 +11356780 +8081962 +819296 +334332 +20786056 +13701648 +57771 +8899192 +5819669 +2129354 +19344926 +14981560 +462126 +9606977 +18377619 +9396608 +3798548 +6174217 +2615629 +3539682 +16424000 +3811000 +12927016 +20191648 +17023652 +541424 +6051666 +3839181 +8614111 +16180863 +18476578 +18928775 +17017754 +13707546 +7724137 +20012735 +20755255 +4887096 +21345076 +13180639 +17047900 +5281621 +1717790 +97092 +9844216 +8425369 +5788868 +8656054 +17183559 +9367117 +19019214 +9591249 +12667494 +11144445 +13810437 +1567713 +5720055 +1432710 +11502925 +21158954 +3612427 +4736364 +3645850 +16630438 +16978432 +4094114 +7036012 +7652047 +2127388 +9458211 +840922 +18896007 +9250463 +2303679 +20307646 +16355843 +327123 +12142553 +5054868 +76776 +13861555 +11553387 +20030430 +9684965 +11392825 +14260667 +17658693 +3119599 +18489686 +19904601 +16935179 +9216384 +2552060 +18252446 +18330434 +20619596 +14223312 +18610271 +14865562 +6186669 +13269112 +16536066 +19499591 +3297856 +13092166 +13941508 +18245893 +3513468 +7692680 +4678038 +5358953 +1410 +14599487 +20224415 +10017231 +17561045 +19694232 +18721682 +13150492 +21223179 +7145456 +12613755 +7422017 +18160696 +10680452 +3403368 +13126899 +12678635 +4352325 +11397412 +2361351 +164594 +20000939 +5174798 +16677624 +3363391 +8907711 +18662044 +1073574 +14737112 +6655249 +2835174 +4609225 +20073028 +11306973 +594508 +12807741 +10052620 +5071252 +20023876 +19166669 +4609225 +2016633 +1313435 +8973247 +18279971 +15127049 +4172102 +11778830 +12839853 +18534905 +1691576 +3083554 +1650944 +12975512 +8787781 +4878577 +8423403 +12598682 +17079357 +15268606 +1860003 +18234096 +13352342 +9438550 +2814858 +9987740 +4446697 +7268008 +12979444 +2803061 +3598009 +20360730 +4684591 +4577768 +8427335 +2636601 +7377453 +6376067 +11525207 +3807068 +14963865 +16133677 +9399229 +5628305 +7273906 +7674330 +7771978 +5330773 +3111079 +11209980 +10477291 +19397355 +8656054 +2377079 +11424282 +13727862 +14900951 +9263570 +19812196 +13200955 +15254188 +8574790 +9232113 +10110947 +3732357 +8918852 +14100105 +10395372 +10770891 +21216626 +6362305 +8929338 +8213688 +13552882 +12149762 +18053873 +19701441 +1461546 +15406886 +5037828 +10311486 +5878651 +812087 +12960439 +20512772 +8290365 +5130234 +20082858 +10932109 +372342 +13917915 +5445461 +11827327 +21426340 +2223070 +11995098 +815364 +1749903 +20623528 +9268813 +16868332 +13894322 +2467518 +12639314 +20004215 +19816783 +9717077 +3456452 +4693766 +16528857 +13431640 +21200242 +5262616 +11836502 +12185152 +14923233 +7383351 +2633979 +13958547 +18359269 +5238368 +10120777 +19085405 +21252015 +3689104 +804878 +2227002 +15364288 +11770966 +5347812 +9484425 +17215016 +20117592 +6433739 +3557377 +9152815 +8628529 +15090349 +2547472 +8816617 +19947855 +14001146 +16469220 +15321690 +1454337 +15456038 +4944112 +20759187 +9684965 +19847585 +4380505 +7135626 +7450197 +14985492 +3884400 +9958904 +19346237 +16886027 +18833093 +18294389 +4792070 +13132142 +5791489 +7227376 +21006256 +2741458 +3283438 +1413049 +13581062 +15108044 +13231757 +14678129 +352682 +1307537 +7600930 +575503 +7678917 +17204531 +4532548 +2457033 +9450347 +11828637 +18702021 +15189963 +1025733 +5533278 +1978622 +4790759 +7444299 +14352417 +8614111 +6111303 +7795571 +11141823 +13848448 +14710897 +4586943 +10078834 +6704401 +1083405 +5234436 +6746999 +608926 +21046233 +15684758 +10707322 +2790609 +20337137 +6556291 +10165997 +15591042 +15889229 +16227393 +19728310 +3260500 +15600872 +7676951 +7901083 +4754714 +15483563 +8568236 +5666316 +3976150 +15812552 +1053913 +20983319 +17156689 +8633772 +4901514 +17587914 +8813995 +7079921 +13688540 +12451226 +10087354 +4438832 +12913908 +13391008 +7937128 +19330509 +18958921 +1519217 +481132 +7541947 +2652329 +2154258 +1704028 +11644482 +1466788 +19366553 +4269095 +6809258 +4918554 +6644764 +5784935 +7224099 +3089452 +13929712 +21362115 +20373837 +19082128 +17766171 +16013092 +5566046 +21394228 +4335286 +1846895 +3783475 +9471974 +5378614 +18871759 +15428513 +18110234 +12533146 +8133735 +7787706 +11827327 +6967855 +4663620 +15321690 +16185450 +8352624 +14725315 +5953362 +6210262 +14987458 +4839255 +13316298 +6252860 +18298321 +11308939 +14872770 +7351894 +6465851 +3162852 +12904733 +6106716 +11553387 +1164013 +13046291 +7357137 +7521631 +21360804 +13754076 +15487495 +14147946 +2253217 +2034983 +6995380 +20963658 +14178092 +4408030 +16501332 +323190 +8047228 +16611432 +6723407 +10272165 +3345697 +11362679 +19671949 +12073741 +15458660 +19481241 +395935 +4371330 +20956449 +11234229 +5307836 +12930292 +12510209 +2704102 +14605385 +1076851 +12578366 +6678187 +17870373 +12868689 +11637928 +16629127 +386760 +12814294 +746551 +8353279 +5334705 +13362173 +21255292 +18991689 +6777801 +18383518 +14920612 +8833656 +4827459 +8810063 +19997662 +16589806 +13466374 +14045055 +2646431 +12890316 +8830379 +1382903 +19554641 +5645344 +2344967 +13605965 +1106342 +16771340 +5864234 +7820474 +1334406 +11478677 +10273475 +18973994 +10700113 +905803 +2382977 +15219454 +6141450 +12764487 +12733685 +4136057 +163283 +450330 +4401477 +14676819 +11782107 +8049194 +3430893 +19932126 +268796 +17458809 +1812162 +5395653 +6636244 +9795720 +12167457 +11601884 +6936398 +10904584 +19803676 +12219885 +1483828 +8901813 +18017829 +14827551 +15878743 +7488864 +1171222 +9214418 +1067021 +17060352 +15514365 +125928 +16981709 +11130682 +13429019 +6988826 +21288060 +15170303 +19094580 +9831765 +12842475 +11775553 +7640906 +3120909 +1715824 +1068331 +5805907 +7861762 +18517866 +7621246 +9424788 +10428795 +21423063 +7729380 +11020582 +589265 +21006256 +19299051 +12001652 +12758589 +2116247 +6048389 +12084882 +20827344 +5843262 +10095874 +772765 +20102519 +15239770 +14303921 +7928608 +17850057 +7846688 +12873932 +2057265 +8280535 +11949878 +6311187 +15455383 +18539493 +14235108 +12714680 +5665005 +899249 +6737169 +4779618 +4197005 +1305571 +20741492 +14782987 +19004141 +14406812 +6043146 +16306691 +5450048 +19647701 +4522063 +18236718 +16497400 +16567524 +3981393 +1261006 +9344834 +17021686 +7117931 +3562620 +20530467 +5737094 +2215861 +7410221 +14929131 +20194269 +5354366 +19228273 +13291394 +17652795 +11054661 +16330940 +18504103 +2426231 +21148469 +2586138 +1611622 +16806073 +10274131 +17978507 +4652479 +17773380 +19251866 +747206 +20069096 +15977702 +20002249 +12787425 +4368709 +5214120 +951022 +18323880 +7931229 +15922652 +2487179 +5713502 +5552284 +14215447 +14551646 +7452819 +10896720 +1429433 +2777502 +13699681 +16512474 +14233142 +18228198 +78742 +20456412 +15223386 +12905389 +667253 +3302443 +18271452 +3251325 +17442425 +9207865 +9067618 +10564454 +19194194 +1540844 +5122370 +12524626 +14465794 +11807011 +8937202 +459505 +554531 +16167100 +5347812 +11485886 +9355976 +15326277 +14435647 +15401644 +9139052 +9782613 +7413497 +19388835 +11879100 +2626770 +19015937 +12705505 +16385990 +1047360 +6089676 +7045842 +8013804 +19885596 +666598 +9500809 +10251848 +15440965 +21323449 +12002307 +968717 +10583459 +11922353 +5973678 +10728948 +17228779 +1690920 +20175264 +1201369 +17253027 +4121639 +18671219 +12887694 +15914788 +20434130 +497515 +8380804 +20836519 +8686201 +9113493 +7763458 +3577038 +12480062 +6669667 +6776491 +18950401 +9696106 +8365076 +16668449 +2266324 +18801635 +2430163 +17013166 +20938099 +1690265 +8066233 +10070315 +6709644 +14701722 +11621545 +10929488 +2652329 +17931321 +4474877 +11696911 +15599561 +9217695 +13253383 +11651691 +14251492 +303530 +2238799 +1312124 +1144353 +7627144 +11041554 +13818956 +11504891 +4746195 +20856180 +2713277 +10150924 +8843486 +19736830 +3128774 +11901382 +12092746 +17920836 +13346444 +10094563 +16240500 +11183766 +10778755 +17226157 +10025095 +8323133 +11779486 +17042002 +18943193 +13391008 +9532922 +3241495 +2554681 +14337999 +57771 +11517343 +8019703 +19013316 +16479706 +19426846 +11449186 +18395969 +16541965 +7370899 +6093609 +3887022 +15943624 +12230371 +5177420 +4442109 +11840434 +15959352 +2999668 +12681257 +3187756 +16079938 +13082335 +1972724 +17335602 +13012212 +12243478 +11003543 +20065164 +3476768 +16746436 +3913236 +5011614 +15554342 +12027211 +19369830 +10822009 +16946975 +5105330 +16025543 +18397936 +11189664 +7074678 +13626281 +13436228 +3035058 +33523 +1629317 +16292929 +18919600 +17975230 +21340488 +20791955 +14046365 +9450347 +800290 +9076138 +2320063 +19533014 +6117201 +5589639 +4455871 +15326277 +16037995 +15172269 +153453 +21374567 +12305082 +1631938 +16549829 +18058461 +7983658 +9461488 +1962894 +11666109 +11736232 +5259339 +3677963 +8367697 +1203990 +13959858 +19630662 +146899 +10848223 +19054603 +21258569 +17043313 +20854869 +8649501 +11289934 +10156822 +10165997 +1594583 +12453848 +6311187 +10556589 +6050355 +1202024 +19666707 +9422167 +2420333 +4545655 +10845602 +10654238 +10373090 +9034851 +1629317 +15355769 +9788511 +7347306 +13031873 +17034138 +11556664 +3312929 +20695617 +9247842 +5111228 +204571 +3445966 +14431060 +14214137 +7862417 +21238908 +3044233 +9343524 +7575371 +11810287 +12409939 +15568104 +17677698 +15340695 +12257241 +13947406 +5497234 +1046049 +19616900 +18285870 +3366013 +5028653 +10082111 +11174591 +2535676 +10968154 +20708724 +13786844 +4176034 +3837215 +13043014 +16294895 +16048481 +14757428 +20394808 +443121 +8965383 +7361724 +19002830 +17349364 +8175022 +3601286 +4259264 +15208969 +11648414 +20186405 +12279523 +2748667 +17795007 +20331894 +9648265 +6865619 +4904136 +10334423 +14396326 +2293194 +15987533 +13213407 +5961882 +1863935 +19519907 +5988751 +8669817 +12766453 +406421 +3797893 +13857623 +4419172 +16093700 +12359476 +17803527 +1375038 +6435705 +10503506 +12387657 +17393929 +15646092 +6401626 +12367996 +8506633 +13657083 +7093683 +20620906 +12187773 +18163973 +9373670 +15239115 +6217471 +5323564 +1947165 +10149613 +19415705 +9734772 +1025078 +15448829 +6359028 +9047958 +1903911 +13552882 +18260966 +15307272 +18999553 +13565333 +10330491 +11317459 +11006820 +20799163 +11054661 +3818209 +13962480 +5334050 +15205036 +3553445 +21189756 +7178880 +3890954 +10750575 +18802946 +10958979 +11795869 +9368427 +16391233 +6873483 +679049 +5674835 +9127256 +21158954 +17628546 +7143490 +11554698 +17409657 +10601809 +20178540 +13404115 +10340322 +15952143 +5607989 +19166014 +14168262 +4584977 +20776881 +303530 +16873575 +15550410 +14731213 +7722826 +10535618 +14025394 +20731662 +15684758 +11312216 +16601602 +19297741 +2485868 +13356930 +6729305 +1285255 +10879680 +3512157 +11433457 +19592651 +6374757 +2552715 +12484650 +7372865 +6524833 +2114936 +20173298 +10347531 +20181162 +20791299 +4365432 +9798341 +12111096 +19666051 +10974052 +5315700 +11784728 +8152740 +8202547 +6315775 +1911120 +15990154 +5455946 +114787 +6165042 +4544345 +10727638 +18023727 +11699532 +16054379 +4304484 +2171297 +17028239 +11202771 +9988395 +2542885 +12670771 +15759468 +12179909 +20402017 +13343823 +5210187 +14763981 +6099507 +13529944 +19273492 +11631375 +14633565 +6665080 +21111769 +14445478 +17652139 +4206180 +14617181 +14854420 +19500901 +1553951 +20474762 +5297350 +18966130 +20356798 +16365018 +20416 +13331371 +2375113 +353337 +8656054 +15906924 +6554324 +3653059 +11352848 +4467013 +12040318 +18538182 +16659274 +7987590 +15009085 +11192286 +14927820 +12890316 +1218408 +6740446 +15815174 +3554100 +9697416 +8225485 +4118363 +11589432 +19822026 +15960663 +2523879 +16174965 +6029384 +16382713 +11086773 +20930235 +21266433 +13567299 +12015414 +20772949 +9194758 +15481597 +2850902 +12439430 +797669 +5184628 +10392095 +19808264 +8878220 +2327927 +5516894 +8541367 +18392037 +8937202 +14832794 +4773720 +8869701 +9256361 +5716123 +13190469 +20331239 +10908516 +12478096 +6280385 +5673525 +17979162 +15781751 +9600424 +17797629 +9179684 +107578 +17965400 +2016633 +4967050 +2029740 +3617670 +21187135 +17604954 +15765367 +8997495 +12297218 +10993713 +19726344 +5347157 +9328451 +7847999 +12006894 +3680584 +17037414 +20085480 +17891345 +13467030 +19487794 +4421793 +268796 +13424432 +16653375 +12959128 +1108963 +2227002 +14580481 +10619504 +15383294 +14346519 +12749414 +1662740 +11495061 +18503448 +23692 +1551329 +7617969 +13457199 +2831242 +2486524 +16709736 +2367904 +3686482 +5763964 +5832776 +10156822 +9920238 +11546834 +4662309 +18359269 +4838600 +17751098 +14891120 +3367324 +18211159 +4536480 +5744303 +16997438 +5372061 +20515394 +12381759 +1344237 +8053126 +3582281 +21102594 +7001933 +7063537 +10820043 +1725654 +12702884 +4351670 +17937220 +7292912 +15443586 +2268290 +5646655 +14267876 +18650248 +9544718 +8831690 +3196275 +7635008 +20975454 +8391290 +17426041 +12331296 +14421229 +7334199 +12664217 +2977386 +19494348 +20689064 +8053126 +19375728 +894006 +20147083 +7956133 +218333 +18781975 +13980174 +11850919 +13764562 +1135178 +2510772 +11026480 +12764487 +19968171 +11130027 +10305588 +8173712 +19815473 +5591605 +16433831 +20788678 +19206646 +20408571 +9894024 +18154798 +12712714 +4433589 +13569265 +11909246 +14465138 +15109354 +17334947 +7524253 +7593721 +7762147 +833714 +3085520 +4271716 +1747937 +6794185 +8239247 +2288606 +20153637 +13236344 +775387 +21350974 +5043071 +7876835 +6729960 +5045037 +6885280 +13091510 +6718164 +7884699 +12641935 +13773081 +4716048 +2395429 +11798491 +8884774 +4936904 +4843843 +8417504 +10200731 +18286525 +4877921 +20141185 +15762745 +15840733 +11144445 +8456826 +17765516 +15236494 +20274223 +17372957 +7971206 +2696238 +6546460 +13836651 +18897973 +5410071 +18799669 +7706442 +13557469 +16998093 +9453624 +9025020 +5581775 +4882509 +19084094 +13853035 +7758871 +2932822 +19282012 +5922560 +19036253 +2825999 +15778474 +15031367 +13071194 +12546909 +15203070 +4691145 +9538820 +16956806 +6484857 +16509197 +19479275 +15575313 +11253889 +207848 +10323282 +1346858 +10626713 +14456619 +3997122 +12604580 +17502718 +12687155 +2772915 +14611938 +15849252 +6428496 +6589714 +596474 +14627012 +13607932 +9787856 +4242880 +2259770 +4539102 +4759957 +5519516 +6344610 +4652479 +9297649 +1640458 +1569679 +8361144 +16308658 +10288548 +20840451 +13423121 +11517998 +19186985 +19329853 +1995661 +773421 +14242317 +18236718 +5954673 +20787367 +14427128 +13542396 +18240650 +10500229 +9405127 +4765855 +16652065 +10816111 +7254901 +15537958 +12177943 +11552732 +2376424 +10034925 +1740072 +20738215 +6516969 +6581194 +16610122 +18681705 +17438493 +13290739 +17521723 +6885280 +3718595 +1166635 +21017397 +7497383 +16443661 +11955121 +14775778 +8626563 +12365375 +14895053 +3514124 +11861405 +14661746 +17680320 +904492 +5514928 +2619561 +2813547 +8446995 +19950476 +6037903 +1406496 +11499648 +2594002 +10432072 +4454561 +11923009 +12594094 +19980623 +2158845 +20164123 +288457 +13141317 +1650944 +4774375 +15032022 +9041404 +13049567 +1342271 +20654985 +1029010 +4519441 +13780290 +11769000 +18449053 +9545374 +17309388 +18217712 +8606903 +538803 +18201984 +3701556 +14726626 +12634071 +7197885 +18959576 +19744039 +2953793 +19323300 +14241662 +17647552 +15089038 +8206479 +15052994 +4323489 +5227227 +5301937 +1488415 +20122835 +7055017 +14419919 +1848861 +535526 +13332682 +4606604 +20043537 +18150211 +15052994 +10108981 +6818433 +6579883 +5573255 +13284185 +9703970 +492928 +4087561 +5721366 +3066515 +3903406 +13200299 +10820043 +5593571 +5474296 +7921399 +12124859 +8067544 +4594807 +21170096 +146244 +18124652 +8651467 +15073310 +17543350 +2544195 +15565483 +11182455 +7391871 +12278868 +6450778 +18563086 +10116190 +13097408 +5413348 +18133171 +19892149 +7678917 +16588495 +14653226 +3154333 +14982215 +2824688 +6718819 +12779560 +20293228 +16747747 +15012361 +20118248 +20105140 +4377884 +19160116 +21208762 +17551870 +14792162 +7876179 +17869062 +6640176 +13891701 +14222656 +519798 +15743084 +14290158 +18529662 +5864889 +12397487 +20024532 +20312889 +11208014 +19023801 +4193729 +11411175 +17725539 +5387789 +19510732 +1340960 +20026498 +14809201 +15632985 +20386944 +21056063 +4027268 +133137 +15182099 +4427036 +4053482 +9589938 +13277632 +1750558 +17497475 +12276246 +20487214 +16733329 +2004836 +3483977 +6024141 +8034121 +20998392 +6944262 +19039530 +14773156 +9434618 +7165773 +18483132 +3911925 +8848729 +20057299 +18253102 +17319873 +18759037 +4547621 +687569 +4478154 +18056495 +15836145 +7102858 +4521407 +12110441 +2339724 +8758290 +20635980 +14989424 +12044250 +9890747 +14282294 +15779784 +17049866 +7685471 +6500585 +10216459 +14642740 +3118288 +5111884 +17754375 +237994 +9661372 +2759152 +14968453 +19546776 +17572841 +827815 +6058875 +2684442 +11075632 +3545581 +11026480 +17077391 +17618716 +1721067 +20506219 +19114241 +7367622 +19270216 +19924262 +20563235 +8652777 +5775760 +3134672 +7408910 +21295924 +13285496 +13777669 +11730989 +7661222 +11107745 +5653864 +17872339 +15777818 +13035805 +11337775 +17629202 +5722677 +21075724 +2299092 +3065859 +13429019 +9141674 +15659854 +18438568 +8357212 +9137742 +16746436 +16864400 +14774467 +7494762 +8148153 +8289054 +3398125 +15231906 +4759302 +8183542 +15781095 +19607725 +20447892 +15809276 +6710299 +8627219 +7950890 +3934207 +17334947 +12706160 +5007682 +19992419 +13954615 +11148377 +20320098 +15491427 +5195114 +12820192 +19712582 +19064434 +8724867 +8342794 +18536871 +12267727 +7788362 +17295625 +17918214 +16141542 +5583741 +13652496 +5644034 +5349123 +17108193 +17355918 +16977777 +7568162 +20614353 +6421287 +3761848 +4963773 +8927372 +1879663 +1016558 +16889304 +12453193 +1439263 +17260891 +2111660 +19387525 +6805326 +8930649 +2665436 +8536124 +13792087 +9355976 +17304145 +20263737 +16906998 +21054753 +5183318 +8544644 +4921830 +20976765 +1658153 +914322 +20565856 +9580763 +16687454 +8650811 +3173993 +2404604 +19854139 +20716588 +2812236 +2390186 +4614468 +17707189 +12274935 +1934713 +6281041 +17215672 +5468398 +9994293 +1941267 +958231 +8397188 +2884325 +17781245 +14246249 +18182323 +8838899 +6939019 +8973247 +4333320 +10246606 +16640268 +21352940 +994276 +2455067 +14462517 +19353446 +8977179 +445087 +21328037 +11059904 +16956806 +10139782 +6975064 +6611341 +10965532 +13354308 +2230279 +16928625 +2375768 +4622332 +12682567 +3990568 +7956788 +47941 +16283754 +8825136 +12172700 +13486690 +16024233 +6916082 +17115402 +6089021 +703298 +17821877 +16967291 +19263662 +21177960 +18711852 +2382322 +3172027 +20358108 +16829011 +3487254 +1789224 +10869195 +2365283 +19179776 +13356274 +2442615 +7921399 +13240932 +15467835 +15243047 +17512548 +18200018 +10500229 +10699457 +15709006 +12074396 +779319 +11619578 +5777071 +16952873 +6916737 +6931155 +8235315 +20109728 +17228123 +20208687 +19020525 +16300138 +3126152 +1744660 +3091418 +8147497 +17273343 +9234734 +10048688 +5571289 +15451451 +14703033 +15153919 +11498337 +20223760 +17492888 +1809540 +13316298 +9667270 +15691311 +17747821 +10279373 +20381701 +420183 +12312946 +10415032 +19865280 +19286600 +3127463 +5665660 +15984256 +969372 +14454653 +9147572 +1570335 +10016575 +13430985 +12927016 +8615422 +1049326 +16623884 +14625701 +20400051 +20626149 +13256005 +14202340 +16043238 +11866648 +6420632 +378896 +3174649 +19751903 +11884343 +21326726 +12573123 +16635681 +15163749 +15480286 +17844159 +17032827 +5647966 +12501034 +11677905 +1864590 +2544195 +15178167 +8492870 +20578964 +19624764 +489651 +11723125 +12805119 +12406007 +16337493 +16212320 +18601752 +12426323 +17604298 +19539567 +18314050 +19817439 +19343616 +5372716 +6676221 +9155436 +17475848 +1516596 +14616526 +6322328 +18584712 +3962388 +17687529 +11566495 +15727356 +19917053 +2912506 +5650587 +15626431 +21130119 +4139989 +7544569 +18591266 +17542695 +12609823 +12542321 +13585649 +21096040 +2322685 +15478976 +18627966 +2365938 +19873144 +12352268 +14200374 +17859887 +19983899 +13215373 +14608006 +9364495 +19177155 +2613008 +17574152 +11527828 +12593439 +9270124 +12603269 +11347605 +11648414 +6540562 +3136638 +2493733 +12609167 +20101864 +8287088 +15005153 +17561045 +14059472 +20656296 +19034943 +3733668 +17848746 +14864906 +20059921 +5624373 +679705 +4773064 +8009872 +12600648 +20335826 +7799503 +13305157 +18222955 +2742113 +227508 +18148900 +9873052 +1238724 +1057846 +19025112 +20170021 +12811017 +3236908 +10218425 +7299465 +6929189 +18675807 +12506276 +7844722 +17341500 +20295849 +2735559 +7133005 +7585856 +4581700 +18770834 +13634801 +4813696 +817985 +16345358 +18651559 +19408496 +14273774 +9987740 +5697118 +8768776 +8680958 +10156166 +12949298 +4044307 +1165324 +9568311 +5142686 +13939542 +9913684 +3289991 +9251118 +17650173 +13628903 +16424656 +12638003 +4650513 +6658526 +16578665 +13594169 +8310026 +8186819 +7061571 +2114936 +5171521 +2026463 +6212884 +3139915 +13415257 +8975213 +15523540 +3059961 +4635439 +10581493 +4082318 +20547506 +5403518 +12196948 +12007550 +13693783 +2758497 +7086474 +13841239 +13330060 +8607558 +639728 +9654163 +2733593 +4555486 +6781078 +6295458 +19495003 +14782987 +3814277 +12955196 +21212038 +7000623 +19496969 +14107969 +12272314 +19433400 +10468116 +1061122 +16334216 +20586828 +6457987 +3705488 +5222639 +7125796 +12621619 +10409134 +13091510 +18406455 +11558630 +18306186 +9706591 +14661090 +9344179 +16022922 +19386214 +6030694 +16159892 +12240857 +16515095 +14386496 +13215373 +19510732 +19739451 +18905182 +11313527 +20826033 +1656842 +4205525 +16513784 +160662 +14635531 +4326111 +8249078 +56460 +20729040 +3636020 +3050786 +8301506 +19595273 +17478470 +8593795 +1840997 +5328152 +20338448 +5628960 +14396981 +2519292 +1405840 +20225726 +19068366 +13111826 +8592485 +15864326 +7776565 +16976466 +9894679 +11392170 +15887263 +8103588 +12995173 +4070522 +1418292 +16066175 +14284260 +17826464 +14362903 +8750426 +3455797 +6245651 +7199851 +12552807 +2871874 +16335527 +1278046 +2442615 +2786677 +20472796 +3104525 +5467087 +7840790 +15817140 +20156258 +13043014 +12967648 +13381833 +21210072 +16765441 +16758232 +632519 +19009384 +20775571 +19257109 +15191274 +12892282 +1821337 +4875955 +5520171 +12153694 +13646598 +7722171 +2685752 +6606753 +20301748 +2318097 +21390295 +19223030 +20077615 +17669179 +21102594 +21407990 +1707304 +2900709 +11180489 +17607575 +15371497 +14221346 +8059024 +15357735 +7514422 +15216177 +14293435 +15686068 +2663470 +10538895 +6700469 +19152907 +2083479 +19767632 +17493543 +10629989 +10655548 +10190245 +16472497 +4010229 +12795289 +3951902 +295010 +2580240 +8136356 +5893725 +18366478 +20660883 +13704924 +10456975 +4497159 +773421 +14459896 +13155735 +2857456 +8175678 +5145962 +5818359 +13141973 +133792 +19434055 +9956938 +519142 +2757842 +10125365 +20084169 +3945348 +14242972 +13267146 +18709230 +7954822 +16361086 +8975868 +20738215 +5420557 +14354383 +19200748 +8359833 +2308267 +14623735 +5541143 +14786263 +5356332 +10679141 +21450588 +3191033 +1411083 +15607426 +10147647 +13946096 +12304427 +18243271 +3208072 +11770311 +19238759 +8675060 +3786752 +13254694 +12381103 +14693203 +8798922 +12271003 +2576308 +15646092 +12350957 +4574491 +14647983 +18899284 +15253533 +15634951 +6591680 +15047095 +11761136 +3520677 +13280253 +11175902 +21311653 +13314332 +8023635 +8633772 +7572094 +3911270 +16839497 +17255648 +10257091 +2856145 +222266 +15433756 +9894679 +10063761 +15815174 +12406007 +1345547 +5434975 +4976225 +14788885 +10993057 +18086641 +17266134 +10766304 +18006687 +10905895 +1128624 +10191556 +8525638 +10597222 +17725539 +17787143 +15788304 +707885 +6196500 +20647121 +9987084 +7805401 +266174 +17561045 +6256792 +5659107 +10352773 +21027228 +18367134 +3176615 +20146428 +16529513 +11779486 +5378614 +20465587 +3225111 +20489835 +19882319 +13971655 +14708276 +1523149 +12926360 +20924992 +7780497 +20984629 +8883463 +19557917 +11811598 +1930126 +1070297 +1576233 +18601096 +14523465 +18125962 +11934805 +5322909 +16607500 +13766528 +9811449 +21433549 +3687138 +10088009 +21206140 +1987142 +13324162 +11896794 +12078328 +11327289 +19517285 +14873426 +16870954 +21250704 +21067860 +11593364 +15760124 +13522735 +15903647 +17553836 +9576175 +4746850 +15036610 +21243495 +479821 +10386197 +2879083 +9250463 +5231814 +18378930 +19064434 +13385765 +2399361 +10618848 +10801693 +8699963 +4760612 +16851293 +17456843 +17403759 +7941060 +3029159 +14267876 +11329255 +6528110 +8169779 +19834478 +10896720 +508001 +9639745 +9037472 +16186106 +11461637 +16815248 +21286094 +17737991 +9896645 +1880319 +5741027 +1863279 +9375636 +17392618 +8159949 +4814352 +14062749 +2008769 +4798623 +1744004 +10933420 +10543482 +9482459 +6931155 +15378051 +4676071 +16973845 +20871908 +17866441 +4913966 +743274 +7443644 +12187773 +19289221 +705919 +9190170 +17355918 +12538389 +3634054 +4105911 +16011125 +18421528 +16884716 +20001594 +568294 +14699756 +16676313 +2444581 +6996035 +7018317 +21230388 +16781825 +5356987 +5634203 +12956507 +1078162 +20910574 +19126037 +2955759 +15531404 +11318114 +6707023 +4966395 +11936116 +2591381 +20666781 +18743309 +4330043 +9333038 +8110142 +4762579 +7993488 +5679423 +18911735 +14653226 +5161036 +9371049 +9886159 +8276603 +13285496 +8488283 +13573198 +15788304 +20306335 +8022979 +11943980 +3787407 +13062019 +11729678 +4273027 +18000789 +13642010 +1672570 +17496820 +4554175 +6216816 +10082111 +11428214 +11125439 +12727132 +2351520 +6976374 +19706683 +6714887 +9379568 +3187100 +4901514 +9565034 +13328094 +11262409 +6348542 +15491427 +3548857 +7585201 +14629633 +3639952 +7380730 +5066664 +17612163 +5767896 +18648282 +1897358 +6559567 +15418683 +15128360 +7006521 +9808827 +7697922 +9266847 +8691444 +17764861 +5906176 +1302949 +21305099 +17329704 +13151803 +15308583 +12022623 +21001669 +2895467 +1393388 +14387151 +8107521 +1306881 +20810960 +15902992 +7001933 +4411307 +3288681 +12270348 +20943997 +20599935 +8725522 +8817272 +5024066 +2956415 +3394193 +18106302 +4860227 +4933627 +18376964 +6087055 +20191648 +1698785 +1011971 +7564885 +4744884 +11329255 +12335884 +19753869 +16464633 +1136488 +16877507 +2069061 +6073292 +20020599 +3676652 +20412503 +9665304 +20654330 +7015040 +5123680 +18548012 +5678768 +14115178 +19836444 +12874587 +4656411 +15485529 +16492158 +12090780 +572881 +13361517 +16705804 +5975644 +21291337 +7712340 +16848016 +5844573 +20839796 +11477366 +20179196 +15265329 +2155569 +7127106 +8791058 +9540786 +6165042 +3594732 +987067 +2472761 +10808902 +19759112 +6867585 +10493675 +9118736 +3219213 +6271210 +14157121 +9325174 +4451939 +19534325 +6233855 +11354814 +13794053 +8676370 +11674628 +3326691 +17572186 +1595894 +18348784 +10943905 +2943963 +5082393 +4470945 +7172981 +16795588 +13334648 +1633249 +15739152 +8259563 +21383742 +14263944 +1094546 +11180489 +6518280 +13625626 +7226721 +9533577 +1849517 +20431508 +9124635 +20651708 +10376366 +277315 +3689759 +18441189 +12539044 +15461936 +18651559 +16692697 +8873633 +13803228 +7945647 +20569133 +7184123 +20135942 +20765740 +16045204 +3206106 +3725804 +11460982 +6037903 +14501183 +15496670 +21085554 +5297350 +1816094 +18616825 +11879100 +2802406 +16809350 +6349853 +21046888 +18477234 +2361351 +2508806 +1027699 +5267203 +13870074 +1552640 +12618998 +2582861 +8572169 +2007458 +9291751 +12955196 +14242972 +18456262 +7918122 +7922710 +17585293 +11021238 +13090200 +7441022 +18594543 +4141300 +17814668 +16060933 +20700860 +11442632 +6092953 +17864475 +16429243 +17026273 +1014592 +6678187 +17557113 +16520993 +19437987 +17332325 +17707845 +3149090 +19837755 +5636169 +779974 +9538165 +5047003 +15277781 +12002307 +4617089 +1391422 +6882003 +18477889 +14024739 +11531105 +2177851 +5484782 +5683355 +6091642 +4406064 +13936265 +16330284 +8454860 +4330043 +6920014 +17716364 +15681481 +5413348 +855340 +19731587 +3185134 +12468266 +5603402 +16543931 +13847137 +3229699 +15785027 +15323656 +20843072 +20432819 +5669593 +11318114 +15830247 +17312009 +19561850 +20018633 +11780141 +2101829 +9401851 +8697997 +4083629 +7100892 +5435630 +9859945 +8694065 +19854794 +13957237 +1190883 +6205675 +3301133 +13246174 +6338057 +17997512 +13601378 +42698 +1122071 +14491353 +5622407 +6701124 +15069378 +10507438 +512589 +19912465 +12874587 +4807798 +12059323 +291078 +10112913 +11451807 +19738796 +19614278 +7802124 +11837812 +7899117 +6360339 +6864308 +10632611 +15392469 +18251791 +9207865 +3001634 +367755 +17070838 +8787781 +14850488 +1380937 +24348 +8205169 +2020565 +13010246 +21263812 +21259879 +6381966 +14178092 +12960439 +11116920 +11153620 +18329778 +13265835 +3670098 +778664 +3860807 +1901290 +3650438 +11281414 +1960272 +15121806 +17476504 +10710598 +6991448 +19976690 +3668132 +18363857 +8047228 +4868091 +11881721 +1759078 +75466 +2533710 +9256361 +2989183 +15519608 +8559717 +20205410 +11953811 +13391008 +5454636 +13913328 +16627161 +10312797 +12439430 +15353147 +5560148 +11284036 +5928459 +2938065 +9173131 +17328393 +17380822 +4184554 +19460269 +11370543 +17292348 +16935834 +3517400 +6233855 +20850937 +17197322 +833058 +13151148 +2543540 +3253291 +4359534 +14687304 +12299184 +14994011 +1852794 +15205036 +16022922 +13699026 +6345266 +16555072 +3437447 +12179909 +1266249 +13597446 +14923888 +18399902 +15627086 +7557676 +7522942 +10677831 +18558498 +2971488 +6344610 +1516596 +20418401 +7703821 +10583459 +141657 +5324219 +1795122 +14486765 +16688109 +17921491 +1982554 +20490490 +4016127 +7750351 +15872190 +18331089 +8948999 +11727057 +12588196 +608271 +20894846 +20406605 +4537136 +10103082 +4387059 +1161392 +2033672 +10131263 +11521930 +3774300 +21330003 +2741458 +1852794 +5527380 +15168336 +14250837 +17321184 +1104376 +13763906 +7834892 +17669179 +15872845 +1759078 +8394567 +2439338 +10988470 +12314257 +5505098 +4176034 +3124842 +6827608 +5552284 +20593381 +2211929 +21456487 +13616451 +7187399 +4075109 +20076960 +15564172 +19536946 +6444225 +20755255 +20078271 +4004986 +6035937 +21271020 +16341425 +13271733 +9610254 +11586811 +14468415 +1817404 +16714979 +6828264 +2941997 +20733628 +6999312 +2124767 +11607782 +9935311 +18669909 +19096546 +7117931 +7150699 +7378108 +16484949 +2652984 +14706310 +1599826 +6516969 +1430088 +21368013 +7573405 +20651053 +5511652 +70878 +8066233 +8590519 +10063761 +13731139 +1949131 +1414360 +21307720 +13744901 +20831931 +21411267 +18316016 +247169 +5309802 +5044382 +4265163 +21344420 +13950028 +16201834 +2876461 +14691892 +3322104 +6843992 +16810661 +20888292 +17270066 +3489875 +18484443 +20440028 +2259115 +19616900 +11559286 +9665304 +1095201 +14062749 +18828505 +18262932 +6269900 +11542246 +13258626 +18204605 +10485811 +18186911 +12997794 +6478958 +8064267 +20007492 +13512905 +18088607 +12331951 +19309537 +20600590 +8220242 +14500528 +10427484 +7777876 +4243536 +13551571 +117408 +18833748 +15478320 +21168129 +16924693 +2827309 +15490772 +20906642 +132482 +10344254 +260276 +390037 +6512382 +16161858 +7461994 +14245594 +2719176 +18617480 +14332101 +10025095 +3671409 +2949861 +7365656 +19065089 +18044043 +10886234 +12467610 +15040542 +2851558 +11127405 +13744246 +20691030 +18403178 +6258103 +511278 +1683712 +12516107 +6331503 +6292182 +20738215 +5078461 +3993845 +14317028 +19168635 +15963284 +10898030 +1299672 +21085554 +13451957 +11105779 +15484874 +20046814 +20738871 +20061232 +2413124 +21276919 +13437539 +18953678 +4516820 +14636187 +3352250 +17467984 +18506069 +7865694 +5861612 +14737112 +7818508 +2657572 +7005210 +4125572 +19801710 +134448 +14162363 +6410146 +2956415 +4185864 +5779693 +19282667 +4062657 +1860658 +14341931 +18065670 +18394659 +18128584 +7734622 +2943963 +1035564 +9452313 +17931321 +12847062 +21177960 +15599561 +10361293 +15397711 +15156540 +12031798 +7313883 +1074230 +559774 +11133959 +1675847 +19200092 +13893012 +4944112 +2580895 +11474089 +11375786 +18485753 +6940985 +18167250 +4663620 +16680245 +2227658 +11400689 +5346502 +19837099 +9227526 +16530824 +7075333 +20380390 +12426323 +12284766 +8664574 +12860825 +1508076 +12974857 +6365582 +9078760 +14564753 +16697284 +1619487 +6777146 +19958996 +8106865 +16903722 +19947199 +21362115 +316637 +15653301 +10358672 +8148808 +3867361 +19527771 +160007 +6830230 +14688615 +18350094 +11880411 +6033971 +16367640 +8940479 +8306094 +10706011 +2760463 +15866292 +15442276 +19515975 +16243122 +840922 +21198276 +9353354 +14383219 +7710374 +4816318 +56460 +11284036 +20261771 +11803734 +4095425 +5742993 +8641636 +6611341 +20251285 +13633490 +6695882 +19120794 +4856295 +17280552 +8821204 +16535411 +1117483 +20411848 +1078817 +16730707 +16486915 +21439447 +1076196 +3510847 +407076 +7760837 +13330716 +9515227 +6302667 +20057955 +10848223 +13101341 +9690863 +2732283 +21434860 +14955345 +3151711 +4856950 +21447967 +5193148 +11817496 +18277350 +16149406 +14889810 +5895035 +17252372 +9374981 +5748891 +19584132 +1656842 +5452669 +6609374 +1945854 +6840060 +3788718 +14275085 +9721665 +11020582 +198673 +2933477 +9968734 +3947314 +19823992 +10622125 +9881572 +18863894 +2455722 +2772259 +17885446 +4961807 +16055034 +18148245 +16511163 +8074753 +18008654 +18048630 +9468042 +21404713 +4979502 +8507288 +1316056 +16983020 +7114655 +6678842 +15091004 +13577130 +15851218 +13137385 +6298735 +4553520 +9746568 +12237580 +14840658 +9426099 +17258270 +11940048 +5267859 +8177644 +15821072 +16406306 +16111395 +610892 +14174815 +7186744 +4244191 +14235763 +9909097 +19584787 +5033896 +2311544 +18856685 +3467593 +15711627 +13881871 +18631898 +6081157 +7966619 +19089993 +2939375 +1067676 +14071924 +7825717 +10418965 +8618044 +5342569 +2692961 +2548127 +2757186 +1161392 +3059306 +12693709 +14464483 +20000939 +16555072 +11344984 +12537734 +10022474 +1534290 +17000715 +13840583 +14931097 +5695807 +5104675 +4853673 +3993189 +2258460 +15662476 +18787873 +8448961 +9542752 +11928252 +14602763 +14695824 +16815904 +19647701 +9569622 +20255217 +1621453 +13343167 +4343150 +3543615 +12404696 +14701067 +1860658 +20185094 +371032 +19881008 +2623493 +5100087 +18628621 +6049044 +19990453 +8484351 +106267 +20498355 +19507455 +15428513 +11478021 +1377004 +19178466 +12872621 +1298362 +20573721 +18474612 +11972161 +4014816 +17956225 +14469071 +2395429 +11332532 +18169216 +9112838 +19068366 +149521 +6558912 +8336240 +18704643 +15733254 +4451284 +2908574 +4350359 +4790759 +14283605 +17612163 +9374981 +5763309 +9741325 +3939450 +14056851 +4467668 +6463230 +6459953 +7506558 +19444541 +1931436 +12982721 +10372434 +4324800 +13380523 +4573180 +13361517 +2724418 +2331860 +2096586 +12109785 +14113867 +499482 +2566477 +7531462 +6192567 +10925555 +10000191 +1844929 +4653134 +20549472 +11115609 +9744602 +8665229 +20213274 +14651260 +7537360 +6566121 +3221834 +4671484 +11504236 +11892862 +10261023 +12516762 +15040542 +7684160 +19998317 +7443644 +18785907 +19842342 +10860675 +3893575 +12138621 +14204306 +14794783 +21003635 +11521930 +9921549 +16051758 +13124933 +13797985 +17886102 +9732150 +8264806 +13141973 +3530507 +8697342 +14865562 +4201593 +19624108 +12944710 +19732242 +12474819 +21178615 +9222938 +2613663 +10315418 +2019254 +14976972 +11048107 +17184870 +8080651 +19666051 +6247617 +6346576 +1266249 +9331072 +17557768 +2517326 +9393986 +13354964 +15602183 +14148601 +20670714 +15704418 +20181162 +13050878 +15279747 +13178017 +3369945 +13050878 +530283 +20014046 +17967366 +9439861 +12662907 +732133 +4375263 +2683131 +16190693 +2999013 +6708989 +18484443 +7459372 +21432894 +14993356 +4070522 +17080013 +14458585 +13919881 +6716198 +17281207 +13137385 +13366760 +20455101 +8650156 +13956581 +18389416 +14362247 +13131487 +2517981 +14521499 +809465 +11531761 +14850488 +12006894 +12825435 +3379120 +3478734 +10046722 +20774915 +12624241 +16259506 +10580182 +1066365 +2296470 +4151131 +7108756 +15319069 +15512399 +2145083 +13659049 +18775421 +12029832 +21004290 +16450215 +7996765 +18404489 +7493451 +20721176 +11902037 +17978507 +5306525 +10869850 +20770328 +5491991 +15389192 +17835639 +1520528 +19085405 +9980531 +4492571 +7993488 +16155304 +7096960 +20695617 +19148975 +7110067 +15535336 +16615365 +7823096 +12843785 +14820342 +2227658 +1812162 +2285329 +16386645 +6024796 +17149481 +20074994 +5357643 +5413348 +11904003 +16488881 +2486524 +12008861 +19525150 +19156184 +2657572 +11845677 +8768776 +8365076 +8059679 +8144220 +15786993 +6655249 +19785982 +16969913 +9507363 +2191613 +12704194 +5727919 +14408122 +1864590 +15054960 +11380373 +16249675 +5417936 +16969257 +20305024 +3059961 +3265088 +1159426 +18482477 +10534963 +4053482 +13250762 +8673094 +8760256 +1360621 +6670323 +16733329 +14799370 +14425162 +2313510 +12576400 +10376366 +4934282 +18744619 +4147854 +6225335 +19506800 +12503000 +15178167 +4146543 +16302759 +14410744 +11805044 +5072562 +4571214 +14264599 +4225841 +7446265 +19989798 +16020956 +1926849 +15371497 +6263346 +9147572 +5691875 +832403 +6300046 +20533089 +15600872 +11251268 +3296545 +14117144 +1981244 +1602447 +8313303 +17377545 +11803734 +11846332 +13847137 +5604712 +13891046 +11204738 +1972724 +9012568 +20493112 +8571513 +13088233 +16560315 +2713277 +8272670 +12875898 +12682567 +8473210 +2447858 +14482178 +21449278 +511933 +8770086 +258310 +441810 +16380091 +1168601 +14159742 +17198632 +17595123 +21451899 +12098644 +13657083 +8445029 +18846855 +13150492 +20934167 +6360339 +5999237 +10049999 +1025733 +14843935 +14022772 +10087354 +5974334 +10361948 +5648621 +8436510 +2871874 +8306094 +2157535 +7325680 +12309014 +4672795 +3324725 +11928907 +16005883 +8885429 +20481971 +9019122 +2063163 +7370899 +16682211 +9586006 +11593364 +8881497 +9636468 +11132648 +18294389 +11172625 +2563856 +3797893 +20130044 +18559153 +20110383 +4884475 +2873840 +14384530 +355958 +9697416 +4356913 +17914282 +13351687 +15081174 +3603907 +857306 +20339758 +3568518 +14026049 +7758871 +9155436 +1553296 +18942537 +19255142 +20624183 +13530599 +21236942 +9805550 +20983319 +10229566 +17215016 +18055839 +15604804 +8891327 +16146129 +15748327 +15451451 +15520263 +1456303 +16085836 +15321035 +17669179 +19470755 +14192510 +3341765 +12337194 +12516107 +7315194 +10434693 +21319517 +11767034 +9525058 +4460459 +14164985 +5997926 +7912879 +2852213 +13200955 +15728667 +11264375 +15166370 +129860 +11053350 +9357286 +17551214 +6041180 +9359252 +15350526 +72189 +4335941 +12694364 +9390054 +9718388 +9877640 +13636767 +20340414 +15271227 +3879813 +8578722 +13440815 +10795795 +1937990 +11058593 +14063405 +12126825 +13557469 +4064623 +6526144 +19512042 +17325772 +17198632 +16659929 +8819238 +719026 +9944486 +2993115 +2974765 +16895857 +4617745 +8185508 +6882658 +6819089 +21388985 +2313510 +7816542 +4780929 +1267560 +19962928 +17792386 +3219868 +21052131 +1245933 +16332250 +9013879 +19770908 +3134017 +6343955 +18106302 +6332814 +19419637 +20047469 +11146411 +10867229 +11276171 +8513186 +19132591 +19323955 +9494911 +10071625 +18139070 +12811673 +9903199 +15776508 +2760463 +7642872 +16965325 +13081680 +18827194 +2815513 +22382 +12442051 +11118230 +10074247 +9784579 +1150251 +18226232 +8862492 +4801245 +15659854 +11962330 +1295085 +587955 +18996932 +20840451 +9469352 +5227227 +10749920 +6806637 +18456918 +10540206 +13280908 +5918628 +7920744 +18033557 +18055839 +2145738 +11287312 +3648472 +8175022 +2025153 +1823303 +15258120 +12164180 +15583833 +16986297 +6304633 +4450629 +3238874 +19757801 +7536705 +15606115 +9475906 +15693933 +4016782 +10094563 +6148659 +10304932 +11980680 +1966170 +9798997 +3385674 +1896703 +9191481 +17317252 +12914564 +11988544 +16429899 +2213240 +3029815 +12657664 +19379660 +9745258 +9348111 +16393199 +19837755 +13350376 +14005733 +15095592 +1680435 +129205 +14022117 +3167440 +14596865 +12245444 +7152665 +11885653 +9221627 +10696181 +16713668 +5411382 +1482517 +18468059 +8402431 +14901606 +16534756 +1504799 +13851069 +17484368 +3544925 +8923440 +13305157 +1006072 +9224904 +9443793 +21012154 +454262 +6799428 +9875674 +11603195 +10116845 +11908591 +10585 +2207997 +8348692 +10981261 +9119392 +14493319 +20466897 +11455084 +11672007 +16600291 +5700394 +18552600 +10422241 +20154948 +9084658 +11765068 +13011557 +2830586 +20643189 +4927073 +15487495 +3426961 +4225186 +5334705 +9515883 +17003336 +10774823 +20219828 +19342305 +15549754 +894662 +11924319 +13456544 +910390 +142967 +14515601 +19145698 +7418740 +18650903 +12541666 +5724643 +3909959 +14907504 +9413647 +14942238 +20591415 +1019835 +14957967 +18458228 +20940721 +10942595 +14562787 +2363972 +15908234 +7514422 +14530674 +16342081 +5022100 +8142254 +11303041 +231441 +5446116 +11048107 +663976 +6080501 +11287312 +1918985 +3416475 +5670903 +15356424 +9420201 +8902469 +8966693 +100369 +16973190 +6136862 +5609300 +8437165 +21371290 +3909959 +3923066 +7935162 +2689684 +16373538 +1687644 +2667402 +10165997 +1354722 +12813639 +20285364 +21125531 +7087130 +5647966 +20618940 +13864831 +20683165 +5904866 +19061812 +18923532 +10257091 +5190527 +20086790 +9851425 +19101134 +14021462 +11196873 +20669403 +9251118 +7678917 +20671369 +7524253 +37455 +17898554 +16983020 +13548949 +5685977 +11366611 +18298321 +4089527 +16920106 +1285910 +18150866 +17224191 +3068481 +11522586 +9798341 +18199362 +7836203 +17465363 +15998674 +16811316 +14596210 +19975380 +20169365 +8163881 +19424880 +11497682 +6312498 +16648132 +9220317 +12179253 +3674686 +18329778 +3954523 +20963658 +21392262 +113476 +10713875 +16557693 +5324219 +16764131 +5636169 +3574416 +2964279 +10242673 +6151280 +2508806 +2916438 +4051516 +6021519 +333676 +21375222 +7541292 +7400390 +18069602 +9464109 +6669667 +8305438 +11468191 +3552134 +20390876 +7916156 +18865860 +6504517 +19358034 +16945009 +14632254 +511278 +8232038 +6651317 +11142479 +8942445 +3860152 +19958340 +18005377 +6585782 +17340845 +13174741 +14935029 +3731047 +8460758 +16858502 +19442575 +17559734 +6427841 +12518728 +19191573 +20083514 +298287 +6321673 +516521 +5583085 +7787051 +18618135 +14739733 +9096454 +11746062 +19490416 +19882319 +4152441 +1211199 +1579510 +19201403 +5231159 +21041646 +5638791 +19419637 +2493077 +16083870 +10910482 +7952856 +11305007 +18137103 +21164197 +8863802 +14434992 +10666034 +785217 +8834311 +15018260 +19548742 +13247485 +6161110 +21115046 +1028355 +1590651 +17003991 +8163226 +10725672 +14216758 +12727132 +2268945 +10135195 +14984836 +9115460 +8517774 +9216384 +16473808 +2117558 +13151148 +8868390 +19014626 +13864831 +20000939 +12407973 +425426 +8027567 +6448812 +20805717 +18867826 +2690340 +16985641 +1636526 +8054437 +10960289 +471301 +4189141 +14406156 +8634428 +17194700 +2669368 +4422448 +10117500 +13803228 +5019478 +13339235 +937915 +6959990 +9283231 +21033126 +1337028 +2640533 +1445817 +4126227 +9272090 +19486483 +6167664 +1225617 +11404621 +15563517 +19278735 +17466018 +3700245 +1055880 +5245577 +13333337 +16931902 +7389249 +3223800 +18671219 +2806993 +2033672 +9519159 +15551065 +5514273 +20788022 +2185715 +17473227 +1972069 +5490680 +11811598 +10030993 +7351894 +5507719 +2922992 +8718313 +973305 +16204456 +6930499 +6393762 +11448530 +5356987 +13346444 +1641113 +2055299 +2026463 +17253027 +9397918 +2607110 +4272372 +8916886 +8874944 +21419787 +9724941 +2884981 +9292406 +11842400 +11295832 +21310342 +16675657 +6770592 +4345116 +21461074 +17802871 +8423403 +19387525 +4287445 +772765 +4493882 +11900727 +14826240 +20905987 +20077615 +9871086 +13625626 +9334349 +18143657 +7045842 +17153413 +20181817 +8926717 +2513393 +13933644 +12390934 +9198690 +18189532 +11418384 +12432876 +18537527 +913667 +21001013 +11643171 +18610927 +20537676 +14036535 +14932408 +12274935 +5005716 +21356217 +2628736 +1131901 +3622913 +1129935 +7458717 +4245502 +4763889 +12613755 +3997777 +16655997 +20041571 +20010769 +5864889 +10394716 +19544810 +14294090 +3575727 +5491336 +652835 +13441471 +9479183 +13021387 +11268962 +6169630 +14482178 +6543839 +1958961 +909735 +15621188 +3139915 +15026779 +8879531 +5085670 +2385599 +5197736 +15632985 +15319724 +14792162 +14680751 +6163076 +3442034 +13955271 +18768868 +12029832 +13198333 +976581 +14414676 +9374981 +11145100 +15418683 +11541591 +1366519 +7085164 +2177851 +5602746 +6560223 +5756755 +12769730 +20651053 +7544569 +13268457 +6191257 +781285 +10859364 +10350152 +7001278 +4277614 +14845245 +8528260 +14646017 +5884550 +14957967 +15410819 +13652496 +19232860 +14984836 +3704177 +15574658 +16635025 +1907844 +10798416 +9878950 +14684028 +3175304 +12574434 +12352268 +17621993 +12320155 +20390221 +2312854 +15110010 +9075483 +1945199 +1635215 +5539177 +10230877 +10563798 +975271 +5292762 +12320810 +16218218 +7670397 +15102145 +20086135 +16106152 +6610685 +11268962 +317948 +4001054 +1177776 +18808189 +19454371 +11117575 +11442632 +12162869 +17992270 +12468266 +3453175 +1174499 +16954184 +18814743 +13346444 +5033241 +16201834 +19342305 +10617538 +14183990 +14758083 +9275367 +502758 +7975794 +14229210 +3771679 +17190768 +20673990 +5992684 +14614560 +13890390 +1487104 +17988337 +19902635 +10136506 +19576923 +7032735 +10618848 +8453549 +1360621 +16084525 +15433101 +19273492 +2044813 +17321839 +15819761 +6868896 +5420557 +10768270 +17922146 +9319276 +17640998 +14087653 +21443379 +9028952 +7361724 +19360000 +1664706 +95782 +6982928 +3426961 +9954972 +850753 +13276976 +3198897 +14945515 +6887246 +2147049 +20389565 +19228273 +19456992 +17914282 +3288681 +9331072 +15694588 +7635663 +13638078 +16129090 +17027584 +5099432 +10186313 +15243702 +14858353 +12875242 +1219063 +9009292 +17247129 +15263363 +19120139 +19571025 +18633209 +7399080 +3543615 +12556084 +6001859 +904492 +12620964 +17760273 +18279971 +20190337 +11254545 +15327588 +7296844 +6862342 +21006256 +4170791 +11009441 +11387582 +9472629 +14400913 +793737 +9675134 +3010809 +8060990 +20865355 +2889568 +15458660 +9748534 +3101249 +17319218 +19009384 +3409922 +4189797 +18382862 +854030 +1304260 +12151728 +21311653 +9642367 +14700412 +4725879 +4569904 +20611076 +10185657 +7963997 +15919376 +17359850 +10633266 +21726 +12780871 +11751961 +16701216 +9762952 +20053367 +13364139 +15275160 +18956300 +18203950 +13568610 +8420126 +17681630 +15946901 +17144893 +7146767 +14988113 +20961692 +14699756 +9445104 +10833805 +19371141 +14695169 +14264599 +10520545 +21035092 +6899042 +5001784 +1751869 +2205376 +18988412 +18592577 +18471991 +17337568 +9282576 +19029044 +18354027 +10969464 +15036610 +13507662 +20209342 +9476561 +20090723 +1190883 +13431640 +8866424 +4263197 +20993149 +21337212 +2200788 +3351595 +17207807 +2304335 +21155022 +19354101 +4147198 +13524701 +12529214 +17812702 +12385035 +20625494 +4039720 +2199477 +18597819 +14188578 +15142778 +15701142 +7318471 +9712490 +16885372 +17387375 +1527081 +12215298 +19306916 +19972758 +17112125 +15941658 +10572973 +6668357 +14356349 +13008280 +19630007 +14336033 +16229359 +17019065 +5088946 +7811299 +15664442 +11059248 +13932333 +18502137 +13404115 +19376384 +12095368 +342196 +1865901 +18886176 +2322029 +5050280 +386105 +18656146 +3139259 +918255 +247169 +2025153 +10433382 +1517251 +10743366 +16575388 +9392020 +330399 +265519 +20708724 +7970551 +12637348 +9556515 +8259563 +9325174 +21303133 +16378125 +19905257 +1740072 +20424299 +535526 +4468323 +12347680 +17911005 +3235597 +19315435 +2515360 +19151596 +6980962 +2826654 +16273268 +3173338 +9777370 +16152027 +16058311 +20807683 +12478096 +15423270 +10423552 +18265553 +13894322 +8709138 +15357079 +9542097 +11643171 +2453756 +2894156 +7782463 +17471916 +11883687 +1439263 +16914207 +20613042 +12564603 +7549156 +9066308 +15267951 +215057 +2453101 +17285139 +4314314 +14491353 +12230371 +11365300 +9424133 +14671576 +11001577 +8433888 +21167474 +21298545 +14072580 +206537 +5189871 +3689759 +10065072 +19694887 +5403518 +13281564 +14552956 +15195861 +9325174 +21224490 +1605069 +4664275 +3031125 +3153677 +17230089 +6487478 +9719699 +8733386 +16380091 +5033241 +2477349 +7266698 +6682774 +5324219 +641039 +20071062 +19070332 +5714812 +4122950 +8787781 +16044549 +7352549 +10668000 +8844142 +9359252 +18143657 +6633623 +20196235 +3937484 +19683091 +4462425 +15721458 +18327812 +5196425 +17442425 +8872977 +13271733 +13996558 +1967481 +4107222 +156730 +12810362 +1496935 +7916156 +10603120 +449019 +7024215 +9874363 +5687943 +14375355 +4487984 +4153752 +7347306 +7623212 +3092729 +3875881 +15069378 +4768477 +21064583 +11374475 +11883032 +11476055 +16079938 +4103289 +9313377 +437878 +16056345 +6658526 +5809184 +6558257 +8059679 +7984313 +1582787 +9961525 +12807085 +8980456 +8792369 +4756025 +9895334 +2540263 +6741757 +18020450 +12389623 +20906642 +17242541 +4505023 +20322064 +9428065 +13590892 +4278270 +1410428 +5192493 +10105049 +16376159 +15096247 +14560821 +2731627 +18622068 +5444150 +3645850 +279282 +16181518 +1767597 +18525075 +10071625 +12136000 +16302104 +11722470 +2828620 +18879623 +12718612 +14516912 +21209417 +3612427 +7889942 +16857847 +5868166 +15577279 +14987458 +1177121 +18831782 +1789879 +19168635 +7275873 +8570858 +9850770 +16049792 +8847419 +11317459 +5438907 +3582281 +15695243 +18896662 +3066515 +480476 +10400615 +21078346 +16865711 +3283438 +4655755 +11067113 +14597521 +19630662 +17287761 +11158863 +4415895 +3932897 +1491037 +14564097 +8087860 +4815007 +17213706 +7792294 +7247692 +6921324 +10500229 +12548219 +2936754 +12674703 +11128061 +10896064 +17305455 +18382207 +2965590 +14752185 +5932391 +785217 +20693651 +14623079 +3560654 +19411773 +6491410 +4216011 +20729040 +13965101 +1798399 +9122013 +14103381 +3397470 +14489387 +15548443 +6326260 +8201237 +7714306 +6461919 +12478751 +16032097 +16463977 +1135178 +20763119 +20852247 +603683 +4807143 +6621826 +4740296 +20239489 +665942 +13166221 +21415199 +20050090 +19713237 +19412428 +14381253 +1715824 +12710092 +15764056 +1200713 +21406024 +10721739 +8226795 +20569789 +18361236 +19291187 +5727264 +1265594 +6741757 +3918479 +12664873 +1900635 +14015564 +13153769 +16652720 +14183990 +18887487 +2430818 +15043819 +14859663 +2175885 +6233200 +5772484 +17349364 +20050746 +6974408 +7593721 +13719998 +5014236 +19337062 +13757353 +8961451 +20079582 +17618716 +8644913 +16721532 +5814426 +10089975 +15815829 +3746775 +3396815 +16756922 +6343300 +17232711 +728201 +18306841 +970028 +9893368 +19678503 +19185019 +1681745 +4977536 +21004946 +13402149 +325157 +8663263 +8789092 +17493543 +530939 +11414452 +18321914 +2187026 +21383742 +1118794 +4200282 +16040617 +19094580 +7480999 +21229078 +10494331 +17261547 +14581137 +6240409 +3185134 +16880784 +18770178 +4372641 +3072413 +19649012 +4399511 +19089337 +12105853 +14900295 +7165117 +7358447 +20900088 +6013655 +16102875 +15295476 +12501034 +12533146 +12858858 +9347456 +20551439 +16460045 +6640832 +21083588 +19729621 +3720561 +19886251 +10337045 +16882095 +4828114 +11900071 +346128 +13352342 +6577262 +17612163 +18494928 +13655117 +3865395 +16266715 +9743291 +8690788 +20521947 +476544 +7966619 +1280012 +3172683 +18135137 +2161467 +2214551 +18312739 +13382489 +18949091 +175735 +12372584 +12214643 +8660642 +5516239 +15921342 +6484201 +13491278 +20931546 +8844797 +17456843 +11723780 +17546627 +5509685 +14790851 +2415745 +5665005 +6263346 +306807 +3723838 +21004946 +9198690 +18325191 +13858278 +8296919 +7703821 +15374119 +15864981 +2892190 +17414245 +19721757 +10808247 +12431566 +15123117 +5199702 +10221702 +20697583 +5077150 +17128509 +15347249 +9625327 +9309445 +10725672 +21421097 +13571232 +4162927 +1272803 +10079490 +15911511 +7680228 +19377694 +11103813 +2726384 +17886757 +19632628 +3312274 +5109262 +6651973 +9103663 +14971729 +15356424 +12736962 +7073367 +282558 +16617331 +1858692 +16576699 +2618251 +11234229 +9822590 +5708914 +9283231 +8197960 +314015 +14800681 +8471244 +5269169 +17851368 +908424 +18254412 +12082916 +3045543 +8156672 +18466093 +20949240 +1000830 +17679664 +6281041 +14602108 +1154838 +1280012 +20459033 +3521988 +10535618 +4990643 +11452462 +10285927 +6767971 +13571887 +3640607 +15028090 +7722826 +1946510 +18875035 +15709661 +11517343 +10498918 +14319649 +2523224 +819951 +6006446 +12434187 +119374 +1383558 +9369738 +10381609 +19957030 +2207342 +15680170 +18492307 +12013448 +6442258 +16004572 +8340828 +1765631 +20419712 +11487196 +12696985 +7764769 +13708201 +7034046 +7589133 +11594675 +1174499 +4022681 +12000996 +5050936 +772110 +781940 +13972965 +21255947 +18044698 +20283398 +8310026 +2738181 +4333975 +1985831 +12356200 +14497251 +4105911 +6781078 +1447128 +10833150 +8888706 +13624971 +17040691 +7555055 +12406662 +14509703 +2596624 +18686293 +20629426 +8479763 +6752242 +7964653 +17403759 +51217 +8211722 +8836933 +4447352 +10758439 +1899979 +19005451 +9006015 +15916099 +8823170 +16484293 +6156523 +8598383 +4933627 +3884400 +14125664 +17013822 +11270929 +19853483 +8960795 +19584787 +18547357 +2923647 +2816168 +13412635 +9928758 +5033896 +18099093 +8625253 +12878519 +17208463 +1093235 +11030413 +14305887 +12035730 +8582654 +1782670 +13505696 +2299092 +2440649 +19437987 +4164238 +11730989 +15203070 +9519159 +9594525 +14945515 +101680 +19392767 +5437596 +219644 +21217937 +17049866 +4309072 +18892075 +11325323 +18959576 +7771978 +9992327 +10779411 +20331239 +14229210 +15486840 +7654669 +4942146 +2859422 +16394509 +13307778 +305496 +17758307 +5178730 +8965383 +4368054 +14723349 +18576193 +10968154 +7207060 +2855490 +16123847 +19123416 +19816783 +14571962 +15752915 +9887470 +11331221 +6710955 +6623792 +18015862 +10374400 +20877151 +7626488 +17422764 +14180058 +18527041 +6475026 +9955627 +4125572 +19594617 +18960887 +11372509 +11972816 +3086175 +3301788 +21077035 +20057299 +5189216 +19472721 +8515808 +4793380 +2169986 +3377154 +2786677 +14117144 +13597446 +18203950 +17715709 +8410295 +13176051 +9220317 +6326916 +21235631 +18295700 +10251193 +6451433 +4373297 +10007400 +21362770 +5695807 +20854869 +11585500 +12085537 +9618774 +154108 +20329928 +21315585 +13155080 +19890839 +13399528 +13650530 +15525506 +6077225 +1503488 +177701 +14892431 +9534888 +7635663 +19048050 +15640193 +14940928 +9112838 +11399379 +5999893 +10635232 +20753288 +4009573 +3331279 +5786901 +13840583 +11480643 +17402448 +14387151 +20527846 +4896271 +7505903 +14785608 +10941284 +4006297 +5881273 +11612370 +17794 +17114747 +10822009 +15532060 +14283605 +14562787 +15222731 +3244116 +10532997 +3590800 +10167963 +16772650 +20866665 +3916513 +7184778 +13494555 +14748253 +13296637 +4669518 +12489893 +10235465 +20097932 +6535975 +19813507 +10943250 +1823303 +18587989 +20578964 +260276 +9576175 +1820026 +14374699 +20329273 +19700785 +8796956 +16826390 +8973902 +17660659 +9864533 +3826729 +1910465 +16861779 +423460 +424771 +8346070 +5044382 +3384363 +11720503 +16981054 +14860319 +21166163 +19223685 +20335826 +10624747 +2335136 +19207957 +20501631 +2599245 +6085089 +4390336 +11612370 +16365674 +6890523 +15788959 +9495567 +6543839 +16460045 +15774542 +16449559 +8112108 +8260219 +9798997 +13063330 +13296637 +21098662 +17515170 +15343972 +17618061 +12932914 +20103830 +9922859 +2225692 +13191124 +21402092 +20323374 +16935834 +15921342 +6054287 +9698727 +2259115 +11736232 +18170527 +1884251 +8757635 +8892638 +14874737 +18776732 +1033597 +11963641 +18861273 +1148940 +12074396 +1732208 +9612220 +19584787 +7055673 +13603999 +12955851 +19216476 +7565540 +14571962 +418873 +6246962 +7169705 +19630662 +15106733 +5841296 +14519533 +18819330 +6718164 +12177287 +12615066 +5473641 +7169049 +11850919 +20121524 +20456412 +584023 +781940 +385449 +9029608 +11768345 +11394791 +18795082 +6434394 +3122875 +5795421 +7601585 +19342960 +18230820 +16781825 +11276171 +11871236 +11746718 +5874064 +13822889 +7564885 +18568984 +13469651 +6380655 +7385972 +16025543 +5881273 +19307571 +14271808 +3204795 +15848597 +3970252 +14617181 +16230015 +2744079 +18591921 +13995247 +2323995 +7598963 +2084790 +20400706 +1599826 +7685471 +19701441 +7912224 +1069642 +2843693 +6757485 +11755893 +17203875 +17449634 +1616210 +1115517 +7737899 +13349721 +1563781 +2807649 +18735444 +20426265 +3277540 +14773156 +17292348 +7673674 +5753478 +10716497 +9157402 +16196592 +525696 +4343150 +20501631 +12582298 +6220748 +2071028 +6241719 +5548352 +473267 +5950741 +15773231 +13142628 +21004290 +3033092 +12791357 +15394435 +9709213 +17024307 +2187026 +16559659 +15151297 +8151429 +11014684 +8255631 +5194459 +19189607 +18168561 +586644 +12537078 +9975943 +2544851 +19920985 +15208313 +14596865 +11046141 +4205525 +17093120 +20614353 +8184853 +9874363 +9711834 +11240782 +9938588 +16982365 +1152872 +20814237 +5916007 +4326766 +8139633 +224232 +682981 +10690282 +3843768 +8365076 +439844 +16434486 +18080743 +10873782 +18191498 +5832776 +17426697 +16972534 +9505397 +1423535 +19590685 +7475756 +5273757 +1263628 +5159725 +19706028 +9970700 +18404489 +16615365 +14182680 +17734059 +3126808 +7752972 +17666557 +15394435 +19064434 +5195114 +17116713 +2664781 +2792576 +16278511 +13225858 +5994650 +14851799 +8784504 +8747804 +8914920 +11170659 +19567748 +18163318 +11610403 +21358838 +8875599 +2738836 +13695749 +20539642 +11340396 +10803004 +4075764 +16127779 +7159219 +19268905 +9573554 +1276735 +20416 +13938887 +7028148 +17251061 +4468323 +19346892 +8243179 +19379660 +21234320 +14393049 +15123117 +3598009 +3883090 +2875806 +4037754 +2344311 +2670679 +3362736 +1839031 +20257839 +16517716 +12765798 +4546311 +12377826 +18170527 +8715036 +15861049 +18232786 +5570634 +2136563 +20967590 +17644930 +7635008 +11858128 +975271 +8202547 +4852362 +15601527 +18199362 +20527190 +15003842 +6880692 +5201668 +12961094 +3778888 +18891419 +17931321 +6034626 +20909919 +8687511 +6054942 +11798491 +6849890 +21077035 +11153620 +11008786 +14227244 +10134540 +17668523 +5682700 +9904509 +16939111 +2198167 +13482103 +1892115 +17008579 +7328956 +9959559 +542735 +7187399 +12510209 +7247692 +21396194 +10532997 +7965963 +17527622 +4179311 +10619504 +1212510 +3959766 +5651243 +9187549 +18579469 +18384173 +3932241 +3812311 +3094040 +5701050 +15600217 +15108699 +14727281 +11114954 +13518148 +3074379 +11591398 +12448605 +3076345 +16854570 +4640682 +6338057 +2514049 +9501465 +14774467 +13862 +5834087 +5600125 +2135252 +610892 +17566943 +10404547 +12544287 +18774766 +1673881 +4742262 +2194235 +6716198 +5650587 +15629708 +15038576 +5183318 +1470065 +5564735 +2196201 +11465570 +5071907 +21406679 +772110 +14717451 +16037340 +2215861 +4344461 +11351537 +17041347 +9085968 +6311187 +17286450 +4204870 +18636485 +20786056 +18670564 +8777951 +256999 +3886366 +6695882 +16847361 +20061232 +16987607 +16646822 +5195114 +17904452 +17904452 +16171688 +6653 +9736083 +8121283 +13870074 +11476055 +18044043 +7933851 +18449053 +8715692 +10217115 +7809333 +4788793 +2753254 +6575296 +12061289 +11087429 +15486185 +15129670 +1030976 +8043296 +2375113 +19230894 +13767839 +7825717 +657423 +18784596 +5607334 +10852155 +12533146 +7579303 +4756025 +419528 +2470140 +16262127 +7529496 +12714025 +11995753 +17612818 +7518355 +19789258 +19514008 +16913552 +6336746 +18112200 +20954483 +16696629 +14686649 +17325116 +1745970 +6869551 +20238178 +21162231 +18223611 +13100685 +16965325 +17304800 +16001295 +10859364 +8009872 +3680584 +11457705 +17165864 +12276902 +3566552 +6161110 +17135718 +8332308 +11105779 +2673301 +15882020 +17586604 +12871966 +6978340 +1717135 +2637911 +5609955 +20878462 +3845079 +18994310 +5470364 +16991540 +9003393 +16862434 +11811598 +7066814 +6155867 +10401925 +6784355 +2970177 +9585350 +11134614 +18207227 +2541574 +7368933 +13398873 +4813696 +14417953 +7706442 +8375562 +20878462 +17801561 +1238724 +13922503 +11290589 +116098 +11818807 +10831839 +16192004 +11485230 +10934075 +8988320 +7405633 +13894322 +18557843 +5189871 +6923946 +849442 +15303995 +13145905 +10327215 +15066101 +10145025 +13330060 +331055 +3132050 +17410313 +3198241 +2824033 +15146054 +8155362 +16912897 +19640492 +1076851 +19112275 +15929861 +5153171 +12502344 +11865993 +13495865 +120030 +18511968 +9070240 +12293941 +10049343 +15591697 +14442201 +10916380 +20681855 +5343880 +7122519 +1986486 +17034138 +4459804 +11074977 +2879738 +12047527 +4406720 +14704999 +20373181 +15722768 +2289917 +20542264 +11656278 +15197827 +20348278 +175735 +733444 +4027923 +20799819 +12811017 +4616434 +2277465 +20048780 +4927729 +14257390 +19782049 +8311337 +393314 +6720785 +11566495 +150176 +5230503 +18809500 +13991315 +15258120 +14269187 +947746 +16705149 +14318338 +2236833 +18392693 +16671070 +18783941 +7332889 +3202174 +2606454 +9916961 +18045354 +10553968 +15468490 +7713651 +7486242 +11064491 +11848298 +10962911 +19273492 +895317 +19496969 +5793455 +4980157 +19641148 +11208670 +3120254 +4389680 +20272256 +7747074 +11711328 +3499706 +18633209 +7849310 +14647328 +18557187 +15822383 +19766976 +6226646 +20248664 +13554192 +7121864 +6760107 +10104393 +2384943 +2068406 +4936248 +13556158 +6691949 +5265893 +2899399 +1068331 +1846240 +11547489 +6345921 +17177006 +2224381 +17011856 +5934357 +13456544 +6651973 +2837140 +7056983 +8845452 +14020151 +9225559 +3953213 +8934581 +10423552 +15621188 +19632628 +6992103 +11701498 +19772874 +209814 +13729828 +19789258 +10304932 +7250314 +9088590 +19711926 +10637854 +2803717 +20738871 +4469634 +17749132 +14313751 +7838824 +4324145 +13632180 +17047900 +12428289 +372342 +1782670 +20573065 +20790644 +21024606 +10352773 +19045428 +18630587 +627931 +14304576 +12679946 +4519441 +20989872 +18838335 +17848091 +15965906 +21101938 +20219173 +15480286 +18458228 +3845734 +370376 +12925705 +12482684 +18270141 +14955345 +18609616 +15600217 +1304915 +15920686 +18745930 +16871609 +3054063 +5092223 +13153114 +11700187 +20546196 +9474595 +6137517 +21101938 +7014385 +2400672 +9513261 +10194832 +11750650 +12795944 +18135793 +17951637 +8277258 +9837663 +15013672 +4969671 +10122088 +20018633 +9342868 +10488432 +10474670 +20954483 +14183335 +18026348 +1413049 +4506334 +10090631 +13495865 +16988263 +11261098 +16153993 +243892 +4893650 +13558780 +14119110 +3895541 +7882078 +7429881 +18840302 +3260500 +8672438 +18848166 +19260385 +13441471 +5418591 +19598550 +18753139 +21183858 +15078553 +16488881 +6382621 +20088101 +13406082 +8572824 +2027119 +17513859 +2829931 +11689702 +6920014 +3103215 +2187026 +16771995 +2550749 +8446340 +20734938 +16823113 +1283288 +11603195 +3677307 +11948568 +12459746 +9265536 +4902170 +19970792 +13236999 +10284616 +15822383 +2027774 +2691651 +15640849 +6661803 +9834386 +13677399 +17756996 +17108193 +13048257 +10645718 +19814162 +15144088 +14071924 +20374492 +588610 +5233780 +16093045 +15778474 +18739377 +18769523 +733444 +7125140 +17007923 +16991540 +17975230 +11159518 +14164330 +4996541 +7865038 +8857904 +8947688 +508001 +15012361 +13286151 +4662309 +5702360 +7358447 +14685338 +15537302 +12295252 +3179891 +10160099 +12559360 +16404340 +18452986 +13949372 +13464408 +8957518 +1680435 +19415705 +16909620 +4058725 +19905257 +2015978 +6986860 +6662458 +4041031 +20291917 +7266698 +3444656 +4429657 +10218425 +2515360 +7066158 +7051085 +17135063 +7924676 +1489071 +3614393 +9641711 +18090573 +11828637 +10178449 +19680469 +8211722 +17542039 +18882900 +10864607 +20387599 +18334366 +6925257 +4554830 +13573853 +14543781 +8828413 +16055690 +3985981 +18098437 +11086118 +8301506 +2712622 +6145382 +18813432 +16714324 +19639837 +19331164 +10529720 +8349347 +5510341 +16193315 +1878353 +15560895 +1221030 +7764769 +20291917 +21407335 +1113551 +19421603 +18135137 +8168469 +14107314 +17536141 +20256528 +11277482 +1229549 +13676744 +18091228 +10221702 +1591962 +11480643 +13616451 +14094862 +17996857 +8929993 +4465046 +1570990 +17166520 +337608 +12869344 +8556440 +2331860 +18972028 +14151222 +1808229 +19249900 +14307197 +17755686 +3580970 +10439281 +12842475 +6231234 +19685712 +1465478 +12879830 +6615273 +21281506 +18678428 +19268250 +21107181 +5218707 +7486897 +12084882 +5595537 +18195430 +9546684 +19039530 +9456900 +19215166 +8984388 +21160921 +20955138 +2474072 +6656560 +11864027 +18208537 +18951057 +11742786 +3380431 +6265312 +3430893 +15766677 +11241 +3394193 +11595986 +3396815 +11354159 +14828862 +827815 +705919 +17587259 +14517 +17051832 +493583 +2907918 +451640 +7164462 +1568369 +12173355 +4685246 +12000341 +1599826 +3228388 +18182978 +2332515 +8633772 +8317890 +550599 +5485437 +18256378 +12003618 +8979145 +21276919 +30901 +16018990 +17094431 +9803584 +11978714 +20619596 +5811150 +8118006 +14298678 +6310532 +10098495 +14081755 +16479050 +10568386 +9597802 +16554416 +148866 +18388105 +12720578 +3483977 +15612013 +18958266 +7408910 +4929039 +1767597 +11714605 +20824722 +2583517 +6543183 +13443437 +4090838 +20529812 +13945440 +21465006 +20578308 +14041122 +11907936 +6057564 +2887602 +19760 +952333 +15999329 +7995454 +2918404 +19502867 +19405219 +20959726 +2057920 +14730558 +14725315 +433946 +12523316 +21288715 +12592784 +10953080 +13100685 +4392302 +15370842 +18555221 +3770368 +1395354 +3113045 +10733536 +13587615 +4207491 +9833075 +17289072 +19344271 +1974035 +19618866 +5896346 +3863429 +12890971 +2723108 +2015978 +6951471 +9194102 +14429749 +20450514 +11306973 +15161128 +11111021 +7843412 +10331147 +2989838 +14944860 +6171596 +14248215 +16722843 +2533710 +6412767 +19348859 +20225071 +20045503 +3073724 +18890109 +6766005 +7488864 +19396700 +16049136 +16531479 +6553014 +12660941 +10069659 +19794501 +19860037 +9192792 +1921606 +20746735 +2798474 +13443437 +12072430 +17594468 +7401701 +19267594 +6370169 +2119524 +14548369 +11355470 +1812162 +20854213 +10811523 +5795421 +11972816 +8637704 +18045354 +17692116 +17967366 +17977852 +9258327 +4844498 +11270929 +18132516 +20153637 +18992344 +15100835 +16174309 +3347008 +12336539 +1821992 +17550559 +13813058 +3299166 +21116356 +20064508 +14866217 +6274487 +5406139 +9747879 +607615 +21310342 +18224266 +2238144 +3320793 +3871948 +4024647 +12229716 +16013747 +3255258 +19862003 +16079938 +21375222 +3248704 +7426605 +4894305 +7011108 +18688259 +21457142 +21371945 +7904360 +2978042 +15947556 +20036983 +13022698 +12840508 +18291112 +2485868 +13228480 +13581062 +7507214 +9565034 +5948775 +7352549 +4580389 +14105347 +19010039 +18013241 +13188503 +4792725 +12047527 +13790776 +18184289 +4139334 +18531628 +10000847 +2236177 +10501539 +286490 +3533784 +16204456 +15132947 +13761285 +2850247 +5948119 +19780739 +9598458 +19926228 +10962255 +12552807 +15099524 +8728144 +8043296 +20827344 +21118322 +3208072 +15390502 +5668282 +863860 +9888125 +9502120 +17160622 +4913966 +15414751 +12581642 +10053275 +8304128 +7741831 +10194832 +18308807 +12337850 +6249584 +13922503 +2034328 +12554773 +20933512 +14672887 +974615 +13379212 +402489 +12535112 +15415406 +1546087 +10931454 +19163392 +12461712 +15860393 +19117518 +3830661 +15393779 +10647684 +14314406 +1253142 +8359178 +15526817 +15177511 +8743872 +649558 +9676445 +9312067 +19628041 +4288100 +13244208 +14592278 +13758008 +11484575 +7331578 +10509404 +15849908 +4853018 +13404115 +14001801 +20982008 +1055880 +7994144 +5180041 +5367473 +10434693 +3538372 +20356798 +15015638 +20679233 +14163019 +10410445 +13508973 +15932483 +1047360 +18119409 +18398591 +10536929 +10092597 +14800026 +14161053 +1453681 +16704493 +14307853 +20895501 +11820773 +12545598 +19481241 +21459108 +845510 +20854213 +11068423 +18838335 +5758721 +16855225 +6662458 +12358166 +11858128 +19662774 +13139351 +14201030 +2279431 +10093907 +7492140 +2213240 +5619785 +5206255 +5788868 +16364363 +13254694 +8403742 +11544212 +15673617 +13962480 +15615290 +10601809 +3611116 +17687529 +11111021 +18578159 +17308732 +15423270 +4636095 +4358223 +16154649 +4741607 +471301 +17816634 +16714324 +6461264 +14515601 +1663395 +15631674 +8726177 +8532192 +2125422 +4510921 +199983 +7980381 +673806 +4974259 +7172326 +14870804 +17081979 +19871178 +17116713 +3542959 +6667701 +643005 +4132781 +18823918 +8728144 +5982198 +3251325 +20223105 +4614468 +7546535 +19526460 +7020939 +6855789 +11793903 +19540878 +3473491 +9591249 +18117443 +6009723 +9504742 +21075069 +9901888 +15072654 +11493750 +1772185 +14075856 +15489461 +8213033 +14725970 +17762239 +308773 +17675732 +3683861 +13821578 +13986072 +19940646 +21058685 +6842026 +18986446 +16387300 +20565201 +15144088 +10565764 +10188279 +15140156 +7731346 +4587598 +2585483 +15621188 +5033241 +6424564 +2970833 +13931678 +3186445 +15303340 +18540148 +6070016 +15132292 +336298 +32212 +17987027 +17131786 +9975288 +9973322 +817985 +8066888 +7532117 +10124709 +9521125 +13077748 +2529122 +6997346 +15979013 +2692961 +6093609 +16544586 +6856444 +9964147 +15083140 +7095649 +17912316 +8743872 +4145232 +11774243 +3433515 +7417430 +1527081 +11111021 +8538745 +7121208 +13099374 +13339891 +6149314 +21069171 +20746080 +18964819 +16697940 +18762969 +12837232 +17924112 +1215787 +13181949 +15248290 +6589714 +17031516 +4402788 +16222150 +1116828 +19337717 +19230239 +11229641 +12920462 +12611134 +3227733 +18178391 +5741682 +21041646 +19475342 +9945141 +14817065 +2137219 +16534756 +1144353 +18130550 +10173206 +6489444 +21343110 +19426846 +3512813 +1435331 +18371066 +18870448 +10493020 +12422391 +3754640 +8901158 +4938870 +17573496 +11471468 +14765947 +12744826 +10097840 +10270854 +16646166 +15325622 +11454429 +6459298 +9059099 +21044922 +10068349 +4954598 +12991896 +20760497 +11480643 +1093235 +17283173 +5317011 +10034925 +14583103 +8283156 +18814743 +3546236 +15960663 +21377844 +17476504 +11371854 +14652571 +8335585 +1851483 +2595313 +8665885 +12388312 +20385633 +16859157 +593853 +15531404 +18176425 +19483862 +16179552 +14370112 +9403817 +9631225 +7992178 +11114298 +10392095 +9055822 +9972666 +3609150 +18513934 +20700860 +17372957 +4600050 +10767614 +14176126 +787839 +2320719 +11014684 +5902900 +1264283 +21446656 +6432428 +11797180 +6509760 +3237563 +19866591 +4687213 +6153246 +7505247 +11269618 +19413739 +11986578 +4253366 +804222 +951678 +11639895 +15333486 +899905 +10922934 +6691949 +2804372 +20995115 +1310158 +17764861 +6644108 +11419695 +6967855 +14339310 +14404846 +10155511 +8667851 +16905688 +1031631 +15332176 +17649518 +7064848 +7975138 +18995621 +19953753 +571571 +12641935 +4173413 +9384156 +4832046 +15644781 +18654180 +5069286 +1097167 +10996334 +20139219 +3307686 +16462666 +9022399 +14193165 +17362472 +17903141 +13349066 +7859140 +4556141 +15557618 +14372078 +21194999 +6144726 +134448 +7933851 +1711892 +20135287 +15745706 +15722768 +12828057 +18436602 +14515601 +8737974 +4443420 +15047751 +9025020 +10989125 +9189515 +16851293 +18605684 +5594227 +8053781 +21426995 +3429582 +6351819 +8263495 +809465 +12550185 +2848936 +6634278 +14138771 +9692174 +13320885 +16204456 +1589340 +10976673 +17769448 +1144353 +3805102 +19849551 +5534589 +5144652 +15638227 +6843337 +17211739 +17620027 +3672720 +20752633 +7090406 +13267801 +4993264 +13125589 +7290946 +9946452 +20638601 +20991183 +11763757 +610237 +7755594 +10560522 +18369755 +12278868 +6004480 +5345191 +12284766 +18929430 +15033988 +16176931 +6824987 +4240259 +2196201 +10028372 +10823975 +8448961 +889419 +14931753 +17199943 +4284168 +12993207 +18084675 +10685039 +16045859 +19390146 +12136000 +3445311 +4683280 +5287519 +18527696 +10687661 +18837025 +3708765 +13408703 +17911005 +5841296 +20905331 +14476279 +2230279 +18888143 +18865860 +18047320 +16481672 +21070481 +11938737 +1763665 +11987234 +1019835 +1772840 +4351014 +9989050 +8898536 +882210 +3920445 +18444466 +11405277 +19342305 +14256735 +3563275 +12067187 +7235896 +13198989 +21437481 +13372658 +13901531 +15184720 +3093384 +9304202 +19736174 +9450347 +7006521 +14326203 +2247319 +11517998 +2894156 +16743815 +14225278 +13894322 +830437 +12810362 +19698819 +19187641 +19008073 +9491634 +17152102 +5989407 +16972534 +1951753 +2401983 +10727638 +17821221 +6937053 +21434204 +4044963 +9310101 +7794915 +15921997 +2598590 +19157494 +21163542 +12379137 +8936547 +18922876 +12209400 +14067992 +5611266 +8785815 +18780664 +17765516 +4187831 +2042192 +18071568 +8430611 +10248572 +3934207 +3551479 +10281340 +12426323 +4282857 +20490490 +4371330 +6880692 +14116489 +5068630 +5923871 +14936995 +15436377 +12929637 +4132781 +19401287 +4640682 +16425966 +14756772 +13486690 +20221139 +6756174 +12620964 +1968792 +13128210 +9737393 +15832213 +19668017 +8769431 +21256603 +2932822 +6857755 +11015339 +8028878 +20687097 +14723349 +11271584 +1175155 +13408048 +665287 +3968286 +20225071 +10684384 +8677026 +6455366 +5377959 +11150998 +16064865 +6126376 +11035000 +5881928 +5530657 +4552864 +907114 +15926584 +16324386 +17037414 +13107239 +7738555 +3339799 +4094114 +14064060 +11997719 +9480493 +1270837 +16385334 +8927372 +7725447 +15818451 +15735220 +12970269 +4125572 +21040335 +21205485 +5838019 +15846631 +3365358 +13415257 +469990 +101024 +6443569 +18920910 +13757353 +13805194 +19926228 +6327571 +15830902 +14080444 +827160 +7421362 +20312233 +8937202 +3980082 +18394659 +18245237 +11201461 +814708 +20069751 +6024141 +11109711 +7212303 +15771920 +3293924 +446398 +13769805 +17745855 +10494331 +5958605 +17097707 +9614842 +16784447 +14591622 +10568386 +9051890 +7999387 +5977610 +18385484 +458194 +20959071 +17681630 +9905820 +12145175 +521764 +7650737 +14326203 +447053 +21073103 +19199437 +14957967 +8517774 +6090332 +4957875 +7626488 +4563350 +1391422 +8382115 +17162588 +17568909 +6853823 +16304725 +5567357 +18226887 +14194476 +9335004 +2672645 +12805775 +7215580 +17494854 +6332158 +12411905 +13763251 +20715278 +4453250 +1784637 +8749115 +16975156 +9489013 +21043612 +15179478 +11793903 +6734548 +12101921 +9276677 +15658543 +7690058 +15584488 +19579544 +17829741 +2472761 +4910034 +4631507 +1635215 +2523224 +7797537 +6524833 +12647834 +10548070 +16598325 +14577860 +1259696 +1575578 +15602838 +14948136 +9388743 +9745913 +13252728 +4042341 +14812478 +18184289 +20883049 +12041628 +2874495 +4271061 +16230670 +300908 +8528915 +9444449 +5136787 +1051292 +11304352 +6048389 +4939525 +19582166 +5952051 +10171895 +20024532 +2903331 +2516670 +19709305 +4832702 +17823843 +20905331 +11859439 +13642010 +19044118 +5474296 +8780572 +17028239 +15913477 +3894231 +16111395 +13811092 +18439223 +20421023 +14891776 +4299897 +12870000 +16668449 +4860882 +2668713 +13151148 +6887901 +485719 +19340994 +9076793 +12190394 +20654985 +19428812 +7760181 +13967722 +16340770 +2846970 +10728948 +14571306 +13387076 +18867171 +15886608 +1888838 +6701124 +3049475 +15490117 +11782107 +11852230 +923497 +14977628 +20608455 +3643229 +642349 +829781 +12105198 +18797703 +3404024 +11152309 +15282369 +2000904 +4833357 +948401 +6639521 +16046515 +731478 +20827999 +10223668 +8773363 +12491859 +14585724 +9651542 +15244358 +9389399 +12085537 +5643378 +9321242 +2191613 +1415015 +4969016 +3923066 +13515526 +20516705 +16655341 +665942 +6101473 +9967424 +13173430 +1619487 +11290589 +10054586 +18330434 +6005791 +2023842 +7596997 +420839 +11305007 +10325248 +15667063 +11546834 +6010378 +12130757 +13774392 +15420649 +16450215 +14992045 +9555859 +16365018 +1652254 +367755 +21318206 +17726850 +2249285 +5706293 +6267278 +14396326 +15298097 +19508110 +6208296 +20089412 +1000174 +17526311 +20160846 +11969539 +8584620 +6555635 +4512888 +8008562 +11321391 +17431284 +4089527 +9344834 +17723573 +21061962 +20192303 +1559194 +5958605 +9760986 +5512962 +4824182 +12324743 +2951172 +23037 +1785292 +6689328 +4763889 +3166784 +12284110 +14598831 +16205767 +4469634 +14948136 +11596641 +557153 +4124916 +6228612 +6491410 +12057357 +16173654 +4284823 +10921623 +21465662 +14685338 +9116770 +11307629 +13621694 +8825136 +5526725 +5606023 +19453716 +13950028 +20309612 +6217471 +13302535 +18715784 +19602482 +7035357 +3731702 +15982290 +1390767 +9247186 +12472853 +4231739 +4674761 +18000134 +11978714 +5803941 +3756606 +18627310 +10146991 +8675060 +10436004 +16339459 +9097110 +6920669 +8981767 +19253176 +5083048 +3648472 +3715318 +5687287 +14128940 +1212510 +18828505 +13303846 +11295177 +14297367 +8143565 +4486673 +4375263 +1831822 +8355245 +10594600 +1100444 +11015339 +21025917 +16211665 +4735054 +21407990 +21292647 +139035 +11902693 +18574227 +8054437 +2266979 +18665977 +21465006 +21149124 +10296413 +8704551 +13202266 +18821296 +7906326 +15517642 +14849178 +13430330 +21278229 +17737336 +15610047 +15102801 +11654312 +17187491 +20510151 +9485081 +9187549 +15815829 +14906194 +13214062 +13637423 +4921175 +20972833 +3771679 +14219380 +4913311 +2571720 +3562620 +19230239 +11338430 +8391290 +7498694 +18270796 +14257390 +9118736 +12472198 +3901440 +11126095 +11810287 +9782613 +18507380 +8475176 +14584413 +5630271 +9605011 +18432014 +19740762 +16654686 +17719641 +2434751 +12029177 +19705373 +7621246 +4405409 +12788080 +17594468 +17357884 +17706534 +9304202 +6737824 +314015 +21429617 +20446581 +8426679 +13253383 +9499499 +12017380 +14075201 +18193464 +18659423 +8773363 +6170285 +15502568 +291733 +9190826 +12657664 +12290009 +14574583 +6973753 +12883762 +6605442 +12132068 +4550898 +17899209 +6912149 +3778888 +445742 +14406156 +9663993 +12371273 +7551778 +9239322 +18861273 +6078535 +19784016 +13997869 +8945067 +1650944 +5608644 +13442782 +812087 +123307 +17718330 +14972385 +1972724 +7955478 +3441379 +8045262 +2120835 +20803096 +6436360 +16756922 +11354159 +8171745 +676428 +10022474 +10194177 +12359476 +4313659 +2894156 +13393630 +13406082 +15081829 +6081157 +9298959 +17047900 +6806637 +6895110 +19716514 +17391963 +1117483 +3744154 +20570444 +12145175 +2978697 +19710616 +11246680 +1272803 +7385972 +9960215 +15863670 +18081398 +16183484 +18004066 +3722527 +16227393 +14649294 +1659463 +6085744 +5238368 +18587334 +5838019 +8525638 +349405 +12752691 +17107538 +3362736 +7451508 +20169365 +5368128 +17660004 +16966636 +15809276 +2978042 +7365656 +12704194 +10087354 +17999479 +12899491 +12461057 +15640193 +18449709 +15797479 +17570220 +8098346 +20446581 +20563235 +17010545 +2330549 +1749247 +16087802 +9179029 +11291900 +17161932 +18656146 +15148676 +8937202 +1093890 +1246588 +3550168 +7932540 +20286019 +18487719 +1553951 +8562994 +11023859 +9878295 +11451807 +15457349 +71533 +20127423 +7300776 +7384662 +15440965 +18557843 +17682286 +13788810 +20525880 +13500453 +10694214 +11519309 +1111585 +8684890 +16722188 +10177138 +1933403 +3632088 +11840434 +18047975 +6069360 +14552301 +18854719 +20830621 +12185807 +17108848 +13269767 +8723556 +9641711 +2297781 +5289486 +12278212 +13200955 +3849011 +13982140 +10789241 +7693335 +9239322 +4078386 +17217638 +7298810 +20727730 +16913552 +10155511 +15396401 +6720785 +7655980 +16821147 +3734323 +9867154 +6870862 +17587914 +18996276 +1867211 +11175902 +19002175 +20121524 +9104318 +6317741 +8725522 +5421212 +13170808 +21317551 +10517268 +11382339 +77432 +15733909 +17114091 +5318977 +5819014 +14091585 +19124726 +5392377 +16686799 +10339666 +15168992 +20658917 +1496935 +13443437 +6629691 +15819106 +20023221 +14673542 +12574434 +8715036 +19084750 +11473434 +837646 +11341052 +12200225 +18787873 +7043876 +8309370 +18028970 +9462143 +15442276 +5651898 +2546817 +15245013 +2184404 +312705 +16208388 +7882733 +15550410 +10574284 +19439298 +6580539 +6577917 +17785832 +17199288 +9846183 +14735145 +2582861 +17433905 +4719325 +14064715 +11847643 +4659688 +16480361 +2979352 +10133884 +1843619 +856651 +8191406 +10131263 +3813622 +14271153 +6151280 +21138638 +5663694 +13191780 +12289353 +9498843 +16778548 +18759693 +19314780 +11232263 +4767166 +19231550 +13392319 +11018616 +3522643 +2825343 +7148078 +6937708 +7577992 +8890672 +17681630 +3946004 +15827626 +10180415 +14422540 +11934150 +18578159 +8061646 +1248555 +6069360 +11820773 +3118288 +21466317 +11165416 +4504368 +8237281 +13859589 +10107015 +16783136 +2854179 +17062973 +9845527 +13550915 +16924038 +6235166 +7954167 +7468547 +7066158 +9605667 +21465662 +18079432 +14106003 +3611116 +6868896 +13860244 +6754864 +19464857 +4793380 +17718330 +8028878 +2807649 +16134988 +8859870 +16526236 +9615497 +7572094 +16292274 +18506725 +838301 +4198972 +15408852 +10923589 +12219885 +1513319 +1439919 +9226215 +4721291 +19544810 +1548708 +3029159 +198017 +9891402 +12810362 +5271136 +1030321 +2878427 +14385840 +7635008 +19181087 +12330641 +19675226 +9319276 +14028671 +20747390 +16095011 +17840882 +26314 +13341201 +15971804 +17161277 +16160547 +18664010 +1777428 +16549174 +3510847 +16899790 +10655548 +3693691 +13028596 +17148170 +12633416 +1372417 +16741849 +14456619 +20736905 +8228762 +2206686 +20543574 +1493003 +1501522 +9948418 +7833581 +2580240 +18481166 +20634669 +3678618 +1675847 +610237 +17429318 +2599901 +632519 +18298977 +1424846 +19324610 +19367209 +2034983 +6438982 +14864906 +19664741 +5867510 +19900014 +18428737 +14576549 +4032 +6457987 +5596193 +7073367 +3857531 +5445461 +5889137 +13627592 +7234585 +4921830 +156730 +9661372 +18575537 +14388462 +16482327 +9585350 +10051965 +17432595 +6516969 +10985193 +12530525 +11645793 +18307496 +15692622 +1361276 +10334423 +11310250 +7606828 +19276114 +20120214 +1454337 +14114522 +5556871 +19241380 +10789241 +2128044 +13972965 +15094281 +15669029 +14744320 +9487702 +12556739 +12249377 +20392842 +12122893 +14569340 +6693260 +9314688 +14212171 +15372808 +5929769 +2514049 +9926791 +501448 +9619429 +14099449 +14280983 +21306410 +14755462 +18715128 +2485868 +14511669 +12074396 +7918778 +11911868 +14393049 +7180846 +15406886 +15428513 +20063198 +2618906 +1682401 +1639147 +15138845 +16726775 +14919301 +21108492 +3544925 +11100536 +3240184 +11333843 +412319 +17242541 +17270066 +18546046 +13611208 +12099300 +6393762 +6322983 +19289876 +4862848 +11996409 +19422258 +9937277 +13593514 +4068556 +199983 +10938007 +7485587 +14136805 +4537791 +15304651 +8728144 +4162927 +7266698 +11728368 +298942 +17006613 +1076196 +12672737 +5424489 +5143341 +8385392 +21440758 +6530076 +12080294 +1484483 +16733329 +4989332 +17264168 +16163168 +997553 +18338953 +11551421 +3149745 +19299707 +15623154 +576158 +3226422 +1731553 +17035448 +9164611 +18551289 +1808885 +14918645 +20367283 +15721458 +18165284 +6717508 +8143565 +12933569 +14925854 +11689702 +18742653 +21058029 +15277126 +18381552 +8863802 +5722677 +3140570 +13838617 +18382862 +5303248 +1394044 +20081548 +20678578 +13567955 +18591921 +9652852 +6862998 +19569714 +17878237 +12305082 +12008861 +6807948 +8081306 +5467087 +16934523 +3604563 +2639877 +7927297 +13436228 +8199270 +10791863 +12328019 +16214286 +9343524 +21414544 +4107222 +8737319 +11804389 +15096903 +3126808 +14306542 +8393256 +7797537 +10557900 +397246 +1190228 +11321391 +12004273 +810121 +13583683 +21363426 +5338637 +13385765 +2530433 +4242880 +10955047 +14862940 +20666126 +14546403 +11442632 +15716215 +804222 +6798117 +14600797 +2617595 +6381966 +10226290 +15008429 +13489312 +19734864 +15005153 +5113195 +20999047 +4383782 +2826654 +4327422 +19770908 +414285 +7035357 +20879117 +14655847 +1296396 +12422391 +795703 +4679348 +15456693 +9403817 +895317 +3609150 +18005377 +12680601 +17393273 +19957685 +2664126 +15512399 +7650081 +15894472 +11088739 +11811598 +9105629 +4103945 +6032005 +14258046 +12463023 +1409772 +2422954 +7353860 +8566926 +19687023 +675773 +21321483 +16359775 +6147348 +7458717 +8067544 +17430629 +20898122 +10358016 +5764619 +12579676 +5512307 +19870523 +15565483 +18529007 +10332457 +2209308 +12590817 +5448082 +19496969 +9627293 +8623286 +1460890 +5185284 +9623361 +8813340 +21196310 +15794202 +20383667 +16079283 +1598515 +6127032 +10872472 +11381029 +3358804 +8865769 +1122071 +20615664 +2190958 +11819462 +14419919 +3040300 +758348 +11371854 +16284409 +15551720 +217023 +14633565 +7330267 +1205956 +3847700 +9760986 +18360580 +21364081 +21230388 +20534399 +3000324 +668564 +9215074 +6969165 +20439372 +19003485 +18783941 +7219512 +16412859 +4881198 +11618268 +3375188 +3012120 +14734490 +2015322 +13792087 +9863222 +16985641 +9433308 +1919640 +5994650 +292389 +4866125 +18374998 +2428852 +12044905 +2056610 +15904958 +19426846 +1616865 +4288755 +11675284 +21063928 +19335751 +725580 +15058236 +16435797 +1431399 +2206031 +8813340 +693467 +14054230 +9812759 +3124186 +21101938 +14819031 +13512905 +20886981 +19846274 +4970982 +64980 +12246755 +17946395 +17167175 +3080933 +7741176 +12843785 +17408347 +2639222 +14130906 +3687138 +3640607 +7977104 +5223950 +10803659 +14468415 +1814783 +5693841 +9468697 +8394567 +15413440 +18904526 +9519815 +14220690 +12921117 +11493750 +7667776 +19091959 +4433589 +6370825 +1087992 +16305381 +1892115 +2952483 +3911270 +1484483 +1030976 +12538389 +18951057 +17114091 +11514721 +13525357 +13676744 +12571157 +17830396 +6996690 +3094695 +6182082 +450330 +20341724 +9358597 +15801411 +7198540 +3210038 +787839 +8218276 +17802871 +325157 +9605011 +21078346 +21046233 +8604936 +15670340 +20439372 +4561384 +10470082 +10282650 +12703539 +18980548 +20293228 +20588139 +17017098 +16482983 +13107239 +14756772 +8846763 +12000996 +2002870 +5324875 +20634014 +9429375 +4503057 +13174085 +16337493 +4872679 +14016219 +16277856 +4921830 +3198241 +17291693 +18112200 +9606322 +16338149 +2198167 +16287031 +14336033 +1072263 +18215746 +6279730 +19687023 +5387134 +19204680 +15579901 +7539981 +8698652 +1830512 +2485868 +11159518 +4210768 +18873725 +1392733 +4122295 +1956340 +985756 +5233780 +19467478 +6887901 +18382207 +9856668 +19248589 +15626431 +14100760 +11635307 +11753927 +338919 +5381236 +18041421 +1000174 +9256361 +21015431 +12795289 +8074753 +8699963 +19616244 +21212038 +6617894 +4147854 +1531013 +2622183 +12027211 +797014 +1013281 +16133677 +16356499 +19014626 +21056063 +55805 +8481729 +4316280 +5513618 +19279391 +7729380 +19064434 +18293734 +20294539 +6954092 +18645660 +15578590 +12551496 +10951114 +7350583 +3628156 +16497400 +1759078 +5561459 +11069079 +9806206 +16751024 +697399 +2504874 +6699158 +20745424 +717060 +21344420 +7946303 +15714904 +19044118 +1491037 +20881083 +4923141 +2322029 +8235970 +15861704 +18834403 +2318752 +4394923 +18510657 +12891626 +2099208 +9412336 +10895409 +16321765 +19896737 +5170211 +12776939 +19932782 +8182887 +5249509 +16097633 +3531818 +21042301 +6456021 +14972385 +20436751 +17020375 +3137293 +19113585 +9562413 +6789598 +19323955 +13776358 +4162272 +20162157 +17096397 +11856818 +21174028 +500792 +1287876 +10901963 +21077035 +3008188 +7125796 +662010 +16762165 +10367847 +11743441 +5749546 +12668805 +21393572 +14514290 +8382115 +3014742 +5335361 +5021445 +14950103 +11002888 +12424357 +20657606 +4006952 +11306318 +11825361 +12672737 +19431433 +18346818 +5286864 +1837065 +17503373 +10875093 +9127911 +6313808 +10811523 +18325846 +1874420 +8157328 +10378988 +17960157 +10015920 +20856835 +8255631 +11241438 +21164197 +8942445 +17367714 +14345208 +4459804 +1247244 +2860733 +9120702 +6690639 +19992419 +884176 +18916978 +2658883 +16963359 +1361931 +11977403 +5140064 +18773455 +19552675 +11576980 +5598159 +6748966 +18832437 +8228106 +14767258 +12618342 +2134597 +10169274 +10500229 +19954408 +20383667 +20751322 +19034287 +2234867 +7323714 +21233665 +8227451 +9589283 +5134821 +5296039 +12196293 +12325398 +3038990 +14929786 +15574658 +14606696 +17705223 +9281265 +16831632 +17515170 +2742768 +10010022 +13613830 +1277390 +1331129 +11153620 +7424639 +21288060 +429358 +11156896 +6834817 +7887321 +7997421 +20126767 +19162737 +8760256 +4931005 +13430330 +9808172 +12959128 +13975587 +6809914 +12463678 +9509984 +1752524 +9396608 +4315625 +20896156 +6475682 +8313303 +8616733 +12768419 +14223312 +20419056 +17284484 +21465662 +19297741 +21297235 +2626115 +14145324 +6274487 +1782670 +18863894 +16391233 +10109636 +5075184 +18323880 +612858 +13382489 +8199926 +5724643 +5680734 +8836277 +16247709 +5107296 +2597279 +7767390 +18407111 +11878444 +19583476 +308773 +2430818 +5792144 +19911810 +13230446 +20139874 +4074454 +2915783 +13598757 +6684085 +15770609 +14788229 +18668598 +11893518 +5362886 +2710656 +10031649 +9553893 +5912075 +14978938 +12383725 +7372865 +17331670 +14957967 +20844383 +10021818 +1833788 +4783550 +8338862 +21141915 +20190337 +5830155 +19091959 +1768253 +4797312 +12042284 +21412578 +14020806 +7752972 +13207 +19722412 +16538688 +11924975 +4535825 +13122967 +12952575 +14360937 +21396849 +21274297 +19873144 +6888557 +3818209 +1100444 +18817364 +4913966 +14980249 +3951247 +2797163 +6969821 +8460758 +10182381 +2821411 +14535917 +7680228 +5536555 +11763102 +16166445 +5881273 +15453417 +12951919 +1019835 +14124353 +17457498 +9489668 +13198333 +8329031 +6083123 +3937484 +11345639 +9561758 +1648322 +17647552 +17357884 +5661073 +19635905 +13493899 +18012586 +12820848 +6732582 +4539102 +17457498 +6693260 +18001445 +19129969 +5027343 +161317 +18451019 +11678561 +99714 +18817364 +12975512 +12388312 +2881704 +15078553 +16791656 +3892265 +12843130 +8829724 +11984612 +11340396 +8106865 +1626040 +3588179 +1266905 +4567938 +16758888 +20179196 +11352193 +2147704 +5486093 +587299 +20517360 +1384213 +14689926 +13010246 +2943963 +5134166 +12659630 +17994891 +19032321 +16791000 +4489950 +8112108 +13822889 +14223312 +5585052 +14962554 +13404115 +18203950 +10844947 +296321 +3269675 +19791880 +466058 +2352176 +7373521 +14282949 +12558705 +17332980 +16905032 +13570576 +1390112 +8590519 +8354590 +5353711 +5382546 +17359850 +551255 +10205974 +71533 +16001295 +3692381 +11677905 +3105181 +14456619 +3316206 +17812046 +21237597 +17930666 +4035788 +7770667 +19853483 +2901365 +18295700 +477855 +20370560 +3398781 +3487909 +20462965 +12129446 +2210619 +19232860 +4513543 +20356798 +19590685 +6873483 +4163582 +16796898 +8238592 +21331969 +18947125 +14600142 +11552732 +16730707 +8715036 +12592128 +642349 +15915443 +21244806 +1665362 +18907148 +1524460 +17072804 +20531778 +6718164 +15131636 +14973040 +1134522 +20909263 +16857847 +11158207 +13735071 +6860376 +13453267 +16463322 +7718238 +9684309 +7249658 +8178299 +1732208 +3771679 +16281133 +11944636 +12482684 +12456469 +18620757 +2999668 +10076868 +19186985 +6811224 +13998524 +5279000 +19825958 +5434975 +9835697 +19698819 +18127273 +1479896 +2590070 +1336372 +13365449 +5607334 +9988395 +16311934 +18370411 +726235 +8362454 +6115235 +6644108 +17437838 +20382356 +21031160 +20069751 +6858410 +16087802 +4315625 +13768494 +8087860 +3723182 +16305381 +13219960 +1655531 +10382265 +15998018 +9871086 +10634577 +6825642 +3373877 +20021910 +12555428 +13372658 +5064698 +12397487 +9063686 +11715261 +19466167 +338919 +9723631 +6935087 +5171521 +4015472 +19218442 +14900951 +7361069 +6806637 +20561269 +18673841 +12102577 +19267594 +636451 +12694364 +9744602 +9759020 +10668000 +6583160 +7676951 +8425369 +7293567 +21428962 +1192849 +14755462 +3716629 +14820342 +7815887 +15410819 +18906493 +3720561 +2001560 +251101 +10735502 +20783435 +5920594 +4069211 +11149688 +1428778 +1430744 +19017248 +5030620 +10354740 +4832702 +19984555 +7071401 +2865320 +12483339 +12331951 +7156598 +2145738 +8526949 +646937 +2357418 +16697940 +517176 +2668713 +783251 +20737560 +16494124 +7058949 +643660 +8950965 +7816542 +20628115 +1564437 +18917634 +20803751 +17798939 +8566270 +3752673 +1673881 +2348244 +21318206 +6611996 +5851782 +15672306 +12025900 +4230429 +4330698 +979858 +13419189 +21444035 +15219454 +1891460 +19551364 +12729753 +10850845 +3564586 +14142703 +5334705 +6463885 +2194890 +982480 +23692 +17055764 +19029044 +7528185 +16652065 +9245876 +498826 +632519 +16802141 +7193953 +7807367 +7669742 +4809764 +6965889 +14809201 +16910275 +17927389 +8717658 +18153487 +14843935 +6308566 +14358315 +14764637 +13476205 +762280 +20895501 +13756698 +17270066 +10601154 +7446265 +2921681 +18985791 +6597578 +10536273 +15424581 +17034793 +11181145 +6505828 +2086101 +14762670 +6651973 +17764861 +19965549 +15742429 +5665005 +11388893 +13121657 +18437257 +16236568 +6795496 +18392037 +2858767 +9298304 +3957145 +7647460 +19936714 +7602240 +20024532 +6071326 +11157552 +17458809 +17622648 +20065164 +6066739 +8000042 +12694364 +6295458 +3057340 +3056684 +16300138 +16778548 +9250463 +17891345 +12358166 +21379154 +17334947 +13252073 +12267727 +15060858 +8621976 +7007176 +1862624 +18646316 +17880859 +430669 +14912092 +593198 +5613232 +9726252 +19756491 +15745706 +2835174 +10184347 +3632088 +8751736 +16317177 +19125382 +5689253 +7587167 +9032885 +17658038 +10805625 +4567282 +2114281 +1830512 +13565333 +14066681 +11759825 +13525357 +14159087 +12327364 +17731438 +12180564 +19362621 +12377171 +20468208 +17500097 +3628156 +905147 +18390071 +19175844 +10805625 +11580257 +5373371 +19359344 +7947613 +18731512 +13230446 +4538446 +15299408 +11753271 +20014046 +19297741 +16555727 +20067785 +6676876 +9770816 +1698785 +19508110 +4371330 +17269411 +11552077 +5346502 +6910839 +3366668 +20985285 +12509553 +20168055 +15759468 +2343656 +3136638 +15553031 +19138489 +6033316 +3310963 +16407616 +14496596 +20025842 +1103721 +20026498 +7318471 +3551479 +9237356 +5618475 +18592577 +7069435 +19244657 +10088009 +21206796 +692156 +14221346 +6561533 +17149481 +10345565 +3266399 +18507380 +9217040 +12042284 +8479108 +11092671 +18239995 +11756548 +10563143 +14115178 +6891833 +18970718 +20133976 +18138414 +11413141 +19256453 +1591306 +12280178 +20215240 +19040841 +9942520 +5928459 +8040019 +10222357 +9736738 +16275234 +8253010 +13676089 +15659199 +14288192 +9185583 +6370825 +2485213 +4269750 +8053781 +19989798 +9182306 +14869494 +8380804 +1023112 +13712789 +4916587 +15283024 +20871908 +3335866 +20280776 +7808678 +17912971 +10217115 +3816243 +7121208 +3661579 +284524 +2639877 +4967050 +876312 +7906981 +2991804 +63669 +1502178 +17787798 +8074753 +14229210 +6868896 +8125870 +18625344 +13763906 +8532192 +28280 +16214286 +15923308 +15132292 +11833880 +17051177 +5351744 +5136132 +21036403 +17114747 +4735709 +18203950 +4254022 +3762504 +10445834 +7351894 +7616003 +4965084 +8582654 +8247767 +17368370 +7719549 +18413009 +11591398 +12558705 +17431939 +13537153 +9013879 +12559360 +3927654 +11379718 +6467817 +7362380 +5884550 +9542752 +3106492 +12902112 +10489088 +16656652 +8782538 +10494331 +8960140 +6604132 +12268382 +12647178 +16549174 +791771 +16296206 +14325547 +6681464 +21450588 +8540711 +7507214 +20293228 +13268457 +6138173 +11385616 +13488001 +13196367 +21387674 +16881440 +5208877 +25658 +317948 +12567880 +2152292 +4216666 +11278793 +12140587 +4927729 +16947631 +5077805 +14329480 +2177195 +21177960 +3657647 +8642947 +20434130 +5805251 +17351330 +789149 +7604206 +6540562 +10841014 +20858801 +4373952 +13114448 +12430910 +2194235 +16359775 +1174499 +21031815 +9437895 +19851517 +14393705 +20223760 +16488225 +7852587 +18279316 +11488507 +13497832 +15367565 +9544063 +10909827 +8722901 +9163956 +16629127 +7328301 +17159966 +10452388 +2800440 +19518596 +9794409 +13590892 +16076661 +14167606 +1308847 +4824182 +17578084 +15480942 +13847137 +9255051 +11743441 +17871684 +8772052 +19068366 +17369025 +11097914 +17954259 +10388163 +8997495 +8459447 +8169779 +9160024 +11857473 +887453 +10793173 +5410727 +7431847 +6697192 +7417430 +19891494 +4659032 +10996989 +17690150 +15062169 +19739451 +7474446 +8841520 +18861273 +18906493 +970028 +8768120 +2894156 +18107612 +11765723 +20677267 +12322121 +7405633 +4423759 +13784223 +3199552 +1415671 +18325191 +17554491 +13385110 +12442707 +14714174 +14168917 +15397056 +11417729 +18065014 +308117 +12915219 +16880784 +2130010 +20287330 +8478453 +12039007 +12598026 +4790759 +17528277 +1962238 +19674571 +11792593 +14039156 +18300943 +13980174 +16722188 +4377884 +18525075 +10882302 +20255873 +7242449 +2458999 +4200282 +7345996 +7475101 +13946751 +6866930 +10468116 +5216086 +6823676 +4716048 +3974839 +13415912 +16108118 +3933552 +11384305 +17816634 +12316878 +19833167 +2162777 +10120777 +8652122 +15669685 +2793886 +1067676 +13712789 +4241570 +20147739 +16779859 +12940123 +20347623 +8687511 +6562189 +934639 +5035862 +16389922 +9114804 +11636618 +18392037 +10768925 +11427559 +18191498 +5766585 +13808471 +19113585 +14552956 +6619205 +4239604 +8667195 +319914 +9409059 +1215787 +1236758 +9075483 +19599205 +2580240 +14294746 +9087935 +16633715 +19970137 +1948476 +9909752 +1894081 +12804464 +12720578 +10479257 +6763383 +6355096 +9814725 +14869494 +5107296 +2660193 +12204157 +8994218 +7318471 +12449916 +1553951 +17042657 +1068987 +10099150 +17085256 +2099863 +15913477 +10930143 +12250687 +8901158 +19829235 +8472554 +2701481 +12525937 +10749264 +13929712 +14980904 +21308376 +11162795 +21372601 +367755 +5135477 +6726683 +12059323 +17865130 +4147854 +9401195 +14669610 +13235689 +10483845 +6880692 +12739584 +13486690 +21024606 +312049 +16720877 +20741492 +4114431 +20917783 +6062151 +16892581 +6413423 +5398275 +15779129 +7209681 +14009010 +539458 +8491560 +20377769 +8678992 +18568328 +21142571 +14618492 +5250164 +13674778 +12620964 +15381327 +17015788 +9909752 +8885429 +4775030 +14319649 +13372003 +14765947 +17062318 +16563591 +18047320 +9850115 +3346352 +17650829 +17401138 +13040392 +5665660 +13991971 +8962761 +17793041 +10354740 +6872173 +11364645 +18843578 +20891569 +12082916 +16671725 +18327812 +20728385 +13052189 +4816973 +17355918 +1258385 +19210578 +7414153 +9808172 +4590220 +15515676 +4168825 +5867510 +12685844 +7816542 +4221909 +16167100 +19074264 +14403535 +9752466 +2594002 +7327646 +15157195 +20902055 +5797387 +712473 +9282576 +15568760 +4474877 +14577204 +21249394 +20179196 +17127198 +11467536 +12651110 +11721159 +1355378 +12641280 +12039007 +3366013 +18449053 +15014328 +12441396 +11006820 +3582281 +17536797 +13035150 +16826390 +17390652 +20765740 +12371273 +13767839 +18600441 +2988527 +7524253 +10792518 +12007550 +15847942 +21287404 +18378275 +19496314 +16267370 +18525730 +1517906 +19726999 +7121208 +12984032 +12938812 +12858858 +17553180 +10898030 +21364081 +12331951 +1470721 +6821710 +12605235 +12696330 +1150251 +137069 +7150044 +14699101 +10250538 +11433457 +13703614 +6288250 +12010171 +2799784 +13305157 +2204720 +13467030 +3339143 +14954690 +19369830 +14620458 +352026 +19685712 +4825493 +12537734 +4872679 +19903946 +1456958 +796358 +2329894 +21252670 +9916961 +21321483 +3736290 +20565856 +3771023 +14260667 +15558929 +13050878 +7260799 +16873575 +14824929 +5223950 +5507719 +6108026 +5310457 +20831931 +4579079 +264864 +5146618 +11867303 +11230952 +15073965 +20209998 +5504443 +13532565 +17132441 +3966320 +12510864 +11362679 +6897732 +8443719 +6497964 +6176839 +9120047 +11622200 +14950103 +20516705 +17006613 +12455814 +8635083 +13701648 +11593364 +7660567 +16875541 +409698 +16722188 +11998375 +4961807 +2359385 +10451077 +15347249 +5617819 +10939973 +18367789 +16827045 +19312814 +20519326 +16359775 +7794915 +3535750 +9612875 +11263064 +1017214 +2711311 +15544511 +12833300 +20794576 +8703895 +7992178 +7778531 +1024422 +11628753 +7688092 +14359626 +21362115 +2715243 +5344536 +6173562 +12425668 +2380356 +19708649 +19850862 +4461114 +4119673 +130516 +20542264 +7446921 +14748253 +19919019 +11714605 +17245163 +17164554 +14920612 +6075259 +8869701 +14699756 +7491485 +568949 +3451209 +4703596 +5882584 +1744004 +5556216 +18953678 +3820831 +8212378 +4805177 +14108624 +435912 +17981784 +10246606 +7491485 +14355694 +10329181 +10787275 +5216741 +12110441 +12942744 +1931436 +10544138 +3852288 +10729604 +15083795 +3092074 +11771621 +294355 +10490398 +4992609 +13898910 +10898686 +21042956 +17237954 +19643769 +9373015 +8619 +6729305 +14687960 +3704177 +17596434 +6452744 +17481747 +5072562 +1733519 +15374119 +6436360 +12740239 +11555353 +18163318 +3013431 +3689104 +2760463 +4628886 +5374682 +5505098 +8907711 +8319856 +14851144 +19657532 +19936058 +1215131 +211124 +2535676 +9529645 +7576681 +20509496 +14963210 +15383294 +16169067 +7915501 +17429973 +15323001 +10981261 +11105779 +1570335 +18725614 +300253 +14076512 +21029194 +8827102 +20671369 +2120179 +17680975 +5031275 +17078047 +12579676 +15653956 +9669236 +5359609 +4619711 +20780158 +929396 +10188279 +15758158 +4655100 +15597595 +12823469 +9910408 +19589375 +10875093 +3259845 +13539119 +7598308 +21353595 +5908143 +9078760 +15429824 +21257258 +1638492 +10437315 +13704269 +8017081 +1862624 +4486673 +10694214 +17935909 +4213389 +11548145 +2404604 +10200731 +21081622 +13210130 +20004871 +17188802 +17928700 +483753 +9524402 +3391572 +17066906 +19476653 +19629351 +2721142 +10557245 +16632404 +2881704 +19460269 +2334481 +4946734 +6956714 +4930350 +16479706 +9616808 +18265553 +17897243 +5215430 +13893012 +19706683 +332365 +8926061 +7821130 +18926153 +6691949 +7865038 +17056420 +7500005 +17674421 +11125439 +21165508 +15450795 +4835323 +15803377 +3664200 +6761417 +21250704 +16865056 +255689 +16519682 +18247203 +1291808 +980514 +17658693 +912356 +21110458 +2225692 +3826073 +7644838 +21193688 +21369324 +12574434 +11072355 +10355395 +4927073 +17051832 +20160190 +15395745 +1314746 +11687736 +8388669 +20087446 +13719998 +5304559 +12258552 +15937070 +11550766 +10917691 +3513468 +1657497 +9880916 +3365358 +8198615 +15221420 +8173056 +19921640 +11515377 +13962480 +19809574 +9965457 +14216103 +8718969 +5193803 +16879473 +15725390 +9785234 +4381161 +19079507 +10555934 +18870448 +2817479 +13343167 +9428065 +11369232 +19424880 +10947838 +21346387 +14307197 +15039886 +14383219 +8024946 +9503431 +3066515 +10211216 +4628886 +3549513 +3295234 +2908574 +10196143 +15614635 +6002514 +17876271 +13500453 +2546817 +16794277 +12558705 +15430479 +9171820 +5685977 +10397338 +5607989 +4892995 +2695583 +10016575 +12031798 +16623884 +13119035 +5856369 +9663993 +19160116 +16234602 +16218218 +19760 +21219903 +21257913 +3990568 +4733087 +1534290 +14787574 +15509122 +5976300 +4366088 +9799652 +14793472 +6214850 +5891103 +8947688 +17798939 +3942072 +11141823 +6329537 +3907993 +14927820 +14426472 +12277557 +16037995 +57116 +3748086 +10578216 +12495791 +1082749 +7202473 +4486018 +10787930 +1774806 +18293734 +17987027 +625965 +9061065 +12892282 +15393779 +16016368 +498171 +2137874 +13756698 +15464558 +17908384 +11898761 +7579958 +3141225 +10584114 +18992344 +1787913 +18553911 +8530226 +13942819 +8669161 +19562505 +14403535 +5735784 +4090182 +16421379 +1354067 +9497533 +20819480 +9232768 +6710299 +4358879 +9197379 +604994 +44664 +9800308 +8054437 +975271 +9494256 +10046066 +19894116 +19202714 +13060708 +3651749 +4391647 +20325996 +14348485 +15217488 +6997346 +14893087 +2736870 +2796508 +20648431 +4050206 +2689029 +13301224 +5404828 +9230147 +19584787 +4094114 +7611415 +17995546 +863860 +5193803 +8819238 +10455009 +6420632 +18792460 +4434900 +5182662 +19841687 +8404397 +6740446 +9886159 +2456377 +18588644 +21282817 +9024365 +8319856 +4457838 +13406737 +2472761 +17224191 +13226514 +21291992 +12685844 +12524626 +17831052 +2782745 +10031649 +3812966 +1923572 +1860003 +17348709 +5841951 +4299897 +7295533 +21268399 +17329048 +13385765 +3450554 +15788304 +11036966 +21146503 +15238460 +20382356 +235373 +19658842 +2977386 +11582878 +21150435 +13499142 +10451732 +18354682 +10599843 +2980008 +13877939 +19533014 +19714548 +11381684 +3947314 +1026389 +12805119 +3850322 +6338712 +4339873 +14393705 +7323058 +14529363 +8703240 +3794616 +21458453 +12739584 +15245013 +19616900 +8452238 +19891494 +3699590 +2417711 +2693617 +10298379 +1226928 +9685620 +5373371 +7030114 +19741417 +9251118 +5638135 +10406513 +15431790 +14155810 +8156672 +14607351 +13404115 +1311469 +673151 +11071045 +14269187 +11886309 +20582240 +16937145 +18879623 +4619055 +17869718 +5716123 +2780779 +10312141 +17072804 +14665678 +4784861 +8380149 +17883480 +5417280 +10906550 +9289129 +8209101 +10025095 +12825435 +21445345 +1764976 +10128641 +8001353 +21312963 +1554606 +16984331 +19970137 +13333992 +16075350 +14802647 +13314987 +19254487 +8114729 +20394808 +18060427 +19010039 +10363915 +7465926 +15878088 +4896927 +8530226 +12986653 +10200731 +20854213 +19452405 +2181783 +4452595 +4992609 +7855863 +2832552 +9837008 +15857117 +4809109 +21018053 +161317 +16318488 +7121208 +12761210 +21044922 +10333113 +20721176 +3531818 +5907487 +7100892 +20531122 +7292912 +23037 +6582505 +18092539 +8852006 +1420258 +17762895 +9443138 +4795346 +12549530 +2977386 +15984256 +1687644 +5419902 +17395239 +12307703 +9785234 +7574060 +7465271 +18151521 +16823768 +11609093 +9874363 +19597894 +1608345 +1512008 +72844 +18162007 +14926510 +13254039 +3072413 +1738106 +956921 +7532117 +16205111 +7191987 +9460177 +8969315 +12970269 +4150475 +20964969 +10474015 +7141524 +5993339 +13753421 +11193596 +16764786 +8758290 +10251848 +8871667 +14604074 +13633490 +1493658 +14395671 +5298005 +12921773 +2656261 +16720877 +15149331 +1879663 +9483115 +8914920 +5956639 +3686482 +1222996 +3495774 +14202996 +19632628 +17599055 +18962853 +11620889 +20613042 +4459804 +8654744 +3194309 +20880428 +13974931 +14458585 +8935892 +6543839 +3063238 +1132556 +16013747 +17453566 +9175097 +18821952 +20001594 +4651823 +11548145 +20687097 +5612577 +19715203 +20844383 +4702286 +7160530 +14575238 +5916662 +21284128 +13205542 +1416981 +7354515 +7143490 +5961226 +1563126 +3602597 +17814012 +7289635 +17554491 +8144876 +3204795 +13837962 +15673617 +6512382 +20746735 +15264019 +2793886 +18314050 +9018467 +21065238 +13016800 +439844 +16413515 +10768925 +2070372 +5478884 +7730690 +12185152 +1799054 +10848223 +14408122 +7724792 +17331014 +4484052 +8978490 +2330549 +19251866 +279282 +11764412 +17461430 +7281771 +10781377 +3672065 +1066365 +3877191 +15402954 +2770293 +19281357 +18670564 +16081904 +7366967 +11135925 +13968378 +3896852 +12945366 +8855283 +19603137 +14478901 +20417746 +19147664 +19321989 +9816036 +6844648 +17100329 +14721383 +521108 +12288698 +21158299 +17753720 +17312664 +13305812 +13624315 +12738273 +2175885 +15928551 +18735444 +3980738 +1051292 +17149481 +16872265 +18133171 +19846930 +10077524 +6955403 +5602746 +11522586 +3890298 +2938720 +4056104 +285835 +19006762 +18783285 +14406156 +16078627 +7133660 +21079656 +16766752 +17196666 +197362 +11071700 +6239098 +11086773 +8330997 +523074 +3583591 +14294090 +13870074 +202605 +6530732 +18660078 +11019927 +198673 +8590519 +12754657 +8660642 +17880859 +8163226 +10907861 +10373090 +20916472 +5955328 +9965457 +17995546 +15921342 +20884360 +19407185 +8380804 +2764395 +15104111 +20542264 +15554342 +20687097 +16023577 +397246 +10245295 +7732656 +3834593 +1927504 +9644333 +293699 +2746045 +14043089 +1981899 +7727413 +8858560 +8148153 +11406587 +2940031 +21088831 +9103663 +16606190 +8141599 +1335062 +13406737 +5706948 +8008562 +8835622 +7560297 +9731495 +13037771 +12779560 +6788287 +10612950 +5339948 +14668954 +2026463 +17019065 +3758572 +5967780 +14488731 +10701423 +2025808 +5990062 +16903066 +13675433 +16856536 +6213539 +6618549 +430669 +21151090 +1539533 +11148377 +12844441 +20697583 +20588794 +10700113 +8718313 +6584471 +13433607 +9230802 +16370916 +20236867 +2774226 +2364627 +18827850 +20358764 +13358896 +9269468 +11189664 +3412543 +13868764 +2743424 +19793846 +2511427 +8823826 +11976093 +11356125 +8338862 +20814237 +17483713 +17577429 +16778548 +14721383 +20067785 +16855225 +10648995 +19618210 +10658170 +5957294 +15805999 +6100162 +8152085 +18049286 +17531554 +10949148 +20949240 +4531893 +6315775 +2472761 +13407392 +2806993 +3386329 +21356217 +12078984 +13501764 +12952575 +4478809 +3463006 +9268813 +9233424 +19803021 +15834179 +14092896 +12601959 +19136523 +15398367 +9496877 +19314780 +8684235 +9344179 +14606040 +10975363 +1876386 +7515078 +10556589 +1444506 +10153545 +20521292 +13259282 +3774956 +16009815 +3706798 +7961376 +3727115 +12181875 +10707322 +6657216 +15698520 +8331653 +15024158 +6223369 +7004555 +3206106 +6960646 +949712 +2544195 +16908965 +17613473 +20616974 +5470364 +9455590 +11544212 +4197661 +2959692 +16475774 +8500735 +17197322 +14805269 +6116546 +10731570 +21422408 +2968867 +2742113 +10373090 +5833432 +7836858 +2981974 +18514589 +9395297 +7188710 +14956656 +3883090 +7070090 +13946751 +3934207 +4876611 +5899623 +16096977 +10832495 +2223726 +203916 +17144893 +12059323 +9294372 +3992534 +16720877 +1858036 +10274786 +2891534 +17898554 +15977047 +9958249 +736721 +8222208 +19487139 +18646971 +3118288 +1000174 +325157 +21161576 +5676802 +19430123 +19597894 +11149688 +1222340 +2759808 +1879008 +10845602 +9045336 +10945216 +4373297 +7151355 +11659555 +19825958 +18031591 +3355527 +17078702 +5414003 +18027004 +9990361 +3023917 +17315941 +3858841 +2350210 +4117052 +16479706 +16359120 +11757203 +12550841 +14803958 +715094 +13033839 +17716364 +12625551 +18171837 +11495061 +5609955 +13925124 +9819313 +13381178 +7267353 +1815438 +1667328 +3879813 +17051832 +3828695 +18843578 +3211349 +20371215 +710506 +18284559 +2787988 +16067486 +1527081 +9717733 +2258460 +15359045 +17301523 +8566926 +13866798 +9956282 +19768287 +12063255 +18714473 +20081548 +4017438 +7264731 +20527846 +253067 +5377959 +8989631 +9719699 +14223312 +17528932 +7522942 +4830080 +5963193 +5775105 +17371647 +5595537 +7564885 +5427111 +21028538 +3268365 +3588179 +5308491 +20493112 +11281414 +13558124 +14342587 +11991821 +4178656 +20149049 +11242748 +10739434 +7087130 +4115086 +3467593 +5609955 +8891983 +14159087 +2835174 +13508973 +5822291 +17398516 +15098213 +5944187 +20407915 +16965981 +1217097 +6429807 +15965906 +10602464 +14995978 +2377735 +2544851 +19088026 +2367249 +13059398 +18267520 +16064209 +3874570 +235373 +2830586 +9559792 +9406438 +5997926 +20184439 +20888947 +13457199 +11136580 +9644988 +17953604 +13893667 +5955984 +16374193 +21055408 +8580033 +3080277 +16059622 +8771397 +12013448 +11711984 +5555560 +13782256 +17469295 +3545581 +11192941 +14737767 +12715335 +18647627 +20789333 +14052264 +17738646 +11995753 +6471750 +15081174 +16321109 +18500171 +1388146 +9401851 +7608794 +969372 +10880336 +9774093 +6555635 +1791845 +361201 +3284093 +4648546 +5752823 +19638526 +10556589 +20426265 +5897657 +18744619 +18179046 +14991390 +1993695 +16298827 +13169498 +16770029 +15474388 +3669443 +15477010 +15967217 +742619 +9738704 +15223386 +15926584 +15893161 +10178449 +11328600 +16587184 +17329048 +20151671 +15275160 +16604879 +6410801 +11390859 +1901945 +2595968 +21453210 +14038501 +14589001 +12075052 +16024888 +1264283 +20170021 +2324651 +18803602 +2936099 +108233 +19780739 +14638153 +3403368 +2118869 +15636917 +6515003 +5254752 +16011125 +16994816 +20180506 +7386628 +20698894 +20727074 +17209118 +52528 +1724999 +18753794 +15141467 +4421793 +7077299 +15807309 +15395745 +1612933 +19173878 +18883555 +16115327 +14944204 +11435423 +9798341 +11303041 +18589955 +10266266 +8874944 +17172418 +785217 +15485529 +4967050 +5600125 +5105330 +8032810 +10177793 +351371 +5515584 +5368128 +14455308 +1222996 +18534905 +6856444 +12546909 +13247485 +7561608 +4282857 +7335510 +17888723 +4177345 +7184123 +11706741 +13073160 +1488415 +430669 +17412279 +1915708 +1357344 +19972103 +17486989 +14043744 +6810569 +6488133 +7744453 +17904452 +19361310 +9391365 +10957668 +1226272 +4320868 +14393705 +6291526 +13604655 +12690432 +10017231 +883521 +18873069 +14691237 +17243197 +18751828 +16963359 +20059921 +10479257 +7704476 +3737600 +18700055 +12390278 +19256453 +13737037 +16171033 +11594020 +17981784 +7626488 +19722412 +7239173 +18899284 +21056719 +13131487 +1281978 +16696629 +14611283 +12278212 +6236476 +18847510 +13358896 +3495118 +18071568 +11493095 +18622723 +6941640 +559119 +19820716 +1321299 +2624149 +2536986 +5916662 +17829741 +4255988 +3426961 +2040881 +6108682 +18576848 +16489536 +7553744 +11704775 +3539682 +2204065 +4504368 +14832794 +13935610 +13887114 +6638866 +770799 +3641263 +20558647 +2930200 +3114356 +9912374 +971994 +11035655 +10510059 +17118023 +11510134 +15874156 +3284093 +10597222 +5822291 +8739940 +10581493 +11933494 +10852811 +9516538 +3466938 +5057489 +7631731 +8229417 +8520395 +16903066 +14100105 +9150849 +21151746 +4331354 +19004796 +6332814 +17275964 +4335286 +6425875 +9338281 +7642217 +5942876 +20610421 +12478096 +3955834 +849442 +16776582 +4861537 +12895558 +14790195 +5891103 +450985 +13056121 +18333055 +2860733 +13630214 +9445759 +13030562 +6982928 +2438683 +13199644 +19804332 +17997512 +5623062 +19655566 +7811955 +15949522 +1732863 +4259264 +6061496 +15579901 +17062318 +9436584 +6524178 +16070763 +10665379 +19790569 +8388669 +21293303 +20301748 +20871908 +5478884 +15813863 +11631375 +3302443 +8780572 +7368278 +418873 +6874139 +13477515 +21070481 +18918289 +9326484 +2434095 +5743648 +2272877 +12132723 +2906608 +10073591 +3623568 +20634014 +9243254 +9166577 +19186985 +13138696 +3104525 +18373687 +3799859 +4353636 +12814294 +3820831 +2430163 +18597164 +13873351 +11751305 +11793903 +13726551 +20274223 +4646580 +12964371 +728201 +18314705 +19512042 +3860807 +13369382 +6657216 +7437746 +70223 +1042117 +9083347 +12769730 +4670173 +7874869 +1555917 +8056403 +1416326 +2582861 +6594957 +157385 +14913403 +1291153 +17402448 +2846970 +12950608 +19605103 +4747505 +18853409 +16755611 +2243386 +12638003 +13217994 +1065055 +18129239 +15971149 +20914506 +14187922 +10254470 +18637141 +5532623 +14077167 +10987814 +845510 +19995696 +892696 +4762579 +872380 +6949505 +6494032 +5227882 +4416550 +4523373 +5968435 +1234792 +12679291 +9212452 +20285364 +16622574 +5284898 +3885711 +2741458 +2601211 +18844889 +3959766 +14512324 +970028 +14337344 +6975719 +2802406 +17792386 +11787350 +20731006 +9026331 +2821411 +15108699 +12274280 +13142628 +18538182 +12313601 +17323150 +5360264 +6250239 +3454486 +16189383 +6708333 +6223369 +19369830 +9060410 +6949505 +3048820 +19181742 +4077731 +13753421 +17008579 +16166445 +7473790 +9818002 +20663505 +19291187 +8380804 +11862716 +777353 +11195563 +4616434 +6689983 +2491111 +874346 +19117518 +1202024 +3425650 +6777801 +3005567 +4520096 +12976167 +8579378 +4436211 +7282426 +8230728 +2499631 +5311112 +12499723 +15904302 +5171521 +19749282 +11251923 +16129745 +12073741 +6715542 +534215 +20446581 +13221271 +18907803 +983135 +21310342 +7722826 +11445909 +21460419 +15138190 +12506932 +11653657 +14107314 +10957668 +6835473 +9028952 +3098627 +11924975 +1172533 +9011258 +1193505 +10638509 +241271 +17661970 +4688523 +6980962 +5874064 +14310474 +3000979 +3516090 +1287221 +1417637 +14305887 +8648190 +19453060 +16897168 +19032321 +2578929 +954955 +4882509 +17397205 +3629466 +16457424 +9998225 +18351405 +18175770 +830437 +11301075 +14312440 +11763102 +3554100 +11274861 +6776491 +6761417 +16543275 +18163318 +8308060 +14640119 +18945159 +161317 +121996 +15598906 +8726833 +8090481 +6973098 +15747017 +16349945 +8206479 +10860675 +8026256 +20677267 +8313303 +15604149 +17398516 +20112349 +18833748 +5256718 +13529289 +7307985 +2509461 +1048671 +353992 +14554922 +20104485 +2770949 +1323265 +21127497 +17117368 +19295775 +13491278 +18553255 +17214361 +17089188 +14320305 +3611116 +17070182 +12892282 +8464690 +1735485 +4730466 +10572973 +5131545 +19498935 +18955644 +8325754 +20652364 +7370899 +5933046 +12451882 +18352061 +10586736 +13591548 +4708839 +9180995 +9516538 +7465271 +14223312 +10456975 +13915294 +20128733 +4731121 +288457 +19803676 +4050206 +7309951 +15980979 +6833507 +13997214 +16087802 +18622068 +14370112 +2931511 +12679291 +15731288 +1703372 +7852587 +1901290 +21219247 +3068481 +9530956 +16496090 +960853 +3708109 +6363616 +16365018 +5973678 +4719325 +15788959 +5108607 +18753794 +3552134 +6629691 +10212527 +15407542 +14312440 +12662907 +13445403 +5339948 +5060111 +1288531 +14678785 +14283605 +5102053 +5309802 +15046440 +8645569 +1772840 +5774450 +16762165 +6123100 +8553163 +9480493 +18778698 +5506409 +9914995 +2367904 +19706683 +2083479 +14428438 +7646149 +7183467 +738031 +7408255 +15779784 +9529645 +13995247 +13157701 +15185376 +17087877 +38766 +15158506 +19613623 +20874530 +7135626 +8665885 +20405949 +18896007 +7053051 +19964894 +17319218 +1533635 +6007757 +1683712 +13146560 +2569754 +1648322 +18222955 +18451019 +12516107 +9531611 +7947613 +16072074 +12609823 +6767971 +8627219 +17614784 +12041628 +16294895 +3930275 +11267652 +3185134 +7654013 +19769598 +19043462 +18029625 +9536199 +14832794 +19850862 +7330267 +2592036 +836335 +20912540 +4832702 +9239977 +1255763 +12461712 +18918944 +13403460 +4898237 +2335792 +6667701 +19536946 +16990229 +15717526 +16905032 +12710748 +20552094 +20424955 +19725033 +270762 +15155885 +6597578 +2989183 +4219943 +10257091 +9378258 +3590800 +13039082 +11359402 +2789954 +9756399 +19783360 +5040450 +11757203 +3469559 +4856295 +2576963 +5396309 +14857042 +11773587 +19354101 +4421793 +6655905 +2513393 +6832851 +8747804 +18941226 +5841296 +826505 +6325605 +5699739 +8981767 +8923440 +12903423 +8159294 +20130044 +8186163 +17192734 +10572318 +9868465 +5466432 +17357884 +15986877 +8656710 +16058311 +1833133 +9823245 +4040375 +20417090 +17435216 +5195770 +644315 +12354889 +5986785 +9590593 +15446208 +5163657 +3367979 +20947274 +6318396 +1715824 +17161277 +127894 +259621 +9733461 +5003095 +13709512 +11286002 +895317 +21417165 +182289 +14395671 +2359385 +10355395 +19190917 +16550484 +4618400 +19897392 +7415464 +18645660 +3107147 +15680826 +8101622 +16783791 +7813265 +5086325 +5201668 +8617388 +16180863 +13822889 +7032735 +2760463 +19785982 +4178000 +4314314 +18506725 +18597164 +6705712 +18009309 +9423477 +5920594 +17756996 +12145175 +20187060 +5231159 +20521947 +15892506 +16311279 +14598176 +4110498 +15335452 +18248514 +4339873 +16222806 +2147049 +994276 +16891925 +16551140 +18785907 +18878312 +20597314 +17447668 +7609449 +16668449 +17378200 +21297890 +12183841 +1422224 +13038426 +4908723 +1308847 +14736456 +6575296 +18694812 +14380597 +6653 +15262052 +6737824 +5971057 +13670190 +12700917 +16783791 +2341035 +16045204 +11369232 +19716514 +12208744 +12861480 +16526891 +7566851 +3833282 +19328542 +18586023 +19091959 +13499142 +16526891 +8505978 +10373745 +10276752 +16224772 +11517343 +14024739 +11637273 +17351986 +16369606 +10542827 +10375056 +13187848 +10143059 +19822026 +14136149 +4291377 +17302179 +8157983 +15706385 +4427691 +9436584 +11382339 +2096586 +16004572 +13853690 +5045693 +13827476 +5212153 +8306094 +8171090 +18876346 +3704832 +15907579 +15932483 +20702171 +1954374 +9006670 +11556664 +14482178 +18806223 +14589656 +17863164 +17707845 +12360787 +8502701 +9260293 +4027923 +16721532 +12553462 +9673168 +9426099 +19409807 +3244772 +3955179 +3397470 +6927223 +3257879 +9725597 +8968660 +15395090 +7378764 +1612933 +21271020 +12453193 +6621171 +13379867 +15239115 +5699084 +19939335 +2521913 +158696 +10570352 +10719118 +17571530 +3626845 +15251567 +5479539 +16475118 +7068124 +5017512 +12803153 +5124991 +16011781 +11776209 +16958772 +16210354 +8106210 +15015638 +9322552 +17648863 +6501241 +3514124 +9937277 +913012 +95126 +2533710 +20833897 +16373538 +1232171 +10790552 +13786844 +19453060 +5288830 +16995472 +1491692 +3360770 +13896289 +18783941 +15676238 +3032436 +15081829 +20544230 +19651633 +16558349 +17640998 +18882900 +8304783 +8536779 +11572393 +16639613 +931362 +20160190 +16287031 +9777370 +8102278 +13603999 +2539608 +9539475 +82019 +12398798 +118719 +1233481 +954955 +15021536 +5424489 +9420856 +13839928 +7175603 +1000830 +20549472 +8731420 +959542 +1776772 +18700710 +471957 +18373687 +10588047 +14331446 +18896007 +11789316 +12500378 +21053442 +20116937 +3905372 +19330509 +10639164 +13454578 +10311486 +14726626 +16049792 +2000904 +5718089 +4480775 +4651823 +11313527 +12364719 +949712 +13540430 +18996932 +13313676 +17416211 +18814743 +16693352 +5376648 +8639015 +9243254 +17261547 +1745970 +5217396 +15345283 +2431474 +19912465 +12951919 +5969091 +10261023 +15256810 +10730914 +4699009 +14087653 +10647684 +4659032 +16049136 +7049774 +17370991 +20992494 +6391796 +8293642 +19185019 +17076081 +2033672 +18393348 +1375694 +862549 +12513485 +5175453 +17441114 +16087802 +13337924 +11892207 +17579395 +4511577 +18343541 +17973264 +11416418 +18341575 +3457763 +9369083 +9992327 +21152401 +12702884 +17557113 +18792460 +8118662 +14933719 +4412618 +20750667 +5996616 +13946751 +17736680 +6273176 +17948361 +1938645 +710506 +10687006 +10526443 +1254453 +2200788 +1403219 +7895185 +20609110 +20859456 +4704907 +4072488 +20415780 +15195206 +13798640 +15966561 +14048331 +21221869 +3614393 +9454934 +13119691 +7928608 +2014011 +21295269 +8032154 +13472273 +6025451 +15826970 +14003767 +20521292 +14886533 +14015564 +8751736 +6301357 +11453118 +12313601 +6788942 +12303116 +13449990 +14140081 +10614261 +3484632 +4630196 +13594169 +19323300 +6180771 +17649518 +17953604 +6729960 +15373463 +6928533 +13014833 +6560878 +10207284 +19519251 +781940 +2080858 +19386869 +1617520 +13538464 +15397056 +16990229 +6420632 +19082128 +7902394 +19821371 +12131412 +7696612 +8591174 +16530824 +8435199 +3831972 +17269411 +13710823 +11215879 +13913983 +13499142 +1002796 +19596583 +18310118 +4848430 +13052189 +4567938 +18877001 +15787649 +4431623 +7708408 +13902842 +15226008 +16037340 +9776715 +19225651 +6157834 +5469053 +12737617 +7358447 +17704568 +13174085 +16479706 +12242168 +8281845 +15391813 +11675939 +13759974 +755 +6832196 +13624971 +21436170 +2046779 +7719549 +835024 +14398292 +209814 +1261006 +19417671 +6703746 +21279540 +11579602 +16393199 +2487835 +12596716 +6029384 +6578573 +2653640 +17936564 +3748086 +7312573 +20833897 +3455141 +9935311 +2085445 +12659630 +8152085 +7382040 +11581568 +19644424 +15541235 +11291245 +17797629 +2235522 +6214850 +10899997 +13022042 +6937053 +17502718 +18677118 +5240989 +13201610 +4188486 +7664499 +15526817 +19097857 +13681331 +693467 +6353130 +12103887 +18631898 +6128342 +12612444 +18955644 +6284973 +20932856 +6262691 +9751156 +11163450 +10457631 +2599245 +560430 +3183168 +21305754 +3501672 +901215 +4974914 +14577204 +6481580 +100 +6924601 +5326841 +18477234 +3268365 +10762372 +9637124 +2576963 +12272969 +6426530 +20082858 +18730857 +2576308 +19762389 +4896271 +14192510 +7475101 +14307853 +1293119 +18677118 +18411043 +20949896 +19087371 +6691949 +3364702 +21002324 +18341575 +10231532 +11692978 +20918438 +20769017 +2000904 +1016558 +15980979 +17335602 +3494463 +20320753 +2020565 +10958979 +2525845 +19809574 +11661521 +7076644 +5695152 +7589789 +12042284 +11802423 +3648472 +16973845 +5572600 +764246 +2822067 +3204140 +20341069 +4252055 +8910988 +13842549 +9633192 +14064715 +8359833 +13207 +12883107 +8006596 +4934282 +20770983 +17688184 +12177287 +7336821 +14493974 +4077075 +3078967 +3446622 +18434636 +18675807 +20652364 +10432727 +10329181 +8332963 +15107388 +90539 +16964670 +12485305 +13396907 +3394193 +7209681 +14311130 +20818824 +349405 +21136017 +7018973 +7388594 +6511071 +9781302 +4802555 +17230745 +5199046 +8979145 +17943118 +20476728 +7926642 +14439579 +768178 +18382207 +20924992 +9705281 +6691294 +21136017 +7006521 +8074097 +690846 +1059812 +7193953 +1789879 +14435647 +20489180 +17441114 +1702717 +8508599 +14266565 +21088831 +17743889 +19561194 +5953362 +8612801 +13109860 +21282162 +1470721 +20227692 +4610536 +12577710 +17157345 +21438792 +19954408 +19552019 +1342271 +12164180 +20008803 +9289129 +20530467 +7732001 +12196293 +3319483 +18317982 +13198989 +12098644 +2222415 +12064566 +15838767 +14999910 +9249808 +13960514 +9877640 +20993149 +644971 +4647236 +13893012 +17680320 +1698785 +19116207 +9068929 +7041910 +8833001 +7340753 +16399097 +1976001 +2656261 +1791845 +4830736 +14663056 +7033390 +18084020 +20227037 +5210843 +9618118 +6153901 +12385691 +5993994 +21003635 +8344104 +7714962 +3611116 +2049401 +4303829 +18875691 +8616733 +963474 +7081887 +16884716 +2316786 +14948136 +19170601 +1233481 +19004796 +3882434 +4873334 +21062617 +9960870 +354648 +3126808 +11156896 +5292107 +13372658 +297632 +4462425 +5199702 +13656428 +9200001 +5073873 +9360563 +19968826 +16798865 +18974650 +2565167 +16041272 +10634577 +20385633 +4653789 +18195430 +4119018 +7420706 +2885636 +1749903 +13046946 +10799072 +3636675 +6309221 +10850845 +16034718 +83985 +20643189 +8205169 +6463230 +6874794 +10213182 +5343880 +1610312 +1389456 +10175827 +5651898 +19098512 +8487628 +2669368 +10674554 +6400971 +18031591 +16606845 +13328749 +14224622 +15023503 +18475268 +16819181 +13588271 +4921830 +10867884 +10146336 +14933063 +13329405 +14629633 +13618417 +20175264 +7036667 +7763458 +17870373 +15062169 +16270647 +12345714 +15696554 +5195770 +18573571 +16064865 +14640119 +2433440 +14496596 +5536555 +14891120 +7978415 +5850471 +12749414 +12224473 +6248273 +6051010 +824539 +10542827 +15825004 +8053126 +5836709 +17854645 +18317982 +17930666 +17293004 +10245950 +4695077 +15180788 +14003112 +9478527 +2879738 +12219885 +3019329 +1076851 +4046273 +9739359 +5930425 +10333113 +16467909 +20386944 +11987234 +20141840 +14044399 +378240 +14140737 +5145307 +8351969 +11840434 +18619446 +2324651 +11348261 +4524684 +15289577 +20072373 +10199420 +12119616 +14158431 +6526800 +531594 +1493658 +6421287 +1322610 +6305944 +19766976 +19840376 +4356913 +3766436 +6391141 +19478619 +7836203 +21257258 +1040806 +16847361 +4370675 +10239397 +7114655 +9650231 +9376947 +16998093 +5429077 +7797537 +17922802 +14150567 +675773 +4103289 +20160190 +7339442 +15404920 +16492158 +16977122 +12451882 +21471560 +17171763 +9681033 +3348318 +2888913 +4451284 +12707471 +5263927 +11176557 +11183766 +20240144 +4369364 +20594037 +4875955 +18667943 +20453790 +2702136 +10293791 +18717750 +13212096 +6156523 +1604413 +5919284 +12052769 +16937800 +2251906 +19464201 +11065146 +7701199 +4020714 +415596 +19048705 +15854495 +14656503 +5870132 +21001669 +14816410 +17275309 +547978 +4746850 +19360655 +619412 +15673617 +2363972 +17689495 +15189308 +15477010 +20932856 +20827344 +6282351 +3476768 +5534589 +15245013 +1744004 +9521781 +9652852 +1936024 +18904526 +17319873 +7267353 +15227974 +10827907 +10281995 +15692622 +3899473 +10896720 +2142461 +6402282 +4761923 +1297051 +15446863 +15202415 +18827850 +8026912 +3202174 +14888499 +20224415 +12414526 +20388255 +4699009 +1893426 +9974632 +17849402 +8545299 +15796168 +21328037 +16235913 +6851201 +4286789 +20953172 +11048107 +9351388 +3135983 +17981129 +1367829 +14531329 +18956300 +18586023 +8737974 +20099898 +11192286 +18281937 +6322983 +1970758 +11554698 +11370543 +11351537 +4683280 +16501332 +15535336 +3290647 +3024572 +7771978 +12922428 +6644108 +21390951 +15743740 +20453135 +817985 +20325340 +802256 +18909114 +17429973 +15289577 +4354947 +17956880 +1611622 +1540188 +1093235 +8138978 +12407318 +21310342 +11505546 +12556739 +16718911 +11591398 +13610553 +10761061 +2210619 +4950666 +19654255 +11995753 +7224099 +21012154 +7052396 +7351894 +20030430 +6306600 +4900204 +13575164 +11170659 +19105721 +3859497 +2481281 +8286433 +7617313 +12221852 +14640774 +4727189 +946435 +11846332 +15064790 +19363932 +18238684 +7929263 +4280236 +13000416 +9930 +12208089 +6979651 +279937 +11983957 +3222490 +646937 +19527116 +16114672 +3893575 +7633697 +20264392 +17466673 +19382937 +5080427 +18025037 +10474670 +18455607 +4997852 +17847436 +17859887 +1953719 +1851483 +13152458 +10804970 +19470100 +11120196 +12331951 +3655025 +6047734 +3544270 +13210130 +4371330 +8652122 +1477929 +6570053 +6641487 +8524983 +13224548 +14786263 +5514273 +16544586 +7334855 +10539550 +7712340 +12767109 +10767614 +832403 +18491652 +20730351 +17509927 +13906774 +19158150 +16547207 +6290216 +16575388 +2998358 +6311842 +11683148 +14972385 +19318712 +14800026 +10375056 +1161392 +14173505 +18341575 +17854645 +20081548 +18770834 +15811897 +6973098 +19264317 +1693542 +12925050 +692812 +13509628 +346783 +6406869 +14891120 +12195637 +19569714 +915633 +10264300 +5193148 +12167457 +16454802 +1643735 +13406737 +9136431 +11760480 +11327289 +5983509 +5655175 +3531163 +14733835 +12344403 +14218724 +6343300 +15954109 +16323075 +19835133 +8688167 +14969108 +3521988 +12438119 +17996857 +4091493 +6866274 +3240184 +3536406 +13115103 +6066084 +6897076 +6287594 +18602407 +19897392 +3582936 +8435854 +15955420 +10782032 +13179983 +3400747 +5296694 +5000473 +16503954 +9365151 +17987027 +5072562 +6084434 +16241156 +20717244 +11742786 +8812029 +17065595 +17273998 +11269618 +19361310 +6387864 +13111826 +9237356 +8827102 +10747298 +12512830 +9544063 +11915800 +12313601 +14113212 +19772874 +6139484 +2602522 +2779468 +3086831 +15869568 +5857025 +10982572 +8169124 +4368709 +8359178 +11438700 +10808902 +8125870 +19812851 +14805924 +20773605 +12193671 +9784579 +5358953 +9041404 +20853558 +9772127 +2530433 +15763401 +15582522 +16509197 +10090631 +15505190 +18420873 +8555785 +12007550 +7509835 +17137029 +12424357 +12976823 +14904228 +13245519 +14898985 +3497084 +9622706 +13693783 +1397976 +19272182 +5315044 +12525937 +2928234 +3027193 +12887039 +19562505 +1992385 +3575072 +15045785 +10607707 +9489013 +12218575 +19570369 +6544494 +12649144 +14262633 +4073143 +5507719 +20143151 +6689983 +5258684 +18440534 +11776209 +1442540 +15117874 +18127928 +18913701 +1571645 +1481862 +9064342 +14198408 +12658975 +16026854 +6769937 +8501390 +12334573 +19963583 +5066009 +12190394 +4736364 +13265835 +20568478 +973305 +18295700 +11771621 +13742935 +15823693 +1903256 +7045842 +12000996 +398557 +14712208 +11683148 +19429467 +20837174 +20380390 +2810926 +17161932 +20381046 +3137293 +16802141 +4052827 +11407898 +17125232 +14680095 +16595049 +7637630 +5929114 +7448887 +13316298 +19287910 +13062019 +17884136 +13558780 +15224697 +19025768 +2942652 +10820698 +3095350 +4243536 +521764 +7601585 +2635945 +10348186 +1956995 +14048987 +20194269 +4552864 +7264076 +13772426 +14398292 +6792874 +727546 +18274073 +3978116 +5183318 +3210038 +20092033 +7011764 +12106509 +3198241 +9064342 +5547041 +1231515 +8856594 +12128135 +11438700 +13345133 +1644390 +20412503 +19305605 +20974799 +12271659 +262242 +8365076 +11491129 +13667569 +2282052 +15262052 +7505247 +2058576 +6684741 +10156822 +11810287 +3763159 +12956507 +6218126 +3702211 +13749489 +12126825 +5916007 +16883406 +11577636 +6052321 +21011499 +17757652 +17814012 +12653732 +5851782 +859928 +14425162 +6766660 +5279655 +20246042 +14366835 +14714829 +13185882 +15231906 +17963434 +11628753 +14812478 +8293642 +12449916 +11401345 +9465420 +18131205 +9975288 +19792535 +14315062 +8010528 +1257730 +4344461 +17734714 +6948849 +13467685 +2587449 +11706086 +15187342 +20685131 +6815812 +7320437 +3323415 +2871218 +4596118 +12569191 +3090763 +9077449 +6567432 +5318321 +19331819 +5453325 +11202116 +9497533 +18854719 +7992178 +17254338 +6750932 +4894961 +1417637 +12092091 +6338712 +3371911 +15315136 +3691725 +5522137 +12611789 +9209176 +3014742 +12909976 +424771 +2126077 +3069792 +17316597 +209814 +12452537 +11703464 +10184347 +3424995 +7398424 +12630139 +8549231 +747862 +7684815 +19107032 +14799370 +19585442 +9913684 +8876254 +10532997 +16334872 +1080783 +12152384 +6663114 +7929919 +6855133 +12418459 +10849534 +427392 +18603062 +17721607 +20308301 +13258626 +19937369 +5176109 +8457481 +14613249 +730167 +10458286 +13439505 +2148360 +7572749 +591231 +17808114 +1533635 +11241438 +16536066 +6605442 +2291883 +5217396 +9152160 +474578 +11457705 +8465345 +5361575 +68257 +8291020 +21432894 +6600199 +3480045 +2046779 +16490191 +20183783 +11466225 +18985791 +11798491 +12194982 +10401925 +5875375 +9146917 +10742711 +19529082 +13044980 +16568834 +19340339 +20644499 +21463040 +692156 +12198914 +7109412 +13137385 +11105779 +14794783 +13280253 +14364213 +21061962 +4622332 +17638377 +2466863 +5952707 +566983 +10220391 +6843337 +18646316 +11392170 +10255125 +15787649 +10009366 +18491652 +2477349 +19909189 +12711403 +7004555 +7530151 +18356648 +7128417 +5695807 +18698089 +18032902 +1544776 +20843072 +20384978 +2319408 +10554623 +17819255 +13849758 +6878071 +12869344 +7402356 +7916156 +21353595 +1944544 +3949281 +7547190 +4860882 +17357884 +19851517 +951678 +13252728 +12647834 +13731139 +21053442 +17396550 +5891759 +21206140 +2822067 +11734921 +3667477 +20626805 +6228612 +13834030 +15817140 +20306990 +10911793 +17343466 +16739882 +5543764 +2649708 +14442856 +20300437 +17209118 +8696031 +21357528 +16711702 +205226 +7501971 +8288399 +2900709 +15684102 +14137460 +10904584 +5037173 +4358223 +9218351 +2643809 +2618906 +16926004 +12666839 +19713237 +17851368 +13031217 +13062675 +10654893 +565673 +15943624 +10949148 +9751156 +8610835 +3536406 +15714249 +20223105 +13328749 +640383 +18180357 +13242242 +1856070 +11046796 +14746942 +8512531 +6484857 +17999479 +19325266 +19674571 +2702792 +13592858 +10053275 +2099863 +14808545 +6729960 +4731777 +15810586 +5646000 +13008935 +18694812 +10954391 +18205916 +19145698 +13162289 +6914115 +16791000 +11194907 +17271377 +8055747 +2864665 +16233292 +16451525 +19179121 +3605218 +10536929 +5085014 +19064434 +14358971 +8998151 +10857398 +18952368 +8418160 +17008579 +16307347 +21411267 +9416268 +9225559 +14463828 +6427841 +17639032 +3010809 +16714324 +17861854 +292389 +4396234 +13571232 +4664275 +16203800 +1744004 +7115965 +5396964 +19280701 +21189101 +8421436 +8325099 +12484650 +10991091 +11363334 +11198184 +10756473 +19869867 +7908292 +21011499 +12204812 +6955403 +13347755 +2472106 +15807309 +6109992 +16240500 +9375636 +5769207 +3741532 +14800681 +13704269 +5214775 +16642234 +11552732 +10242673 +11972161 +8135701 +20611731 +18900594 +5035862 +225542 +2359385 +4193729 +6270555 +20027153 +16096322 +21262501 +20850281 +1945199 +11530450 +6585126 +12811017 +14037190 +634485 +16695318 +18382862 +6595612 +9270779 +10922934 +16598981 +9733461 +13253383 +2953138 +3451209 +20971522 +9838318 +20822756 +17941807 +15672961 +21315585 +12940778 +7950890 +8524328 +9887470 +20233590 +14411399 +19090648 +15893161 +377585 +3371911 +19968826 +4659032 +10763682 +17707189 +21208762 +13194401 +7315849 +21008222 +4457838 +17593157 +8746494 +19514664 +10819388 +4989332 +12227094 +6414733 +9986429 +14514946 +2038260 +13733760 +4963773 +8351969 +16988263 +9407093 +21406024 +3035713 +16876852 +10656204 +6404248 +21453210 +7709063 +941847 +15874811 +16532790 +15621843 +139691 +6728649 +14249526 +4139989 +4059381 +20989217 +4177345 +11932839 +14102071 +13611864 +18492962 +4390336 +2031706 +3804447 +13550260 +16829666 +9168543 +16340115 +16412859 +18234752 +10249882 +20233590 +138380 +8912954 +20427576 +18442500 +14621113 +17195356 +11215879 +2063163 +15323656 +14642085 +6501241 +8580033 +2588760 +16169067 +10321972 +19095235 +21247428 +19500901 +8671783 +20023876 +10441902 +7403667 +19162737 +7106135 +19741417 +10696836 +1314746 +21014776 +8383426 +4542379 +9310101 +13881871 +1409772 +1065710 +13448680 +1083405 +12808396 +3445311 +8362454 +18448398 +15505845 +12715991 +6012344 +17100984 +12568535 +10127331 +16146784 +10673243 +17009234 +20404639 +20257183 +5796076 +16032752 +6948849 +20233590 +9139052 +6292837 +4973604 +17440459 +6975719 +4192418 +7394492 +3404024 +17268100 +10421586 +9468042 +11114954 +2881049 +4569904 +6162421 +7486897 +3609150 +13436228 +4669518 +19565782 +17931321 +6739135 +17833018 +17344777 +13658394 +7447576 +15005153 +10192211 +6397694 +20128078 +10852811 +8604936 +5190527 +14187922 +10926211 +7638940 +463437 +16386645 +15996708 +8812029 +8397844 +12623585 +18711196 +597130 +3268365 +14027360 +1298362 +205226 +9540131 +8826447 +18211159 +12353578 +13488001 +4692455 +7352549 +7712340 +9076793 +11904003 +15073310 +12959783 +9648920 +210469 +6139484 +7097615 +18060427 +1866556 +8281190 +16627161 +1546087 +7179535 +20225071 +18324536 +14266565 +18297666 +3319483 +20740181 +19928194 +14973040 +8424058 +19070332 +8374251 +4743573 +6558257 +1242001 +1491037 +18640418 +11846987 +509967 +5468398 +10125365 +838301 +7341408 +20147739 +12278868 +1979933 +15047095 +12166802 +17022997 +9647609 +11945946 +5593571 +17302834 +10626713 +1245278 +3485288 +19605758 +13651185 +11738198 +1423535 +16764131 +4833357 +8723556 +21236287 +7610105 +20236212 +11821428 +17910350 +10460907 +723614 +6982928 +17414900 +6688673 +6886590 +2318097 +16319799 +19050671 +8213033 +8299540 +914978 +3333245 +17567598 +12811017 +3280161 +15683447 +21368013 +10762372 +15128360 +12065221 +4098702 +8409640 +20468208 +21377844 +11440011 +19165359 +10863952 +5728575 +13806505 +13982796 +8121938 +20550783 +8485661 +14889810 +1111585 +9526368 +14790195 +15594974 +14842624 +18812777 +13877939 +3636020 +3750052 +15201760 +3042922 +4211423 +2055954 +6813190 +1390767 +12152384 +8412917 +16022922 +4886441 +11345639 +16228704 +1934058 +6878726 +12484650 +10461563 +12232993 +17660659 +7814576 +20175264 +17500097 +5884550 +9974632 +4693111 +8450928 +17528277 +9177718 +6221403 +2467518 +8680958 +15826970 +3209383 +3016052 +12908666 +1335717 +4672139 +9278643 +7678262 +11628098 +13018766 +12232993 +14698445 +8389324 +9072861 +10069004 +13406082 +13181949 +16321765 +662665 +9175752 +2130010 +11525862 +5465777 +7288980 +18918289 +17909695 +18106302 +19489760 +18219023 +19213200 +17961468 +4478154 +14678129 +9342868 +6417355 +19508766 +6621826 +9184272 +12809051 +11987234 +13389698 +239960 +6279730 +678394 +17580705 +14672887 +4139989 +10998955 +793081 +9302892 +12336539 +20087446 +14466449 +20828655 +2699515 +6267934 +1964204 +15076586 +13541740 +14995978 +698055 +13453267 +19959651 +13793398 +10932764 +16766097 +3978116 +6594957 +9757709 +8949654 +21226456 +8221553 +19622798 +11836502 +7100892 +5801975 +1261006 +1051947 +21018708 +1781360 +17268100 +19252521 +6030039 +7640251 +6661803 +17617405 +20068440 +18532939 +3242150 +19498935 +16111395 +9778025 +9215074 +8304128 +20168710 +6873483 +13319574 +4659688 +20575031 +12278212 +9154126 +14102726 +9496222 +12427634 +9026331 +9708558 +5516239 +20028464 +16393199 +17434561 +4297930 +10021818 +16640924 +17633789 +8297574 +4910689 +13701648 +9677100 +18110234 +17518447 +443121 +17570220 +7575371 +20974799 +19198126 +18428737 +1440574 +19061812 +7079921 +1193505 +20017978 +177701 +11947257 +8606247 +9625327 +19852173 +1233481 +4745539 +17177006 +1777428 +21291337 +975926 +19036253 +17711777 +15359701 +3424340 +6101473 +13434917 +14870149 +97092 +14404190 +20280121 +12194982 +1725654 +15998018 +12708782 +14798060 +10844947 +3666822 +470646 +18391382 +19102444 +12419114 +9746568 +12520694 +14672887 +3290647 +4934282 +13866798 +13877283 +18137759 +6774524 +4468979 +12980100 +15536647 +7512456 +6382621 +3116322 +11231607 +3208727 +19652944 +8741906 +19147009 +1594583 +12163525 +13389698 +8376872 +3461040 +10363259 +12297218 +16409583 +9260293 +6994724 +12736962 +11247991 +5946809 +13984762 +6870862 +7735933 +7212303 +19584787 +17121956 +9285197 +16256229 +6111303 +2680509 +1143697 +5706948 +2130010 +6292182 +17360505 +20059921 +3308341 +7829649 +13680676 +1333096 +14949447 +14125664 +19486483 +1647012 +7494106 +1880974 +373653 +18361891 +16515095 +6911494 +11854196 +8097690 +6697848 +19492382 +11348261 +2468174 +10506127 +540114 +16335527 +1391422 +10706666 +511933 +18770834 +17774036 +13009591 +8574790 +40076 +13851069 +14244283 +7830305 +14912092 +17089843 +11666109 +14488731 +1559849 +5615198 +16513784 +18420873 +16255574 +1377660 +2666747 +11006164 +12942089 +3978116 +11215879 +17710466 +16607500 +10105704 +19688333 +20653674 +3936173 +9182961 +11463604 +10736813 +18050596 +6913460 +4465046 +11624821 +2603833 +10276752 +2217172 +14516256 +10893443 +4179311 +12889005 +9596492 +17557768 +3647161 +13518803 +10143059 +9995604 +18479200 +5047659 +18964164 +16573422 +14251492 +13872040 +4947389 +18610927 +7250969 +13750144 +11178523 +4514198 +12142553 +10318040 +11445909 +5655830 +1421569 +4352325 +1669949 +7313883 +3491186 +11609093 +7488208 +3769057 +4487329 +5704327 +608926 +4950011 +16908965 +4807143 +6475026 +6052976 +1661429 +18295700 +9295683 +6688017 +6562189 +9721665 +1405185 +5075839 +14649949 +245203 +19242035 +10901963 +15664442 +17928045 +18979893 +2353486 +8789747 +17037414 +13927090 +21264467 +20532433 +9625983 +4596773 +9776059 +17620027 +18135137 +16198558 +11932839 +13550260 +5399586 +10673898 +27624 +12439430 +13559435 +9500154 +13532565 +2916438 +2545506 +1111585 +20759187 +10769580 +6191257 +12112407 +19289221 +15077897 +10726982 +2034328 +55149 +15707040 +1926194 +3752018 +11955121 +13947406 +15146710 +18996932 +16294240 +906458 +11767689 +5178730 +4160961 +16077972 +17564977 +21297235 +1614244 +5625028 +2922336 +10165341 +6284317 +15250911 +4847120 +14872115 +17138995 +17698670 +13641355 +6049044 +7743797 +17119334 +16822457 +10506127 +4762579 +9532267 +2308922 +18441844 +14665022 +12115028 +12825435 +16196592 +3322759 +19719791 +10597877 +8303472 +15068067 +15458660 +9349422 +10730914 +13124278 +1124692 +17931977 +7921399 +425426 +2487835 +16380091 +5845228 +2734249 +15246324 +2636601 +1874420 +640383 +18460194 +8620665 +3693691 +15097558 +21246117 +16511818 +3957145 +3604563 +11873857 +17515170 +21428306 +7903049 +11255200 +15134258 +7940404 +17019065 +14067992 +470646 +11087429 +8014460 +19517285 +2222415 +5436286 +14792817 +20857490 +2673301 +18390727 +158696 +5368784 +15627742 +6451433 +4233050 +5704327 +10202041 +623999 +824539 +18075500 +19375728 +19674571 +20763119 +21472215 +9844216 +12280178 +16742504 +20753944 +2398051 +13972310 +7209026 +4214700 +19371796 +6832196 +16781170 +17627236 +4786827 +11417729 +7155942 +9149538 +2401983 +6271866 +3166784 +12166802 +7153976 +11208014 +6658526 +19814817 +11422316 +15626431 +10224979 +10867229 +5201012 +2160156 +4113120 +17614784 +638417 +4589564 +9170509 +8228106 +11819462 +20847005 +7662533 +11090050 +17319218 +20682510 +19591996 +17375579 +8183542 +19140455 +3063238 +3460384 +20018633 +4453250 +19607725 +17464052 +15640849 +13611864 +20881083 +5788868 +10860020 +15381983 +19774185 +11140513 +9225559 +1394044 +2355452 +9890747 +9448381 +9498843 +81364 +20261115 +16393854 +7577337 +812087 +6870862 +18730857 +6233855 +10704700 +19878387 +14430404 +6442258 +9943831 +8346070 +4274338 +252412 +6998657 +3754640 +13074471 +17170452 +20272912 +5930425 +15818451 +4823527 +20039605 +9609599 +248480 +8971936 +3122220 +19298396 +125273 +11976093 +18462161 +18207227 +8576756 +2165399 +15392469 +18090573 +13795364 +19757801 +19945889 +5449393 +2058576 +150832 +17107538 +18297666 +20017323 +19238759 +1373728 +18627310 +12379793 +9956282 +3035713 +9528334 +20850937 +5663039 +15682792 +19135867 +9480493 +1054569 +18875691 +13818956 +9666615 +13766528 +20416 +7042565 +284524 +17178972 +19070987 +18268175 +1428778 +5455291 +5337327 +19496969 +12008861 +11658900 +17219604 +17736680 +11972161 +17860543 +9910408 +2969522 +2992459 +7556365 +13676089 +17281207 +7758871 +13438194 +3983359 +10301000 +1695508 +2791920 +1008694 +15793547 +19373107 +11919732 +1929470 +13887769 +1420913 +6799428 +4346427 +13805194 +10744022 +10201386 +3415820 +726235 +18785252 +15449485 +6300046 +2497010 +19486483 +12290664 +10928832 +5712191 +15283679 +10123399 +14157121 +19818094 +10017886 +18989723 +17785832 +18783285 +4076420 +2424265 +11645137 +16018990 +19265628 +20260460 +9556515 +2111660 +19876421 +17148825 +10020507 +1036219 +15154574 +11751305 +386760 +17363127 +16353222 +13520114 +5200357 +1292463 +4733743 +14006389 +18317982 +12034419 +13187848 +2373147 +12746137 +19180432 +5403518 +8460758 +18132516 +16506575 +20320753 +15706385 +8888051 +16703838 +8092447 +4967050 +886797 +177701 +18579469 +14490042 +13826165 +9179684 +18273418 +4637405 +18024382 +9454934 +18140380 +13908085 +16652065 +11297143 +3034402 +8312647 +17109504 +7785085 +1575578 +18013241 +21067204 +7340097 +1890804 +6246307 +1630628 +19016593 +9161990 +8619 +18622068 +9989050 +14798715 +13419189 +10947182 +15745051 +1393388 +14073235 +18327812 +14439579 +10961600 +167216 +6296114 +3620291 +14085031 +9216384 +3792650 +19619521 +15484218 +18764280 +6427841 +960197 +4779618 +10889511 +11149688 +9153470 +16177586 +10569041 +454917 +21054753 +13218649 +4640027 +5661728 +20898778 +12630794 +2400017 +2960347 +14195787 +13118380 +15716215 +7969896 +4425070 +14279672 +4953287 +15161128 +5672869 +13587615 +19560539 +19013971 +3301133 +8954242 +21271676 +20964969 +226198 +2168676 +5314389 +1327853 +17936564 +9262915 +14954035 +17924768 +18032902 +8672438 +20525880 +2603177 +21440103 +5031930 +9894024 +18663355 +4531238 +10643097 +3799204 +13501764 +21107181 +15063479 +20908608 +1297051 +623999 +2561235 +6673599 +10688972 +15215522 +1987797 +8520395 +2131320 +14919956 +14048331 +10162720 +13291394 +16938456 +15292854 +8228762 +7027492 +6035282 +12641280 +1679779 +2445892 +16506575 +4172757 +4763889 +6514348 +17899864 +13265835 +11694289 +4603327 +10487777 +8871667 +2299092 +21374567 +17104261 +7853897 +2752599 +16446283 +12272314 +378240 +11447875 +12805775 +12100610 +15761434 +18877001 +7660567 +816019 +12714025 +17472572 +20742147 +3290647 +18755760 +15530749 +1546742 +922187 +9469352 +15599561 +14961899 +220955 +16797554 +14387151 +18736100 +15880054 +21462385 +6068705 +17308732 +19992419 +11352193 +3082899 +12845751 +5737750 +18643694 +13346444 +1108963 +2449168 +2112970 +9462799 +12836576 +18585368 +10171895 +643660 +18766246 +7225410 +18631898 +6699158 +21092108 +2396085 +7590444 +1867211 +20650397 +5459878 +15036610 +14377976 +10815455 +6103439 +1418947 +20037639 +9529645 +17787143 +14402224 +8992252 +1274769 +18287836 +15600217 +14283605 +15155229 +18789184 +8843486 +8914920 +17626580 +1821337 +3561965 +18374343 +17841537 +15935759 +1873110 +11742130 +21199587 +17095086 +15401644 +4236327 +14314406 +2353486 +21241529 +20208687 +3538372 +4336597 +13423121 +5854403 +11086773 +19657532 +16339459 +6370825 +7954822 +19582166 +1740728 +9629915 +9777370 +8720279 +5254752 +7320437 +14190544 +882210 +18977271 +19228273 +5850471 +6715542 +20494422 +8834967 +8291676 +9645643 +15543856 +15729322 +783251 +3258534 +3708765 +3509536 +1481862 +2218483 +2031051 +6368858 +6174217 +13970344 +14484144 +8625908 +19510732 +12162869 +17753064 +11533071 +18324536 +6408835 +1587374 +804222 +19522528 +13109205 +5336671 +11493095 +6244996 +478510 +17122611 +3665511 +13620383 +20508185 +20857490 +3194309 +20453135 +21204174 +14620458 +6375412 +12577710 +2793231 +6423253 +16783791 +14550990 +11236850 +4144577 +13727862 +4448007 +9981186 +5678768 +5968435 +2341035 +3744154 +6066739 +13006314 +11019927 +4303829 +6182737 +20236212 +13619728 +18808844 +18270796 +7962031 +7370244 +15650024 +9956282 +14683372 +20439372 +5465121 +18247203 +12516762 +5165623 +20516705 +10078834 +6129653 +5647310 +1165980 +89228 +4212079 +20527846 +16922727 +2180472 +17163243 +1888183 +14762015 +3431549 +9182306 +12385035 +16098943 +9356631 +1400597 +15186686 +19538257 +5489369 +18017173 +6030039 +15397711 +13128210 +7650081 +4898893 +13362173 +19794501 +11683803 +15362322 +16827700 +5201668 +3163508 +5933046 +17086566 +15073965 +11605161 +17794 +5331428 +9696106 +222921 +6693916 +11219155 +19354757 +3577038 +7727413 +15638883 +11424282 +13607932 +12252653 +4120329 +1265594 +14690581 +7969240 +8537435 +4961807 +20749356 +13558124 +16986952 +981169 +21141260 +18217712 +7522942 +14194476 +10470082 +13022698 +7098926 +16892581 +9047302 +7389249 +1908499 +17913627 +12929637 +20580274 +8492215 +13075126 +16475774 +5986130 +2947895 +17676388 +3406645 +20214585 +17625925 +4597429 +6354441 +14912747 +16737261 +11717227 +2041536 +14334722 +10578216 +5935012 +21244806 +13611208 +19806298 +3760538 +4462425 +17150136 +5874064 +14273774 +18668598 +3094695 +1815438 +3769057 +992310 +18513934 +1154838 +6238442 +9777370 +19455682 +10936697 +20651708 +20021255 +4139989 +19901980 +12470887 +7421362 +10465495 +8651467 +3957800 +2261081 +10715841 +10519234 +12348991 +19862658 +4776996 +6394417 +13750144 +21278229 +1164669 +5805251 +13933644 +4214700 +15368220 +11620889 +17348054 +12797910 +11026480 +5927803 +18480511 +15846631 +20835863 +19498935 +139035 +606960 +7612726 +14412710 +19857416 +16868988 +3064549 +7288980 +3916513 +3021295 +20280776 +12390934 +17376234 +9430031 +19781394 +17308077 +6839405 +6460608 +4960496 +21430928 +20575031 +21369979 +11372509 +6353785 +10084732 +6136862 +1270181 +18725614 +2997702 +8663919 +7658601 +19936714 +9075483 +6467817 +2409847 +5294728 +19715858 +18239995 +4499780 +4120984 +21079001 +2712622 +10276752 +12444673 +16155959 +9896645 +4144577 +6604787 +18853409 +8228762 +18097782 +3535750 +15413440 +3010809 +4577113 +15400333 +6564155 +19998973 +6487478 +14660435 +18347473 +11196873 +2283363 +14959278 +1749247 +8311992 +17352641 +18831127 +2991804 +1117483 +8443719 +2025808 +9228836 +16502643 +4995230 +7602240 +1814783 +4300552 +14117799 +4173413 +8441097 +5678112 +1281978 +10950459 +20599280 +16899790 +11806355 +15130326 +18619446 +2780124 +15065445 +12465644 +13700992 +9505397 +8952276 +18687603 +5595537 +15099524 +9453624 +17551214 +1567713 +4071832 +11923009 +15290233 +16773961 +11911868 +21343110 +16932557 +8415538 +3196931 +1933403 +8363110 +7400390 +16158581 +15208969 +17276620 +13320885 +7992833 +10289859 +14797404 +2382322 +5549662 +8010528 +10069659 +639073 +17163898 +13787499 +13698371 +13825510 +9618118 +14244283 +7604206 +2362006 +7290946 +15321690 +5183973 +14946170 +16187417 +4423104 +17224847 +3584247 +1703372 +9078104 +7455440 +13304501 +9371049 +5820980 +18262932 +11703464 +13183916 +2089378 +13590237 +8610179 +10257747 +1894736 +6073292 +10204663 +10835772 +6265967 +15452761 +6897732 +12908010 +16924038 +17286450 +11755237 +18477234 +901871 +8812685 +5176764 +8929338 +20803751 +7415464 +17355918 +979858 +15969183 +1141731 +10974707 +14743010 +19049360 +10328525 +10382920 +10983227 +14094206 +627931 +10884268 +15629708 +5908143 +21222524 +7003899 +16173654 +696744 +7872247 +16947631 +19835133 +16785102 +11139857 +12640625 +8421436 +18707919 +10262990 +19095891 +7990212 +823228 +8585276 +13331371 +8223519 +6381310 +520453 +15431790 +14056851 +7546535 +12037696 +1983210 +7413497 +12126825 +19391457 +12983376 +15693933 +385449 +12509553 +18052562 +447708 +14741699 +7758215 +20406605 +20569789 +5737750 +18802946 +7371555 +18380896 +14762670 +5031930 +11159518 +5048314 +17760273 +21012810 +17518447 +15199138 +10391440 +6625103 +7471824 +5870132 +2481281 +21151746 +20062542 +14539849 +8313958 +17393273 +5938289 +21255292 +1228238 +2023186 +3929620 +1390112 +4995886 +374964 +2433440 +584678 +11259132 +6159800 +17763550 +9751156 +2872529 +23692 +8970626 +8561028 +8665229 +2697549 +10965532 +19709305 +18484443 +10422241 +19563160 +5518205 +6165698 +14629633 +10269543 +7515078 +18137759 +17979818 +10976673 +16948286 +16956150 +12522005 +9099731 +19823992 +17308077 +3866050 +21333279 +5077150 +10496297 +4191107 +20670058 +14394360 +196707 +13551571 +5907487 +813397 +10577561 +19683091 +15655267 +4122295 +3025227 +14286226 +6999967 +2164088 +13529944 +13047601 +2136563 +10483845 +17485679 +12957162 +15102145 +4182588 +5756755 +3012775 +11590743 +19662774 +14983526 +4837945 +15287611 +10125365 +16163168 +1598515 +12404696 +5785591 +5775105 +10914414 +4073143 +2340379 +10207284 +9837008 +8608869 +21270365 +4157684 +10525788 +19699474 +1747937 +12121582 +16182174 +1709270 +10679141 +7076644 +5539177 +14040467 +1145663 +4336597 +19071643 +8890672 +13809126 +7631731 +1302294 +17101639 +8581999 +12116994 +9228836 +8743217 +6391796 +529628 +11766378 +14293435 +7507214 +8356556 +19070332 +7782463 +1177121 +958887 +2859422 +8929993 +5512307 +3582281 +3002290 +13018766 +1374383 +12459746 +10347531 +12244789 +21327381 +20542919 +21046233 +17950327 +21205485 +8219587 +2680509 +3879157 +10079490 +17782555 +17125888 +1974035 +1768253 +11687080 +4221909 +13169498 +5978921 +19919674 +8067544 +7644838 +8754358 +18808189 +6410801 +20581585 +10002157 +3645850 +17576118 +16608811 +3356838 +19587408 +10463529 +1413704 +9096454 +11893518 +12905389 +10756473 +2409847 +11592053 +8328376 +4398200 +19550053 +2252561 +16005227 +3845734 +4985400 +5402862 +9279299 +7501971 +4200282 +9460833 +2607110 +651524 +7579958 +543390 +4766511 +1896047 +7064848 +20664160 +18740687 +12485305 +506035 +17771414 +378240 +3447932 +11495716 +14421885 +20764430 +232751 +9918927 +15951488 +7534739 +13211441 +15756192 +13138041 +18727580 +2619561 +13678710 +15615945 +16394509 +12814294 +3916513 +20061232 +7665155 +20194924 +10221047 +21205485 +14393049 +16211009 +5325530 +12657664 +8954897 +20113660 +4214045 +21151090 +7462649 +6020864 +6448157 +13832064 +6984894 +18764280 +16370261 +1380281 +996242 +12121582 +15710317 +4768477 +17350020 +6018243 +10048688 +15193240 +4959186 +10405202 +2175885 +1519217 +7413497 +11753927 +13810437 +8867735 +20217206 +6742412 +8709794 +16163168 +12824780 +13999835 +10438625 +4271716 +6075914 +5530657 +10128641 +9918272 +20497699 +10824630 +441810 +15739808 +819296 +13129521 +10253159 +9990361 +4599395 +19751903 +3810345 +1834444 +8719624 +11772277 +12803809 +3626190 +8169124 +4694421 +44008 +2331860 +18574882 +11327945 +16447593 +17388030 +12674703 +9582074 +21177960 +9459522 +3457107 +7100237 +12537734 +16570145 +3532474 +4771754 +11273550 +2875151 +9042715 +15484218 +7002589 +11318770 +16826390 +4566627 +10718463 +19541533 +8409640 +15663131 +1978622 +4368709 +16920761 +4892339 +21083588 +806844 +17209773 +12103887 +1596549 +16629782 +12978133 +20288640 +1518562 +17971298 +18255068 +3100593 +20455101 +18818019 +6362960 +5476262 +18148245 +17357884 +17640343 +5686632 +8878876 +5360919 +5150550 +5095500 +9618118 +8300195 +17644930 +8073442 +17080013 +17298902 +19854139 +16212975 +6282351 +6857099 +13798640 +21407990 +18413664 +6805982 +18878312 +14583103 +8487628 +14419263 +16103531 +16102220 +14488076 +15786993 +15508467 +15796168 +17863164 +9743291 +8519085 +434601 +14104692 +2818790 +7263421 +21007567 +6869551 +18823918 +18500171 +5199046 +14891120 +5637480 +3825418 +19032321 +19879698 +4925107 +17428007 +17351330 +9087279 +16400408 +14714829 +1865901 +19252521 +8245801 +16993506 +12976167 +13494555 +20693651 +18162662 +15100179 +13253383 +19840376 +17943118 +3675997 +16205111 +7009798 +18576848 +7009798 +14870804 +19284634 +4457182 +10483845 +11921698 +11123473 +20785401 +13186537 +3308997 +4287445 +5642068 +8242524 +18479855 +2092654 +6972442 +10999611 +17021031 +12248066 +9374326 +12265760 +10160099 +17899864 +2187026 +2219138 +13196367 +4913966 +7686781 +6608719 +4007607 +13871385 +13699681 +1694853 +9112183 +2681820 +1884251 +14621769 +19983899 +3689104 +15983600 +17975886 +11415107 +17573496 +10344254 +11116920 +857306 +20551439 +2807649 +4408030 +12513485 +21105215 +14579826 +19764355 +13949372 +5857680 +20540297 +16920761 +11132648 +11485230 +15357735 +9153470 +4591530 +11957743 +10862641 +20168055 +14073235 +8322478 +5605368 +17030861 +3242806 +10308209 +21238908 +7735933 +19183709 +17818600 +10420931 +8783194 +13163599 +13691817 +10048688 +6926567 +1017214 +11377096 +926774 +7040599 +8152740 +18588644 +19477308 +11059248 +6543183 +3529197 +4072488 +19956374 +18864550 +3917823 +7489519 +11095948 +17321839 +14441546 +380207 +4379195 +7065503 +7625178 +4616434 +19214510 +7642217 +2889568 +17642964 +14247560 +269451 +1945199 +15719492 +19903291 +5334050 +5925837 +12565914 +18810155 +14313096 +18307496 +10349497 +20375148 +4948045 +12802498 +12779560 +13436228 +85296 +6490755 +1679124 +7031424 +12468266 +2633324 +3850322 +15007119 +7695301 +7849310 +20751978 +1245933 +6805326 +16957461 +12239546 +6293492 +9722320 +19835789 +7514422 +21196965 +11354814 +9498188 +19156184 +1139765 +6326260 +2796508 +5178075 +14172194 +17909039 +9992327 +5938289 +15688035 +4191107 +7561608 +13672812 +17040036 +20634669 +794392 +2116902 +10080800 +19629351 +15809931 +17579395 +8025601 +9778681 +175080 +7322403 +15376085 +19947855 +8606903 +16749713 +8128492 +11010096 +8718969 +1766287 +16193970 +17814668 +5404828 +16656652 +2688374 +20076305 +12090780 +2364627 +18580125 +17994891 +9105629 +21434860 +5222639 +4561384 +18702021 +14165640 +2440649 +9717733 +7479033 +8127181 +5837364 +15707695 +3424340 +5938289 +16251641 +4674105 +9492945 +10987159 +18955644 +2272222 +15043163 +17296936 +6013655 +13278942 +9152160 +15199138 +15626431 +13615140 +17969987 +10809557 +1228894 +2139840 +5717434 +3601286 +19569058 +18925498 +5066009 +5963848 +13649874 +4535825 +15870879 +6094264 +1899324 +8302817 +16517716 +1066365 +13873351 +18830471 +13398217 +1410428 +4022681 +10626057 +333021 +5208221 +7261455 +16946320 +11148377 +14841313 +16247709 +6730616 +8384081 +8482385 +15901681 +19942612 +6085744 +3902750 +20152982 +17070838 +19325266 +19312814 +9572243 +4486673 +2193579 +4377229 +1419603 +20263737 +11149688 +18570294 +446398 +5275068 +3844423 +21347697 +19034943 +3172683 +4229773 +2268945 +901215 +5396964 +1123381 +8814651 +8753047 +13667569 +10392095 +5474952 +16214942 +1176465 +11514721 +2316131 +7987590 +1330474 +16897823 +49251 +7745763 +5277689 +6171596 +18017173 +7589133 +4430968 +5318977 +9821934 +19848241 +9542097 +21395538 +18900594 +10311486 +17477159 +5305869 +13705580 +19568403 +14937651 +4373952 +12495791 +16802797 +11761136 +11457050 +1814128 +7457406 +21238253 +15929206 +965440 +3545581 +1551985 +20985285 +12790701 +12956507 +19391457 +17199288 +19778117 +114132 +5583741 +20379735 +2027119 +17306111 +8044606 +13334648 +7265387 +8055092 +11245370 +6963267 +13204887 +18726269 +12753346 +17339534 +20459033 +19095235 +5861612 +2398706 +8933926 +3644540 +504724 +5869476 +2644465 +3812966 +10673243 +15191929 +4716704 +17240575 +11664143 +17288416 +4569248 +21109803 +10117500 +16617331 +12324087 +11196218 +15445552 +5461189 +308773 +18983825 +12647178 +15961318 +7335510 +5510341 +4281547 +7604862 +6473716 +13790776 +6857099 +20343035 +6728649 +6039214 +4977536 +3445311 +10819388 +3761193 +6197155 +7954822 +20310923 +21358183 +6657871 +2543540 +10919657 +3305065 +10465495 +621378 +4836634 +7144146 +20238178 +16194625 +12569846 +4849086 +12942744 +20937444 +14075856 +17254338 +11734921 +21269054 +9405783 +18510002 +10202697 +19869867 +7974483 +3154988 +10063761 +1908499 +8152085 +17823843 +14615871 +11063836 +8095069 +13319574 +2764395 +4636750 +13605965 +6264657 +5102709 +3813622 +19520562 +19500246 +6215505 +13620383 +16308002 +11291245 +9431997 +13886458 +19862658 +14117799 +9681688 +11152309 +4366743 +5912075 +17393273 +1865901 +15382638 +13702958 +7945647 +8605592 +20924337 +15471767 +4037098 +18191498 +13896944 +11332532 +15150642 +4908068 +9551272 +1639803 +20018633 +18019139 +365789 +6913460 +16899790 +1393388 +5929769 +17511238 +5454636 +11632686 +1065710 +7933851 +10939318 +8591174 +10089975 +11065146 +14486765 +13522735 +121996 +694778 +7583235 +2023842 +11665453 +7112689 +13032528 +4889718 +9053856 +20855524 +11337120 +20266358 +17823843 +2018599 +1341615 +16945665 +10145681 +1181708 +5214120 +18734789 +19460925 +697399 +10390129 +12880485 +9888125 +19259730 +2155569 +16064865 +3029815 +2602522 +15058236 +19485828 +9195413 +290423 +13239621 +17694738 +8001353 +1139765 +315326 +14492008 +19259730 +13120346 +18571605 +17289072 +15212901 +17976541 +8616078 +20604522 +15667063 +21352940 +5285553 +11586811 +9700693 +449674 +18183634 +19691610 +2569099 +12953230 +8228106 +7197885 +3260500 +11566495 +17245163 +9234734 +15114597 +14425162 +3003600 +19342960 +16751024 +3933552 +16535411 +7785740 +17196011 +11033034 +16452836 +19593307 +654801 +15125083 +50562 +9414958 +16621263 +9298959 +3591456 +4406064 +16017024 +11403966 +7343374 +16005883 +11177213 +5545075 +6407525 +12654387 +10053275 +2563201 +3752673 +18550634 +1799054 +10807591 +14692547 +6260725 +2458999 +19862003 +11010752 +13340546 +8424058 +3274263 +1358654 +468680 +16705804 +12551 +4317591 +10098495 +2632668 +1515285 +3388950 +14269187 +14026049 +4708839 +5369439 +10595256 +14769224 +814053 +12198259 +12769075 +1876386 +2608420 +6273176 +673806 +7527530 +8821204 +17001370 +13307123 +16235913 +8329031 +3523299 +20128733 +9914995 +8724211 +7918122 +11719193 +20693651 +20124146 +13181949 +9785234 +17682941 +272073 +3235597 +7920744 +1489071 +13924469 +2849592 +15586454 +3807068 +11265686 +14930442 +1968792 +817985 +15230595 +19590030 +19571025 +17561700 +15096903 +16877507 +3537061 +2493733 +12624896 +19892805 +20481971 +7100237 +12036386 +1639147 +11867959 +13567299 +13556814 +2971488 +20432164 +9789166 +16564247 +18466748 +9147572 +19787292 +6172251 +17888723 +3512157 +1637181 +15178167 +20712001 +10247916 +8162570 +20470830 +1576888 +13718031 +7098271 +2042847 +16568834 +18519832 +13685919 +9603045 +6082467 +10084732 +18291112 +6589058 +7754283 +16481672 +18422184 +2293849 +20478694 +14406156 +2801751 +5685321 +16770684 +12879830 +3600631 +10985193 +10204663 +14684028 +65635 +21029849 +9478527 +17268756 +4389680 +17830396 +2046124 +10843636 +5690564 +15214211 +13628248 +6545805 +17039381 +17051832 +21466972 +9451658 +8787126 +15960008 +3851632 +12269693 +16074695 +6305289 +11162139 +10376366 +10504161 +17553180 +4087561 +6665080 +17127198 +12934225 +9981841 +6871517 +2305645 +3072413 +20892224 +16788379 +13602689 +4797968 +12425668 +20559303 +11352193 +1515285 +908424 +15896438 +1927504 +7797537 +2613008 +20979387 +19716514 +8025601 +5768551 +34178 +9486392 +599096 +12419114 +8892638 +15138190 +3434825 +3134672 +13619728 +17863820 +16050447 +10493020 +5623718 +1506110 +8706517 +4018748 +16654031 +17623304 +19798433 +8708483 +12879830 +12029832 +2476038 +9516538 +1571645 +1343581 +17078047 +20974799 +7470514 +17720952 +2336447 +3172683 +16144163 +2291227 +1118138 +3262466 +13862210 +10355395 +9220972 +10456975 +6528110 +6927223 +877622 +11051384 +18367789 +2221104 +8157983 +10599843 +17332980 +20420367 +13345133 +15876777 +4126882 +7077955 +3924377 +1435987 +18565052 +6001859 +13692473 +3725148 +20979387 +2322029 +5693185 +2506840 +3689759 +20267669 +318603 +11694289 +11070389 +1214476 +3627500 +17902486 +15216833 +7579303 +10371123 +17009890 +12940778 +20417090 +1852138 +1780704 +11909902 +5160380 +19835789 +528317 +13976897 +7260144 +413630 +19851517 +7112033 +7288980 +7376797 +12923083 +9546029 +5925837 +12144519 +5516239 +5750202 +3967631 +10116190 +7332233 +11133959 +4183898 +7044532 +12619653 +19181087 +804222 +21046888 +18286525 +3482011 +19040841 +20411848 +19908533 +7561608 +20101864 +7231964 +21199587 +1037530 +13275010 +16694663 +17353297 +7441678 +18736100 +5853748 +9294372 +10461563 +7923365 +2989183 +9250463 +15075276 +1987142 +18941882 +8783849 +6551703 +4190452 +5635514 +20010769 +12008205 +11207359 +7410876 +10839048 +7486242 +15400988 +17285795 +16732018 +4084939 +6804671 +5904210 +13618417 +13170808 +15751604 +344162 +6256137 +9451002 +11597296 +14833449 +2554026 +21425685 +20588139 +11199495 +6059530 +17032172 +20643189 +13209474 +19219753 +14650604 +19043462 +15763401 +17831052 +1379626 +21115046 +6376067 +18139725 +2855490 +16736606 +19071643 +3729081 +15366910 +14869494 +1262972 +5452014 +15694588 +16731363 +15037265 +15652645 +17129820 +746551 +16536722 +8456826 +541424 +3177270 +14048331 +5071252 +11080220 +2500286 +20272256 +4902825 +13163599 +13537153 +19566437 +610892 +9068929 +13524046 +9895990 +5276378 +13796019 +20221794 +18140380 +9152160 +4965084 +8673094 +19653599 +8930649 +20232935 +8186163 +4323489 +5513618 +5610610 +1728276 +12647178 +5848505 +16642890 +12256585 +19006107 +10715841 +10773513 +19643769 +1044083 +2559924 +4655100 +6824332 +7905671 +1135178 +6518280 +15052994 +7908947 +7800813 +3445311 +12965026 +15587765 +13609242 +14953379 +17684252 +20982663 +20852247 +20289951 +14972385 +6376067 +17011200 +7069435 +9283886 +2833208 +1087337 +13069883 +8425369 +20793921 +1251176 +806844 +15978358 +325157 +12006239 +16519027 +7990867 +1841653 +4539102 +737376 +10040824 +9815381 +2881049 +2720486 +14957311 +21234320 +14482833 +15599561 +7619935 +6095575 +1102410 +12725166 +8931304 +3668132 +720992 +3350940 +18826539 +6227301 +6573330 +943814 +6642142 +1380937 +14661746 +1444506 +508001 +17953604 +17624614 +15080519 +16056345 +9684965 +12737617 +12828712 +4973604 +1528392 +16672381 +2943963 +14647983 +10673898 +4460459 +12738273 +9293061 +16772650 +1508076 +19228273 +16261472 +8872322 +9894679 +11864682 +4965084 +18472646 +19271526 +16213631 +11798491 +15885297 +19810885 +4093459 +4378539 +8803510 +9835041 +12968958 +19972758 +5519516 +1471376 +13562712 +7007832 +9895990 +16947631 +20269635 +11896139 +11174591 +14479556 +4823527 +11237505 +6880692 +15509777 +419528 +10145025 +434601 +7188055 +21167474 +7403012 +11723780 +20710035 +12287387 +18719060 +20775571 +2337102 +14253458 +16461356 +11635307 +6574641 +4696388 +20103830 +15103456 +6207641 +9278643 +2495699 +16804107 +20468864 +9782613 +17968021 +15779784 +6355751 +4401477 +2657572 +14174815 +21113079 +6174873 +18122686 +8475176 +14981560 +12431566 +2091999 +20546851 +19934092 +10349497 +12162869 +2719831 +7607483 +8566926 +4820905 +20246698 +10343598 +9602390 +6743723 +8495492 +14768569 +20407915 +21410612 +2126077 +7086474 +15819761 +12590162 +4780929 +1633249 +16636336 +16379436 +9970700 +2365283 +3826729 +14720728 +7414808 +8010528 +2396740 +8603626 +13070539 +10551347 +13468996 +9773438 +58426 +11867303 +20720521 +2618251 +4948045 +8207790 +7434469 +3071102 +7426605 +10276752 +17050522 +8499424 +8144876 +5642723 +178357 +8370974 +10143715 +17156689 +17835639 +100 +6521557 +13775703 +7009798 +7345996 +1871799 +20736905 +422149 +4230429 +19834478 +13686574 +6592991 +19124726 +16906998 +8137012 +12592128 +736721 +19934092 +14747597 +2769638 +724269 +20877806 +14107314 +4873334 +16550484 +10706666 +8068199 +13907430 +7853897 +8133735 +649558 +19874455 +9162645 +14066026 +8520395 +11243404 +14815099 +5189216 +18498861 +8484351 +9886159 +4941491 +13552226 +20973488 +16253608 +1681745 +6216816 +3103870 +12204812 +10013954 +7633697 +3539682 +2749322 +2130010 +21463040 +3637986 +13128210 +5119748 +12333262 +4037754 +3515434 +5216086 +2511427 +5770518 +14280983 +19355412 +10239397 +15399677 +2929545 +17960157 +4889062 +21177960 +4206836 +16379436 +403144 +5320287 +10076213 +18895351 +11206704 +3794616 +7771978 +3881123 +13526012 +21033781 +2125422 +20562580 +1374383 +4246813 +9414302 +6152591 +975271 +6855789 +20714622 +16578665 +4020059 +15585143 +7916156 +7127762 +5663039 +231441 +13322196 +6551048 +274694 +4240914 +9448381 +14222656 +13481448 +19072298 +20921060 +12936846 +2036949 +18823262 +1809540 +6741757 +700021 +5469709 +3241495 +3954523 +4073143 +11696911 +17262857 +5086325 +5518860 +19053293 +10321316 +1710581 +3231009 +17572841 +4774375 +3057995 +9036161 +14272463 +13136730 +10477291 +20327962 +1927504 +5587673 +20959071 +12170734 +17647552 +16097633 +1344237 +17362472 +2014667 +9358597 +314015 +7895185 +17796318 +418873 +17658693 +10669966 +2128044 +6250239 +12663562 +20579619 +19202714 +20511462 +14722694 +14975006 +15555652 +20232280 +9331727 +19168635 +2037604 +2399361 +13554848 +11597296 +8161915 +16223461 +14111901 +4843843 +2772915 +17274654 +10378332 +5241644 +7188055 +3183168 +7252935 +15466524 +14943549 +20863388 +6901664 +19050671 +8722245 +11047452 +16139575 +3863429 +10706011 +3497084 +11076943 +6437671 +5973023 +5914696 +4647891 +19436021 +18770834 +14018840 +8322478 +1833133 +9485736 +1200058 +12141898 +5913385 +1002796 +14580481 +10600498 +16410893 +16353877 +21141915 +5249509 +9808827 +145589 +17289727 +11535693 +930706 +14329480 +2571720 +755071 +5014891 +322535 +8796301 +19383592 +4530582 +20833897 +15173 +8640326 +20726419 +15697210 +6414733 +17518447 +14087653 +6533353 +6933121 +10020507 +14357005 +20772294 +9551272 +2771604 +11008130 +4141956 +15864981 +12932258 +4832046 +1468754 +18244582 +15711627 +9226870 +15893817 +16836220 +14163019 +15294165 +19639182 +11438045 +12553462 +9993638 +20338448 +19924917 +17455532 +18494928 +11823394 +13837962 +8181576 +2293194 +14031947 +16083870 +706574 +13717376 +9449036 +15130981 +17849402 +8898536 +2225692 +5078461 +3965009 +20483937 +7382696 +20734938 +12303116 +6257448 +2976731 +4627575 +16102875 +10526443 +17701291 +19333785 +15169647 +18867171 +256344 +19280701 +3752018 +14236419 +8034121 +17525000 +20497044 +1581476 +17851368 +11985923 +18095161 +15051683 +3654370 +12723855 +9620084 +3774956 +13419189 +7180846 +14425162 +18330434 +9714456 +11700187 +2910540 +14069958 +707230 +3299166 +7250969 +15526161 +11333187 +8853317 +17590536 +1021801 +13398873 +16815904 +2599901 +15483563 +8571513 +10120122 +17477814 +20913196 +17956225 +118064 +8169779 +13982796 +415596 +16616020 +5014236 +6107371 +11682493 +19763699 +13951339 +8924095 +3645850 +10963566 +19331819 +7062226 +5357643 +7929919 +7745108 +18198707 +20713967 +10725016 +18899284 +7527530 +19296430 +10459597 +4105256 +14336688 +21032471 +17150136 +13809126 +125273 +6926567 +8104244 +798324 +12171389 +114787 +9553893 +18215091 +193430 +6540562 +19618866 +13117069 +8859870 +9188859 +6808603 +16188727 +19361310 +5818359 +14266565 +14235763 +12487271 +4955909 +2662815 +5427111 +20332549 +13046291 +20286019 +17836295 +8933270 +13419189 +11126750 +11424937 +3207416 +12911942 +21291337 +2361351 +17319873 +6490755 +7166428 +7703821 +8582654 +138380 +5680078 +20485247 +19295119 +6760762 +20399396 +21253981 +15970493 +5071907 +18728235 +21358838 +19851517 +12423046 +16735295 +15179478 +16689420 +3839836 +2616940 +8398499 +3453175 +40732 +18920255 +20983974 +3552134 +13729828 +4221254 +17226813 +220955 +5163002 +15015638 +5110573 +6178150 +8712415 +20505564 +21129463 +4480120 +1610967 +19885596 +6598233 +144933 +20194924 +18405800 +262898 +3366668 +8937858 +10524477 +8987010 +12100610 +14961244 +345473 +2808959 +8114074 +20033707 +14384530 +18919600 +12803809 +1289842 +8007251 +4798623 +2129354 +6579228 +7123174 +7840790 +6132930 +19644424 +21422408 +19583476 +20601901 +2341690 +6300701 +17441770 +13393630 +17931977 +11060559 +5982853 +18044698 +6627069 +17441114 +20829310 +17371647 +19360655 +14083065 +4596118 +17699325 +8518429 +4255988 +11864682 +16435141 +3070447 +20008148 +8367042 +5917973 +3069136 +11869925 +547978 +16904377 +12931603 +9379568 +18370411 +1039496 +20912540 +13560746 +353992 +6627069 +595164 +16598981 +5640102 +17566288 +20972833 +17884136 +7509835 +17135063 +4084939 +2166710 +15273849 +11556664 +11343673 +6680808 +15174890 +16694007 +17693427 +6780423 +4785516 +496860 +11793903 +4617745 +19559883 +20777537 +4140645 +7473135 +17998168 +14060128 +8213688 +1090613 +18002755 +11957743 +6063462 +12650455 +7292912 +4599395 +6387864 +3657647 +20456412 +12802498 +13220616 +9500154 +12870655 +18025037 +13289428 +8263495 +9981186 +11133304 +14921922 +21449933 +11842400 +2293194 +10318040 +15090349 +2555336 +16812627 +1455647 +17992270 +16962704 +5122370 +4389025 +4148509 +12932258 +13851069 +411664 +20463621 +16986952 +9326484 +6540562 +20924992 +12445984 +1086681 +19048050 +17235332 +16349290 +7056983 +2490456 +7016351 +7614037 +14080444 +87917 +10439281 +2363972 +12297218 +1038840 +19991764 +3309652 +20849626 +5678768 +951022 +11745407 +11623511 +9990361 +4978191 +833058 +13549605 +6754208 +19010039 +17278586 +3547547 +4030545 +19885596 +9404472 +16950907 +7941715 +7195919 +21185824 +19069676 +13388387 +12360787 +6651973 +13693128 +14092240 +6742412 +11588121 +16064865 +11181145 +7438401 +19898703 +1079472 +10230222 +2932167 +18289802 +12576400 +7447576 +18703332 +6122444 +7598308 +19350825 +9405783 +10186313 +8049849 +6284973 +5093534 +3032436 +4763889 +1842963 +4825493 +20841106 +14621769 +19353446 +2177851 +14398292 +14904228 +4552864 +1073574 +8313303 +5191837 +6902319 +19901324 +16173654 +6894455 +1147630 +6765349 +7576681 +14508392 +4022681 +7435780 +18991034 +9319931 +3603907 +14914058 +17190113 +6711610 +2615629 +13990005 +15229940 +11569771 +15311204 +14763326 +6766005 +3259190 +18587989 +8705861 +3931586 +17949016 +19079507 +6294148 +2277465 +20263081 +665942 +3887677 +7657946 +18567018 +37455 +17424730 +12998450 +8511876 +10332457 +9116770 +16878163 +5862923 +3432204 +16519027 +14807890 +10925555 +7161840 +9521781 +12195637 +15290888 +12574434 +20845694 +11343673 +569605 +12649144 +11166727 +2721 +18367134 +12002307 +14460551 +1201369 +529628 +8289054 +3212659 +18599785 +11670041 +21123565 +19084094 +1508731 +13193746 +18874380 +8673094 +7422672 +1154838 +12425012 +17350020 +20492456 +16649443 +15943624 +8997495 +11803078 +10627368 +14902262 +7581269 +523074 +6705057 +6448812 +192119 +14612594 +6998657 +16167756 +18301598 +10795795 +20130699 +5994650 +8675060 +17547938 +28935 +6823676 +18059771 +2472761 +10251848 +4025957 +2440649 +6987515 +15900370 +16787068 +21208762 +6735203 +4406064 +6862998 +19656221 +19173223 +9054511 +14708931 +3096661 +2662159 +6383276 +8256287 +20770328 +4062002 +12936191 +14090274 +11215879 +13281564 +8922129 +16311934 +1006728 +3248049 +14246249 +21021985 +21341144 +293699 +8896570 +7945647 +19637871 +19185675 +1680435 +16817870 +11092016 +8437165 +3707454 +4126227 +17197322 +5204289 +17352641 +18500827 +14716140 +1156805 +11834536 +8218931 +450985 +19275459 +17625270 +2379045 +8749115 +10342288 +10173206 +700676 +15298752 +4647891 +15802722 +12846407 +15112631 +20309612 +2905952 +11723125 +14992045 +13403460 +12754657 +5434319 +13618417 +15537302 +7156598 +13820267 +10204007 +13941508 +16127124 +3927654 +7486242 +20339758 +19856760 +21316240 +7039289 +12526593 +19288566 +13208164 +5642723 +1646356 +8768776 +9875018 +12150418 +16465943 +4430968 +9943175 +7705131 +21421753 +13569921 +21275608 +19064434 +10701423 +12783492 +11120852 +13126899 +15961318 +13394285 +2438027 +18667287 +12253964 +2763084 +5681389 +11547489 +18104991 +11810287 +1458269 +12376516 +9238667 +11451152 +6947539 +18783285 +6326260 +17108848 +12004928 +6520246 +20673335 +18115477 +11101191 +8121938 +3468249 +3796582 +2930200 +9399229 +19390146 +3681895 +12029832 +16103531 +17097052 +5628305 +4251400 +9561758 +18686948 +12894903 +8121938 +14763326 +14758083 +18047320 +13283530 +21186479 +608271 +4415239 +1008694 +1305571 +20025187 +10681763 +91849 +3299822 +7963342 +4244191 +7727413 +4560073 +7222133 +6955403 +12265760 +17899864 +13553537 +4139989 +408387 +8229417 +2843038 +16055690 +13939542 +4221254 +17558423 +13037771 +9703970 +5667627 +7117276 +10532997 +17414245 +6651317 +8031499 +3786097 +5421212 +14387806 +14897019 +13967067 +13442126 +18788528 +20703481 +12881141 +5321598 +7363690 +7019628 +19508766 +842889 +1977967 +18949746 +6675566 +4068556 +18808189 +19509421 +18487064 +8062301 +13912017 +1911776 +7956788 +1497590 +16414170 +11460982 +10224323 +20774915 +17787143 +18679084 +10469427 +1357999 +12506932 +4034477 +14534606 +8816617 +16270647 +2612352 +3494463 +2001560 +6073948 +18133827 +1007383 +9477872 +16353877 +5636825 +20585517 +492928 +13387076 +4020059 +14250181 +9481804 +18360580 +16462666 +19194850 +10142404 +15404920 +20580274 +1166635 +12172700 +7643528 +6971787 +20675301 +5558837 +15233872 +19990453 +5992028 +10757129 +13389698 +13505040 +16751679 +9977254 +12377171 +10873782 +2941342 +17917559 +19782049 +16821802 +7517699 +2730972 +1137144 +20132665 +10709943 +1470065 +8700619 +7277839 +20647776 +11945291 +14661090 +3778232 +16395165 +5244266 +5104020 +20477383 +4441454 +5908143 +21337212 +7404322 +9464109 +4212734 +17719641 +14547713 +2726384 +12603269 +17155379 +17960157 +18416286 +9264226 +3899473 +18535561 +10321972 +16449559 +13373969 +743930 +21273642 +13601378 +8950310 +15047751 +2988527 +18782630 +5401552 +14244283 +9085968 +16981709 +7509835 +8114729 +13005003 +4382472 +8781227 +16278511 +9163956 +20434785 +5297350 +18580780 +14165640 +7326335 +11962330 +5676146 +3628156 +12925050 +14702378 +7009142 +2726384 +18460850 +17659348 +5586362 +962164 +14381253 +11586155 +3286059 +16616675 +13671501 +990344 +17254338 +2879083 +3307686 +2137219 +13426398 +7009142 +17051177 +20624839 +8701929 +16819836 +8133735 +6513692 +4217977 +13222582 +5685977 +10498263 +2716554 +6711610 +18712507 +2220449 +8671127 +18185600 +21141915 +3702211 +6478958 +18209848 +18621412 +20492456 +8657365 +21335245 +15198483 +15461936 +19021835 +5979576 +9400540 +9144951 +2778813 +6821055 +9651542 +14700412 +9173131 +7249658 +5271791 +20222449 +1747281 +299598 +11839123 +5659107 +14286881 +17416866 +19795812 +13792087 +15725390 +21032471 +8015115 +4831391 +16177586 +18644350 +1538878 +8013804 +12124859 +15199138 +13092821 +20573065 +2270911 +11157552 +19369830 +17150136 +15687379 +6638210 +4965084 +13934299 +18705298 +4262541 +10218425 +13733105 +7231964 +14053574 +1087992 +12486616 +631208 +10059174 +12698951 +789149 +7625178 +13852380 +19644424 +12096678 +2475383 +18355337 +6130309 +851408 +3375188 +13040392 +11176557 +10226945 +12137310 +17222881 +20678578 +4704907 +14493319 +17433250 +18388761 +20449858 +14821653 +16230670 +3225111 +8714381 +3983359 +2542885 +5774450 +3743498 +5877996 +7943026 +18776077 +11892207 +15497981 +16005883 +3312274 +17219604 +17051832 +17998168 +14322926 +15641504 +2294504 +3519366 +5889793 +471957 +5844573 +7550467 +4146543 +4718014 +13209474 +2532399 +14990079 +15568104 +15982945 +14617181 +10846257 +16769373 +5512307 +16502643 +7910913 +17288416 +7718894 +18937950 +19787292 +21290026 +14769879 +20683165 +6294803 +12593439 +2198167 +2793231 +11401345 +16003261 +16018334 +13546328 +7764769 +8026912 +3027849 +14505115 +6899698 +18558498 +13101341 +6463230 +16878163 +2753254 +17159966 +19874455 +20042226 +17959502 +12579676 +16071418 +3601941 +5752823 +3307031 +14004422 +847476 +14581137 +11066457 +16376815 +4059381 +12756623 +5567357 +6950160 +7477722 +19915087 +17457498 +911701 +19953098 +7333544 +21307720 +12065221 +4992609 +16053068 +2679854 +4631507 +17305455 +7616658 +11313527 +15545167 +21130119 +3753984 +13194401 +21114390 +3044233 +8337551 +9257672 +13090200 +14853110 +10246606 +18738066 +8354590 +7642872 +11443287 +8373595 +6294148 +16021611 +13813714 +9720354 +4607259 +16749057 +16453491 +11867959 +1725654 +20787367 +21387674 +658078 +10694870 +2141806 +13491933 +10861986 +12687155 +7781808 +19981278 +4090182 +3849666 +9054511 +489651 +18696778 +20710035 +10679797 +16700561 +17908384 +18664010 +20699549 +3059961 +11293211 +4165548 +10907861 +17018409 +4640027 +15975736 +8014460 +11168693 +9778681 +12495791 +15574658 +5731196 +12996483 +12138621 +14301299 +4383127 +4738986 +6921324 +19974069 +16503299 +12199569 +17696704 +17064939 +1278046 +1262972 +4468979 +4984745 +10817422 +18900594 +228164 +18027004 +4157684 +12989275 +9942520 +12315568 +17308077 +1299672 +190153 +17703913 +10884923 +5145962 +14999254 +18426116 +16086492 +11431491 +13225203 +3414509 +7914190 +1337683 +21385053 +15139501 +19015937 +8755669 +4003675 +15127704 +8966693 +10481223 +2434751 +17779279 +2353486 +19287910 +8648845 +9989706 +10485156 +10112257 +17570220 +831747 +13870730 +7505247 +3622913 +19439953 +14201030 +7538015 +7374176 +18820641 +3490531 +19371141 +13519458 +19105721 +9431997 +7038633 +20831276 +18491652 +198673 +16663861 +6794841 +5387134 +1017214 +11962986 +15765367 +8007906 +12474819 +3891609 +8929338 +21046888 +18461505 +18772800 +5558837 +3345697 +17302179 +18312739 +3524609 +939881 +20388910 +3035713 +15275160 +9589938 +16287031 +4525995 +7888631 +17717020 +16427933 +4735054 +19000209 +15650024 +8562994 +3130084 +972649 +4080352 +19985210 +12256585 +8711104 +2392152 +9330417 +9207209 +4324800 +3849011 +3701556 +10119466 +1405840 +7154631 +6657216 +16028165 +15399677 +6960646 +7915501 +18654835 +5970401 +8398499 +6855789 +7753628 +7977104 +12634726 +15591042 +18255068 +14199719 +17062318 +18130550 +8509254 +21166819 +20061887 +1724999 +15897093 +15984256 +9536854 +15428513 +16030786 +14869494 +11040243 +6916082 +17712432 +17176350 +2910540 +15347249 +13154424 +7103514 +10455009 +20344346 +14974351 +17192079 +14788885 +3407956 +14210860 +20732317 +9860600 +15754881 +4989987 +10774823 +15058236 +14332756 +17454877 +11408554 +11856162 +11609748 +3932241 +13913328 +19924917 +260932 +13881215 +12948642 +1982554 +5064043 +8673094 +6548426 +6095575 +2296470 +9447070 +6218782 +19941957 +16009815 +14984836 +6815157 +10186313 +2614974 +17779279 +5452669 +8016426 +4950666 +6217471 +19112930 +5324219 +15480942 +1871144 +18407111 +16504609 +8309370 +19820060 +6340678 +5921250 +9151504 +1002140 +9200001 +14556888 +18721682 +12534457 +15141467 +14071924 +2258460 +13381833 +14155810 +15085761 +18342886 +18186911 +3176615 +844855 +12555428 +21064583 +2640533 +19816128 +14829517 +18251136 +12689121 +8374251 +8349347 +6808603 +19749937 +20715278 +15589731 +19105066 +3150400 +7671708 +12934880 +5836053 +9563724 +14835415 +4716048 +13867453 +8713726 +6083778 +18447087 +20687097 +6152591 +11115609 +8494836 +596474 +19179121 +17850712 +9768195 +13922503 +5148584 +7642217 +13288773 +13917260 +13970344 +5130889 +12591473 +145589 +9800308 +3815588 +14939617 +19745349 +20264392 +4250745 +15327588 +1126003 +15282369 +4460459 +6440948 +16703182 +2013356 +7680228 +1061778 +14338655 +17173729 +15880709 +11238816 +636451 +9340902 +9743947 +3674686 +16406306 +1134522 +12394210 +11846987 +6978996 +8511876 +1344237 +16323731 +1432054 +21173372 +2176540 +9990361 +16209043 +15221420 +21040335 +9981186 +11287312 +1426156 +20639256 +3538372 +1585408 +15827626 +4813696 +19080818 +7511801 +13062019 +8372940 +9068929 +11770311 +20118903 +14320960 +15104111 +14344553 +17005957 +3164818 +1220374 +9184272 +9384156 +6121134 +19067710 +17468639 +17364438 +1835099 +5048314 +951678 +16022267 +876312 +1954374 +5036518 +2792576 +7300121 +19271526 +11468846 +12561326 +8270704 +2571065 +631864 +19387525 +3151711 +6624448 +3971563 +18111545 +8308715 +11870580 +2289917 +10048688 +6090987 +15742429 +8796301 +14222656 +10450422 +10280029 +20829310 +118719 +2922992 +5087636 +7365656 +13759974 +18800325 +7715617 +2761774 +6530076 +8361799 +13149837 +1396665 +3606529 +10715841 +380207 +2846970 +14071269 +7394492 +9217040 +9625327 +18904526 +14739078 +16147440 +4994575 +18751828 +18450364 +4522718 +13535842 +5227882 +8674404 +12301150 +14287537 +9433308 +19664085 +15754881 +2404604 +5566702 +2884981 +12191705 +12103232 +16566213 +17413589 +9777370 +10296413 +6395728 +8169124 +8340172 +10555934 +13288117 +20896156 +1353412 +16154649 +1175810 +17049866 +18563741 +12984032 +12480718 +8665229 +3237563 +7638940 +13589582 +19965549 +15929861 +9341558 +16185450 +15950833 +418873 +15434411 +16089768 +13408703 +11717227 +6474371 +10656204 +20660228 +12955196 +10659481 +1451715 +7308 +12215953 +7404978 +7040599 +14596865 +11162139 +8968004 +14066681 +2033672 +21160921 +4034477 +20327962 +2201444 +5286209 +16275890 +12113062 +2428852 +1898013 +4737675 +8027567 +12717957 +9017811 +9381534 +11590087 +6629035 +14035880 +10960945 +4805177 +18401212 +5682044 +15912167 +18287180 +10436659 +9181651 +7241794 +2106417 +16476429 +3017363 +14411399 +5385168 +2789299 +15910201 +7594376 +2264358 +17140961 +4739641 +19654910 +1118138 +3423029 +5296694 +7946958 +10864607 +2042847 +6261380 +9586006 +7319781 +6585126 +16825734 +16425966 +10323282 +3553445 +14573928 +15993431 +6553669 +2594658 +7820474 +11162139 +568294 +4184554 +6389830 +13866142 +14876047 +12820848 +6195189 +18887487 +20936788 +21234320 +17814012 +17446357 +8439786 +9238011 +8199926 +13689851 +2954449 +11572393 +481132 +17898554 +3096006 +19196160 +7697922 +980514 +12345714 +4601361 +2497665 +20303714 +7843412 +7398424 +6648696 +7509835 +21283472 +12414526 +8471244 +8177644 +2427542 +7513112 +6804671 +20386944 +5446116 +17800905 +18446432 +7306019 +3526575 +9518504 +4091493 +3936829 +807499 +18619446 +678394 +12680601 +4774375 +10787275 +7146112 +15882676 +12787425 +21172062 +18886832 +14756117 +5364196 +16170377 +15590386 +14830172 +13990005 +4051516 +18598475 +17650829 +19864624 +8555785 +988378 +3290647 +9044026 +2777502 +2720486 +6352475 +4818284 +18740687 +19337717 +12330641 +16234602 +14591622 +16526891 +13232412 +2775536 +15462592 +4124261 +13743590 +8863802 +2562545 +6473716 +4723912 +9836352 +2115592 +13029907 +17441770 +9625327 +20497699 +3830661 +17629202 +17678354 +19518596 +4877921 +10468772 +15861049 +7668431 +10341632 +8214344 +15319724 +11786694 +5813771 +16815248 +13401494 +4988021 +15420649 +15364944 +15036610 +6259414 +20468864 +20320753 +14567374 +19536291 +16036029 +15042508 +16547207 +6216160 +10233498 +8386047 +12955196 +9875674 +17797629 +2916438 +16825734 +4378539 +3064549 +7617969 +5328152 +13645942 +17259581 +4509611 +1124037 +9841595 +12702884 +4056759 +16199868 +9402506 +8375562 +12874587 +1108308 +2517326 +3525265 +5672869 +17720296 +6624448 +13122967 +4110498 +5349123 +8386703 +8402431 +10905895 +2572376 +20299126 +7425949 +9253084 +1352101 +16366984 +13024008 +12106509 +16604879 +15977047 +96437 +6316430 +20265703 +15972459 +14699101 +12397487 +875001 +18569639 +7077955 +19021835 +12480062 +5458568 +19421603 +13005658 +1445162 +19825958 +6903630 +14210860 +5082393 +13373314 +20145117 +14016874 +16798209 +6600855 +6212228 +5942876 +4292688 +4694421 +20687753 +7079921 +19728966 +2544195 +570260 +1223651 +7967929 +15128360 +19376384 +3003600 +3396815 +15844009 +2409847 +2102485 +20784090 +19660153 +16846706 +8350658 +8591829 +385449 +7219512 +21189756 +7677606 +7800813 +5055523 +15459970 +3355527 +2130010 +5373371 +3224456 +298287 +7829649 +1924883 +5881273 +1513319 +18274073 +18119409 +17758963 +12870000 +17085911 +2771604 +10188279 +12090780 +20147083 +7399735 +14299333 +3690415 +10104393 +20321408 +9413647 +12888350 +11011407 +3107147 +20355487 +11107089 +3124186 +20034362 +223576 +12643901 +11380373 +18275384 +9323863 +13008935 +3170061 +8433888 +9101697 +8500079 +14811822 +9905820 +18010620 +3750052 +13505040 +16750368 +12567225 +10582148 +68912 +14273774 +19881664 +9333693 +9555204 +1350135 +21147813 +4839911 +21134051 +5750202 +5001784 +19380971 +14155155 +4541723 +4972948 +4467013 +9989050 +16002606 +8979145 +7680228 +14417953 +17424075 +4584321 +18107612 +844199 +19658187 +5004405 +19850862 +20873219 +17216982 +18953678 +20750667 +2716554 +15925929 +2580895 +5989407 +11179834 +7271285 +14283605 +13203576 +14273774 +5527380 +9359252 +21075069 +16110740 +16821147 +10669311 +19827924 +9158713 +13261248 +6390485 +20031740 +4208147 +17513859 +10369813 +3056684 +20627460 +5880618 +1226272 +20556026 +16085181 +14430404 +3934207 +16827045 +3390261 +5925182 +8539401 +10922934 +11502925 +10931454 +11223743 +19089993 +9519815 +14964520 +1221030 +10804970 +9038127 +19149630 +7001278 +9135120 +12711403 +3955179 +3743498 +5923871 +2954449 +8729454 +10272165 +17271377 +3659613 +13645942 +5674835 +14238385 +867137 +8584620 +15246324 +11293866 +12959128 +21457797 +17462741 +4487984 +10403891 +18061737 +144933 +20384978 +18580780 +4308416 +10791863 +10700768 +17814012 +6688673 +13854346 +3997777 +17088532 +4130814 +1211855 +13155735 +1476619 +2504874 +18306841 +2602522 +907114 +2799129 +15336108 +15310549 +1773495 +11282725 +1976001 +11938082 +13434917 +14483488 +7041910 +16029475 +11116920 +2851558 +20898122 +10278718 +2831897 +8900502 +1837720 +5982853 +6248273 +7481655 +16889304 +9853391 +11346950 +9034851 +18428737 +9667925 +15423926 +209158 +14261978 +3577693 +13004348 +19753869 +3706143 +1275424 +5764619 +2586138 +7833581 +372342 +922187 +2057920 +17379511 +16507231 +20233590 +15322345 +14684683 +20213274 +2165399 +330399 +536837 +9386122 +5927803 +18032246 +10491709 +5965159 +20113660 +14581137 +8592485 +12388312 +20853558 +14618492 +8125870 +17077391 +11729023 +4224530 +6694571 +20099898 +3157609 +16913552 +20827999 +17936564 +7093028 +1907188 +666598 +4396234 +4748816 +9530956 +17329704 +12506932 +6143416 +15281713 +9577486 +18210503 +8847419 +3302443 +19244657 +9850115 +17681630 +17358539 +8785815 +1337028 +18650248 +5494612 +18609616 +13809781 +4425725 +3966975 +15246979 +18416941 +9099076 +14194476 +16218218 +15374119 +13287462 +10953080 +14453342 +5684010 +20913851 +15368220 +8956863 +9207209 +18420218 +5211498 +8163226 +14320960 +10356706 +4086250 +12031798 +12852960 +13913328 +14623735 +11127405 +5523448 +13056121 +8431267 +8724867 +2734904 +12533146 +2985250 +18295045 +13323507 +20616319 +8715036 +20936788 +3154988 +14939617 +5315044 +6903630 +9451002 +20961037 +9705936 +21364081 +6186669 +13793398 +8145531 +16429899 +7096960 +9160024 +8162570 +9411026 +1619487 +11287968 +4305795 +5725298 +17045279 +11668075 +6005791 +14631599 +9589938 +7157908 +7430537 +2757842 +6482235 +16616675 +4696388 +6216816 +8526294 +101024 +4731777 +10067693 +10814800 +3427616 +2303024 +9175097 +16097633 +2627426 +19832512 +9553893 +11958398 +7319126 +14719417 +19188296 +1047360 +4904791 +6480269 +2147704 +12567880 +3963698 +13679365 +16790345 +12464989 +16448904 +2647086 +17965400 +5593571 +838956 +17767482 +16438418 +11088739 +13865487 +8139633 +11031723 +10935386 +13155735 +14323581 +160662 +3943382 +9380879 +15216833 +3645850 +7413497 +10248572 +12877864 +14944860 +9863877 +3953213 +20418401 +7948269 +17743889 +4250089 +15372808 +4384438 +6227301 +18223611 +17603643 +3861463 +2924958 +1852138 +10540861 +18808189 +7218201 +8045917 +15144744 +16344047 +17010545 +12443362 +13917260 +9341558 +15929206 +8180920 +12862791 +12803809 +20962347 +5245577 +3166784 +461471 +622033 +10242673 +3112390 +7195264 +21316240 +8716347 +6414733 +18271452 +2521913 +4392302 +17511893 +5748891 +18258345 +8629185 +21462385 +10729604 +10069659 +12971580 +4550898 +9065652 +20803751 +9894679 +2117558 +17513204 +7663188 +8719624 +10531686 +6163732 +243237 +4436866 +18999553 +9716422 +5602091 +18200018 +19600516 +3416475 +18069602 +16906343 +15016294 +660044 +8294297 +2432129 +11208014 +2493733 +12989275 +13499798 +14488731 +19807608 +6625758 +8642292 +20256528 +13192435 +20117592 +17468639 +12839853 +14195787 +15956731 +13311055 +6656560 +15271227 +6310532 +1829856 +19298396 +20988562 +9437240 +14870149 +6742412 +19602482 +8826447 +10244640 +16374193 +9855358 +4319557 +10964877 +8195994 +13898910 +18979893 +12150418 +7931229 +17945739 +644315 +10622781 +20931546 +7758215 +18796393 +7530151 +5510996 +19107032 +8497458 +16884716 +340885 +5235091 +20356798 +16261472 +17342811 +21280851 +13537808 +1390112 +9443793 +12305082 +449674 +16460700 +18567673 +5514273 +9624672 +21229733 +18652214 +14803303 +9705936 +3620291 +10038857 +7245071 +12662907 +5623062 +8867735 +12733030 +5247543 +20223105 +15387226 +17740613 +12700262 +6988171 +12833300 +3575727 +8142254 +5501166 +16346668 +6321017 +14616526 +14466449 +8855938 +487685 +5841951 +2214551 +19609035 +20440028 +17062318 +17083945 +10475325 +20982663 +7633042 +11781452 +18990378 +20008148 +15569415 +15920031 +8501390 +3124842 +16868332 +13149837 +3237563 +4313004 +8332963 +6737824 +1630628 +14323581 +5889137 +16572766 +9458211 +2034328 +4688523 +18996932 +8277258 +1100444 +996242 +1947820 +7444955 +10263645 +14790195 +17952293 +16658618 +3250015 +19791224 +20909263 +1427467 +11361368 +20506219 +13458510 +1991729 +16351256 +11196873 +11689702 +5662384 +3240184 +13415912 +10392750 +10799072 +18024382 +12910632 +13954615 +1233481 +121996 +14020806 +15448829 +11676595 +7606172 +10894754 +10505472 +2905952 +3762504 +7741176 +14402224 +6441603 +16304725 +16302759 +18635830 +21295924 +9578142 +12440741 +5752823 +15117219 +1918985 +16235913 +1629972 +6246307 +4712771 +19795157 +4830080 +20651053 +14681406 +13084957 +8431267 +7636319 +1007383 +3758572 +18381552 +2218483 +11453118 +2135252 +4615123 +16755611 +16964670 +17625925 +11095293 +14160397 +5457912 +16277200 +17424730 +3628156 +8709138 +14594899 +14407467 +9904509 +14693858 +1601792 +15062169 +21456487 +7646149 +14621113 +12494480 +12170734 +2287951 +17804838 +14144013 +13090855 +13840583 +16249020 +13497176 +6689328 +2077581 +11780141 +7308640 +6741101 +10196799 +18507380 +5310457 +10396682 +21382431 +1915053 +11618268 +13714099 +11527173 +2541574 +10697491 +13474239 +155419 +7376797 +1534290 +14744976 +19678503 +1820681 +5498544 +9963491 +19771564 +1553296 +5637480 +13429019 +13545017 +3240840 +592542 +9595836 +9850770 +18505414 +2023186 +6443569 +16934523 +1227583 +8419470 +9354009 +5362886 +4406064 +20388910 +20877806 +8055747 +11580912 +1464822 +10669966 +9143640 +15258120 +21322794 +3922411 +14223312 +2098552 +12999105 +17830396 +18148900 +9277333 +3763159 +15890540 +5242300 +19160771 +15029401 +17591846 +20181817 +7028803 +18502793 +17901830 +14954035 +16353222 +2937409 +4431623 +4044963 +18030280 +1841653 +5851126 +18515900 +7891253 +7643528 +8480419 +4586943 +12983376 +9212452 +18207227 +16368295 +9985118 +13818956 +18768212 +10845602 +6064773 +11252579 +17649518 +2778813 +6364271 +20365317 +16526236 +16466599 +11057282 +3945348 +11614991 +12228405 +2380356 +6946228 +11173936 +19111619 +158696 +3335211 +3725148 +7429226 +17377545 +21312963 +14564753 +11823394 +15802722 +10717152 +12326709 +16974500 +15315792 +875656 +17920836 +9277333 +5992684 +12717957 +5814426 +7250314 +9880916 +15724734 +14395015 +1563126 +5911419 +16279822 +12438775 +3983359 +481132 +9673168 +2847626 +7283737 +99058 +11159518 +18048630 +12465644 +18297666 +5693185 +15779784 +11228986 +2059231 +10280029 +16842118 +15627742 +3225766 +2652984 +21101938 +1367829 +7703821 +17601677 +376274 +7001933 +5621096 +14324237 +19864624 +19264317 +15903647 +9416268 +13689196 +15639538 +4180622 +14435647 +17815323 +9166577 +8776640 +14959278 +20830621 +15595629 +5686632 +2523224 +21126842 +2641843 +20557337 +17175695 +9297649 +20638601 +18579469 +18780009 +13322851 +15980324 +15878743 +17226157 +11259132 +20578308 +7745108 +525696 +20797197 +3976806 +6959335 +5043727 +20090067 +16920761 +2306956 +17171107 +9211142 +20403328 +1681745 +7735933 +16962704 +7512456 +12831334 +3210038 +18804912 +5360264 +18770178 +1086026 +121996 +6090987 +15642815 +20026498 +1740072 +15538613 +19765010 +6271210 +16847361 +10823320 +4240914 +15730633 +5726609 +16942388 +15470456 +6733892 +4823527 +7747730 +463437 +6433739 +16738572 +13149837 +3291958 +7321092 +1269526 +9109561 +3897507 +13253383 +19157494 +15195206 +14632910 +20944653 +11150998 +19217787 +8408985 +12731719 +15655267 +3403368 +14649949 +4244191 +6932465 +13727862 +21350319 +8061646 +6808603 +10016575 +19442575 +21411267 +16905688 +18240650 +21032471 +6347232 +16349290 +496860 +1177776 +13425087 +1459579 +7053051 +2775536 +9295683 +11725746 +4470289 +10645718 +10194177 +11206048 +8602970 +6172907 +17327082 +20618285 +2397395 +1858692 +12534457 +4190452 +9585350 +16191349 +4157684 +13917260 +18939916 +2921681 +16408272 +9386122 +1345547 +17273998 +12175977 +6140139 +14997288 +10421586 +7640251 +13700992 +18210503 +7185433 +3548202 +8195994 +7918122 +15350526 +13005658 +1991074 +17451600 +13533876 +3912581 +4323489 +11854196 +10233498 +14413365 +21229733 +8886085 +5609300 +1801020 +17601677 +13014178 +20417746 +5361575 +11148377 +4630196 +2175229 +11805044 +6353130 +1292463 +9198690 +17865130 +2620217 +3748086 +10149613 +840267 +20924992 +15311860 +377585 +12481373 +18092539 +11797180 +8916886 +21105215 +19561194 +7619935 +10230222 +17980473 +17644275 +9371049 +1751869 +12866067 +9078760 +2479970 +3631432 +5263271 +19533669 +19962928 +5498544 +7209681 +16427277 +9382845 +3196275 +10926866 +8675715 +19453716 +21465662 +20091378 +19992419 +14407467 +7821785 +16553761 +19607069 +9342868 +8999461 +2765706 +12420425 +6477648 +21293958 +13216028 +7385317 +17504029 +12069153 +20372526 +1712547 +17037414 +19153562 +14985492 +343507 +4987366 +9361874 +14459240 +14998599 +1357344 +4143922 +21434860 +19311503 +993621 +3286715 +8418815 +19097201 +12425668 +21393572 +15035299 +20990528 +15044474 +4286789 +4222564 +15557618 +1720412 +4487329 +14931753 +15811897 +5524103 +17838916 +21430272 +9538820 +19950476 +10764338 +15283024 +16686143 +11968884 +12658319 +20767706 +2848281 +1716479 +8334274 +1452371 +11904659 +130516 +20440028 +12928982 +11135925 +14571962 +9368427 +1095201 +5154482 +21105215 +2061853 +8997495 +19352135 +6106060 +12809707 +19819405 +15268606 +18818675 +17116057 +5769207 +4314314 +15417372 +14183990 +11738198 +14229210 +15998674 +9583384 +5964503 +2902675 +11471468 +18100403 +13773081 +18189532 +12925705 +4206836 +8922129 +11149688 +2565167 +10485811 +14206928 +9372359 +6978340 +4908068 +14704999 +14855076 +8900502 +19401942 +6451433 +10981916 +4126227 +3258534 +20160846 +1415671 +5626339 +6746344 +13290739 +14473658 +892696 +11111677 +6923946 +17285795 +8146187 +20340414 +17173729 +16885372 +1217753 +10021163 +7267353 +13377246 +20533089 +5101398 +11300420 +17898554 +3791340 +10713220 +11577636 +15262708 +18834403 +3444656 +21179271 +19588064 +2806993 +7874213 +18095161 +16891270 +12223162 +14776433 +10759750 +7380730 +2139185 +2043503 +10186313 +5841951 +10200731 +7992178 +16733984 +19595273 +21466317 +2718520 +11451152 +12727132 +3219213 +1083405 +17085256 +4922486 +8445029 +12666839 +3940106 +12966992 +21148469 +14582447 +6338057 +4706218 +521764 +14925854 +10106359 +3037679 +11894173 +6214194 +19796467 +15791581 +21001669 +5431698 +16386645 +14986803 +12607857 +1508076 +20888947 +6380655 +10008056 +6861687 +17578084 +4780273 +12200880 +12341782 +16676313 +20466897 +5090912 +20736249 +10211872 +1031631 +20546196 +1126003 +14989424 +5789523 +13130832 +3678618 +20818824 +20193614 +785217 +19464201 +16455458 +9535543 +3043577 +18156764 +18776732 +5907487 +8325754 +5905521 +19955719 +11660211 +19276114 +20841106 +14370767 +7262765 +21142571 +15876777 +20020599 +18588644 +8077374 +18714473 +19953098 +16142197 +19715858 +3324725 +17653450 +9274711 +793081 +13122312 +3052752 +521764 +15979013 +13069883 +1624074 +12796600 +9926791 +10926866 +3228388 +4885786 +9775404 +10766959 +7606172 +16838186 +3054718 +16874886 +4643959 +17096397 +1696163 +16201179 +18943193 +7701855 +19004796 +7174292 +15343972 +9753122 +19335096 +3043577 +9679722 +13006314 +18291112 +13127555 +9619429 +5704982 +6646730 +16041272 +1017214 +18219023 +4662309 +14176781 +12653076 +17400482 +5888482 +11715261 +2342345 +14725970 +9751156 +5433009 +5307180 +10400615 +9399229 +2395429 +8626563 +7630421 +5246887 +3463006 +14130906 +19892805 +18066980 +9662683 +11247336 +4763234 +283869 +11814219 +48596 +12196948 +5843918 +20476072 +757037 +8381460 +1936024 +10694214 +18158075 +6652628 +5058800 +10411100 +4546311 +9544718 +10598532 +13762596 +4410652 +6914115 +11877134 +12526593 +9082036 +6655905 +7324369 +20232935 +5205600 +20833242 +12560671 +17125232 +2943308 +5208221 +19001519 +12607201 +12388968 +18598475 +1664051 +3039645 +11797180 +20219828 +3681895 +44008 +4942802 +937915 +13666914 +14556888 +17956880 +16923382 +7027492 +21463695 +4098702 +5573255 +17692116 +4805177 +728856 +4469634 +10060484 +1012626 +13024664 +8993563 +18927464 +3941416 +11656934 +3462350 +5075839 +14231831 +12880485 +2706068 +1662740 +10858709 +5494612 +16178897 +20558647 +20042882 +15248945 +7747730 +14606040 +16420068 +6718819 +20949240 +9194102 +3438757 +20609765 +5984819 +11917766 +7903704 +10288548 +12170078 +7000623 +13482103 +11715261 +2939375 +8315924 +19085405 +3210693 +54494 +5237057 +10715841 +3332590 +7410876 +11381029 +11203427 +20988562 +13062675 +7524908 +17911661 +19511387 +13771115 +10229566 +14305887 +2754565 +17118679 +14501838 +15792236 +19848896 +8425369 +20562580 +13584994 +3416475 +9315999 +415596 +13249451 +10971430 +431980 +14286226 +10195488 +11206048 +6923290 +10513991 +12866067 +21121599 +11852230 +12872621 +20331239 +14872115 +17607575 +14163019 +595819 +2259770 +6367548 +878278 +12561982 +19868557 +12337194 +7606172 +2555336 +3288681 +13845826 +3200208 +19653599 +13545017 +8348692 +1299017 +15651335 +13105273 +21377844 +3959766 +16851293 +8175678 +4465702 +20660228 +5315044 +10342943 +17313975 +7652703 +17590536 +11519964 +5010303 +12879175 +13294671 +5063387 +16516406 +6355096 +98403 +10797761 +3443345 +3360115 +10437970 +7970551 +2390186 +3288025 +8477142 +13039082 +11642516 +7894529 +9850115 +13046946 +456883 +6869551 +20246042 +12956507 +5961226 +1203990 +10947838 +15083795 +4277614 +16698595 +9844216 +17186181 +4824182 +6279075 +10610984 +19162082 +11444598 +1498246 +14817065 +17530898 +20158224 +3865395 +17025618 +20603867 +19299707 +19321989 +11413141 +20569789 +11506857 +5695152 +1785947 +19818749 +1867211 +7585856 +7612726 +4792725 +14623735 +12297218 +5002439 +7624522 +18319293 +16023577 +9994949 +20007492 +15062824 +5693185 +6872828 +6938364 +2000249 +2085445 +14758738 +20990528 +17713743 +19947855 +16683522 +20516049 +3111734 +4834012 +1434676 +15211590 +11658245 +10393406 +14176126 +13587615 +4580389 +10141093 +15175545 +9233424 +2126733 +15440965 +968717 +17289072 +19786637 +1103721 +15510433 +11473434 +2197511 +9700038 +11710673 +9291095 +21176649 +402489 +6954092 +5452014 +5699084 +6735858 +20551439 +1126658 +409698 +18717094 +504069 +871724 +5748235 +3455141 +616790 +10087354 +9712490 +16553761 +20772294 +12231682 +15975736 +2336447 +7639596 +1594583 +12648489 +8350003 +8423403 +7905671 +8534158 +4128193 +8584620 +16789690 +16738572 +8199926 +4473566 +1496935 +5111228 +13976897 +13599412 +12899491 +15497326 +10477291 +15148676 +6284973 +20310267 +18021105 +17378200 +17669834 +19051982 +5353055 +8281190 +3097317 +7710374 +16357154 +7633697 +18049941 +1545431 +7736588 +19755835 +7505903 +1884906 +5005716 +19204680 +12618998 +1547397 +13738348 +4952632 +114132 +5406794 +14246905 +19047394 +13014833 +10401270 +13507007 +14986803 +20594037 +7388594 +10055897 +8661297 +15830247 +13583028 +17481747 +10569697 +17446357 +4704252 +2227658 +348749 +9407749 +13263214 +10173861 +670530 +11831259 +4423104 +15608736 +17633789 +15533370 +10609018 +3266399 +12066532 +17120645 +7451508 +10318695 +12468921 +15697210 +12242823 +16234602 +18624034 +14820997 +16333561 +8673094 +21342454 +19630662 +17909695 +5968435 +2120835 +8348692 +2789299 +20770328 +1958961 +18414319 +10833805 +3084865 +15744395 +4319557 +6779767 +4988677 +16188727 +15429824 +15177511 +3967631 +14055540 +7264731 +2044158 +13690506 +7689403 +6313808 +5864234 +5076495 +7758215 +6294803 +532249 +8760911 +11702153 +15277781 +14358971 +7728724 +6406869 +18130550 +9204588 +12683878 +2466863 +16007193 +911046 +14827551 +6743723 +14712863 +10993713 +15345283 +1011971 +16298172 +8651467 +19538257 +5199702 +14550335 +12866067 +1633904 +13835996 +5798698 +19728966 +7383351 +13076437 +15697210 +10675864 +13932333 +17220259 +3071102 +7402356 +14713519 +9990361 +6573985 +21126187 +13288773 +8650156 +8693410 +12293941 +7323058 +7376142 +11685770 +9038783 +11704120 +17973264 +14745631 +6576607 +8711760 +7293567 +437223 +10584114 +3094695 +13866142 +6231234 +18548012 +5545730 +6879382 +2643154 +1493658 +15048406 +6257448 +18875035 +2183749 +16863090 +5474296 +1240690 +4185864 +2206031 +1116828 +17072148 +10027061 +4904136 +14436958 +10217115 +4296620 +10763027 +871069 +21473526 +3694347 +14107969 +5221984 +15639538 +20221794 +12793978 +7510490 +13780946 +10652272 +1414360 +10459597 +16001295 +3546236 +11694945 +6898387 +5277034 +4516820 +2103140 +12974201 +11573048 +21324760 +10730914 +20199512 +11411175 +2778813 +8414228 +9289129 +7166428 +11556664 +16470531 +7654669 +18326502 +16891270 +11907936 +11384961 +6852512 +13788155 +12700262 +11279448 +5762653 +5043071 +16300138 +8197304 +622033 +15852529 +12182530 +21058029 +4853673 +20887637 +20769672 +15697865 +7418740 +18042732 +14457274 +15634295 +19019869 +21360149 +16684177 +807499 +2748667 +14067992 +20022565 +5677457 +1240035 +20776881 +19229584 +1270837 +10027061 +17649518 +14983526 +15510433 +16532790 +11394136 +5079116 +11989855 +12084227 +5891759 +12069153 +3002290 +9850115 +15503224 +13812403 +2892845 +4932316 +15673617 +19178466 +18360580 +16877507 +11356125 +5057489 +3909304 +533560 +6489444 +21342454 +542735 +1718445 +12105198 +8228762 +20833897 +45319 +5155793 +19061812 +5843262 +8641636 +18574882 +6511071 +18297666 +1950442 +16975156 +15640193 +9673824 +5130889 +17665246 +6066739 +12793978 +2146394 +4008918 +17937220 +11668730 +17530243 +4920520 +11287312 +18074845 +7448231 +16359775 +7598963 +14632910 +935949 +9777370 +13470962 +14694513 +19567092 +4015472 +11601884 +6170285 +1681090 +16125158 +14394360 +8146187 +11035000 +17922802 +14426472 +7418085 +11127405 +14397637 +20355487 +3779543 +450330 +5724643 +12501034 +17101639 +4667552 +13404771 +6689983 +5874719 +12297873 +18205916 +17637721 +1208578 +15631674 +11889586 +3084865 +19409807 +7235240 +10396682 +9470008 +14209549 +7863072 +15731288 +20512772 +11552077 +19085405 +10438625 +8686201 +834369 +19414394 +14870804 +13062675 +4689179 +4590220 +11954466 +13360207 +8555129 +19021180 +5880618 +3518711 +345473 +7244415 +19434055 +13127555 +16204456 +12215298 +17210429 +7610760 +13155080 +12423046 +10400615 +16781825 +1508731 +10540206 +8276603 +14637497 +145589 +9203933 +7635663 +7399735 +11297143 +14183990 +7450853 +2983940 +7455440 +1190883 +3767091 +18255723 +19651633 +8041985 +16516406 +12011482 +19086716 +9281265 +17388030 +7411531 +3485943 +14138115 +3704177 +12624896 +1618176 +1957651 +1536256 +3428272 +20816858 +7159874 +6789598 +6001859 +16021611 +10797105 +12560016 +6798117 +12534457 +15197827 +2649052 +6901664 +10048688 +1707304 +16588495 +12176632 +14891776 +19171912 +15726045 +18921566 +21314274 +17280552 +20816858 +1082749 +9594525 +15994742 +14429749 +1690920 +18002100 +10448456 +14197097 +12447294 +12809707 +9260949 +3494463 +1823958 +21415854 +13679365 +18190843 +11835191 +16526236 +13358240 +11649070 +18110889 +16479050 +20951206 +11353504 +10311486 +18502793 +6573330 +17545316 +8985043 +15233217 +11995098 +6929844 +3457107 +11948568 +4997852 +7219512 +20784090 +15650024 +11433457 +4285479 +9702659 +20841762 +21002324 +12762521 +7311917 +6078535 +11017961 +7442333 +14714829 +9080726 +13662326 +3355527 +6418010 +15323656 +12664873 +3356183 +15098213 +7064848 +2924958 +15205692 +7877490 +15088383 +20483937 +7294878 +11100536 +4743573 +3926998 +4999818 +6491410 +18371066 +3282127 +3535750 +12731719 +19143732 +17683596 +6685396 +4181932 +8749115 +20812271 +17585293 +16365018 +14256080 +13724585 +11767689 +4039064 +1197437 +19844964 +19297741 +16224772 +16884716 +12048837 +2609076 +17784521 +19690299 +8736663 +463437 +7828338 +20428887 +6706367 +9894679 +760969 +13062675 +9195413 +12141898 +4847120 +20198856 +10174516 +976581 +15089694 +9782613 +21466972 +11401345 +4963773 +8465345 +3777577 +7132349 +19704717 +17705223 +2943963 +11390204 +12101921 +15147365 +8910333 +17279241 +17404414 +12412560 +10522511 +19344271 +7655324 +855340 +21352285 +3223145 +578124 +14137460 +12778250 +20232280 +21034437 +10317384 +1960272 +12020002 +17726195 +17049211 +16216252 +6029384 +20361385 +6372791 +9620740 +3317516 +17180938 +7117931 +11670696 +7676951 +9865843 +7290290 +4041686 +11510789 +4897582 +4145232 +20016012 +882210 +11845021 +12025244 +5549662 +9926136 +915633 +20573065 +990999 +7868315 +19103100 +14063405 +10620159 +13920537 +9244565 +1507421 +11651691 +8541367 +3759227 +17945739 +6723407 +14861629 +1170567 +3645195 +13187848 +4661654 +3900129 +15526161 +594508 +2694927 +19359344 +11818152 +13274355 +802912 +8909022 +7869626 +16975156 +12664873 +16206422 +15912167 +7100237 +9468697 +8538745 +8351969 +3403368 +2929545 +6260069 +4581700 +17717675 +15943624 +12457125 +5502477 +6121789 +14024083 +17313320 +4586943 +20964969 +10255125 +18789839 +14423196 +15812552 +8892638 +11973471 +15449485 +12657009 +342851 +17560389 +2046124 +20024532 +16247709 +15921997 +11212602 +3303099 +6437671 +7549156 +8350658 +4599395 +18919600 +1898669 +9312067 +4766511 +15177511 +5104020 +12565259 +11470157 +16686143 +1860658 +13283530 +8876910 +829126 +1943888 +16798865 +16608156 +5887826 +17810080 +1099133 +931362 +13621039 +810121 +3514779 +14660435 +4678693 +10468116 +2095276 +8101622 +13061364 +118064 +3054718 +9641056 +16534756 +8748460 +4776341 +10929488 +4589564 +13497832 +13531910 +19040841 +17924768 +17900520 +17638377 +18577503 +7110067 +16867677 +9300926 +5461189 +13084301 +5500510 +3816243 +7169049 +1740072 +16293584 +16538032 +14939617 +5581775 +8239903 +11697566 +403144 +12086193 +426082 +19711926 +6580539 +15513710 +15910201 +7569472 +13269112 +15413440 +13737037 +21054753 +17724229 +13486690 +19131935 +11596641 +9179029 +6811880 +6944917 +16826390 +20418401 +7606828 +6087710 +264208 +20847660 +1635870 +1519872 +19205991 +6061496 +4303829 +15617911 +4772409 +5421212 +19141110 +9905820 +16446283 +19036909 +14792817 +10470082 +18849477 +13678055 +4388370 +12117650 +137069 +10502850 +21267744 +193430 +16617986 +7570783 +10530375 +10180415 +16627816 +6246962 +10201386 +5652553 +16095667 +13324817 +18703987 +10098495 +6385898 +8793024 +8336240 +15494049 +16534756 +8775329 +18313395 +17237954 +11110366 +20297160 +13978864 +20451169 +2864665 +17403759 +4090182 +2185715 +18458884 +14453342 +16882095 +18130550 +17250406 +1049981 +18794427 +8880186 +2732938 +7705787 +20810960 +9736083 +18580780 +2264358 +5323564 +18462816 +11197529 +15043819 +4368054 +10222357 +2343001 +20913196 +5099432 +19826614 +16858502 +19217787 +13349066 +7439712 +15804033 +11575670 +15550410 +7686781 +10154200 +17795007 +19566437 +20605178 +4084284 +1743349 +593198 +15547788 +7422017 +19220409 +18574227 +392003 +2502252 +8684890 +11180489 +11769000 +19111619 +9343524 +1232826 +143623 +9491634 +12689776 +7879456 +2325961 +20673335 +17270722 +13852380 +16906343 +12520694 +8152740 +8260874 +18139070 +12032453 +1365208 +6277764 +17687529 +16696629 +3658302 +747862 +8462069 +15328244 +6360994 +4775686 +610892 +11632686 +14010976 +11471468 +5374682 +10903929 +11786694 +8436510 +5060111 +5418591 +1266249 +2017288 +1063744 +4837945 +8547920 +17109504 +6410146 +18332400 +974615 +6071982 +10313452 +13257971 +3042922 +19069676 +17437838 +14807890 +4157029 +11063180 +17576118 +6387208 +13216028 +2844349 +9894024 +9885504 +3022606 +14275085 +1885561 +5599469 +13613174 +14680751 +21286749 +6548426 +7156598 +17234022 +18143002 +11364645 +1233481 +3936829 +17395895 +172458 +8710449 +1292463 +12650455 +19770253 +10377677 +14766603 +4424414 +7125796 +3958456 +13278287 +17140961 +20261115 +12065221 +15408852 +4255332 +10163375 +6804016 +17604954 +12630139 +17528277 +20154948 +9337626 +175080 +13873351 +11283380 +8761567 +21440103 +13141317 +17604298 +20245387 +3396815 +16912897 +10437315 +19113585 +19368519 +11337775 +3534440 +15289577 +4155063 +8398499 +7136937 +541424 +11609093 +6015621 +10757784 +2816168 +644971 +9934000 +16847361 +9407749 +14714174 +13370692 +7886665 +3925688 +19910499 +12948642 +19396700 +7663844 +9030918 +21310342 +8131113 +5244921 +1830512 +4617089 +10059829 +10237431 +11933494 +5978921 +19722412 +279937 +18647627 +17938530 +21120288 +20358108 +14155810 +15392469 +9760331 +11984612 +14000490 +12704850 +6522867 +10512681 +15440965 +19536291 +10327215 +10635888 +6344610 +16844740 +19128659 +13463098 +9190826 +20839796 +1801020 +6188635 +5153171 +12761866 +14840003 +1198092 +2010735 +17016443 +2869252 +14475624 +4958530 +19625419 +13743590 +2793231 +3730391 +9536854 +2157535 +4605948 +14295401 +6548426 +16982365 +10209250 +9361874 +14785608 +10661447 +20852247 +12162214 +1722378 +1468099 +15615945 +15967872 +13474894 +20220483 +6577917 +3805757 +10964877 +13919881 +8462069 +9990361 +10125365 +18368444 +17386064 +4028579 +3376499 +20622872 +18169871 +10956357 +9321242 +16601602 +7463960 +12440741 +7051740 +6833507 +9194102 +21229733 +16131056 +6168975 +5159070 +2137219 +14206272 +3706798 +14988113 +10662757 +17739957 +13189158 +12059323 +7693990 +17833673 +21271676 +16958116 +561085 +10707977 +16859813 +12140587 +11836502 +8099001 +16302759 +19370485 +10757129 +9443793 +9937933 +5067975 +17332325 +14367490 +2462931 +19573646 +20095310 +14414676 +8221553 +20707413 +3453175 +21061962 +2067751 +2378390 +4771098 +4510266 +9023710 +7475101 +3231665 +15064135 +11272895 +1545431 +11561252 +17992270 +6022830 +2540263 +873035 +14315717 +160007 +13634146 +8255631 +21381776 +17530243 +4069211 +14380597 +13211441 +12139932 +437223 +5209532 +17253682 +20808338 +17947050 +19806298 +16569490 +19080162 +1468099 +18515900 +4388370 +7184123 +21288715 +17772070 +11868614 +4607914 +12917841 +3652404 +5035862 +7631731 +14533296 +6040525 +8589863 +17875616 +19611657 +17297591 +8965383 +2935443 +11793903 +8456170 +15815829 +4537136 +8182887 +6020864 +6093609 +19063778 +12423701 +9930068 +1048671 +16203800 +4398855 +16418102 +329744 +21222524 +18211814 +12229060 +2024497 +3839181 +5802630 +10647029 +4622988 +14603419 +10312141 +17277275 +4997196 +11112332 +2934788 +17504029 +17224191 +8227451 +14761360 +2415090 +18977926 +16108774 +3242150 +17753064 +631864 +13687230 +20353521 +16444316 +2334481 +1203335 +14719417 +14673542 +13541740 +14360937 +6573330 +9928102 +6821710 +14886533 +10760405 +10656204 +1889494 +12472853 +17165864 +1034908 +2180472 +10787275 +5069941 +18695468 +593853 +3674031 +163283 +18577503 +4058070 +764901 +405765 +1404529 +15868258 +7998076 +15673617 +15530093 +11350227 +6672944 +4438832 +16725465 +17584638 +6862998 +16851948 +10707322 +10643097 +4074454 +5337327 +11988544 +20223105 +867137 +20105796 +7648771 +4822216 +8222863 +14466449 +17940496 +16184140 +16584563 +20287330 +12824780 +1408462 +1669294 +4397545 +12597371 +19156184 +19407841 +15942968 +2830586 +3586213 +4139334 +21398160 +13269767 +2796508 +11610403 +15769299 +12390278 +3909304 +5509030 +21434860 +10204663 +13891701 +14982870 +4813041 +21019363 +2168020 +19573646 +9508674 +21032471 +9034195 +2464242 +20717899 +3447932 +4469634 +918910 +9874363 +8302817 +16098943 +14996633 +17915593 +14925854 +3521988 +11434112 +17472572 +3722527 +19240069 +12628173 +13671501 +10787930 +4555486 +13699681 +16465288 +9587317 +18362546 +18207882 +590576 +1557883 +10979950 +21397504 +1462856 +21014776 +5383857 +16807384 +12134034 +6727339 +12721889 +5438252 +1428122 +18641728 +7604206 +18886832 +19017903 +482442 +20200167 +6792874 +20370560 +17701946 +4908723 +8034121 +97748 +21172717 +15083795 +5038484 +2199477 +1669949 +21456487 +9499499 +15937070 +15034644 +11110366 +15083795 +13005003 +19652944 +5302593 +354648 +5887171 +15453417 +10212527 +4034477 +18007343 +18032902 +11356780 +4868746 +17346088 +13527978 +4281547 +14757428 +4785516 +7649426 +471957 +10038202 +8209101 +13855001 +1084715 +2221760 +1816094 +8183542 +6296114 +1907188 +17072148 +17835639 +9924825 +5378614 +13794053 +5965159 +4160306 +15311860 +13998524 +20404639 +8501390 +10344254 +2596624 +11096604 +18867171 +3776266 +11668730 +20178540 +19837755 +20276844 +21242840 +20630081 +20424955 +1995006 +7414153 +80053 +20088101 +9826522 +6952126 +16634370 +15732599 +1097822 +13837306 +7281771 +20828655 +381517 +6373446 +20639256 +14104692 +9131188 +6212228 +10344909 +3714007 +19884941 +16961393 +11175902 +16950907 +17585948 +1424846 +6010378 +8134390 +11653002 +2827309 +5060111 +10143059 +2825999 +10741400 +10555934 +6815157 +14310474 +20653674 +1778083 +2018599 +5358298 +16743815 +154108 +20319442 +11547489 +4694421 +5716778 +21111113 +7779187 +17366404 +14975006 +19490416 +10053931 +5428421 +18861928 +9198034 +19417671 +8198615 +19011350 +2373802 +2020565 +1407151 +3977461 +17677698 +2595968 +10415032 +9551927 +9400540 +5486093 +14427128 +11519309 +20084169 +5590950 +15500602 +11223088 +12407318 +10738779 +12641280 +19335096 +6457332 +8367697 +18548012 +19032976 +21086210 +4555486 +9631225 +523074 +15978358 +17958846 +11296487 +19257764 +20324030 +7867004 +15834179 +4720636 +482442 +5461844 +20806372 +2274188 +17594468 +19472066 +14133528 +16586529 +12786114 +6792874 +486374 +10294447 +7142835 +16121881 +2558613 +20982663 +11147721 +625965 +2986561 +5244266 +1271492 +8971936 +18186911 +17149481 +10011988 +14514290 +12172044 +7760837 +21368669 +6087055 +13418533 +3352906 +18686948 +8200581 +14007044 +13390353 +5712191 +9842906 +14096828 +17908384 +4184554 +6578573 +5701705 +8111453 +20616319 +6269244 +1147630 +347439 +7065503 +9850770 +7535394 +18743964 +1805608 +10768270 +9646954 +9605667 +2273533 +3008188 +12946676 +4993920 +13879905 +19881664 +15828936 +4659688 +20351555 +204571 +5730541 +1131246 +18532939 +19427501 +20046158 +3661579 +13641355 +16654686 +1393388 +13402805 +10532997 +6057564 +3569829 +20264392 +4343805 +11007475 +5293418 +16756266 +6064117 +763590 +16922072 +13381833 +20512772 +12931603 +16416791 +7942371 +12272314 +11381029 +13193746 +679049 +13261248 +6435705 +12360787 +7612071 +20977421 +8511220 +6170941 +13697060 +12871966 +19873144 +1428122 +11409864 +5064698 +771455 +16393854 +1970758 +8420126 +14628322 +12979444 +18914357 +3460384 +16083870 +19903946 +8266117 +1883595 +1969447 +4571870 +11578946 +15521574 +10494986 +7049119 +13643976 +504069 +1523804 +8002663 +8511876 +5478884 +5158414 +1019180 +10690938 +11841744 +13176051 +20345001 +6835473 +16944354 +523074 +14648638 +4274338 +20034362 +2390186 +5035207 +21366703 +10924245 +11308939 +9896645 +4246813 +7690713 +6323639 +3023261 +8861836 +7171015 +7540637 +10339011 +10090631 +1945199 +17140306 +10382265 +20443960 +13461787 +19316091 +1597204 +8993563 +15820417 +7600274 +8928683 +2369870 +523074 +18781975 +6244996 +8810719 +13752110 +13011557 +20996426 +18244582 +8475831 +8800888 +11084152 +20035017 +8642292 +11864027 +16579320 +12212021 +19752558 +17664591 +4467668 +8226795 +11277482 +13152458 +16423345 +15061513 +6491410 +21334590 +16319143 +10203352 +3905372 +6800083 +4535170 +20163467 +2090033 +7948269 +10503506 +5938289 +2393463 +13404771 +15172269 +1669294 +3647816 +12799876 +16110740 +18642384 +13698371 +18555221 +7769356 +10560522 +5938944 +16419413 +3721216 +13510939 +17496164 +6467162 +2242731 +4952632 +16595049 +6396383 +584678 +3168750 +14919301 +7047808 +2240765 +15930517 +9549961 +9675790 +15203070 +16212975 +15553031 +6049700 +6966544 +4696388 +10015265 +9428065 +7555055 +14754151 +5646655 +18977271 +4217322 +12302460 +10341632 +4187175 +12320810 +18649593 +4898893 +6611341 +9056477 +690846 +17418177 +15988188 +7099581 +6937708 +18563086 +18707919 +19268905 +7794260 +16848016 +4551554 +19530392 +4493227 +13706235 +7518355 +16453491 +15419338 +4240914 +9639090 +878278 +10305588 +5526725 +19804987 +12744171 +2343656 +19188296 +6181426 +2945929 +3599320 +17509927 +15729322 +14323581 +10839048 +10118811 +9052545 +14080444 +6330848 +1316712 +1815438 +9089245 +11867303 +2492422 +19464857 +12607201 +8784504 +17053143 +5528035 +21430272 +19918364 +11979369 +6265312 +1474653 +15954765 +8205824 +20329928 +19368519 +6524833 +3269675 +8021669 +2633324 +21465006 +8757635 +7108756 +17652795 +20470174 +1894736 +12312946 +11150998 +16370916 +9384811 +16394509 +11740820 +20772949 +15458004 +20238178 +16437108 +11390859 +19622142 +1886217 +363823 +2261081 +498826 +16969257 +4672795 +8135045 +3854254 +12463678 +10777445 +5726609 +3843113 +20155603 +6879382 +5227882 +13269767 +11078909 +19320678 +12645212 +5985475 +12898835 +20819480 +17851368 +19850862 +7715617 +3510191 +3645195 +3383052 +18998243 +9274 +3343075 +10743366 +12495135 +18291768 +8925406 +7532117 +19820716 +17211084 +14954035 +20892224 +2207997 +17279897 +289767 +3778888 +13438194 +1114862 +3965664 +18028970 +7639596 +20276189 +11360057 +20193614 +1293119 +12577710 +293044 +5100087 +21040335 +4305139 +13506351 +5847194 +9752466 +8144876 +5868821 +18000789 +2924958 +12075707 +19950476 +12427634 +17718986 +14284260 +8817927 +18620757 +9659406 +5432353 +10015265 +13464408 +5030620 +3653059 +11056627 +5320287 +12355544 +665942 +17123266 +5412693 +14284915 +10274786 +4888407 +18721027 +8348692 +13229135 +15465213 +4042997 +11337775 +11173936 +5971712 +21329347 +17262202 +5144652 +13364794 +573537 +16918140 +3971563 +13807160 +16064865 +4582355 +6885280 +9743947 +6375412 +15446863 +1265594 +7129073 +17153413 +11936771 +5728575 +6956058 +14474969 +6121134 +6220092 +17131131 +2229624 +139691 +8581999 +15565483 +6680153 +2998358 +12310325 +20852247 +17441770 +6313808 +125273 +8131113 +6346576 +5554905 +5761343 +19777462 +6079846 +13783567 +11012718 +15251567 +4977536 +4134747 +13608587 +3008843 +4944112 +7184778 +16952873 +20288640 +20353521 +20300437 +4130159 +9762952 +21291337 +19527771 +12282800 +17840227 +7031424 +10283306 +4702286 +12014103 +19828580 +20878462 +315982 +21200242 +5741682 +18068291 +7599619 +3832627 +19770253 +13738348 +7856519 +18824573 +16300793 +19793846 +7321748 +18246548 +1306881 +12995828 +16497400 +8642292 +2061197 +17780589 +19131280 +7199851 +8027567 +17823187 +3975495 +2832552 +4409997 +19145698 +14380597 +14105347 +15805999 +18471991 +9685620 +3083554 +2264358 +6355751 +8842176 +16225427 +19121450 +16488881 +9607633 +10738779 +10467461 +7106790 +3402058 +16693352 +12686500 +15406886 +8666540 +7420051 +9074827 +5821635 +13332682 +21107181 +18709885 +3377809 +6921324 +13497832 +4168825 +18895351 +14359626 +6077225 +9469352 +13653806 +11398723 +9656129 +5462500 +11568461 +20252596 +8559717 +4368709 +5222639 +7652047 +729512 +6587092 +11896 +12780871 +13872696 +19353446 +14550335 +19909189 +7065503 +11012063 +16515750 +3202829 +7450853 +19013316 +20110383 +2104451 +4877921 +17700636 +2198822 +10538239 +18552600 +215712 +13602689 +10766959 +8876910 +9448381 +13788810 +21052787 +5586362 +13999835 +20166744 +15520918 +17994891 +8334929 +14326203 +14849178 +12558050 +18355993 +3173993 +12924394 +17481747 +5005061 +20885015 +16617331 +16818525 +12865412 +18660734 +14130251 +15901026 +19488450 +8024946 +20222449 +4980157 +4219943 +18112855 +13771771 +9644333 +14374044 +17929355 +1874420 +19306260 +17380166 +8269394 +4468323 +3818865 +3951247 +4797968 +405765 +2772259 +2044813 +9594525 +15503224 +3609806 +15701142 +14783642 +6962612 +1148940 +20968901 +6708333 +3850322 +19057880 +11529795 +14275740 +7703821 +13432296 +11482609 +19599205 +5592260 +18841612 +4957220 +10782688 +7705787 +6020864 +654146 +16469220 +10842980 +4849086 +9190826 +15431135 +14606696 +4737675 +1022456 +11798491 +13160323 +14277051 +9361218 +18893385 +3457107 +7004555 +16381402 +6027417 +18685637 +6301357 +1861969 +2207997 +13105928 +14805269 +7309296 +3092074 +15026779 +19864624 +14902917 +3972873 +9045992 +16652720 +9690863 +19900669 +7239828 +1291808 +2899399 +7685471 +6644108 +4449973 +19719135 +1862624 +13554848 +10397338 +1238069 +14303921 +3777577 +3771679 +10412411 +9534888 +20830621 +10519234 +4562039 +20858146 +2061197 +10194832 +15254844 +10665379 +7121864 +15571381 +19534325 +12478751 +9276677 +3478079 +21238253 +7788362 +9875018 +14292780 +12909976 +10800382 +1541499 +18104991 +14917990 +7433814 +3542959 +15296131 +12621619 +6934432 +17010545 +12510864 +9672513 +2765706 +16099599 +19637871 +18272107 +15244358 +16036029 +9421511 +11229641 +12588196 +12018036 +6805326 +211780 +11685114 +1712547 +13392319 +7347306 +4926418 +14162363 +20033051 +8673094 +14420574 +14257390 +6197155 +3128774 +5824912 +13602689 +7336821 +6419976 +6059530 +20700205 +20057955 +16074695 +6821710 +10977329 +19568403 +4725223 +19638526 +530283 +9553893 +9393331 +14695169 +17578739 +13872040 +8762222 +1806919 +12552151 +16119259 +21268399 +7251624 +16183484 +14155810 +8628529 +11547489 +6733892 +2369870 +17638377 +9918272 +10456320 +5817703 +16002606 +2833863 +3800515 +496860 +5361575 +13950028 +12620309 +15686068 +17591191 +7245726 +19827269 +16385334 +19210578 +15438999 +12337850 +12115028 +17151447 +7888631 +14978938 +11579602 +4182588 +3318827 +12695019 +11766378 +15779129 +20012735 +16745125 +6041180 +1137144 +3738256 +4448007 +6549737 +16357154 +13244208 +9622706 +1060467 +13000416 +9013224 +7382040 +11351537 +9208520 +19048050 +20769017 +1484483 +2497010 +5891759 +6974408 +17812702 +3385018 +15382638 +15058892 +8418815 +21421097 +17249750 +1120760 +4480775 +17695393 +18051907 +7575371 +3879157 +20466897 +6878726 +6593646 +3331279 +9983807 +13680676 +6986205 +13282219 +5337327 +12443362 +3761193 +7910913 +2377079 +13486035 +4556796 +9567000 +2270256 +12692398 +12839853 +2281397 +15934449 +13094132 +8791058 +2532399 +4769787 +1361931 +1034253 +3377154 +7984969 +8732076 +18342230 +12749414 +8921474 +10074247 +7104824 +9420856 +5423178 +5365507 +19071643 +15942968 +8445029 +15814518 +10926866 +4699664 +4464391 +16778548 +5273757 +8174367 +13900876 +12148452 +20480660 +20723142 +1935369 +14660435 +3584247 +20013390 +10163375 +7962031 +11202116 +17521068 +7772633 +19951787 +13672156 +15292854 +2473417 +18154143 +18338298 +14589656 +17255648 +14350451 +16040617 +18025693 +749173 +3320793 +17245818 +20513428 +7401046 +15552376 +3988602 +16521649 +6587092 +16134333 +21115701 +18953678 +462782 +15598251 +18255068 +9780647 +2942652 +17552525 +9588627 +11014029 +1270837 +18538182 +12548875 +2875151 +10920313 +7090406 +10373090 +6595612 +1677158 +5617819 +939881 +15758813 +20402017 +16195936 +11754582 +7709063 +9157402 +21261845 +14652571 +19599205 +9253740 +7669742 +6634278 +5198391 +13681987 +14781676 +18603718 +15376740 +8172401 +3253291 +17779279 +10369157 +209158 +17625925 +2416401 +18534250 +17890034 +9897300 +18384828 +14133528 +6822365 +11931528 +9698072 +14098139 +14959278 +2395429 +5636825 +2531743 +13745556 +5769207 +19675226 +11120196 +3178581 +5339293 +12545598 +7145456 +6848580 +14437613 +3314240 +3168095 +3272952 +16700561 +15080519 +18612237 +880244 +12227750 +3601286 +6659182 +2310233 +9257672 +13792742 +20934167 +966751 +4984089 +3754640 +5246887 +13178017 +9863877 +10745988 +17736680 +9740670 +8715692 +12875898 +14997944 +7891253 +20347623 +10606397 +7519010 +15682136 +20150360 +3954523 +12670116 +3914547 +16251641 +2943963 +15279092 +5617164 +713128 +4888407 +6262691 +2837795 +1946510 +11640550 +8716347 +1375038 +2774881 +20380390 +11607782 +17642964 +14741044 +18133171 +21117667 +13233067 +8673749 +20955794 +20918438 +16749057 +13566644 +16194625 +8505322 +17517791 +19384248 +20550783 +6224025 +21069826 +17303489 +4968361 +20845038 +1318022 +6283007 +6471750 +656112 +10480568 +20307646 +6165042 +133792 +9876984 +5183318 +882210 +21358838 +4766511 +7260799 +19519907 +21403403 +3403368 +9045336 +17601677 +5819669 +18412353 +2912506 +2409192 +10277407 +17205841 +2959036 +112821 +19318057 +18066325 +6398350 +2472761 +10818732 +2395429 +12542321 +19954408 +3350284 +11549455 +3403368 +13750144 +15827626 +12867378 +15443586 +5348468 +9926136 +10688316 +13222582 +7298155 +3835248 +8421436 +16589806 +9382190 +19786637 +18316671 +20391531 +7443644 +10995679 +4159650 +7999387 +8433888 +10266266 +17956225 +5645344 +20398085 +1648322 +7827028 +6451433 +3923066 +15105422 +9131843 +11762446 +8502045 +10001502 +2781434 +18672530 +19376384 +4410652 +2424265 +8094413 +17481747 +16065520 +19547432 +19944578 +14275740 +14254113 +17201909 +4731777 +5739716 +6805982 +16783791 +10560522 +15340695 +10531031 +17620027 +8296919 +19931471 +7766735 +1155494 +21276919 +14271153 +2457033 +1619487 +12632760 +8146842 +20745424 +21041646 +3339799 +18497550 +19160771 +6719474 +2913161 +855340 +17834984 +12606546 +11104468 +18718405 +13805849 +11110366 +16125158 +15359045 +13316298 +13623660 +11529139 +2069717 +17350020 +9240633 +222921 +5879962 +20119558 +14912747 +7741176 +10928177 +5087636 +4179311 +8829069 +9606322 +19710616 +7739210 +4221909 +11127405 +12827401 +2669368 +1333096 +16249675 +9819313 +12413216 +6893799 +20556026 +8800233 +12859514 +9930 +12084227 +1172533 +2211929 +15146710 +4214045 +15208969 +1778083 +2862043 +5197080 +6165042 +1772185 +5820980 +8180265 +6980962 +5807218 +17260236 +10474670 +19485173 +16376159 +16500677 +17089188 +17208463 +7623867 +21101283 +15791581 +12156971 +6872828 +6016932 +7567506 +19794501 +9097110 +1814783 +15319069 +3430238 +17598400 +7535394 +4352325 +18793771 +20969556 +8795645 +2558613 +17245818 +6343955 +15898404 +10248572 +843544 +12274280 +4503057 +9015845 +9169854 +20597969 +17238609 +3189722 +8400465 +12757934 +8157983 +16704493 +21726 +11403311 +10535618 +414285 +11646448 +3246083 +16638957 +2189647 +8182887 +14971074 +21122254 +17945739 +8563649 +1955685 +3223145 +4785516 +16793622 +14855731 +20237523 +11287312 +9581418 +3181202 +15651335 +4166204 +18800325 +87262 +8328376 +12069809 +14176126 +4551554 +8436510 +15406886 +11000921 +4514854 +4389680 +9692829 +886797 +15506501 +10722395 +14916679 +1511353 +19984555 +5790178 +7439056 +16652065 +4028579 +6911494 +19369175 +9174442 +19574957 +4457838 +16858502 +400523 +17854645 +2517981 +17006613 +11975437 +4993264 +16492158 +11879100 +6606098 +7734622 +17538763 +8989631 +16243122 +13706890 +17825809 +14457274 +12769075 +18433325 +7349272 +10492364 +10431416 +21381776 +677739 +11111021 +19492382 +17356573 +11770966 +11523896 +18218368 +18806878 +481787 +983790 +13655773 +5024721 +16906998 +4866125 +14704999 +5604057 +7384662 +3649782 +9435929 +20865355 +2207997 +16688765 +6357062 +8092447 +20021255 +5171521 +16849327 +1356688 +946435 +11005509 +16996782 +13946096 +5328807 +14223312 +2242731 +5937634 +2329238 +11558630 +1316712 +16899134 +639073 +13518148 +12525937 +16098288 +17343466 +11643171 +8036742 +21197621 +14439579 +21297890 +12184496 +16329629 +7705787 +15461281 +12890316 +5776416 +4983434 +5182007 +12880485 +13333992 +33523 +17739957 +1248555 +19974724 +1167946 +13447369 +1733519 +14971074 +20157569 +7503281 +21219903 +2761774 +616135 +8350658 +11864027 +11883687 +19392112 +17482402 +13953960 +12667494 +10021818 +2774881 +13095442 +4765200 +7488864 +4411307 +951678 +9426754 +13024008 +6293492 +9340902 +12826091 +5747580 +11177213 +5636825 +3382397 +15924618 +16861779 +20570444 +20532433 +13545673 +9534233 +9819313 +14296712 +20926958 +15202415 +13773081 +12918496 +9762952 +3200208 +9475906 +11371198 +12801187 +4813696 +19136523 +13586960 +10578872 +4787482 +19534325 +6276453 +1913086 +11719848 +1956995 +18020450 +11845677 +15418027 +6177494 +20020599 +16259506 +1005417 +5659762 +15477010 +9300270 +7024871 +4364777 +9544718 +21019363 +10780066 +7604206 +13565333 +10732881 +14709587 +12560671 +11756548 +1852794 +9656129 +3050786 +1087992 +18618135 +17036104 +8247112 +11074977 +18672530 +14609317 +16654686 +20932201 +4700320 +12286077 +19818749 +2932822 +15137535 +18249170 +20004215 +9434618 +5371405 +11493750 +18619446 +17011200 +6643453 +4672795 +12908010 +3491841 +15721458 +12692398 +17676388 +14311130 +2557958 +10953736 +10728293 +6762728 +4389680 +20799163 +12057357 +1660119 +6307910 +19517941 +2185060 +8878876 +6253516 +5750202 +18549323 +20051401 +7405633 +3523299 +6482891 +7340097 +13801262 +13655117 +21382431 +6817123 +8380804 +17877582 +15010395 +10615572 +10768270 +1454992 +17278586 +4087561 +703298 +13765217 +10885579 +983790 +19194850 +17863820 +9496222 +4859571 +18552600 +20934822 +1922917 +7430537 +9589938 +449674 +15292199 +16498056 +12740239 +10541516 +2598590 +9428720 +17776657 +4895616 +914978 +19546776 +17220259 +18376309 +7960065 +15207658 +17477814 +7446265 +1810195 +15127704 +6905596 +13084301 +2436061 +13850414 +21055408 +10688972 +20029774 +10591323 +5123680 +3284093 +3541649 +15982945 +411664 +1696163 +20957760 +7860451 +11223743 +18525730 +11626787 +11238816 +14576549 +20221139 +7889942 +15927895 +6029384 +7034701 +16005227 +14315717 +7125140 +14838037 +2649052 +1614244 +13662326 +15312515 +14495285 +6340678 +3558032 +2405260 +18162007 +14813133 +4989987 +5346502 +3439413 +7761492 +21465006 +15471111 +1494313 +15765367 +7768046 +18107612 +2620872 +3611116 +15572692 +9411026 +5066009 +5673525 +15455383 +17601021 +7693990 +291733 +8026912 +8473865 +6211573 +9669236 +16825734 +16784447 +20474762 +20632047 +17334291 +18288491 +19333130 +19522528 +17528277 +12888350 +6739135 +15718181 +738031 +5478884 +6734548 +3455797 +10642441 +11325979 +17778623 +15637572 +3280161 +8813995 +17615439 +4539102 +3603252 +9332383 +3248704 +3737600 +19642458 +16817215 +18373687 +5553594 +15605460 +3769057 +2513393 +8308060 +19732242 +19860692 +15496015 +11282070 +2520602 +1609001 +5811805 +3681240 +9161990 +517832 +20074339 +4636750 +9994293 +11629409 +651524 +7290290 +17255648 +12499723 +4271716 +12844441 +17831707 +17319873 +10139782 +7608794 +12576400 +4577768 +51217 +4520096 +12563948 +16894547 +15896438 +2150981 +3669443 +12265760 +18063704 +4169481 +9003393 +1565092 +1753179 +16682866 +2911850 +8583965 +1422224 +16106152 +20803096 +924153 +10886889 +19741417 +3776922 +15209624 +7653358 +15474388 +1481206 +2162777 +1613588 +11637928 +14473003 +1561815 +17519102 +6383932 +13621039 +820606 +17260236 +8773363 +19104410 +1317367 +14961899 +18300287 +3469559 +11273550 +4383782 +9156092 +16678934 +16868988 +16045859 +19224341 +18453641 +15475699 +9483770 +3565241 +9110872 +12356855 +3942072 +3353561 +8620665 +294355 +2588760 +10860020 +2647086 +16770684 +6189291 +17002681 +6575951 +18993000 +14914713 +8612801 +1242001 +14976317 +13578440 +15407542 +20190992 +19183709 +10772202 +16737916 +13350376 +13235033 +19826614 +1394044 +3160231 +17058386 +9112838 +12014103 +7720205 +25003 +10255781 +16396475 +10776789 +16606190 +3759227 +17087877 +11455084 +16928625 +6836783 +5321598 +4060036 +17414245 +4419827 +20361385 +6750932 +17449634 +19286600 +6213539 +10898030 +3679273 +5237057 +5941566 +12852960 +7690713 +9582729 +20479349 +21444035 +329089 +9696761 +7743142 +9634502 +17917559 +20225071 +14656503 +4306450 +2973454 +4543034 +15960008 +3447277 +12379137 +15272538 +10752541 +582712 +17920836 +11533727 +15062169 +20495733 +16564247 +13972965 +7478378 +16572766 +18977926 +2296470 +3006877 +6258759 +10917036 +1592617 +11538314 +15805343 +14303921 +19881008 +13134108 +17500752 +20511462 +3991223 +7178880 +10394716 +8579378 +13082991 +9894024 +19690299 +14138115 +3818209 +14320960 +15485529 +10808902 +6313153 +2010735 +19958340 +20818824 +20458378 +20529812 +17130475 +1854760 +3716629 +8003319 +20206721 +12788080 +10122088 +1565747 +18000789 +12032453 +14085031 +2922336 +5110573 +5903555 +15581867 +9045992 +10633922 +8117351 +3295234 +18084675 +7971206 +12417148 +7209026 +3092729 +7040599 +19256453 +10491054 +7279805 +18188221 +17909695 +16603568 +9783268 +17315286 +7868315 +19988487 +16300793 +9529645 +3852943 +4474877 +2122145 +20192303 +923497 +18402523 +11567805 +3297856 +15809931 +21113079 +19907878 +11447875 +9163301 +770144 +12077673 +16068797 +19572991 +15215522 +13122967 +1299672 +13427708 +11573048 +9295027 +20852903 +17675732 +21203519 +10120777 +3753984 +18087296 +5902900 +18572261 +7576681 +18277350 +16364363 +9333038 +17897243 +21267744 +3227077 +4411307 +14037846 +6722096 +6161110 +2502908 +1138455 +9226215 +18348128 +1673226 +19953753 +5684666 +15596285 +606960 +6195189 +17841537 +5790178 +3259190 +4762579 +9156092 +8091792 +19512698 +9375636 +3513468 +10874438 +793081 +18842268 +5003095 +11067113 +3888988 +9987740 +17391963 +12101266 +6517625 +10450422 +223576 +18713818 +11508168 +14315062 +17224847 +13168187 +13446058 +9690863 +5927803 +15570070 +13681331 +11539625 +4004986 +19571025 +1152217 +3771023 +3531818 +13511594 +20494422 +6042491 +10980605 +7141524 +8665229 +18961543 +21013465 +16270647 +15469801 +20168055 +9454934 +11391514 +16781825 +1224306 +18570950 +18846855 +268796 +3040956 +10536273 +15518297 +4851707 +10913759 +13197023 +20343035 +20619596 +10502195 +19253832 +2169986 +10256436 +1399942 +12658975 +7269319 +1643079 +11921043 +12832644 +18617480 +18769523 +19139144 +16590461 +14700412 +15370842 +11071045 +7548501 +19138489 +7924676 +9138397 +20266358 +7572749 +14066681 +8635083 +20894846 +21461729 +14545092 +20396774 +21059340 +11633341 +17212395 +21081622 +14962554 +18939260 +11681837 +16738572 +6111959 +108233 +523074 +5583741 +14298022 +13514215 +2987217 +1722378 +7112689 +8542022 +2401983 +13111171 +11698877 +19157494 +12393555 +6642798 +7433814 +5364196 +18325191 +11348916 +5545075 +14309819 +12059323 +6059530 +2278776 +12096023 +5289486 +207848 +18335021 +15107388 +3315550 +18544736 +18561775 +757037 +17789764 +11907280 +10536273 +11717882 +14402880 +6100162 +8626563 +19443885 +2887602 +17107538 +11866648 +3988602 +14990735 +1752524 +4341839 +9207209 +5982198 +16262127 +19039530 +7573405 +5181352 +14337999 +16188072 +20896812 +14195131 +15539924 +3560654 +9049924 +21297235 +11143134 +20927613 +15931827 +17188802 +16176275 +8116696 +20364006 +15503879 +21331969 +16378781 +2614974 +6243030 +17236643 +9420201 +17844159 +17293659 +16577354 +14456619 +14073235 +18964819 +10335079 +19964894 +2013356 +18473302 +19862003 +15418683 +13714099 +14889810 +9243254 +20662194 +6392451 +11168038 +12953230 +6271210 +7385972 +11455084 +7028148 +3542959 +12363409 +7030114 +7617969 +4808454 +18627310 +7921399 +11027791 +17136373 +6288250 +16182829 +1419603 +20439372 +12921117 +19340994 +5359609 +21265122 +7112689 +7376142 +11354159 +17696704 +7163151 +5846539 +12739584 +2221760 +10585 +21147813 +13535187 +11278137 +20759187 +19363276 +19407185 +4725879 +12299184 +6496653 +3677307 +13453923 +18664666 +9417579 +20843072 +16249675 +9506708 +3841147 +6575296 +5623718 +18171182 +18168561 +16482327 +4344461 +19607069 +8532192 +13103962 +19943923 +15844665 +13054810 +17853989 +21077690 +12977478 +8857249 +16543931 +8879531 +13777669 +1304260 +5713502 +9511295 +10529720 +5248853 +19371796 +18097127 +16320454 +18266209 +7973172 +20881083 +11985923 +10703389 +10531686 +18437912 +18756416 +11068423 +19255798 +4963773 +2002870 +10936697 +20546196 +19754524 +9397263 +4119673 +19768942 +11154930 +12666839 +13121001 +18251136 +15627086 +6579228 +9605667 +7600930 +5678112 +6138173 +11407243 +14231831 +16667138 +1702717 +5090912 +1489726 +13607276 +6936398 +19557262 +5870787 +606960 +1595238 +21177960 +14062094 +5869476 +11432802 +20362040 +256344 +15392469 +19871178 +17108848 +17021686 +3684516 +18126618 +3639297 +7548501 +5793455 +17289072 +16737916 +5656485 +13887769 +6930499 +6920014 +4829425 +7764769 +5854403 +10979295 +12346369 +9890091 +17768138 +8492870 +20741492 +1901945 +16018334 +13250107 +4640027 +1215131 +6378033 +16408272 +18803602 +5794110 +12877864 +10230877 +11504236 +19832512 +14178092 +9841595 +8892638 +18747241 +19068366 +1211199 +5294728 +1787258 +7962687 +11989200 +355958 +12136000 +14854420 +18636485 +11900727 +15123772 +12189739 +15327588 +11486541 +8339517 +1967481 +1025078 +19558573 +18039455 +18468714 +16927970 +6525489 +12040318 +16440384 +12160248 +8465345 +6273176 +15842043 +13508317 +17885446 +8629840 +4541068 +11997719 +15287611 +12854926 +13014833 +20642533 +2620217 +8247767 +12771041 +16805418 +17815323 +3162197 +9584695 +8755013 +12965026 +6608719 +4747505 +4284823 +4841221 +8887395 +2160811 +13599412 +15227974 +12934880 +13619728 +14659779 +16509197 +6989482 +3914547 +13197678 +1271492 +16152027 +7265387 +18213125 +4812386 +16079938 +13117069 +736065 +6049044 +18188877 +3132050 +268796 +8159949 +2218483 +16583907 +17197322 +9706591 +5543109 +3223800 +5901589 +17241886 +2139840 +6532042 +14879979 +3433515 +9426754 +6937053 +15532715 +4643959 +12947987 +10863297 +2770293 +4312348 +18270796 +15839422 +16484949 +10825941 +13333992 +8022324 +1327197 +19162082 +293699 +8928027 +12800532 +7308640 +8961451 +5595537 +21429617 +331055 +14648638 +17199288 +16260816 +9497533 +16110084 +3485943 +3054718 +8183542 +3135327 +18375653 +18621412 +9658750 +5048314 +13459165 +14338655 +463437 +14090274 +16846050 +9483115 +9215729 +17896587 +6208951 +2351520 +147555 +20942687 +8185508 +18313395 +41387 +9997570 +700021 +19002175 +19027734 +1152217 +38110 +8838244 +2122145 +16095011 +16600291 +20133321 +16187417 +17827120 +3481356 +12335228 +7275217 +18548668 +18667943 +10893443 +20221794 +3384363 +16330940 +5915351 +701331 +11506857 +3403368 +521764 +7184778 +18338298 +19867901 +8235315 +17442425 +3338488 +13225858 +2770293 +6704401 +18850132 +10465495 +6100817 +18987757 +276005 +13751455 +17531554 +6772558 +13514215 +1686333 +12596060 +19517285 +14218069 +20708069 +15151953 +804878 +8074097 +18325191 +20529812 +10829873 +8787781 +4056759 +9327795 +5173487 +17252372 +17975886 +1508731 +8053781 +19880353 +20278810 +3838525 +4259920 +14837381 +19295119 +15078553 +1420258 +21191722 +14490042 +6389830 +16308002 +15305306 +7458717 +19892149 +7342719 +7180846 +1045394 +2184404 +895972 +7800813 +3372566 +9689552 +4081663 +14295401 +21344420 +16087147 +16055034 +179012 +17447013 +1641113 +9671202 +16029475 +7687437 +5666971 +2263702 +1302949 +16800831 +5892414 +1475963 +13939542 +4141956 +14625701 +9358597 +6029384 +13254694 +19274803 +20961037 +2496354 +14294746 +6787632 +7372210 +4352980 +14428438 +223576 +12715335 +1044083 +12742205 +3419752 +11439355 +14708276 +9729529 +18180357 +20496389 +2549438 +12952575 +8490904 +5375337 +12582953 +12718612 +19127348 +10143715 +10927522 +19705373 +1036874 +7528840 +12137310 +9515883 +1837065 +6565466 +16633059 +16422034 +16111395 +21203519 +189498 +6534008 +3523954 +7922710 +17882170 +8872977 +13672156 +19978001 +1726965 +5734473 +2287951 +20611731 +1611622 +17877582 +7848655 +10874438 +19259075 +14771190 +15509122 +291078 +13019421 +21004290 +5620441 +3568518 +17800250 +6146037 +7660567 +21077035 +13042358 +15065445 +12608512 +14502494 +19914432 +18619446 +15548443 +7197885 +17691461 +6135551 +20069751 +19993074 +10165997 +14357660 +18540803 +14929786 +3847700 +12987964 +16055690 +8658020 +14060128 +7193953 +4752748 +12565259 +11014684 +19536946 +20727074 +4319557 +7861762 +11035655 +18442500 +17400482 +9534888 +5113850 +16981709 +16425966 +2905297 +1698785 +16819836 +9917616 +7712996 +9650886 +12613100 +3896852 +3729736 +21009533 +8706517 +11717882 +11296487 +19009384 +19255142 +2715899 +11859439 +15157195 +2613008 +5071252 +7119898 +14048987 +12535112 +9241943 +10785309 +8587897 +445742 +16217563 +13854346 +11653002 +2289261 +5796732 +18057805 +12149762 +15376085 +18813432 +6595612 +11791937 +19557262 +21145847 +11216534 +9085968 +6492066 +1125347 +15931827 +966096 +20367283 +11130027 +6727994 +18869793 +9409715 +3693036 +14951413 +12013448 +6949505 +10413066 +12755312 +2666092 +11869925 +20092689 +2202754 +4071177 +1313435 +18481821 +6091642 +18435946 +3818209 +18497550 +1446472 +13654462 +32867 +6440292 +19147664 +2918404 +8692754 +19605758 +21135362 +18506069 +17614784 +1652910 +14881945 +18000789 +10027716 +16195281 +16583252 +8148808 +3702866 +14004422 +628587 +16595704 +9583384 +13470307 +5141375 +3428272 +20666781 +18540803 +15769954 +8483040 +2263702 +18412353 +12256585 +3582281 +15849252 +15946901 +14714829 +3350940 +18146278 +21069171 +20221794 +11152964 +4522718 +20551439 +10258402 +10206629 +16867022 +10747954 +5499200 +5900934 +19304950 +18804912 +4881198 +7265387 +20915817 +5625028 +214401 +18034868 +19312159 +5602746 +10629334 +11153620 +15395090 +9880261 +6002514 +120685 +16742504 +12550841 +7254901 +9214418 +778664 +5730541 +17914937 +13054155 +12868033 +20813581 +10416343 +12605235 +5415969 +1827235 +8064922 +17437838 +1143697 +16221495 +13712133 +15448174 +14815099 +9186238 +19325266 +500137 +15941658 +14861629 +19300362 +10346220 +10983227 +9055822 +4015472 +9062376 +12175321 +16180863 +6777146 +17326427 +14454653 +20109073 +8872977 +2655606 +5305869 +12468266 +12109785 +18827194 +154764 +7264731 +19107032 +20702826 +20758531 +11753927 +15990154 +15480286 +9216384 +18665977 +19885596 +19531703 +3073068 +9707247 +6661803 +9421511 +5790178 +13971655 +17564321 +1976001 +6914771 +17909039 +2485868 +1017214 +15707040 +6707678 +20636635 +10078179 +4217977 +19639182 +12765142 +20488524 +10126020 +5296039 +1907844 +2363972 +16140886 +3519366 +1256419 +1160081 +6620516 +10454354 +13666258 +2238799 +11476711 +10571007 +2687063 +9727563 +1143042 +4543034 +4898893 +2102485 +1028355 +1422879 +5731852 +17502063 +10055897 +18755760 +6255482 +9740670 +5814426 +16115983 +10478602 +7192642 +7465271 +20462965 +17060352 +761624 +6485512 +3729736 +2671990 +7220167 +15567449 +7248348 +2371181 +13301880 +2801095 +9027642 +16545241 +10597877 +4407375 +6988826 +102991 +19932782 +11361368 +7456096 +7063537 +14608006 +9061720 +5466432 +16087802 +6263346 +1605724 +11257821 +4018748 +9479838 +13294671 +16239845 +7716272 +20011424 +6289560 +17212395 +11118886 +1958961 +7689403 +13624971 +20586828 +18752484 +19896082 +10744677 +15128360 +9353354 +7513767 +7935817 +5720055 +10258402 +7112033 +4933627 +19172567 +2575652 +8850040 +5305869 +4525995 +12989275 +21356872 +7041255 +14299333 +12925705 +11829293 +2403293 +14334067 +8529570 +3875881 +19939990 +18151521 +16081904 +3605874 +16041272 +6935742 +14820997 +15014983 +14007044 +8947688 +1302294 +8434544 +18838335 +14226588 +1017214 +17205186 +19822682 +12473509 +11105123 +11586155 +17148170 +1794467 +9034851 +4233705 +19535635 +19955064 +1095856 +14796749 +13562712 +2883015 +9354009 +4347082 +1977311 +15994086 +13860244 +8502045 +4311693 +18821296 +6462575 +137724 +9719043 +9186893 +1213165 +11179834 +11558630 +8032154 +7399080 +1443851 +6285628 +1002140 +3460384 +4000398 +270762 +6577262 +3717940 +13555503 +14478901 +292389 +19962928 +18490341 +1781360 +15163749 +9823245 +8105554 +10430761 +19017903 +499482 +12128135 +14552956 +17682941 +7355171 +4021370 +2877117 +6225335 +367099 +4325455 +4263197 +2430163 +10367191 +832403 +18475923 +20939410 +5314389 +337608 +3207416 +7492796 +15078553 +568294 +14650604 +21189101 +6115891 +3768402 +8378183 +18487719 +6000548 +10858709 +20601901 +20789333 +667908 +10274786 +340230 +19316746 +18427427 +7775910 +12570501 +12587541 +9507363 +3961732 +18473957 +2649052 +21082933 +8728144 +17266134 +1763010 +18855375 +20882394 +13422465 +4567282 +5457912 +19194194 +13974931 +20342380 +1502178 +477855 +13604655 +13048912 +2671990 +3614393 +410353 +15547133 +15543856 +4770443 +4502402 +7979071 +6380655 +9288474 +7557021 +19995040 +15887263 +10743366 +14643396 +3847700 +16482983 +13791431 +20571099 +2471451 +1304915 +6060185 +260932 +9234734 +10344254 +11286002 +20468864 +548633 +3107802 +1557883 +1065710 +10449111 +13348410 +15632985 +17765516 +19674571 +1345547 +3485288 +8799577 +808810 +11067113 +1749247 +13636112 +20841106 +4750127 +9892713 +21005601 +12597371 +3702866 +21457797 +17448323 +18308807 +15248290 +9709868 +847476 +1389456 +9526368 +21370635 +13290083 +8221553 +5904210 +5986130 +671185 +12225128 +17315941 +7053051 +4348393 +7277839 +19650323 +20328617 +19821371 +4877921 +16637647 +16598325 +6277109 +8189440 +2271567 +14142703 +4723257 +3925032 +20077615 +10992402 +11049418 +2242076 +13881871 +5811805 +12712059 +15282369 +12992551 +3379120 +7167739 +4548277 +2850247 +18778698 +2738181 +9846183 +2583517 +19214510 +13305157 +17557768 +1172533 +10825941 +4564661 +17192734 +15966561 +16156615 +17990959 +18723648 +11142479 +20793921 +740653 +7216890 +4291377 +21387019 +18618135 +15281713 +12813639 +17333636 +15266640 +10675209 +17978507 +13918571 +9446415 +15811897 +6366237 +8043951 +938571 +6191257 +8834311 +2860733 +4503057 +4486673 +3464316 +964785 +19280046 +3219213 +10652927 +994276 +9482459 +3900784 +10563798 +11711328 +4407375 +20318787 +11126750 +1035564 +7066814 +11736887 +4164238 +8861181 +12752691 +1686333 +8972592 +18999553 +20088757 +4541723 +5385168 +12353578 +13774392 +15546477 +20051401 +11411175 +16323731 +8608213 +17639032 +1300328 +16199868 +4255332 +11019927 +9935966 +19973414 +1746626 +20673335 +17749132 +14427783 +9534888 +18192153 +1008039 +350060 +11010752 +20989217 +15441620 +12767109 +13843860 +658078 +1409772 +10202041 +19836444 +8300195 +11894828 +20152982 +20658262 +7467892 +7688747 +15344627 +6711610 +11320736 +6950160 +15336108 +8582654 +14640119 +12681912 +16879473 +8009872 +16646822 +11377752 +11388893 +17001370 +11818807 +3254602 +15039886 +11704120 +8432578 +13740314 +4787482 +19659498 +16445627 +3663545 +7935162 +4093459 +17139 +14370112 +2339069 +15680170 +15463902 +14242972 +3710075 +19207957 +14547058 +19074264 +18581436 +15892506 +6336091 +17186836 +3183168 +19109653 +14594899 +14054885 +705264 +10365225 +8537435 +6500585 +17378855 +13088233 +16999404 +7935162 +3120909 +3052752 +2569099 +20628771 +12580332 +7753628 +6378689 +12044905 +10374400 +6175528 +11245370 +5976300 +19131935 +2754565 +12391589 +1920951 +9708558 +15809276 +1128624 +5231159 +17435872 +10660791 +7140869 +10331147 +12623585 +11630064 +12128791 +4773720 +9174442 +15104767 +9281265 +8243835 +3956489 +2302369 +21360804 +20999047 +16047170 +17505995 +8263495 +3227077 +11759170 +9115460 +13692473 +17518447 +6040525 +577469 +9388088 +11677905 +18796393 +9365151 +1286565 +18322570 +4907412 +1899324 +6370169 +12269037 +16321109 +11259788 +13621039 +8880842 +6328882 +18367789 +10281340 +9451002 +6838094 +2670024 +15029401 +11721814 +2865320 +20709380 +6012344 +13736381 +20297160 +9929413 +7458717 +14375355 +8859215 +13627592 +8059679 +3198241 +14854420 +9001427 +17805493 +7372210 +10859364 +12733685 +878933 +16498711 +5805251 +11126095 +12769730 +3454486 +17361161 +2686408 +40076 +12379137 +14665022 +827160 +20405294 +16521649 +14604074 +5394998 +19428157 +11010752 +10200075 +5456602 +7397769 +306807 +204571 +574192 +8914265 +1801020 +13197023 +17093775 +5978921 +4492571 +8746494 +20790644 +20200167 +4212734 +21387674 +3033747 +18050596 +11379718 +460815 +12966337 +21009533 +2416401 +12217264 +4852362 +18619446 +11474089 +21028538 +3213970 +1875076 +11475400 +1981899 +3943382 +15610702 +17324461 +9735427 +6658526 +10447800 +17368370 +11019271 +4476188 +15724734 +15623810 +7593065 +4371986 +5955328 +5595537 +20838485 +11671352 +3717284 +7894529 +13806505 +8884774 +6253516 +13940197 +9104974 +12759244 +21002324 +10909172 +5995960 +3538372 +12078328 +16120570 +19514664 +3571140 +21450588 +16842118 +16779204 +13367415 +9141674 +1398631 +8871011 +17814668 +19784016 +20533744 +9038783 +6871517 +5124991 +13919881 +8230072 +8712415 +17169797 +6488789 +823228 +15213556 +15672306 +1468754 +18293078 +12494480 +4657721 +2982629 +10405202 +17886757 +20851592 +10503506 +4124261 +13928401 +1517906 +10000191 +14756117 +2860077 +20939410 +18803602 +10658825 +7811299 +21099972 +15767333 +7343374 +7931229 +19727655 +7024215 +12466955 +20187715 +7159219 +15954765 +4927073 +14446788 +21252670 +11459016 +13153769 +3412543 +19838410 +14102071 +3350940 +15499947 +18468714 +7693990 +7867660 +13063985 +5562769 +3243461 +11178523 +914978 +16821802 +11686425 +2169331 +999519 +9861256 +14646672 +10858709 +9339592 +6819744 +11736232 +1383558 +19111619 +17060352 +18913046 +19202714 +11225054 +14443512 +10508748 +13363483 +17751754 +18148245 +1555262 +10967498 +9238667 +14665678 +5327496 +256999 +11909246 +6159144 +19791880 +6178150 +12508243 +8706517 +14089619 +15494049 +13847792 +6458642 +4321523 +20554715 +13554848 +7341408 +17973920 +10595911 +11382995 +13071850 +14759394 +7878146 +10859364 +6155212 +14205617 +20479349 +13261248 +2863354 +3829350 +9059754 +12634726 +17165209 +7079265 +18586023 +11328600 +6080501 +13744246 +13978864 +336953 +6496653 +1669294 +180978 +9808172 +18530318 +10194177 +8543988 +2233556 +17273343 +220299 +14648638 +14307853 +13067262 +19668673 +13697715 +19331164 +5285553 +1225617 +17938530 +2044813 +7459372 +11765068 +8999461 +18414975 +10202697 +1189572 +17602332 +2121490 +16825079 +20400051 +19947855 +13667569 +18082709 +20547506 +16506575 +6689983 +19489760 +10017886 +3982704 +649558 +9104318 +3422374 +12918496 +13652496 +692812 +2168676 +7600930 +344817 +18717750 +20710690 +14010321 +7618624 +9711834 +11505546 +14775778 +19980623 +18948435 +3413199 +19835133 +7969240 +15664442 +5938944 +2070372 +16539343 +6393107 +15512399 +20731006 +12236925 +12949953 +19800399 +7169705 +13276976 +17737336 +14142703 +8137012 +6591024 +11270929 +11986578 +17568909 +4174068 +8372940 +20468864 +20316821 +479821 +17595779 +5971057 +1523149 +11400689 +2136563 +14070614 +8218931 +21013465 +10069659 +17739957 +16848016 +16612743 +18240650 +1814128 +15416717 +2652984 +11246680 +7899772 +11021893 +2307611 +11635962 +3508881 +6391141 +1705338 +2947895 +8255631 +21251360 +17338879 +20058610 +18770178 +8888051 +5484782 +4859571 +14859008 +1415671 +8891983 +2384943 +18045354 +11993132 +1853449 +16235913 +12586230 +6028073 +743930 +12526593 +745240 +6483546 +8496803 +13965756 +2403293 +1074230 +16507231 +200639 +13112482 +17123266 +18986446 +7017007 +9833075 +10390784 +5556216 +11668730 +18452330 +19533014 +15949522 +18401212 +10219736 +17772725 +7866349 +17351330 +6262691 +20802440 +8397188 +16133677 +6988171 +11349571 +20883705 +10563798 +18160696 +3205450 +7315194 +7943026 +5223950 +19903946 +19410462 +12293941 +4686557 +10181070 +3936173 +20548817 +9406438 +12296562 +21113735 +3508881 +6915426 +9516538 +15123117 +6467817 +2355452 +3581625 +4407375 +21204174 +18637141 +6174217 +2586138 +456228 +12756623 +2742768 +806844 +10175827 +1533635 +18213780 +9534233 +10211872 +13577130 +16806729 +18173803 +10339666 +10426173 +1719101 +20835208 +6387208 +16438418 +3948625 +9595836 +13872040 +20551439 +3885056 +19137178 +11930218 +18345507 +11821428 +16745781 +7572749 +15222076 +7412842 +720992 +11571737 +15532060 +7184123 +15281713 +7173637 +11748684 +3068481 +15517642 +3580970 +19982589 +19596583 +20625494 +19173223 +4144577 +11244714 +16528202 +523074 +14220035 +19366553 +3156299 +16087147 +15891195 +9563068 +12583609 +484408 +16148095 +2190302 +20831276 +11023204 +5062077 +2755876 +9035506 +14671576 +17731438 +1316056 +10898686 +16830322 +8356556 +20060576 +15559585 +1057846 +12260518 +5755444 +13789465 +18667943 +8641636 +18673185 +13689196 +4724568 +2818790 +20765740 +13146560 +2945274 +19930160 +15357735 +12936191 +10975363 +13446058 +12902767 +14760704 +21158954 +3241495 +16744470 +2221760 +5148584 +17074770 +18823262 +20818824 +9454934 +21373912 +5987441 +11363989 +2900054 +16483638 +9807516 +6834817 +8157328 +9810138 +7273906 +3452520 +8007251 +20556026 +5927803 +8638360 +8173712 +1278701 +13430985 +6128998 +5071907 +1751869 +10368502 +18777387 +4095425 +9408404 +12852960 +9331072 +8593140 +6582505 +110855 +14450721 +17768138 +956265 +8375562 +16044549 +18088607 +11077598 +15944934 +9603045 +6437016 +21055408 +6623137 +9836352 +8112108 +15154574 +8203858 +2325306 +20537676 +20487869 +20774915 +10977984 +17591846 +10829873 +18038800 +10844947 +9834386 +7775910 +857962 +6397694 +16368950 +17529588 +7049774 +4822871 +8053781 +10673243 +13682642 +11170659 +21377844 +12719923 +979858 +11130682 +8815306 +18873069 +6700469 +3842457 +11502270 +15539268 +10610984 +7570783 +5313734 +15298097 +14786919 +14759394 +6178805 +1320644 +9033540 +12548875 +464748 +10073591 +15368876 +2340379 +7091717 +12066532 +8230072 +5634203 +9004704 +12760555 +11721159 +11198184 +17723573 +11915800 +20238833 +1126658 +8585931 +7275217 +842889 +10829873 +11893518 +2988527 +10261023 +16935834 +11662832 +15389192 +19171257 +16156615 +1623419 +15068722 +13514871 +3195620 +485064 +12594094 +8448961 +17485023 +11049418 +12073085 +7808678 +9781302 +4353636 +18443155 +17135063 +20515394 +20803751 +15947556 +14294746 +12919151 +18504759 +17786488 +7216890 +3142536 +11721814 +18505414 +18357959 +2177195 +836335 +13531910 +18035523 +3788718 +491617 +3320138 +11312871 +5711535 +10908516 +17670489 +21417820 +19143076 +2828620 +13254694 +2562545 +10830529 +18768212 +2036294 +4974259 +11969539 +10071625 +5925182 +2236833 +16084525 +6364926 +2072994 +4394923 +7483621 +675773 +12498412 +17249095 +146244 +17969332 +8534813 +20319442 +20629426 +8074097 +19997662 +17826464 +745896 +9258327 +12200880 +13050223 +7508524 +8692099 +6619205 +3358804 +3020640 +10477947 +8319856 +18065670 +12764487 +16654686 +1211199 +17246473 +2344311 +2371181 +3739566 +17253682 +19012005 +20115626 +16576699 +3374533 +5417280 +20285364 +5248198 +16842118 +13690506 +16909620 +6952126 +19597239 +12567225 +13995247 +10597877 +9902543 +15657888 +20675301 +21428306 +13684608 +2735559 +123962 +2212585 +16696629 +18566362 +15979013 +16468565 +20700860 +7039944 +13238966 +8006596 +9603045 +1349479 +12752691 +14703033 +8741251 +13234378 +5944843 +14561476 +1780049 +5815082 +6786976 +8712415 +17259581 +1692231 +20090723 +11839123 +20409226 +2178506 +18064359 +17819911 +8169779 +5554905 +6334125 +19099168 +7456751 +14971729 +13670190 +18715128 +9542097 +1761044 +722303 +6134241 +13029907 +15421960 +15921997 +7615347 +15026124 +19514008 +14043089 +10455009 +15612013 +9779336 +9168543 +683637 +4065934 +15207002 +20503597 +20942031 +13412635 +1489071 +10342943 +15659199 +18485753 +7730035 +2774226 +14505115 +291078 +20462310 +2603833 +13220616 +16281788 +1716479 +10459597 +16897168 +19529082 +4716704 +11257166 +12831334 +17998823 +20842417 +17238609 +15896438 +16275890 +6819744 +21291992 +17998168 +8835622 +14969108 +6179460 +6014310 +4059381 +16468565 +15719492 +8639015 +4499780 +6184048 +4044963 +14417953 +8501390 +502758 +5853093 +555187 +1624729 +1312779 +177701 +685603 +2975420 +10029027 +10591323 +218989 +6044457 +14478246 +7652047 +16946320 +8011838 +11055316 +6168319 +5191837 +10058518 +6457332 +9000772 +5627650 +10851500 +18453641 +18177080 +7229342 +4593496 +19985210 +1259696 +7918122 +5794766 +17866441 +12266416 +19543500 +4792725 +17100984 +11489162 +9829143 +5022755 +19137834 +13007625 +20850281 +3119599 +19825303 +18338953 +5702360 +19891494 +5063387 +21432894 +9476561 +314671 +17297591 +15885952 +21444690 +12696330 +11665453 +10423552 +17202564 +6819089 +4448007 +4993920 +11597952 +12183185 +17885446 +19417016 +18411698 +14675508 +1880319 +19569714 +16796243 +6258103 +9755088 +4837289 +13723274 +4321523 +14008355 +15918065 +1779394 +19919019 +4305139 +4594807 +8943101 +7753628 +11359402 +11740820 +18216402 +13333337 +11732300 +15364288 +18159386 +13320885 +1458269 +2333826 +5142686 +8083928 +251101 +12126169 +5112539 +12782837 +16493468 +19055259 +97092 +12096023 +13951994 +2611042 +20514739 +18840302 +17773380 +7944992 +9354665 +926774 +14176781 +9264226 +19932126 +10192211 +17611507 +933328 +9685620 +19854794 +2742768 +205882 +6475682 +18861273 +10622781 +21302478 +17224847 +20220483 +19011350 +5414659 +4377884 +16189383 +15082485 +2569099 +8705861 +9833731 +10782688 +10109636 +13777669 +5535900 +9589283 +21435515 +17173073 +2052022 +8530226 +11872546 +11139202 +21016742 +1265594 +7291601 +15632329 +21235631 +1667983 +5301282 +16781170 +10820043 +10744022 +2011390 +18132516 +14247560 +10775479 +1553296 +14765292 +13115103 +16881440 +3671409 +11735577 +11597952 +12185807 +18361891 +4317591 +1784637 +11542246 +16968602 +20017323 +1364553 +15579245 +19053293 +10985848 +3279506 +14107314 +9681688 +18929430 +9804895 +15412129 +15305961 +14583758 +12146485 +2770949 +11405277 +5670248 +2122801 +9459522 +11535693 +8660642 +5872098 +20324030 +10958323 +5816393 +11396102 +20032396 +5646655 +19717169 +16106152 +3444000 +17534830 +18710541 +1763665 +10517923 +3212659 +247169 +20027153 +1216442 +6431773 +8486972 +2723763 +19339684 +2123456 +3641263 +16930591 +9798997 +7045187 +5155137 +20635324 +17437838 +12130757 +18176425 +10864607 +3038990 +11013373 +15091004 +6590369 +4653789 +1916363 +18437257 +6688017 +8722901 +1160737 +20115626 +9504086 +1427467 +9905820 +19422914 +19548087 +15718836 +15330210 +732133 +20506219 +222266 +10804314 +4491261 +11882377 +12644557 +8899192 +4995230 +2557302 +5544419 +10306243 +6303323 +15642160 +7749696 +9882227 +5317666 +19375073 +12213332 +2898743 +18665321 +10236120 +8532847 +8284467 +15660510 +12720578 +7794260 +7513767 +18418907 +7174292 +4038409 +9203277 +18129895 +1125347 +20665471 +9226870 +11496371 +19278080 +14269187 +13450646 +21113079 +12862135 +20447237 +279937 +17233366 +369721 +13427708 +11595986 +12720578 +10873127 +14383219 +13044325 +12416493 +13124933 +6170285 +12906700 +2812892 +2904642 +17564977 +16089768 +6865619 +2331860 +20643189 +1814128 +3286715 +14755462 +4358879 +16941732 +14324237 +11064491 +18306841 +15167681 +11046796 +12507587 +12845751 +6467162 +4562039 +2256494 +21189756 +18173148 +15137535 +9989050 +15720147 +2579585 +8483040 +15819761 +5604057 +8490249 +6554980 +17852679 +8620665 +21462385 +11170659 +17062318 +13297948 +4911345 +12222507 +6079846 +15250256 +19272837 +19417671 +16228049 +7586512 +6506483 +2798474 +8753702 +9276022 +19059191 +3086175 +8179610 +11348261 +8144220 +17921491 +6032005 +10713220 +14877358 +10959634 +11405277 +11475400 +7958099 +14959278 +12814950 +13199644 +18184289 +10096529 +13078403 +16338804 +6756174 +21097351 +9034851 +21321483 +10270854 +7047153 +13426398 +8559061 +20857490 +8935892 +12217919 +4729811 +15494704 +21430928 +19108343 +7836858 +976581 +10990436 +13143283 +5261305 +16138265 +19244001 +7060260 +7618624 +746551 +663321 +10825286 +10523822 +9532922 +20655640 +9132499 +347439 +15071344 +12113062 +17964745 +1962238 +14183335 +17211739 +16882095 +5396309 +3701556 +5115161 +15397056 +5608644 +3413854 +20572410 +7157253 +13786189 +14123042 +11776864 +5867510 +16670415 +2760463 +6559567 +2578929 +17794 +17226157 +6769282 +16795588 +12699607 +7509180 +12213987 +16597015 +1002140 +14092240 +16459390 +9091867 +12396176 +21033781 +20786712 +11962330 +4415239 +5878651 +15983600 +14145324 +8248422 +20654330 +21215315 +1480551 +11522586 +20074994 +803567 +5056834 +9232113 +1340304 +5858335 +11850919 +16798865 +21332624 +17992925 +17518447 +291078 +11362023 +13864176 +17986371 +11702153 +7514422 +6940330 +4945423 +11880411 +8093758 +5425144 +19603137 +12604580 +11790627 +7804090 +7669742 +20392842 +6402937 +17892000 +2377735 +5517550 +10783998 +7582580 +13441471 +1595238 +4249434 +2445236 +19906567 +863860 +17936564 +3617670 +3143191 +8221553 +7592410 +7051740 +9909752 +5042416 +18496239 +5351089 +9934656 +14031292 +4309072 +18506725 +10406513 +16150717 +3826729 +17301523 +20009458 +18243927 +15946901 +435257 +2765706 +914978 +19138489 +3242150 +15633640 +2341690 +12583609 +19875110 +4396234 +3156299 +9894024 +3388295 +10123399 +18397936 +12898180 +11474089 +3066515 +18713818 +3756606 +18051252 +10349497 +922842 +4400166 +16814593 +12019346 +1907844 +5312423 +1344237 +14134183 +10888200 +5922560 +18407111 +9654163 +3528541 +11589432 +7897806 +21077035 +9987740 +14687960 +12583609 +11241 +10867884 +19525150 +20142496 +13843860 +2660193 +9753122 +20656296 +776042 +5180041 +3902750 +14490697 +17309388 +8988320 +11812253 +16858502 +1754490 +354648 +16085836 +8736663 +20793265 +18819330 +6113269 +9296338 +1195471 +19844308 +16999404 +4757336 +21093419 +12984687 +7632387 +16205767 +12588196 +11862061 +2711311 +19805642 +14519533 +8681613 +10827907 +1951097 +20449858 +3474147 +14577860 +13109205 +2341690 +169182 +17238609 +8975868 +13969033 +21162231 +12495135 +8426679 +9666615 +9516538 +12079639 +13267801 +12586230 +14069303 +19266939 +4543034 +10362604 +11189009 +18684982 +18729546 +19104410 +16147440 +20692996 +17294970 +15720147 +9645643 +16045204 +3912581 +7693335 +10350152 +7935817 +16909620 +4750782 +12240857 +20097932 +281903 +11212602 +10252504 +11827982 +18348784 +18215746 +4815662 +6630346 +1366519 +7214269 +15505190 +277971 +2540263 +8391945 +15869568 +19412428 +3447277 +10631956 +12928326 +3851632 +12090780 +2898088 +11618268 +12575744 +5973678 +8102933 +1759733 +18544080 +13462442 +2774226 +8487628 +7056328 +14666988 +13079058 +114132 +7880112 +19530392 +1356033 +16487570 +2771604 +4362155 +5511652 +11175902 +4330043 +76776 +16571456 +6750932 +11582878 +13375935 +13809781 +13556158 +9401851 +9713145 +7808022 +10598532 +17787798 +4342495 +16945665 +18749207 +14531329 +17850057 +20953172 +6551048 +16456113 +6901664 +10302966 +2433440 +13912017 +20511462 +3259190 +3286715 +761624 +5377959 +20527846 +10252504 +9281920 +4517475 +18170527 +17916904 +5686632 +936605 +4945423 +8577411 +6647385 +249135 +1137799 +13995247 +14827551 +12006239 +629242 +17136373 +4961152 +8247767 +1287221 +14007699 +9463454 +12957817 +7713651 +8093758 +19694232 +14397637 +7027492 +21274297 +9580763 +4314314 +14980249 +1099133 +12454503 +7794915 +21290681 +8961451 +20939410 +21226456 +17388030 +10685695 +5826878 +1298362 +21353595 +19149630 +17036104 +15779784 +4080352 +17834984 +18361236 +11818152 +17977196 +6891833 +20391531 +21158299 +2757842 +8648845 +12985342 +334332 +20592726 +9072861 +3985325 +17848746 +8629840 +15704418 +9156092 +7879456 +15911511 +15310549 +20855524 +17271377 +12682567 +11770311 +15166370 +15026124 +2905297 +13337924 +3531818 +19253832 +418873 +20955794 +16820491 +18814087 +19733553 +15596940 +6381310 +15130981 +6975064 +17797629 +1004106 +4981468 +12294596 +2611042 +10403236 +15011706 +13855656 +825849 +14155155 +8781227 +16844740 +19373762 +20623528 +13298603 +9413647 +4390991 +19403908 +6688017 +12444018 +16718911 +5106641 +21321483 +19806298 +5805251 +3362736 +4055448 +1569024 +17499441 +19195505 +16753645 +3048165 +6961957 +10431416 +18089262 +18249825 +6277764 +21040335 +3085520 +14178092 +11266996 +18732823 +20552094 +20782124 +14969763 +1206612 +7363035 +18785907 +3253947 +1264938 +12003618 +12604580 +17909695 +18326502 +16180208 +20599935 +16784447 +475889 +12824125 +4803211 +1385524 +11945946 +256999 +9226870 +12657664 +1510697 +13972965 +13508317 +14394360 +15347904 +6129653 +7212303 +16604224 +12156971 +16332250 +6296114 +7326990 +16716945 +14297367 +1671915 +2262392 +5884550 +8308715 +12326053 +16937145 +5530657 +14802647 +18196741 +13067917 +7157908 +10543482 +9685620 +10398648 +10895409 +21075069 +14905538 +7648771 +18371721 +15937070 +19424225 +11217189 +2979352 +557153 +4664930 +8559061 +3157609 +18251791 +19738141 +13079058 +1141076 +1285255 +18935328 +17464707 +11961675 +451640 +2428197 +3760538 +2209308 +1989108 +20613697 +18924187 +20394808 +11626132 +21297890 +13191124 +8079340 +1093890 +2095931 +8319201 +17230745 +10377022 +17757652 +13884492 +2310233 +1030976 +10862641 +998208 +19924917 +11531105 +3443345 +17322495 +4564005 +16713668 +16686143 +1155494 +17654761 +20797197 +20035673 +1223651 +9625327 +793737 +7010453 +16344702 +13682642 +15049717 +5124991 +11299764 +4258609 +7825717 +9852081 +10248572 +16716290 +11200805 +15098213 +7994799 +18966130 +17518447 +1272803 +8460103 +2738181 +8905090 +10473359 +16559004 +21371290 +18373032 +19548742 +13675433 +19111619 +376274 +19728966 +627931 +16292274 +8096379 +13588926 +9466075 +1456958 +4356913 +15908234 +17668523 +8916886 +18186255 +5421868 +9688242 +11966918 +16883406 +21392262 +12029177 +2873184 +12339816 +8407019 +3206106 +18710541 +7673674 +11348261 +18700055 +11721814 +2303679 +1818060 +8661297 +10465495 +5105986 +2394774 +4684591 +19446507 +16079938 +4744229 +3095350 +17610852 +12080294 +4370020 +13701648 +18787873 +4393613 +13094787 +3561965 +17585293 +10464840 +6991448 +12927016 +20054023 +7539981 +14444822 +1114862 +4094114 +11177213 +1417637 +116753 +8923440 +2800440 +16305381 +4846464 +5310457 +21046233 +15224042 +6037248 +3574416 +12229716 +1915053 +2711311 +8128492 +12366030 +10487122 +13685264 +17854645 +19867246 +6830230 +10936041 +3210038 +2497665 +10027061 +9037472 +16407616 +20468864 +15658543 +18740032 +501448 +7319126 +860583 +13012212 +12059323 +6508450 +1065710 +160007 +15227319 +18821952 +1389456 +8739285 +4835979 +808155 +19158150 +14464483 +2877772 +6876760 +13166876 +365789 +20299781 +5955328 +17629202 +8602315 +889419 +9576831 +7561608 +10116845 +10981916 +20827344 +937915 +8878876 +4583011 +11519309 +11738853 +13623660 +7460683 +16852604 +15622499 +14676163 +6836783 +18046009 +14792817 +6777146 +3691725 +2855490 +20196235 +2226347 +8239247 +3314895 +16148750 +10846257 +6079191 +6682119 +4686557 +16969913 +19186330 +11385616 +1487760 +15856461 +10072936 +16568179 +16216252 +10899997 +10974707 +2287951 +17992270 +12547564 +11658245 +11083496 +4740952 +4717359 +9166577 +1421569 +5317011 +5545075 +10799727 +13237655 +4323489 +16437763 +7106135 +15420649 +5050280 +7740521 +6823676 +18424805 +5714157 +14170883 +224232 +15121806 +18527696 +15880709 +7226721 +10948493 +14145980 +419528 +12299839 +7122519 +6918048 +10312797 +6958024 +4703596 +13179983 +13174741 +6284973 +643005 +12100610 +372342 +2594002 +650214 +6399005 +838301 +1831822 +20026498 +11795869 +8019703 +19936714 +11388893 +8092447 +483753 +12963060 +12550185 +2861388 +11221777 +4713427 +2525845 +4419827 +18148245 +20643844 +16613399 +12117650 +18857996 +5863578 +8519740 +13891701 +19186985 +1720412 +10493020 +13212751 +19470100 +7180190 +14990079 +10950459 +7210992 +14231831 +4687 +7239828 +18587989 +8599038 +15504535 +13294016 +19806298 +16974500 +1473342 +9397263 +14320960 +13527978 +6635589 +10824630 +19568403 +3128118 +5913385 +6123755 +18579469 +8128492 +7164462 +15395745 +2565167 +18461505 +10320006 +11552732 +16560315 +18441189 +15555652 +16599636 +2112315 +21159610 +8690133 +8543333 +14809856 +9138397 +13057432 +15410819 +9335659 +12767109 +7209026 +10500229 +6079191 +10438625 +12440741 +6817123 +3784131 +10760405 +20641878 +7773288 +1283288 +755726 +2048090 +18829160 +8213033 +13062019 +6986860 +13375280 +21196310 +17507961 +21373912 +14585724 +17193389 +18928775 +19558573 +14745631 +4931661 +2181127 +3107802 +1152217 +14310474 +20311578 +18165284 +3365358 +279937 +2413779 +4406720 +1418947 +13518803 +6636899 +5082393 +17785832 +13132798 +947746 +11358091 +17949016 +17282518 +4484707 +13396251 +6815812 +9916961 +15709006 +3824763 +10240707 +20351555 +1840342 +12127480 +6769282 +8609524 +20029774 +1495624 +14269842 +16219529 +14613904 +7315194 +10017231 +639728 +5144652 +5250819 +17747166 +6269244 +16263438 +16932557 +18759037 +4325455 +13155080 +5634859 +20602556 +11597296 +9680377 +5541143 +4839255 +13618417 +11624821 +15488151 +1514629 +1631283 +5132200 +14901606 +11839123 +13957237 +17810736 +19360655 +5233780 +18696123 +11619578 +18095816 +12887694 +810121 +97748 +11517998 +7110067 +4626264 +20183783 +12555428 +18122686 +892696 +7604206 +15146054 +5782314 +16600947 +635140 +8403742 +2292538 +10180415 +12558705 +18347473 +449674 +16171033 +19077541 +19476653 +17587914 +20498355 +2322685 +20198201 +3033092 +4569904 +3782165 +14085031 +19238103 +5849816 +20413158 +15055615 +20808994 +10378332 +18403178 +18780009 +5185939 +18798359 +6193878 +1035564 +9522436 +15458004 +11748684 +10056552 +18852098 +10366536 +13062019 +12639969 +11707396 +12407973 +10464840 +2013356 +15002531 +17689495 +10565764 +5753478 +7797537 +289767 +3019984 +7849965 +18210503 +10752541 +582056 +3014086 +16865711 +4509611 +8914265 +4048895 +15564827 +20991838 +18072878 +5650587 +17525000 +13480137 +10981916 +4611846 +13125589 +14875392 +16412859 +15378051 +11092016 +3873259 +8489594 +9136431 +19901980 +6395073 +2363317 +16024233 +12276902 +11504236 +19236137 +17998168 +2302369 +445087 +12666839 +793737 +10342288 +11624166 +9169854 +7269319 +2329238 +3304409 +18164628 +2215861 +8112108 +16648788 +7231308 +13697060 +11499648 +14336033 +13136730 +17402448 +9975288 +4770443 +18862584 +7611415 +8508599 +20364006 +10688316 +411664 +1838376 +1580165 +17371647 +4750782 +10315418 +14211515 +8606247 +7624522 +8918852 +14048987 +13136074 +8964072 +7806056 +15926584 +11592053 +2208652 +16645511 +10143059 +7380730 +553221 +768833 +10789897 +2484558 +4856295 +12347025 +8498113 +2329894 +13193091 +3351595 +18853409 +12812328 +10993057 +18890764 +20456412 +3304409 +20269635 +19984555 +16846050 +13488001 +18038800 +12894903 +16255574 +12764487 +17171107 +13250762 +13082991 +12200880 +12406662 +6682774 +1286565 +16300793 +20362040 +14029981 +17683596 +13904808 +2134597 +14815099 +9127256 +3523954 +4726534 +8840210 +15479631 +16206422 +9249152 +12563948 +11367921 +2372492 +15382638 +12397487 +6026762 +18173148 +394624 +15187342 +1913086 +19468789 +3016708 +3275574 +3355527 +21086865 +13417878 +20297815 +19550053 +15374774 +5496578 +1838376 +16924038 +21146503 +7460028 +6604787 +1399287 +640383 +10046066 +11264375 +13791431 +15591042 +16387300 +10502195 +4120329 +16426622 +11379718 +14948792 +12314257 +772765 +4254022 +1331129 +19784671 +21174683 +8093103 +8798922 +6735203 +5121059 +2625459 +6283007 +9175097 +5446116 +1741383 +4003020 +1827235 +6682774 +14357660 +12510209 +2200788 +12809707 +20076960 +268796 +7272596 +14411399 +5967780 +11495061 +7716928 +2355452 +14118455 +15437688 +13252728 +12546909 +10055241 +13902842 +11932184 +3795272 +15607426 +21142571 +11673318 +4321523 +15664442 +13424432 +974615 +6820399 +17973920 +20738215 +20066474 +4660998 +11654968 +6993414 +7616003 +14201030 +10307554 +11805044 +814053 +3360770 +11277482 +6949505 +10354740 +932017 +14019496 +5020789 +19270871 +6104750 +15013672 +2199477 +6986860 +15653301 +14807235 +13511594 +18026348 +3006877 +19050016 +18699400 +4957220 +16315866 +4685246 +12666184 +1874420 +15001876 +4956564 +83985 +14398947 +19917708 +5218052 +20753288 +10716497 +3332590 +17956225 +2365283 +903181 +7967274 +7543258 +21156988 +9255706 +7204439 +11649070 +15509777 +12775628 +17159966 +977892 +5413348 +15588420 +15694588 +17547282 +13179983 +10327215 +7260799 +4305139 +8186163 +17741268 +3401402 +16644856 +15903647 +19976035 +102991 +13851069 +5351089 +264208 +993621 +6946883 +17334291 +11852886 +17259581 +18666632 +18763625 +16451525 +7379419 +9256361 +9838974 +16322420 +9663338 +18396625 +19712582 +5558182 +1202680 +11224398 +2030395 +6961301 +15397711 +880899 +17580050 +20718555 +8704551 +21453210 +6769937 +968717 +8784504 +8342138 +11614336 +8573479 +13210130 +18916978 +21118322 +11940703 +20592726 +12980100 +20537021 +21087521 +6885935 +12433532 +19713237 +5322909 +13971655 +10004779 +18203950 +546667 +12970925 +16926659 +4507645 +6880692 +10027716 +5972368 +11535037 +18213125 +14054885 +10894754 +3514779 +20569789 +12076362 +9813415 +3017363 +271417 +1148285 +3939450 +18546702 +13523390 +7737899 +5064043 +9579452 +14801992 +14704999 +21080967 +7849965 +11092671 +5931080 +10682418 +8988976 +3095350 +5790834 +3852288 +11012063 +1304260 +1391422 +15705074 +7043221 +7566851 +11320736 +14731869 +8115385 +13794053 +17031516 +2479970 +10811523 +15816484 +20597969 +14763326 +7064848 +8154706 +9402506 +15538613 +15298097 +641039 +5592260 +8926717 +15483563 +1193505 +2324651 +18401868 +3521988 +5680734 +7600930 +926119 +4561384 +3596043 +19188951 +10769580 +2976731 +19005451 +1095201 +15082485 +15166370 +2225692 +7212958 +19544155 +5182007 +21177960 +7223444 +13539774 +19687023 +9535543 +11331877 +6639521 +6030694 +14533296 +5977610 +9425443 +12043594 +8283812 +17920836 +15698520 +16614709 +12189084 +12115028 +10900652 +3742188 +6315775 +5209532 +20845694 +1565092 +8262840 +14168917 +10839048 +11879755 +8121283 +7121208 +14349796 +2616285 +15207002 +12787425 +671840 +17622648 +10559866 +18731512 +11066457 +17895932 +17918214 +8064267 +8384736 +2526501 +1268215 +1051292 +12622930 +2009424 +16437108 +296321 +10356050 +19758457 +2694927 +6601510 +17228779 +8390635 +6906907 +4158339 +17673766 +21037058 +11457705 +17767482 +10704700 +1484483 +8164537 +11877789 +14816410 +19120794 +4796657 +13320230 +3134672 +4468979 +5117127 +12780871 +8389324 +6021519 +14145980 +5408105 +3790029 +2702792 +2179161 +4782239 +14124353 +13482758 +8111453 +4076420 +20203444 +10918347 +14963865 +19303639 +3609806 +15085761 +14358971 +16675657 +16981054 +3510847 +244548 +9281920 +4031856 +13575819 +7957444 +17751098 +6148659 +8576756 +3335866 +8303472 +7326990 +12761210 +17163898 +18246548 +11331221 +622033 +7523597 +2508806 +10865263 +2829276 +17138995 +19282012 +13145249 +21442724 +918255 +9194102 +17871684 +2042847 +19618866 +831747 +4643304 +13777014 +3048820 +18510657 +19052637 +4474221 +14951413 +9717733 +6503862 +11981336 +8238592 +13009591 +19860692 +5595537 +2715243 +3332590 +20466897 +2526501 +17566943 +612203 +6016276 +19806953 +3546891 +7429226 +6942296 +12663562 +9088590 +18042732 +19089337 +4017438 +9228836 +8156017 +15618567 +19242691 +18114166 +18848166 +20018633 +9395297 +21359494 +7846033 +18108268 +21272331 +5422523 +11050073 +13008280 +2943963 +6813190 +8319201 +981169 +18528352 +7336165 +14950758 +315326 +3141225 +6201087 +7613381 +18524419 +3586868 +9301581 +12888350 +4142611 +14261322 +8799577 +10133884 +11973471 +10224979 +15435067 +19780083 +5319632 +17061663 +1958306 +7277183 +17962123 +3445311 +13369382 +16773306 +13514215 +15841388 +1717135 +14420574 +14598831 +19147664 +6217471 +5685321 +11280104 +13025975 +213746 +13967722 +6437016 +16574077 +4268439 +12441396 +8163881 +18646316 +1664706 +19185675 +4765855 +1870488 +19365242 +18039455 +11597952 +8813340 +18093850 +1137144 +10580182 +14751529 +19018559 +10304932 +473923 +4993264 +3308341 +838301 +235373 +21208762 +12056702 +6123755 +8778606 +16373538 +4316936 +18612893 +21162231 +12915875 +8108176 +1190228 +18638452 +17134407 +14777744 +2768327 +11092671 +12681257 +1241346 +19084750 +6374101 +1559849 +2936099 +2014011 +6515003 +7423328 +20718555 +1968136 +12712059 +9620740 +6663114 +9184927 +10219736 +1941267 +12632760 +15347249 +933328 +15663786 +16439729 +11654968 +11850919 +209814 +3398125 +15292854 +18354027 +2307611 +11338430 +12225128 +11141168 +89883 +8234004 +15621843 +16895857 +4826148 +19173223 +20483281 +886797 +1472687 +6752898 +10808902 +19929505 +18615514 +7530151 +14636187 +17022341 +6356407 +7132349 +19688989 +12641935 +5993994 +13708201 +2662159 +19590030 +10882302 +5599469 +13735726 +6876105 +2314820 +19643114 +10987159 +12613755 +10785309 +13022042 +9083347 +1287221 +20757221 +1317367 +681671 +16328318 +20266358 +19760423 +175735 +8604281 +13484724 +2328583 +11827982 +20626149 +18394003 +6151935 +14204306 +21155022 +18030280 +16868332 +20664815 +5609955 +16292929 +20107762 +7176914 +545356 +16448249 +4233705 +3422374 +7775910 +8910333 +21168785 +9624672 +20350244 +1165324 +13398873 +13581717 +17087877 +4629541 +6416044 +6564155 +3468249 +11305007 +9622706 +14858353 +5581775 +3876536 +10220391 +2673956 +20502287 +10631956 +4387059 +6779767 +1603103 +12628828 +20776881 +14999254 +11006820 +15143433 +16223461 +13358896 +16410238 +4914621 +6695882 +14649949 +1340304 +19331164 +12746792 +20769017 +16404995 +6113925 +10702734 +10768270 +3078967 +295665 +5699739 +14337999 +5426455 +17880204 +9801618 +19076230 +13862 +21175338 +19827924 +7484931 +2352831 +20909263 +14343242 +886142 +2258460 +4402788 +21726 +19662774 +21387019 +12601959 +19456992 +8813340 +17138995 +12302460 +310083 +3291302 +12082260 +15204381 +2112315 +2308922 +1297051 +4243536 +10466150 +20337792 +16790345 +11462948 +6766660 +20215240 +8747149 +15230595 +50562 +2820756 +8682269 +1084060 +18953023 +1667983 +19497625 +4322834 +8083928 +20662194 +11618923 +6184048 +13341857 +6967855 +7079921 +17120645 +20657606 +4605948 +7962687 +4265163 +4493882 +903837 +8760256 +18078777 +1550674 +19441264 +20866010 +3461695 +14396326 +14569340 +5163002 +15410163 +11435423 +13764562 +5978921 +2357418 +21210728 +19950476 +17327738 +6142760 +7636974 +12670771 +3531163 +6174873 +18071568 +11216534 +13175396 +20495078 +11656278 +1734174 +13929056 +13442126 +10156166 +13521424 +9934000 +7874213 +203916 +17694082 +4888407 +16070763 +14429749 +19339028 +7448887 +15469145 +13659049 +16329629 +7146767 +12864101 +19128659 +2639877 +10076213 +15194551 +9527679 +11464259 +19588719 +14971729 +10352773 +10910482 +8313303 +1753179 +19219098 +12632105 +2954449 +335642 +1342926 +12902767 +6060841 +18220989 +6870207 +19126692 +5079771 +10413066 +13862 +17502063 +7619935 +1782015 +10019852 +5992028 +9653508 +2620872 +653490 +12738928 +7375487 +7953512 +3799859 +9330417 +2399361 +16849982 +21248738 +4125572 +3636020 +18739377 +4027923 +10293791 +18475923 +11800457 +14652571 +1991074 +15160472 +428703 +1191538 +4284823 +20753288 +15393124 +18654835 +759003 +14468415 +17764861 +4486673 +19162737 +17005302 +9424133 +8090481 +14601453 +14157776 +17936564 +2644465 +18019139 +7982347 +20917128 +7333544 +19136523 +5586362 +14541815 +13338580 +8649501 +2596624 +12149107 +12196948 +13924469 +7605517 +5798698 +6431117 +16121225 +14312440 +20320098 +417562 +12483339 +10614261 +13552882 +1698785 +4341184 +17275309 +9999536 +9253740 +2780779 +9185583 +6855789 +18920255 +4316280 +12498412 +18160041 +1013281 +7043876 +15909545 +10766959 +9175752 +19616900 +10833150 +11998375 +10442557 +4669518 +13495865 +13826165 +3573106 +9679722 +18624689 +17860543 +15625120 +18874380 +16929936 +17798284 +6967855 +15387226 +4575802 +5904210 +4839911 +2027774 +9471318 +14939617 +1736795 +18894696 +19622798 +2922992 +3152366 +13570576 +10180415 +163939 +18660734 +10149613 +18842923 +3845079 +15790926 +3339143 +15282369 +18098437 +17221570 +2413124 +8173056 +4033822 +17159311 +16330284 +6638866 +8821204 +4800589 +18249170 +533560 +2052022 +6955403 +2868597 +5855714 +10610329 +8245145 +3038990 +17595779 +15852529 +4550243 +7263421 +2223726 +11049418 +5162346 +9613531 +8323788 +5018168 +3103215 +4821561 +12194982 +4822871 +8228106 +9762297 +6429807 +21166819 +12261173 +9973977 +12693709 +510623 +1850828 +19810230 +11341052 +6709644 +17639032 +4553520 +5956639 +19332475 +10369813 +3394849 +697399 +15053649 +7413497 +8345415 +1167290 +21408645 +18618791 +2409847 +9960870 +14724660 +1597860 +12729753 +20240799 +17246473 +2540918 +2203410 +21432238 +7565540 +19579544 +13651185 +20397430 +20847660 +5442184 +3466282 +6279075 +10026406 +7389905 +15057581 +12694364 +16238534 +2181783 +170492 +12197603 +4935593 +3883745 +2812236 +11441321 +1844274 +2265013 +13878594 +17532209 +14054230 +8951620 +17924768 +7777876 +5337327 +5301282 +12626862 +2833208 +12266416 +4746850 +6982928 +10358016 +4532548 +2095931 +15024813 +3620291 +5506409 +1063744 +8129147 +2816824 +12030487 +21371945 +14511013 +15505190 +14737767 +18984480 +6859721 +11303696 +1477274 +7382040 +2921025 +9378258 +8926061 +12776284 +19992419 +2893500 +19053948 +850753 +7481655 +13699026 +1763665 +9228836 +21264467 +1432710 +7732001 +478510 +12379793 +6199776 +11483920 +13451301 +9191481 +12798566 +10025750 +20402673 +1122726 +1545431 +12630139 +3250015 +2456377 +17264168 +19096546 +21726 +12322776 +12831334 +8614767 +12090780 +5768551 +7500660 +15075931 +17148170 +15631018 +15762745 +10328525 +1410 +10614916 +7783774 +14805924 +9926791 +15836801 +1420258 +6699158 +6326916 +9441172 +9992327 +6161766 +16832943 +20073683 +10232843 +13089544 +4520752 +1772840 +19660808 +3159575 +11332532 +18434636 +18311428 +4274993 +17323805 +13761285 +18814743 +7122519 +18400557 +20973488 +19744694 +11166071 +19872489 +2302369 +17399172 +2733593 +18974650 +739342 +4197005 +16196592 +17296936 +8799577 +2721 +10467461 +7416774 +568294 +1620797 +12470887 +17622648 +4225186 +4132125 +2115592 +8708483 +17067561 +806189 +11893518 +7361724 +5304559 +7880767 +1532979 +12436153 +5394998 +20932856 +2308922 +15684758 +10844947 +13569265 +5536555 +16828356 +4840566 +14010321 +3953868 +9478527 +15912167 +5212153 +4117052 +11055316 +20123490 +6228612 +10486466 +5839985 +17956880 +16045204 +14081755 +3165474 +2017944 +5765275 +7860451 +15450140 +14880635 +5468398 +18738721 +7753628 +13193091 +20652364 +6621826 +10112257 +16533445 +17838261 +6902319 +14836726 +20931546 +14907504 +1725654 +345473 +5199702 +353992 +3849666 +4370020 +3918479 +17665902 +10202697 +8289054 +16884061 +10170584 +8320512 +6389830 +8021013 +20254562 +14872770 +343507 +21272331 +16175620 +7365001 +13522080 +751794 +4796002 +7374176 +15766022 +8386047 +4101323 +4615123 +3548857 +18316016 +18448398 +1674537 +18781319 +2755220 +19890839 +19024457 +7604206 +3966320 +14106003 +18043387 +11071700 +5122370 +1003451 +11133959 +9263570 +3372566 +15904958 +16032752 +18103025 +11985268 +18428082 +16028820 +18108268 +8341483 +8243835 +12667494 +13712789 +5615853 +5980887 +10549381 +17130475 +7232619 +20758531 +20791955 +19177810 +447053 +7686126 +8668506 +20196890 +5845228 +1236758 +835680 +11696911 +16986952 +19818749 +19969482 +3341109 +18780664 +13336614 +19272182 +7351239 +4725223 +7428571 +65635 +10548725 +9795720 +7491485 +12481373 +17903796 +14688615 +9452313 +7722826 +4523373 +17382132 +2528467 +15002531 +10285927 +20343035 +10281995 +10325904 +20782780 +14592933 +12262484 +14663712 +19083439 +9616808 +7292256 +3417131 +2321374 +18514589 +17734714 +14405501 +4016782 +4446041 +16631749 +14803958 +2027119 +19882319 +6551048 +152798 +10750575 +7842756 +17268100 +14722038 +1236103 +12027866 +14912747 +8007906 +12264450 +7334855 +5096155 +11209325 +10143059 +11760480 +526351 +11590743 +10607707 +13299914 +6778457 +8583310 +20575687 +7780497 +18849477 +16074695 +12488582 +3351595 +10370468 +816019 +4396889 +8409640 +15472422 +15323001 +7544569 +8990942 +6008412 +21276263 +500137 +16844740 +7732001 +5392377 +13730483 +937915 +7800813 +12623585 +11205393 +19833823 +11310905 +11461637 +18005377 +2624804 +13982140 +10770236 +8720935 +11246025 +12470887 +20804406 +5613232 +2369870 +12704194 +20140530 +8709138 +7593065 +7396458 +15089694 +13514215 +7821130 +11980680 +9732806 +17694082 +12543632 +1270837 +16095011 +14710897 +6442914 +7893874 +8493526 +4618400 +16336838 +10039513 +16000640 +19995696 +3851632 +19913121 +20845038 +3945348 +8616733 +428703 +6999312 +10596566 +11153620 +45974 +20060576 +6685396 +4688523 +4453250 +2854834 +2345622 +2744079 +2368560 +19481241 +4440143 +20772294 +378896 +9460833 +5164968 +16387956 +11651036 +6834162 +14651260 +19729621 +11124784 +8814651 +6705712 +9018467 +10881647 +20820135 +1157460 +20533089 +12067187 +20843728 +1627351 +5128923 +8533503 +4900859 +12192360 +6411457 +13337924 +6852512 +2082824 +895972 +4084284 +18104336 +20409226 +18216402 +15946245 +1139765 +7936472 +10563798 +20649742 +8279879 +1818715 +3510191 +13544362 +19812851 +1146974 +18883555 +11450496 +6800083 +17412934 +1198747 +18346818 +4503057 +7253590 +11396102 +5185284 +14554922 +18294389 +17465363 +3835904 +15720147 +9228181 +18135137 +17867752 +8753702 +18565707 +1021801 +476544 +10136506 +14326858 +20430853 +10297068 +6084434 +13208819 +3586213 +840922 +17837605 +16263438 +21457797 +20010114 +10456320 +6013655 +10178449 +17740613 +10873127 +3006877 +1356033 +16743815 +17110159 +18725614 +19063778 +16196592 +21452554 +10218425 +14622424 +18284559 +8673094 +16973190 +6271866 +19889528 +15863015 +5572600 +277971 +15724734 +7592410 +10678486 +10903929 +5546385 +18035523 +11984612 +13474239 +8778606 +13130832 +6830885 +19123416 +14763981 +10305588 +18776077 +19556607 +832403 +16218874 +7892563 +11884343 +10810213 +19399321 +2899399 +2190958 +18154798 +6249584 +12888350 +4610536 +17293659 +1086026 +17266789 +20489835 +2943308 +12766453 +21181892 +14395015 +1808229 +17433905 +2596624 +391348 +9700693 +10255781 +17458809 +19147009 +19969482 +19456992 +9960870 +11896794 +17747821 +8155362 +2346277 +16064865 +18531628 +8264806 +17999479 +1396665 +4123606 +3963043 +4240259 +7620590 +6264001 +16351911 +10513336 +9853391 +19165359 +14188578 +7918778 +978547 +12763832 +16414825 +13795364 +17864475 +7074023 +11358091 +14686649 +20824722 +7002589 +15389847 +7792294 +18899284 +15718181 +3284093 +19310192 +6779767 +11829293 +11585500 +11755893 +20047469 +1090613 +18385484 +11104468 +3395504 +6412767 +8188785 +773421 +13251417 +21004946 +18532939 +20659572 +19984555 +3164163 +18717750 +18259655 +2902675 +1973379 +18582091 +18925498 +11242748 +19970137 +21471560 +11961675 +3910615 +2696238 +4587598 +12253964 +140346 +12162869 +13301224 +16239845 +10249882 +7781153 +15759468 +11277482 +20963658 +445087 +12378482 +14916024 +19869212 +3329968 +3617015 +2473417 +11356780 +8226795 +9960215 +78087 +8608869 +12251343 +5215430 +8306749 +18424150 +1647667 +100 +12092746 +3426306 +3411888 +7667776 +21216626 +10244640 +4082318 +709196 +10505472 +18732168 +18223611 +19367209 +4700975 +1443851 +20053367 +3635365 +5320943 +6140139 +20734283 +4299897 +4470945 +20398085 +4782239 +591887 +19171257 +10914414 +8111453 +1587374 +4583666 +3955179 +8222208 +2529122 +9219006 +19717169 +16424656 +743930 +1010005 +6228612 +21124876 +7410876 +6491410 +15050372 +274039 +2161467 +13463753 +12788080 +17070838 +2978042 +199328 +170492 +15741118 +5111228 +14013597 +4499780 +18652869 +4416550 +18019139 +15947556 +19485828 +9171820 +8705206 +13306467 +16022267 +19542844 +15781751 +20827344 +14119765 +7602896 +14491353 +19637871 +16971223 +5938944 +6068705 +20432164 +2989183 +15610702 +17374923 +13562712 +13796674 +13305812 +17697359 +17316597 +12073085 +4670829 +19130625 +4939525 +17273998 +17120645 +14935685 +17086566 +7184778 +585989 +816019 +4037098 +7416119 +1931436 +12680601 +5000473 +7134971 +1700095 +17814668 +15581211 +15764056 +15130326 +1043428 +406421 +6305944 +17904452 +18390727 +3269020 +17093120 +19398666 +1469410 +17234677 +7283081 +15693277 +8523672 +18030936 +17072804 +16268681 +18167250 +16434486 +13217994 +5486748 +4682625 +17591846 +13761285 +11314182 +13699681 +679049 +1410428 +13532565 +10753852 +103646 +4736364 +14229865 +16104186 +15123117 +6936398 +2797163 +19137834 +870414 +18388105 +9392020 +13953305 +11255200 +15698520 +561085 +14515601 +16600291 +19039530 +4257954 +4420482 +3342420 +10475981 +3203484 +1791845 +7503937 +8030844 +5291452 +1080783 +2080858 +19663430 +1792501 +15229940 +20187060 +20112349 +7309951 +1448438 +4611191 +18371066 +21087521 +1438608 +1842308 +15149331 +17725539 +146244 +19431433 +4002364 +173114 +5675491 +14410088 +8730110 +8313303 +4758646 +18835714 +10099150 +8630495 +17252372 +11190975 +12187118 +9244565 +11424937 +12146485 +15489461 +3688448 +10884923 +13425742 +18255068 +1800365 +4582355 +3518711 +6451433 +8817927 +12211366 +21122254 +10884268 +17771414 +2352176 +6117201 +20076960 +5098777 +15667063 +1735485 +20689719 +16067486 +18705298 +5290796 +18530318 +7805401 +12418459 +21109147 +11282725 +8960140 +6841371 +21067204 +2211274 +6097541 +20980697 +1298362 +4517475 +8485006 +19995040 +12271659 +18222300 +2022531 +13147216 +7209026 +15140811 +7731346 +9859945 +8814651 +21208106 +19997662 +14402224 +9786545 +9603700 +18507380 +14242317 +21180581 +16041927 +859928 +13740969 +6225335 +17884791 +15054960 +3798548 +6281696 +9926791 +9989706 +5026687 +3272952 +11767034 +20030430 +10635888 +18543425 +10131263 +7878801 +9557170 +13963135 +555187 +10637198 +1892770 +9326484 +2935443 +20674646 +15412129 +3337177 +623344 +9977254 +13708856 +4854329 +21156333 +2017944 +5391066 +19392767 +7650737 +20026498 +8697997 +18379586 +21088831 +8952276 +9103008 +15327588 +14486765 +10981261 +15285645 +18732168 +19827924 +4706873 +7422672 +7330923 +10229566 +9926136 +12031143 +19653599 +20523258 +18501482 +11425593 +9570933 +3463661 +9648920 +7904360 +10759095 +4749471 +18121375 +15161783 +4077731 +5227882 +19726999 +17874305 +9299615 +13452612 +10666689 +15535992 +9953661 +14674197 +2189647 +19710616 +17960812 +15838111 +6395728 +13397562 +15672306 +7406944 +13867453 +20839796 +17570220 +17165209 +17467984 +17316597 +10709288 +12403385 +18576848 +20510151 +16167756 +18898628 +5680734 +7092373 +9107595 +19826614 +13366105 +17596434 +4127538 +3023261 +15431790 +7322403 +576814 +20366628 +17860543 +21084899 +8600349 +4942146 +19451750 +13330716 +908424 +4317591 +12608512 +20290606 +11052039 +17256304 +14181369 +5680078 +8435199 +6288250 +19695542 +718371 +7075989 +3609806 +21197621 +10316729 +16870954 +2274844 +3506259 +5542453 +15201104 +1110930 +16164479 +11080875 +20086790 +2691651 +21131429 +6515658 +13221271 +10694870 +49907 +15218144 +8844797 +19234171 +21128808 +13767183 +16796898 +19019214 +19342960 +14206928 +2419022 +12952575 +20769672 +16501988 +21154367 +1565092 +6419976 +11691668 +7743797 +16813938 +17542039 +12272969 +20631392 +14325547 +19874455 +11150343 +13459821 +3241495 +21446001 +17468639 +20169365 +9006670 +4356913 +6251550 +18852098 +12042284 +14813133 +16058311 +17277931 +15979013 +14796749 +16836220 +11791282 +1846240 +11443943 +18395314 +18897318 +7799503 +3084865 +20218517 +3038990 +4875300 +323190 +15332176 +7252280 +1632594 +4714737 +14016874 +9557170 +5221984 +10126020 +20919749 +5038484 +14037190 +16732674 +17242541 +8286433 +13094132 +15350526 +10413722 +3693036 +18437912 +17954259 +9649575 +10720429 +12883762 +6195189 +11289279 +12473509 +12650455 +2599901 +2621527 +580090 +21303788 +7430537 +3674031 +13573853 +3196931 +5879962 +5362230 +13752765 +19356067 +3326036 +16727431 +16571456 +13776358 +14157121 +15250911 +16913552 +15829592 +4837945 +12965026 +18912391 +10526443 +17370336 +10877714 +14311785 +6118512 +1378315 +11484575 +1300983 +1757767 +10464184 +12193671 +17652795 +19612312 +11898761 +20609765 +929396 +11536348 +8234660 +14488076 +7932540 +19454371 +20553405 +16157925 +4862193 +12989275 +9175097 +10955702 +18064359 +19730932 +11674628 +8303472 +7157908 +14625046 +15692622 +17946395 +14181369 +12070464 +18180357 +3740222 +14997288 +20488524 +3322104 +17001370 +5105330 +2301058 +11594675 +13484724 +3801825 +14473003 +10735502 +6944262 +14919301 +6844648 +20248664 +20412503 +14626356 +11744096 +6951471 +15707695 +4529927 +8843486 +3192999 +13904808 +7272596 +5469053 +8186163 +7477722 +21407335 +2872529 +16718256 +5697773 +6003825 +2136563 +14857697 +7256212 +19147009 +20860112 +7739865 +5477573 +972649 +16604224 +4957220 +13374624 +12571812 +10366536 +7155942 +20625494 +13405426 +5411382 +5267859 +20055333 +10036236 +16202490 +14504460 +15700486 +2401983 +17520413 +4210113 +21188446 +2105761 +21124221 +3415820 +3459074 +21385708 +4149164 +6950815 +16789690 +6599544 +3970252 +4911345 +9701349 +1422879 +17830396 +18041421 +671185 +19685712 +477855 +10851500 +19339028 +20414469 +6138828 +16000640 +15215522 +1874420 +16458734 +19651633 +11034345 +5889137 +16117293 +5741027 +15568104 +6277109 +8089171 +9524402 +16007849 +9559136 +14849178 +19997662 +15681481 +19643769 +15202415 +11041554 +7727413 +1383558 +13354308 +5325530 +819951 +10093907 +18098437 +21314929 +9029608 +20643844 +21376533 +692156 +14552301 +9744602 +11777520 +17506650 +8655399 +18325191 +4852362 +7373521 +12202191 +17485023 +18444466 +5229193 +9313377 +13562057 +17864475 +1113551 +17630513 +1076196 +16791656 +15942968 +14009665 +5807873 +15155885 +661355 +3529852 +20040915 +2814202 +10408479 +15057581 +7806712 +10927522 +20879117 +10626713 +18385484 +10363915 +10299034 +7247692 +6078535 +4092804 +17795007 +11871891 +17280552 +5535244 +7017662 +3701556 +20732972 +13597446 +18879623 +15533370 +20526535 +19963583 +12785459 +11462293 +6901008 +9042715 +9045992 +20654330 +19333130 +7626488 +17773380 +9766884 +5816393 +15796168 +1865245 +18144968 +10520545 +4988021 +3611116 +16904377 +8664574 +8036087 +16835565 +16028820 +6674910 +14643396 +13259937 +9433308 +5660418 +19230239 +5648621 +2956415 +16763475 +20506874 +19566437 +15881365 +5590950 +19074919 +6619205 +295010 +18711852 +5675491 +507346 +19858726 +4358879 +7865038 +11896794 +9534233 +9812104 +15934449 +6382621 +16176931 +9897300 +6180116 +19894116 +5322253 +6141450 +11192286 +4205525 +5227882 +16079938 +4295964 +15237149 +17087877 +12442051 +20251940 +14690581 +11523241 +11529139 +188842 +5088291 +20072373 +5433009 +19091303 +4961807 +19019869 +1846895 +18743964 +4465702 +843544 +16433175 +5103364 +9433308 +16499366 +2317442 +4800589 +13512249 +4020714 +12665528 +9594525 +6410801 +2687063 +1078162 +19529737 +8182887 +9886815 +6727994 +5593571 +1394044 +15526817 +142312 +9998881 +8777951 +7954167 +7686781 +11619578 +16421379 +13819612 +5415969 +10919002 +11578291 +8791713 +7068124 +4859571 +6937708 +19240725 +8662608 +5475607 +19799089 +15590386 +21219903 +8827758 +6835473 +3347663 +4364777 +3595388 +2065129 +19883630 +18249825 +11916455 +7741176 +13489312 +20005526 +15522885 +14632254 +21428306 +8701929 +17469950 +2048745 +760314 +9450347 +6604787 +14912092 +7820474 +20812926 +10656204 +17902486 +15702452 +17446357 +5085014 +10532341 +1218408 +3288025 +13909396 +17271377 +20153637 +13950028 +19306916 +7080576 +380207 +20671369 +16218874 +727546 +2417056 +21044922 +553876 +12212677 +11281414 +11166727 +12467610 +18262932 +9228181 +17059041 +1843619 +10234809 +15990809 +8851351 +2513393 +262898 +8595761 +4430313 +17287761 +14531329 +8661297 +14240351 +14422540 +9915650 +13034494 +5092223 +17409002 +4571214 +12722544 +7120553 +1540844 +15129670 +12200880 +4858916 +8614111 +5173487 +14866872 +15758813 +21427651 +17464052 +15594318 +18600441 +9452968 +7408255 +9086624 +6253516 +9440517 +1210544 +12039662 +18525075 +8094413 +10285927 +448364 +58426 +5988096 +3270331 +17751098 +4724568 +8371629 +11443943 +11555353 +11660211 +21386363 +3179891 +19712582 +3245427 +14101415 +11261754 +5788868 +21141260 +10778755 +19831201 +7637630 +13157046 +16080593 +8913610 +6511071 +3125497 +2060542 +6867585 +8611490 +9991672 +3240840 +11850919 +4204870 +12086848 +11743441 +19192228 +17049866 +5553594 +19440608 +15750949 +16617331 +1914397 +6449467 +6364926 +13236344 +13777669 +8193372 +19367209 +1268871 +2488490 +17415555 +5951396 +6019553 +8536124 +3674686 +9848149 +6865619 +9035506 +21463040 +6710955 +13772426 +2240110 +2292538 +4426380 +5277034 +13756698 +17916248 +18471336 +5084359 +9010602 +8741906 +19636560 +5370094 +7920744 +837646 +5102053 +13935610 +21276919 +20317476 +10999611 +19200748 +18861273 +19848241 +2713933 +21336556 +21268399 +13910051 +19401942 +9419545 +10064416 +7401701 +15049717 +11443287 +5928459 +116753 +8779261 +11156241 +9434618 +16771995 +8199926 +8892638 +3776266 +15602183 +17863164 +20369905 +14752840 +11750650 +4640682 +11436734 +19289221 +10779411 +3233631 +13725896 +19933437 +2624804 +18890764 +11168038 +12183185 +19341650 +17909695 +14116489 +11752616 +13044325 +6596267 +18427427 +18965475 +8357867 +16819181 +8531536 +1474653 +6617894 +20302403 +2496354 +8730765 +10226945 +19285289 +18944503 +5469709 +9476561 +13583028 +6771248 +10084732 +21088176 +5763964 +4080352 +17790420 +20759842 +2184404 +8927372 +15260742 +9299615 +21272987 +95126 +17630513 +11698877 +2369870 +19986521 +5032586 +12488582 +13075126 +6237132 +11692323 +13275666 +4158339 +14274430 +8527604 +1071608 +3902750 +2042847 +4069211 +13293360 +939226 +12380448 +4658377 +2154258 +20902710 +10170584 +1027699 +6456676 +11026480 +16485604 +8779261 +11366611 +16536722 +11588777 +7736588 +4189797 +5269825 +12792012 +962164 +14756772 +17643620 +13777669 +16940422 +4181277 +19878387 +19591341 +18019795 +13370692 +8755013 +14235108 +11059248 +5568668 +3498395 +9165922 +1253142 +7564885 +629898 +9625983 +20654985 +5334705 +21304444 +4174068 +1217097 +5478228 +4837945 +7604206 +3048820 +18854064 +76121 +4923141 +9359908 +12715335 +287801 +19854794 +13533876 +17234677 +2077581 +5218707 +17835639 +3236908 +20552094 +14862940 +3461040 +17661314 +18454952 +10909172 +6837439 +310739 +18394003 +2220449 +18291112 +4626920 +12263139 +18156109 +9775404 +9821934 +1408462 +12242823 +1055224 +4170136 +17872995 +15866947 +20079582 +20691685 +9289129 +13841894 +17248439 +10478602 +17577429 +12287387 +18800980 +7982347 +18620757 +6887901 +20705447 +1068987 +3411232 +21328692 +15627742 +3109113 +11410520 +9875018 +19443885 +19081473 +9449692 +8629185 +17430629 +16412859 +14095517 +7326990 +18706609 +555187 +7202473 +12095368 +10226945 +5368784 +21124221 +7257523 +20370560 +12417803 +7703821 +7436435 +18991689 +17274654 +17857266 +15418683 +14311785 +20703481 +5221328 +12600648 +9090556 +12504966 +16888648 +12231027 +4656411 +5061421 +20293883 +1624729 +15883331 +12568535 +416907 +18300287 +6515003 +11516687 +5860957 +14438924 +8579378 +14628978 +4885130 +12290664 +13176051 +14647983 +3038990 +11664143 +3733668 +16081904 +4298586 +1809540 +19685057 +18668598 +9672513 +11259132 +20365973 +20346312 +230785 +11076943 +16884061 +10870505 +12630139 +13106583 +5558837 +2384288 +17880859 +6853823 +20353521 +3652404 +12048837 +12186462 +9690208 +5758066 +8183542 +20327962 +5400241 +14804613 +16044549 +14427128 +10025095 +6149969 +21026572 +13986072 +5793455 +7530151 +5906832 +12296562 +5419902 +13781601 +5355677 +8871667 +11168693 +4951321 +599751 +6024141 +17080013 +6730616 +9241943 +21248083 +6708333 +14024739 +5848505 +6034626 +16835565 +17245163 +6822365 +1951097 +4766511 +16562936 +19590030 +16589806 +19164703 +6001203 +17839571 +14645362 +4014816 +5895691 +7895840 +639728 +14840003 +18213125 +4377884 +8744527 +4963773 +4736364 +1696819 +19158150 +3895541 +20307646 +17243852 +3040300 +17426697 +21309687 +13648564 +8089826 +20541608 +18455607 +12174010 +14313096 +16983675 +8163226 +11372509 +8950965 +21175338 +7987590 +1579510 +10104393 +764901 +16937145 +11493750 +15574002 +565017 +11396102 +4976880 +14497251 +13709512 +12223162 +15298752 +16800175 +14077822 +11643171 +12826746 +1833788 +16442350 +10224979 +766212 +20390876 +20059265 +17007268 +6752898 +7863072 +2798474 +5360264 +13921192 +15193895 +14804613 +21236287 +14657158 +7351894 +1921606 +6917392 +15907579 +418873 +9157402 +9335659 +7452164 +9126601 +7884044 +13974931 +1186296 +17599055 +18523109 +8989631 +2495699 +3478079 +8625908 +14477590 +300253 +13436883 +1886872 +15820417 +8642947 +19621487 +6843337 +8473865 +10170584 +5982853 +7522942 +7228031 +6200432 +14048331 +11348261 +12561326 +2227002 +17275309 +10003468 +1867211 +4720636 +19251210 +20375148 +2592692 +8395878 +8661952 +18327157 +14429749 +6850546 +15967872 +18310118 +9388088 +5754789 +12083571 +4199627 +13117724 +7068780 +1380281 +7313883 +2388876 +7885354 +6343955 +15526161 +8644913 +3854254 +17049866 +9420856 +12212021 +19320678 +10805625 +2689029 +17075425 +3791995 +7735278 +17634445 +19668673 +3421718 +9979875 +1835754 +3871293 +17633134 +5020134 +3388950 +19268905 +13989349 +9646954 +9468697 +2424265 +5349778 +12975512 +1865901 +20980042 +18184945 +9759020 +20783435 +20522603 +6408180 +3883090 +17452255 +11724436 +12039007 +1503488 +16999404 +13925780 +4293343 +2539608 +7047808 +5460534 +20535055 +10003468 +9066963 +12951264 +19205335 +1447783 +5642723 +10046066 +3744154 +10850845 +8892638 +15516986 +20897467 +7541947 +7617313 +18260966 +12596716 +21119633 +13988694 +11722470 +5269169 +5696462 +11791282 +1521183 +14486110 +21272331 +5543764 +11108400 +19946544 +10820698 +15465213 +13640044 +11466225 +8591174 +2864665 +8182887 +10019197 +15259431 +414940 +18109578 +63669 +10352118 +2392152 +15051683 +20791955 +3308341 +18198707 +18711852 +8950310 +13777014 +16034718 +10834461 +5936323 +11359402 +9723631 +21012154 +21174028 +6049044 +15554997 +1141076 +14139426 +18930741 +3297856 +18017829 +17197322 +17009234 +19221719 +15806654 +2621527 +14184646 +3984014 +21466972 +9875018 +14217413 +20087446 +1934058 +7680228 +19175844 +3751363 +9900577 +6958024 +15439654 +13589582 +20275533 +6528766 +10411756 +5047659 +8273981 +8492870 +10553968 +17091809 +14795438 +7304053 +13893667 +14841313 +19921640 +17643620 +14984181 +16954840 +14415331 +2176540 +9574865 +9141018 +4163582 +508657 +18445777 +14924544 +15323656 +19778773 +10291170 +18302909 +6912149 +9686275 +799635 +2044158 +16290963 +19255798 +14539849 +11021893 +14796094 +20614353 +15016294 +10410445 +13719342 +12489893 +4879887 +6481580 +5242300 +17549248 +15125083 +6554980 +20855524 +6466507 +13451301 +6663769 +20709380 +7076644 +8971281 +12996483 +3783475 +2020565 +18372377 +6494687 +9393986 +2084135 +20383012 +6988826 +13375935 +5997271 +14627012 +17417522 +12210710 +19166014 +11073011 +4491916 +19287910 +13889080 +1730242 +18489030 +8859870 +3540993 +19974069 +7237206 +4324800 +5891103 +17032827 +6792219 +2805683 +3620947 +4609880 +6171596 +18550634 +20807028 +21383742 +18327157 +1561160 +15402954 +7274562 +19789258 +21330658 +7149389 +2227002 +11992477 +21137328 +12079639 +1770219 +17041347 +5229193 +9788511 +14956656 +3220524 +7271940 +8547920 +532905 +3991879 +15222731 +4944768 +12208089 +17751754 +17042002 +10490398 +14112556 +16517716 +20268324 +6308566 +19434710 +15889229 +16616020 +19827924 +13342512 +19059191 +2305645 +12776939 +12513485 +1966826 +3811656 +10644407 +1563781 +10064416 +4997852 +12565259 +12791357 +18395969 +4488639 +4432279 +3636675 +12006894 +13352342 +737376 +13012867 +2806338 +7199196 +8437165 +14688615 +10401270 +7828994 +10161409 +13307123 +2206686 +7902394 +10371779 +15963284 +13611864 +21130119 +5562769 +16908309 +14020806 +14408122 +8027567 +14840003 +18713818 +4401477 +5741682 +7090406 +12346369 +10560522 +9360563 +1629317 +12246100 +18243927 +4473566 +12678635 +9104318 +8996840 +3045543 +16429899 +5862923 +18379586 +12197603 +4452595 +21240219 +20702826 +6879382 +3923066 +20985285 +9085313 +3756606 +8977835 +8398499 +5767896 +753760 +14448099 +968717 +6025451 +8407019 +10377677 +17289727 +20102519 +1905222 +21212038 +15870879 +1778738 +19975380 +5107296 +17357229 +21244806 +3254602 +19362621 +8193372 +19943267 +6339367 +16469875 +7564230 +20440028 +11074977 +20365317 +3016052 +128549 +18227543 +4435555 +7753628 +1194160 +10177138 +6117201 +9429375 +7755594 +10793173 +14374699 +20480005 +12296562 +6943607 +14596865 +21292647 +17041347 +732789 +6347887 +6263346 +5843262 +21358838 +13448024 +9931379 +18795737 +603683 +9203277 +1113551 +53183 +6565466 +12467610 +16164479 +2046779 +9512606 +19665396 +11252579 +8557095 +18057805 +6986205 +19523839 +2782090 +17226813 +11474745 +7158564 +15311860 +9758365 +9827833 +14172194 +5045037 +229474 +11644482 +16932557 +16631093 +8583965 +52528 +12340471 +16515095 +17099673 +7593721 +18335677 +1469410 +1785292 +3240840 +18241961 +17927389 +16665827 +7297499 +16048481 +20291262 +9510640 +2653640 +15402954 +1072263 +3175304 +16216252 +3502982 +20409226 +20463621 +3406645 +10369813 +9477217 +140346 +16913552 +2561235 +6113925 +5409416 +13429674 +3933552 +9981841 +6130309 +15777163 +9239322 +8230072 +8526294 +5630927 +18731512 +3211349 +6935087 +6532698 +17281863 +13396907 +15956731 +11600573 +11415107 +7893874 +1150251 +858617 +12203502 +3412543 +9578797 +3246738 +12993862 +4905446 +17709811 +18741343 +232096 +18734134 +12721889 +13339235 +3423029 +12853616 +17989648 +17087222 +7720205 +9918272 +20460344 +1039496 +14368801 +16015713 +4609880 +14294090 +8078685 +13861555 +7748385 +20766396 +9160679 +2344967 +14805924 +2757842 +12461057 +10611639 +15402954 +7191987 +12402730 +4149164 +19850207 +14386496 +2065785 +19077541 +13288117 +13900221 +16769373 +12615721 +9692174 +17002681 +2709345 +2156224 +13140007 +3755295 +10609673 +2386254 +5124336 +6700469 +1027044 +10765648 +1540188 +7025526 +18962853 +1772840 +18939916 +16990884 +2939375 +8436510 +15166370 +3021950 +7679572 +15328899 +9040749 +1778083 +19643114 +20716588 +14704999 +19166014 +15709006 +13530599 +16769373 +198017 +2601867 +8080651 +8422092 +17997512 +162628 +11044830 +18005377 +3490531 +6702435 +20701515 +17346088 +1609001 +16918140 +18829816 +2441960 +17829741 +1761699 +12307048 +10928832 +11398068 +6630346 +20392842 +1855415 +990344 +19582821 +316637 +6450123 +1648322 +2175885 +15163094 +2944618 +16444316 +13778324 +13919226 +10046066 +16445627 +5933046 +117408 +2445892 +3600631 +12191050 +1879663 +14108624 +4208147 +9324518 +18519177 +11246025 +1695508 +3565897 +731478 +8106865 +21442069 +4311038 +18068291 +7483621 +11294521 +9440517 +5005061 +2830586 +9690863 +8303472 +12380448 +10459597 +8808752 +19129969 +11937427 +3629466 +4662964 +16601602 +8929338 +17634445 +6637555 +2566477 +4447352 +18549978 +4446697 +11202116 +4096081 +19477308 +8626563 +975271 +1209888 +15471767 +12208089 +4501746 +2382977 +6260069 +11159518 +16231981 +2050056 +35489 +17148170 +10525132 +16827045 +9751156 +6929844 +21012154 +443121 +21096696 +21095385 +8099001 +7686126 +8001353 +12878519 +3839181 +20167399 +17799595 +3358149 +3347008 +17069527 +15355769 +14910126 +6073292 +4330043 +2200788 +17109504 +19707339 +5617164 +14086342 +1196781 +536181 +7711030 +19084094 +9281920 +15473733 +13975587 +6821055 +19641148 +19765666 +5256062 +11827982 +8222863 +8028222 +4844498 +17968677 +1797744 +18529662 +3894886 +2341690 +13383799 +18227543 +8350003 +1192849 +18977926 +7458062 +6722096 +5250819 +16542620 +6731271 +12404041 +18007343 +4167514 +6818433 +1335717 +19924262 +4238293 +17030206 +6073948 +291078 +13499142 +13716721 +15288922 +14457274 +5834087 +9767540 +4164238 +20153637 +17965400 +4198972 +2421643 +8965383 +15423270 +11137891 +10049999 +14869494 +19934092 +13187848 +11053350 +509312 +2313510 +17001370 +2679199 +19160116 +550599 +13104617 +11261754 +8812685 +10095874 +17800250 +12149762 +2875151 +20154948 +20655640 +4017438 +6551703 +700676 +15419994 +4705563 +1265594 +20723142 +2289917 +4155718 +13391008 +1785947 +10521200 +6634933 +983135 +17552525 +7831615 +4558763 +10170584 +20585517 +3294579 +16104842 +11301730 +14449410 +16885372 +7442333 +16833598 +3393538 +7639596 +3580970 +19905257 +7505903 +13408703 +15381327 +11980680 +12478751 +14336688 +833714 +5056178 +13032528 +9285852 +3544925 +16168411 +19137834 +10593289 +20822101 +4125572 +12279523 +16897168 +1985831 +16832288 +81364 +13011557 +1746626 +2279431 +6210917 +13634146 +8819894 +14002456 +15026779 +6601510 +11474745 +6381966 +8545299 +5737094 +13463098 +15021536 +7807367 +4593496 +3689104 +3470215 +20002249 +19654910 +1076851 +21204174 +18181012 +14296712 +6206985 +18554566 +5231159 +20927613 +2647742 +6449467 +9781958 +16378125 +11346295 +14035224 +1279356 +18289146 +18901905 +16640924 +1402563 +514555 +19289221 +17296936 +13989349 +9391365 +11332532 +3306375 +7684815 +14465794 +19714548 +4022025 +2986561 +4378539 +3278850 +14284915 +3974184 +11822084 +19061812 +9673168 +19670639 +19928849 +11897450 +11280759 +1226928 +13819612 +6049044 +18179046 +4293998 +823883 +4286134 +1475963 +16231981 +5406794 +5784935 +14362247 +15222076 +12632105 +6625103 +10771547 +1567713 +16527547 +7707753 +6841371 +9911063 +18321914 +1243967 +6027417 +14460551 +2083479 +3585557 +21400126 +15107388 +11892207 +19652944 +2517981 +1789879 +14484144 +6726683 +412974 +20565856 +15098213 +2034983 +13014178 +17264168 +3079622 +9451002 +16332250 +4302518 +1707960 +3016052 +10286582 +11795214 +13552226 +7665810 +4678038 +3472836 +6965889 +13577785 +10403891 +13091510 +14194476 +6655249 +4375263 +16145474 +14271153 +397246 +19129969 +7302087 +14770535 +8079340 +3483322 +13128866 +5585707 +12299184 +13217994 +16604879 +5533934 +21127497 +13101996 +16906998 +3801825 +10220391 +21023296 +7691369 +17038070 +11939393 +4373952 +11463604 +21150435 +503414 +1791845 +17678354 +93816 +6026107 +9227526 +5111228 +21031160 +20552094 +17544661 +3529852 +19799744 +107578 +19802366 +10108981 +644315 +19796467 +10356706 +16292929 +12020002 +5482816 +8663263 +3485288 +1137144 +1043428 +1086681 +12939467 +4255988 +8181576 +5388444 +19397355 +2327272 +14182680 +875656 +14488076 +6343955 +17703257 +14781676 +7952856 +2650363 +2255838 +492273 +9121358 +469990 +11066457 +12927671 +18832437 +5145307 +15284335 +16052413 +8302162 +9038127 +8386703 +21098006 +1057846 +16869643 +18755105 +19310192 +19678503 +4153752 +822572 +21275608 +13460476 +18786562 +5441528 +10217770 +1199403 +2331204 +10047377 +13954615 +8337551 +13491278 +2535020 +17009234 +11185732 +826505 +86607 +3458418 +4343805 +469990 +17032827 +2335136 +17488955 +13286151 +6587092 +18156764 +4366088 +7720860 +5289486 +19034287 +9985118 +11449841 +11069734 +15255499 +1981899 +7952856 +17047245 +14263288 +8372940 +9116115 +11143134 +13756042 +12079639 +20005526 +20031740 +12115028 +8237281 +9213108 +7502626 +4611846 +18259000 +8938513 +6404903 +9013879 +15693277 +7237862 +15083795 +3158920 +8821860 +14296056 +15996052 +11378407 +20290606 +8115385 +12483339 +7592410 +15440310 +12613755 +11905314 +811431 +13552882 +13534532 +1430744 +13813058 +4190452 +8104244 +16479050 +20080892 +10202041 +1225617 +4525339 +747862 +5491991 +7906981 +13750144 +14828206 +7638940 +3564586 +1229549 +14990735 +10509404 +10763682 +4889718 +10819388 +12537078 +6318396 +16875541 +11168038 +20557337 +9119392 +1913086 +3968286 +5693185 +11145100 +21075069 +6372135 +13300569 +4637405 +2597279 +14111901 +16938456 +4131470 +617446 +11795214 +19000864 +15666408 +11036311 +1875076 +9459522 +2187681 +13579096 +20732317 +6182737 +12229060 +17924768 +13712133 +3025227 +5476918 +9886815 +10007400 +6204364 +14755462 +5005716 +18243271 +6630346 +6231234 +19644424 +19247278 +4288755 +12965682 +16623884 +13715410 +18238028 +10974052 +546012 +7350583 +5040450 +5547696 +19218442 +20028464 +5744303 +11752616 +10088665 +1555917 +14743010 +10308209 +21194344 +19768942 +19463546 +13733760 +15407542 +2227658 +4870057 +1843619 +2208652 +20029119 +6659182 +11800457 +6435705 +8444374 +7128417 +12960439 +16934523 +20281431 +15302029 +2044813 +4378539 +14052919 +17911661 +13290739 +867792 +15146054 +13969689 +6680153 +8443063 +17152757 +12811673 +16079283 +8308715 +10582148 +15069378 +5005061 +9682999 +40732 +6766005 +5119093 +2063819 +10545448 +7483621 +6635589 +7520976 +8487628 +9513917 +3957145 +10896720 +17079357 +20739526 +9309445 +7485587 +8209756 +5211498 +8199270 +10493675 +864515 +20067130 +13063330 +154764 +12455814 +20632047 +17133097 +390692 +14048331 +18894041 +4881198 +7210337 +8273981 +2775536 +14352417 +19150941 +15845976 +741964 +21191722 +1325887 +3571140 +21286749 +4751437 +11915800 +12210710 +15617911 +9034195 +540114 +1696163 +1108308 +511933 +1273458 +15650679 +21380465 +1295740 +14986147 +10917036 +16168411 +20520637 +3128118 +18471991 +6971787 +4727845 +17787143 +2900054 +5927148 +17302179 +9665959 +913012 +10955047 +8750426 +4527961 +13453923 +10008711 +10649650 +17962123 +17129820 +13888424 +7682194 +12466955 +20479349 +18966130 +19929505 +18321259 +15427202 +5183973 +14919956 +13580407 +7131039 +21004946 +9805550 +6775835 +15510433 +9696106 +4633473 +3566552 +16932557 +8445029 +21187135 +268796 +19983244 +9627293 +17215016 +7632387 +7566196 +8338206 +14947481 +11573048 +3698934 +19436676 +20443305 +3069136 +18721682 +8395222 +8240558 +5417936 +2423610 +13111171 +20302403 +16305381 +9784579 +14448099 +9488358 +7626488 +178357 +4443420 +13411324 +7900428 +11580912 +3225766 +9738704 +2184404 +1802331 +1147630 +17314630 +17921491 +12377826 +6654594 +8925406 +2798474 +11559286 +4606604 +6805982 +13351032 +7627144 +5576532 +12594750 +19758457 +3696968 +12305737 +14009010 +17356573 +20184439 +19426191 +20579619 +8013149 +13794708 +1474653 +5649932 +5021445 +5094189 +5310457 +7624522 +11202771 +7317160 +1312124 +9977254 +16505920 +4028579 +17481747 +3326691 +7728724 +19283323 +17574152 +20881083 +15195206 +12492514 +4413273 +13702958 +17201909 +6712266 +2793886 +1330474 +6233855 +10778100 +16585874 +20605178 +16308658 +15134258 +983790 +7610105 +7412187 +8342138 +8937858 +16024888 +7679572 +14932408 +15851874 +4855639 +1271492 +15701797 +11068423 +6880037 +5544419 +8798922 +10551347 +18130550 +18736755 +8282501 +20953828 +11738853 +2598590 +2289261 +17484368 +17754375 +10687006 +11057282 +8723556 +6548426 +3976150 +9278643 +14572617 +11327945 +1383558 +3335211 +9017156 +12630794 +20957760 +6409491 +18956300 +20325340 +8357867 +8772052 +1280667 +4826804 +2940686 +8338206 +11582223 +5689909 +7936472 +5531312 +7492796 +4860882 +8312647 +6077225 +14796749 +121996 +10819388 +181633 +20778192 +16332250 +12942744 +4662309 +827815 +17564321 +11498337 +7652703 +1127969 +16070108 +523074 +9812759 +17697359 +19062468 +4782895 +1658808 +2657572 +1869833 +12652421 +6540562 +17168486 +20894190 +5009648 +7388594 +2896122 +10691593 +8324444 +15608081 +7507214 +1368485 +3511502 +14352417 +13936921 +21440103 +5276378 +13077092 +15644781 +14327513 +14672231 +10018541 +2997047 +8619 +9274711 +13612519 +9081381 +15417372 +17289072 +5396964 +8933270 +699365 +10504816 +16874886 +13748833 +2427542 +5996616 +9624017 +3750052 +1889494 +4126882 +10291825 +19801710 +18732168 +2420988 +17966711 +14482833 +12817571 +13508973 +6720130 +18950401 +19827924 +4598084 +13246830 +11546178 +521764 +8775985 +9635813 +1524460 +10988470 +3499706 +2166710 +14514290 +1991074 +21312308 +13216028 +20641878 +5072562 +2242731 +624655 +7313228 +13522735 +3255258 +15845320 +1375038 +15224042 +16507886 +10986504 +6419976 +872380 +11788005 +4093459 +3558688 +18046664 +13220616 +12772351 +2894156 +8723556 +9582074 +14539194 +14847867 +16098943 +2236833 +9714456 +14476935 +4408686 +11505546 +15743740 +4152441 +6437671 +1867867 +4345116 +11514721 +14224622 +19282012 +18390727 +20703481 +5530002 +7085164 +7468547 +17372302 +15472422 +1776117 +5579153 +16638302 +1692231 +3362736 +18120064 +18256378 +13712789 +6810569 +5385168 +15861049 +6847269 +4678038 +16931902 +4569904 +4600705 +17977196 +5043071 +6416700 +14328824 +8296919 +15882676 +14954035 +13563367 +7397769 +7404978 +7349272 +13058087 +16667138 +14086997 +11211291 +20049435 +12648489 +14916679 +9393986 +15144744 +19048705 +9960215 +13617762 +2577618 +1621453 +5540487 +4252711 +11004198 +18776077 +5326186 +2687063 +18679739 +19237448 +8005285 +16556382 +2327272 +20255217 +1479240 +16903066 +19092614 +14729247 +18671875 +9657440 +5518860 +18646316 +8659331 +16905032 +18969407 +15198483 +17723573 +8863802 +4135402 +13706235 +4529271 +10059829 +3340454 +1212510 +20254562 +12598682 +641039 +4837289 +13448680 +5917973 +17794352 +21310997 +11926941 +13625626 +17162588 +10295757 +5893725 +17303489 +14880635 +8546610 +5429077 +1481862 +2295160 +3192999 +4570559 +21140604 +14587690 +7731346 +2974765 +10544138 +9019122 +490307 +10683729 +7861106 +20537021 +18821296 +15180133 +20455756 +20978076 +4368709 +8043951 +12023934 +14028015 +14785608 +7460028 +9563068 +6915426 +10700113 +2076270 +16768718 +4455216 +5107296 +10170584 +11033689 +10018541 +20202133 +7823096 +11277482 +7245071 +16069452 +5949430 +21339178 +14449410 +9331072 +8420781 +7969896 +13739003 +9302892 +2276810 +18790494 +18584057 +11232263 +12898835 +19438642 +17453566 +17766171 +10086699 +6239753 +14288847 +6100817 +20023221 +16584563 +10806936 +5234436 +14320960 +13509628 +1095856 +7499349 +17038725 +18296355 +16742504 +7648115 +857306 +16613399 +13805194 +1039496 +13307123 +12007550 +4929695 +19449128 +18333711 +9978565 +13179328 +14590312 +1468754 +5788868 +14654537 +11445909 +17169141 +16936490 +4809764 +19382937 +17922146 +18705298 +11962330 +15790926 +2660193 +16988263 +21082278 +5586362 +1981899 +9423477 +17920836 +20369249 +8214999 +4613157 +9187549 +17625270 +12052114 +788494 +14079789 +16193315 +17595779 +7803435 +11729678 +20383012 +4250745 +13800606 +11674628 +4532548 +7952201 +1917674 +17156034 +4309727 +11002888 +4282857 +5410071 +6729960 +6272521 +19483207 +16884061 +7315849 +10934075 +16982365 +5080427 +12273625 +8942445 +4994575 +11424282 +10504161 +5457912 +20225726 +16195281 +15458004 +614824 +15981634 +8453549 +8378183 +1411738 +968062 +12546909 +11775553 +7983003 +18754450 +12828712 +17320529 +7114655 +19565126 +8100967 +18468714 +16649443 +8941135 +8553819 +845510 +20370560 +9540131 +13459165 +11866648 +8791713 +5871443 +18590611 +12290664 +8419470 +9528334 +5746925 +17730782 +14244938 +6689983 +6291526 +18070912 +8685545 +11359402 +19289221 +11012718 +3216591 +7579303 +5003095 +2783401 +6724062 +4096736 +13495865 +11565184 +7163151 +6191257 +3396815 +12582953 +20858801 +20762463 +11856162 +10743366 +16869643 +6767316 +16012436 +7954822 +6974408 +15950177 +18137759 +8064267 +1323921 +6462575 +16908965 +19832512 +12949298 +3811656 +10432727 +7596997 +4436866 +5830810 +15579245 +7743142 +2915783 +5466432 +13044980 +17041347 +18963509 +523074 +17438493 +21289370 +17060352 +20560614 +10007400 +6540562 +2688374 +18613548 +19213200 +20716588 +1254453 +1515940 +861894 +20500976 +15418027 +10291170 +17746511 +813397 +15172924 +2258460 +5443494 +12921117 +4310382 +19407841 +10755818 +10120777 +2867286 +7511146 +17658693 +7534739 +10658170 +14107969 +11007475 +1027699 +6254171 +991655 +15636261 +2932822 +3541649 +20799819 +9491634 +4674761 +5483471 +14823619 +6771903 +9222283 +6074603 +3104525 +16442350 +7889942 +8943756 +9831109 +300253 +1468099 +20331239 +1192194 +8406363 +4616434 +6373446 +16212320 +14758738 +4672795 +8635738 +16102875 +17578739 +7064192 +21286749 +19206646 +12976167 +9635813 +17126543 +4124916 +19820716 +16603568 +5028653 +19240069 +808810 +20350244 +12097334 +2711311 +7885354 +18817364 +1943888 +8853972 +10443213 +18184945 +8927372 +1374383 +13651840 +2707379 +5848505 +16749057 +11228986 +14646017 +21162887 +8546610 +14928476 +4066589 +1723688 +4182588 +5724643 +20928269 +1548053 +13746867 +5997271 +1207922 +20824722 +279937 +10325248 +20147739 +11218500 +16855881 +17161277 +6651317 +15945590 +3800515 +6350508 +6684741 +15778474 +17127854 +18865205 +11171314 +7798847 +16444972 +11940048 +6737169 +16914863 +4887752 +11030413 +16429899 +8596417 +14412710 +17039381 +15655922 +4164893 +20329928 +18441844 +5866855 +1999594 +8551853 +17709811 +2390186 +6002514 +265519 +13658394 +4176689 +916944 +21288715 +20909919 +2519292 +4022025 +14086342 +3667477 +10616227 +11348916 +1821337 +19749937 +20692996 +10869195 +8507288 +1108308 +20902055 +9657440 +1688954 +3639952 +178357 +11266996 +5950741 +8925406 +8838899 +19148975 +9437240 +3338488 +9844872 +2368560 +4975570 +18437257 +18003411 +6816467 +2708690 +20573065 +4331354 +4576457 +12240857 +20826688 +19899358 +8241213 +3018674 +14027360 +16399752 +21360149 +12721234 +10584770 +11008130 +8224174 +4374607 +6132275 +8369663 +12499068 +7040599 +2367904 +5157759 +6637555 +11939393 +9998881 +5417280 +9591249 +8532192 +18331745 +7096960 +11798491 +18969407 +12725821 +16801486 +8763533 +40732 +2989183 +10233498 +4310382 +7901083 +15077897 +2732938 +5654519 +778664 +9182961 +18525730 +234062 +18551289 +20159535 +15720147 +863205 +7016351 +10937352 +6636244 +20296505 +4255332 +14039812 +1004762 +18825228 +21362115 +8902469 +11622200 +8107521 +12803153 +2743424 +7703165 +11263064 +20294539 +20371871 +12556084 +19485828 +5000473 +19719791 +16084525 +10270854 +10285927 +18298321 +6108682 +17190768 +19500901 +17877582 +3757916 +15663786 +703953 +12577055 +20388910 +1201369 +18203950 +11272239 +14541815 +3107802 +877622 +15906924 +2622838 +2082824 +13512905 +15461281 +15271227 +10107670 +19844308 +1593928 +10158132 +1888183 +4997852 +1281322 +12985342 +20661539 +4360189 +3627500 +17614129 +18793771 +4647236 +12377171 +3002945 +13663637 +15811897 +15429824 +5883239 +11894173 +376930 +16969257 +5581119 +3253291 +1799054 +9403817 +10868539 +14155810 +8122594 +9276022 +19358689 +6687362 +21366047 +12845751 +3107802 +21106526 +19244001 +16979743 +20430197 +4157029 +475233 +4013506 +6302012 +307462 +15038576 +14736456 +7062882 +19404564 +5557527 +14886533 +3788718 +160662 +5410071 +1439919 +4137368 +20483937 +4355602 +11124129 +19483862 +14426472 +5801319 +4997852 +5855714 +5746269 +15994086 +194085 +8249733 +10498263 +16810661 +14641429 +7031424 +17344122 +6039869 +2601867 +6634278 +14041122 +6492066 +12546253 +15587765 +17833673 +20466897 +15063479 +7125796 +13779635 +2710656 +18879623 +3316206 +16427277 +184255 +8574135 +6893799 +8562338 +16390577 +21421753 +9644333 +15385915 +6270555 +4329388 +16258195 +3414509 +10391440 +4506989 +11863371 +12790046 +18395314 +12735651 +5423834 +19020525 +21396194 +12857548 +12790701 +18730202 +15099524 +7324369 +4219943 +7248348 +5307180 +14096828 +2263047 +20489835 +13805849 +19458958 +11250613 +16323075 +7452164 +10906550 +7220167 +4111154 +6146692 +10240052 +13107894 +4347082 +13350376 +16276545 +15616601 +10843636 +3343075 +13531255 +6263346 +9840284 +16912241 +20708724 +10399304 +13751455 +19848896 +13234378 +171148 +13581062 +5425800 +15786338 +6163076 +1011315 +16726775 +5784280 +1584753 +7138248 +11644482 +9695450 +2593347 +8208445 +19508110 +11641861 +1551985 +10407823 +18247203 +13214062 +5021445 +13731794 +2516670 +14306542 +8045917 +16663861 +15296131 +17650173 +4708184 +19386869 +12091435 +20132010 +16859157 +15459970 +17435216 +7678917 +4766511 +15583177 +13333337 +2702792 +6653939 +7479033 +19346237 +9069585 +5815737 +2894811 +18698744 +10970775 +1118794 +11325979 +18313395 +20993149 +15797479 +5564080 +4533204 +11627443 +4967050 +19320678 +17999479 +4694421 +19524494 +12531180 +2088067 +2603833 +7039944 +9662027 +13429674 +14442856 +15338074 +17780589 +19424225 +11143134 +7566851 +14959933 +133792 +19772219 +11502270 +9692174 +8945067 +19390146 +5166278 +10923589 +7452164 +20325340 +3805757 +16754300 +9418890 +10782688 +8001353 +11735577 +5671559 +2314165 +20271601 +16383368 +11507512 +8387358 +4671484 +7054362 +9120702 +15781751 +18232786 +7482965 +19253832 +19282012 +2211274 +19813507 +10152890 +7582580 +20308301 +10528409 +6883314 +13835996 +2354142 +5640757 +1711892 +11383650 +16844084 +16647477 +7134971 +4313004 +1949131 +1923572 +2580895 +7495417 +21362115 +14550335 +9002083 +8043296 +17538763 +11124129 +20892224 +10863297 +21320828 +9399884 +8486317 +2546161 +5251475 +4889718 +20320753 +691501 +17454222 +12160903 +19082128 +1443851 +19594617 +6009723 +17811391 +13803228 +1378315 +20893535 +20522603 +14956001 +9863222 +11994443 +12193671 +15209624 +298942 +15466524 +17582671 +2332515 +5781659 +17975886 +1375694 +18315361 +17035448 +8646224 +15669685 +9510640 +5180041 +10082766 +2227002 +3801825 +15674927 +3229043 +20570444 +19548742 +14676163 +15182099 +8717658 +2255183 +17287105 +5547696 +19411117 +9750500 +7149389 +13725240 +17171763 +18415630 +5048970 +9449036 +7245726 +738687 +10739434 +16331595 +11246680 +11802423 +3851632 +15168336 +16335527 +11576325 +7264731 +3478079 +14029981 +19603792 +12270348 +18676462 +19259730 +6834817 +5116471 +7452164 +13967067 +13822233 +1641113 +14446133 +6509760 +7407599 +7465271 +14462517 +847476 +8059024 +3720561 +11644482 +2342345 +21470249 +4630196 +9007981 +4477498 +5925837 +7758871 +20793265 +18897973 +10341632 +12078328 +10205318 +7186744 +5823601 +10580838 +10903273 +12994517 +18084675 +3733013 +14156465 +9342213 +19150285 +4922486 +8880842 +17412279 +13888424 +19770908 +14168262 +11649070 +16022267 +13409358 +19080162 +17161277 +5560803 +19398666 +12911942 +137069 +13273699 +17834984 +20700860 +231441 +16129745 +15493393 +5061421 +19723067 +4073798 +19984555 +89228 +11029102 +9431997 +18648282 +16300138 +14246905 +8345415 +19231550 +17923457 +13222582 +928740 +5379269 +5424489 +12777594 +7749040 +14303265 +10663413 +12972235 +10142404 +17867752 +16095667 +17964089 +1472031 +7725447 +13430330 +13041703 +5039139 +8687511 +19887562 +4438177 +11004854 +12951919 +9768850 +12550185 +10157477 +10335079 +8980456 +5807218 +12450571 +21231699 +9576831 +9401851 +13413290 +6804671 +16380091 +11054005 +11095293 +14104037 +11608437 +5404173 +15170958 +1112896 +20703481 +13945440 +556498 +63014 +873690 +14070614 +4839911 +21088176 +14716140 +700021 +21252670 +10942595 +2409192 +6679498 +15317102 +20470174 +1389456 +4769132 +17546627 +15100835 +19622798 +11344329 +19050671 +18914357 +3377809 +13969689 +8952276 +5079116 +7532772 +20416 +9327795 +8459447 +23037 +9161990 +17075425 +2045469 +9753122 +14416642 +9080070 +13001726 +6623792 +5599469 +5966469 +19979312 +8256287 +15420649 +7216890 +131826 +16809350 +11074321 +7699888 +11058593 +1300983 +14378631 +15748983 +10403891 +1276735 +8213688 +3675341 +7008487 +8886085 +13792087 +11491129 +10112913 +5858335 +3892265 +12614410 +5437596 +5723332 +15113286 +20027808 +4460459 +5304559 +16897823 +20179196 +9177718 +17962123 +7762803 +19835133 +3075034 +6718164 +3862118 +7913535 +3887677 +18580125 +3768402 +10141093 +9693484 +16081249 +2620217 +17080013 +2765051 +7998076 +10673898 +6316430 +14530674 +18208537 +20559958 +11170659 +8041985 +743274 +7127106 +5729230 +10801038 +13070539 +11552077 +9539475 +18114821 +4059381 +7051740 +9975943 +13932989 +1109619 +5891103 +19702751 +15885952 +9933345 +19132591 +17582671 +19032976 +3461695 +6693916 +4543034 +2734249 +553221 +8979801 +8656710 +3995811 +9690863 +17834984 +13252073 +13701648 +10127331 +14307197 +7376797 +21185824 +3377154 +10141093 +3579659 +6511071 +6859721 +5093534 +7591755 +12641280 +1122726 +19117518 +21095385 +10966843 +3092074 +4126227 +19205335 +14499872 +19082128 +9136431 +5329462 +1866556 +7068124 +16956150 +20613042 +20520637 +9962836 +19483207 +17354607 +10824630 +9595836 +7488208 +10464184 +20080237 +6721441 +12438775 +8345415 +4548932 +5607989 +5102053 +8410295 +17387375 +511933 +3217902 +9579452 +2033017 +7665810 +21187135 +4862848 +10422241 +3850322 +20795887 +13739658 +1154183 +8462724 +11309595 +10063761 +15518297 +19826614 +6993414 +19959651 +15333486 +21173372 +11861405 +9207865 +8726833 +3270331 +18891419 +6393107 +5501821 +4376573 +224232 +16882095 +20186405 +7126451 +4440143 +2105761 +8026912 +15144744 +15311860 +16085181 +16430554 +20139874 +10241363 +587299 +7627144 +10489088 +1628662 +18034212 +131171 +11228986 +5471675 +15535992 +6241064 +5817048 +21078346 +6549082 +5145962 +8757635 +9141018 +21215970 +8682269 +10595256 +16491502 +3233631 +8355901 +21432894 +5278344 +13610553 +10981261 +20375803 +7330923 +17225502 +15984911 +15570726 +11136580 +20570444 +12881141 +779319 +8911643 +8373595 +2276810 +13156391 +19224341 +18013896 +11549455 +13737692 +18722993 +14153188 +1183674 +10060484 +6449467 +9870431 +19444541 +13573198 +5443494 +10837738 +7465271 +15041197 +10371779 +14067992 +20443305 +85951 +8007906 +2837140 +9320586 +16277200 +14868183 +19000864 +14551646 +13269767 +1140421 +18082053 +2225692 +4265818 +10276097 +17836295 +876312 +12602614 +21263812 +9460833 +5465121 +8148808 +13275666 +13297292 +6231234 +5976955 +15928551 +5895035 +16912241 +16603568 +3557377 +14388462 +9050579 +20256528 +18039455 +19145698 +13449990 +19538912 +13492589 +3601286 +16313900 +20829965 +654146 +6982928 +18502137 +20255873 +5748235 +3431549 +14303921 +16384024 +13626937 +110199 +442465 +18084675 +11275516 +6000548 +7949579 +5300627 +828471 +6278419 +9920238 +4440143 +12291319 +1995006 +19905257 +21375222 +6582505 +13727862 +19215166 +15252877 +21213349 +1556572 +6408180 +21156988 +19726344 +8049194 +506690 +3544270 +11959053 +4165548 +12053425 +20934167 +13623005 +2464242 +6820399 +4600050 +4250089 +3420407 +5122370 +10921623 +10333768 +17108848 +19441264 +13914639 +277971 +5245577 +16248365 +11711328 +18625344 +7309296 +12758589 +7408910 +9954972 +16562281 +589265 +15305306 +17616095 +20027153 +316637 +18015207 +14422540 +4439488 +3337177 +3987947 +7520976 +20135942 +19129314 +10943905 +18145623 +18984480 +5787557 +4095425 +20143151 +9284542 +9305513 +8584620 +17790420 +7536049 +10312141 +2886947 +3192343 +7863072 +18475268 +14088964 +16736606 +7352549 +20651708 +7684160 +7937128 +7438401 +887453 +12796600 +20797853 +8118662 +3407300 +11057282 +14472347 +1036874 +5729885 +8556440 +15156540 +21156333 +2546161 +12383725 +17365093 +5375993 +3067825 +9047302 +8400465 +11724436 +20368594 +9881572 +6614617 +10614916 +13113137 +3044888 +14824929 +16545897 +8530881 +6058219 +15715559 +7952856 +1951753 +15535336 +17941807 +17053798 +12078984 +5112539 +614169 +9177063 +16181518 +4449318 +1096512 +19336407 +15515676 +2280742 +515865 +15201760 +19588064 +7047153 +2249285 +18654180 +6303323 +8079996 +732133 +19510732 +11672007 +20545540 +21107837 +20324030 +19576267 +72189 +12958473 +3540993 +20019289 +3544270 +14855731 +9606322 +13735071 +16902411 +7914846 +9917616 +9449692 +19724378 +3926343 +20912540 +6428496 +8057713 +994276 +14357660 +8602315 +8418815 +8673749 +5681389 +19943267 +19171912 +11743441 +4274338 +2980008 +19576267 +10194177 +14330135 +7801469 +4202904 +4557452 +6370825 +2478004 +11180489 +21213349 +5076495 +20270946 +16108774 +3853598 +20291917 +4224530 +3677307 +9327795 +9783268 +7481655 +2919715 +18659423 +8637049 +1048015 +11614991 +16207733 +12573778 +11779486 +3777577 +12831989 +7775910 +14115178 +10168618 +312705 +13669535 +19161426 +14805269 +6813190 +15861049 +20867321 +993621 +4408686 +20749356 +6672289 +18715784 +10266266 +1633904 +14499217 +5596848 +3653059 +10783998 +13960514 +6374101 +353337 +12556084 +1692231 +7707753 +14057506 +12660285 +2767017 +11772932 +10063761 +17186181 +3035713 +16444316 +10364570 +9958249 +19749282 +10116845 +4484707 +18677773 +13178673 +14052264 +18407111 +7473790 +18390727 +1116172 +17448979 +9901233 +6619205 +2964934 +16875541 +3788063 +5718089 +19810885 +11701498 +6408180 +10602464 +1861313 +13571887 +20206721 +19902635 +10489743 +20912540 +6925912 +8901158 +12193671 +16971879 +14274430 +3175304 +14679440 +15213556 +10213838 +20081548 +19616244 +10470738 +21457797 +21016742 +7479689 +5630927 +2400017 +6658526 +8831035 +15216833 +9603700 +11594020 +5024721 +888764 +683637 +1674537 +13332682 +5299971 +4516820 +10321972 +13564678 +9837663 +3088142 +1747281 +6775835 +18901250 +14208894 +12036386 +13440160 +3626845 +16059622 +13123623 +1040151 +14431060 +9523092 +7655980 +20908608 +9398574 +9587972 +14516912 +7387283 +8515808 +4077075 +2046124 +13066607 +13406737 +14598176 +8530881 +11046796 +1932747 +18778043 +13100030 +16515095 +17130475 +19015937 +11338430 +2167365 +15593663 +16812627 +9072861 +16178242 +10183036 +6104094 +2102485 +20194924 +367755 +2377735 +20403328 +6387208 +10323938 +6218782 +3922411 +18395314 +7286358 +3991223 +17994236 +12441396 +20257183 +11666109 +17146859 +20972178 +16836220 +6794185 +8927372 +18213125 +8591174 +12352923 +19791880 +14437613 +7157908 +5649277 +6012344 +14550990 +851408 +1912431 +13595480 +2721142 +3454486 +7239828 +19760 +18151521 +1386179 +18722993 +8329687 +11282725 +1234792 +2639877 +20499665 +17960812 +3850977 +7075989 +8800233 +18745930 +21094729 +17725539 +6009068 +20888292 +4378539 +13889735 +4525995 +9324518 +15850563 +5218707 +20622872 +3573106 +17432595 +12297873 +5056178 +17199943 +16587840 +7842756 +679705 +6421942 +8448961 +17829086 +13546983 +12521350 +2217172 +12778905 +19612967 +4841877 +956265 +3265743 +3020640 +15570726 +7940404 +12823469 +18589955 +8648190 +14585724 +20192303 +2685752 +9607633 +173769 +16533445 +12287387 +3088797 +5763309 +11846987 +15139501 +17458809 +11859439 +7377453 +18173148 +10670622 +4358879 +4465046 +682981 +19725689 +1282633 +2202099 +9949074 +16081249 +16799520 +11398068 +14640774 +15268606 +14224622 +15748327 +2530433 +11907280 +17764205 +15076586 +3771023 +9211142 +5201012 +17116713 +10854777 +14822308 +8987010 +5347812 +13380523 +14364869 +4982778 +7024871 +11380373 +9302236 +16321765 +9758365 +10574939 +1653565 +11627443 +1112240 +13639389 +12132068 +3592766 +8408985 +10844291 +14280983 +13046291 +5198391 +5630271 +10585 +3873259 +12556084 +14056851 +16151372 +12251343 +3954523 +9262259 +905803 +17230745 +6310532 +7564230 +11405277 +12341126 +5950741 +9646299 +5552939 +18527041 +9135120 +14938306 +5579153 +4170791 +16227393 +15903647 +21226456 +10854122 +1434021 +18543425 +1664706 +21126187 +808810 +17302834 +10082111 +17231400 +13894322 +13646598 +9587972 +3316206 +14967797 +6488133 +12723200 +10555934 +15496015 +778664 +4684591 +8040674 +1308192 +5404173 +6012344 +18046664 +8221553 +2263702 +6971787 +14923888 +9298959 +8002663 +10529064 +13612519 +6333469 +17003336 +2046779 +12903423 +20200167 +11528484 +18179046 +6190601 +7604206 +20895501 +4248123 +4006297 +165905 +7548501 +19116862 +1908499 +20913196 +12889005 +4400166 +9807516 +9712490 +18603718 +20625494 +11886964 +21366047 +20770328 +16867677 +16148095 +4492571 +8709794 +14983526 +19779428 +4740952 +2264358 +11194907 +6441603 +14556888 +11276827 +3711386 +16411549 +12398143 +6511726 +7476412 +19129969 +14918645 +2026463 +13758664 +15639538 +19295775 +16113361 +13366760 +14563442 +2814858 +10810213 +19744694 +8463379 +7219512 +6606098 +17446357 +2249285 +2483902 +21365392 +8464690 +5724643 +8489594 +8621320 +17496820 +20472140 +18947125 +2605799 +13870730 +19063123 +12761866 +930051 +19237448 +11216534 +5209532 +7018973 +15150642 +1613588 +16101565 +20921715 +5543764 +19902635 +14678129 +14050953 +20026498 +6124410 +19054603 +20068440 +4980157 +11253889 +1936024 +12399453 +11152309 +2177195 +16662550 +1244622 +1956995 +9974632 +2004181 +20565201 +13304501 +18198707 +1906533 +8412917 +10636543 +7889942 +906458 +2713277 +2200133 +6999312 +4038409 +11611714 +11932184 +2614318 +12928326 +1971413 +20008148 +14626356 +11493095 +9383501 +11308939 +17434561 +20974144 +18706609 +3631432 +8323788 +15591042 +5033896 +2624149 +16499366 +16245743 +20343035 +12964371 +7804746 +3240840 +7050430 +9823245 +15971804 +8389979 +18286525 +121341 +4476188 +6011689 +10732881 +13201610 +4584321 +6126376 +18678428 +106923 +12185807 +12307703 +3980738 +17940496 +17210429 +11284691 +18795082 +12793323 +13285496 +331055 +18714473 +7212958 +17842848 +4801245 +6119167 +5684666 +14750219 +5948775 +13184571 +16089768 +4032 +10553313 +3054718 +16006538 +21082278 +10702734 +14663056 +4114431 +3944038 +820606 +6947539 +8521706 +9901888 +15043819 +7115310 +20476728 +7672363 +8440442 +18690225 +4459804 +17593157 +17612818 +14840003 +17532864 +13946751 +16163168 +9586006 +9127256 +12889660 +7938438 +16985641 +21345731 +11099880 +9749845 +19749937 +17355918 +9364495 +15515020 +15080519 +14999910 +971994 +1546742 +1491037 +10905239 +8806786 +497515 +17345432 +7136937 +8056403 +3052097 +8979801 +12232337 +11708707 +15515676 +4215355 +6535975 +5425144 +10909827 +4052172 +1361931 +8959485 +15842699 +3924377 +10120777 +15143433 +6320362 +8292987 +17973920 +19176500 +5104020 +20442649 +4383127 +18091884 +10825941 +112166 +19217132 +21341799 +1137144 +7056328 +1707960 +16794277 +5190527 +7768701 +8643602 +18978582 +15267951 +14424506 +4216666 +15036610 +12031798 +11815530 +6762728 +21105871 +2067751 +19200748 +2509461 +165905 +20067785 +546012 +13545017 +4408030 +15797479 +13034494 +9303547 +13973621 +7692024 +6653939 +5822291 +6933121 +15206347 +8361799 +20594037 +11515377 +1439263 +17724229 +12530525 +9734116 +3872604 +3927654 +11711984 +1787913 +19030355 +18263587 +10109636 +14457929 +12168768 +17415555 +11226364 +19293153 +4356257 +12934225 +3111079 +16254918 +6746999 +13391008 +16471186 +12383725 +12115028 +9524402 +10864607 +838956 +6723407 +5726609 +8395222 +13468340 +19318712 +4606604 +3137949 +8663919 +20006837 +12387001 +1304260 +11255200 +7919433 +14825585 +21012154 +8504011 +14526742 +12898835 +20128078 +18947780 +17911005 +3498395 +10541516 +9949074 +10255125 +15877433 +5213464 +16283754 +20577653 +3171372 +13421155 +6775835 +12855582 +393969 +9700693 +1624729 +19910499 +4638061 +6013000 +8914920 +3696968 +10342943 +2315476 +3786097 +17123922 +20443305 +9487702 +12665528 +7720205 +15280402 +5691219 +10648995 +10070970 +745240 +20113660 +16553761 +2922992 +10158788 +11899416 +7832926 +6073292 +9557170 +17396550 +18395314 +15068722 +10382265 +18770178 +20050090 +5233125 +17131786 +7110723 +15043163 +11068423 +6588403 +15212901 +4824182 +18631898 +17150136 +13330716 +4822216 +20527190 +8020358 +1432710 +6585782 +14059472 +17744545 +19459614 +14117799 +13024008 +2679854 +1093890 +12809707 +4007607 +13734415 +8578067 +19281357 +3554100 +6064773 +1006072 +6108682 +18241961 +4491261 +17215672 +64980 +21069826 +5216741 +11606471 +19010039 +3891609 +14492008 +9268813 +17213050 +4551554 +12828712 +12012793 +19619521 +18137759 +9182306 +21040990 +13572542 +13134108 +16660584 +15876122 +14715485 +4822216 +6795496 +19057225 +4427691 +20175264 +17540729 +327123 +5208877 +13978208 +21058685 +7517699 +12826746 +21377188 +5625684 +20147739 +8705206 +5288830 +6581849 +20333205 +7585201 +6018898 +3768402 +13236344 +20331894 +8553819 +208503 +19202059 +15782406 +6026107 +6199776 +6046423 +19196160 +18420873 +7347306 +19856105 +1710581 +8146842 +5788212 +10322627 +20480005 +9897300 +19842342 +16987607 +6210917 +8386703 +2515360 +19158805 +1365863 +10244640 +15046440 +8488283 +9519815 +15455383 +14630944 +16475118 +1451715 +12492514 +538148 +11639895 +11546178 +3198241 +6597578 +21396194 +11095293 +9744602 +18562430 +6828919 +7464615 +5306525 +12984687 +17197322 +12774317 +21437481 +2839761 +2052678 +8933270 +8696686 +7361069 +1051947 +3645850 +4169481 +3128774 +3475457 +3580970 +10636543 +10084077 +4243536 +20801785 +12174666 +4451284 +20883705 +3072413 +3396815 +5507064 +18435291 +18876346 +6146037 +6701780 +657423 +7958754 +15267295 +12187773 +21250704 +8038053 +19077541 +21037713 +8392601 +18167250 +14678129 +5467743 +15283679 +1394044 +13408703 +4533859 +16919450 +3217247 +21012154 +14522810 +16100254 +8028878 +9283886 +12268382 +8393256 +3974839 +14092896 +7358447 +10717807 +7249003 +11488507 +8492870 +3906027 +871724 +7415464 +14706965 +15399677 +11415107 +14230521 +2614318 +20619596 +21021329 +5952051 +20392187 +18028970 +2606454 +19343616 +16059622 +20848315 +11809632 +20330583 +4695077 +19795157 +823883 +3488565 +8872977 +3407956 +17804838 +8532192 +11884343 +4413273 +6019553 +6148003 +2276154 +1019180 +16762165 +2811581 +5678112 +6653939 +7244415 +16296861 +10635888 +5227882 +16011781 +13813714 +6568087 +1029665 +15949522 +1344892 +19066400 +12121582 +1199403 +12540355 +17076081 +18647627 +16073384 +13921192 +6665080 +17047245 +16569490 +11634652 +14119765 +19785982 +2714588 +11437389 +15383949 +1271492 +11702153 +9766229 +8488938 +16115327 +2012045 +11189664 +6835473 +17964089 +13062675 +13856967 +21105215 +13071850 +7810644 +1192849 +956921 +12430255 +19059846 +10312141 +19017248 +8594451 +6912149 +14750219 +2609076 +20838485 +5160380 +14093551 +4402132 +5293418 +7007832 +3705488 +16761509 +17293004 +17593157 +2362661 +20356798 +14556233 +2873840 +4282202 +1933403 +10556589 +12033109 +11875168 +9044026 +9658095 +9673824 +15703763 +19595928 +3868672 +17098363 +13569265 +16123847 +21139949 +13043669 +21079656 +21184513 +11136580 +21352940 +15327588 +11320736 +9384811 +7768046 +237994 +2871218 +644315 +13322196 +6360994 +12324743 +8313958 +17658038 +20409881 +12692398 +2514704 +2714588 +911046 +18099093 +3335211 +10743366 +18208537 +10039513 +14838692 +1381592 +9480493 +9302892 +15982290 +10419620 +3051442 +7009798 +9128567 +6956714 +2002870 +15818451 +8702585 +16011125 +16307347 +19162737 +13616451 +10660136 +13292049 +15163094 +17820566 +11913834 +17971298 +18962853 +16702527 +7783119 +4206836 +5389100 +20742147 +895317 +1497590 +20759187 +12670771 +10858054 +15416717 +16239190 +9861256 +18610927 +14693203 +18119409 +17881514 +1087992 +12462368 +15613324 +15458004 +473923 +749173 +9752466 +14481522 +11310250 +1939301 +11994443 +13176051 +16285065 +17774691 +6637555 +14914713 +18373032 +10778100 +9234079 +16711702 +13627592 +20773605 +20365317 +11002232 +9987084 +14521499 +6968510 +12136000 +14911437 +645626 +11211946 +867792 +11323357 +7870281 +3727770 +13005003 +16462666 +7758871 +10695525 +7816542 +6911494 +2757842 +2720486 +47285 +19138489 +17140961 +10595911 +5252786 +15551720 +18365823 +20306990 +3118288 +18682360 +376274 +4983434 +5349778 +17584638 +20137908 +11255855 +3308341 +20234901 +10910482 +13449990 +10816111 +13697060 +1067676 +11436079 +20265048 +12582298 +3618325 +21137328 +1553296 +508001 +11978714 +4018093 +19670639 +9510640 +11378407 +7335510 +20645810 +13270423 +11959053 +3108458 +5931080 +7948924 +12955851 +19728310 +16062243 +20926958 +11384305 +11216534 +20922371 +13216028 +7576681 +15088383 +17909039 +17127854 +13617762 +889419 +5828189 +2531743 +17022997 +3313584 +6980962 +6555635 +13081025 +6393107 +19998973 +20059921 +15255499 +866481 +11481298 +15414751 +6746344 +3340454 +785217 +16937800 +301564 +8380804 +2417056 +18698089 +19051326 +5745614 +9240633 +16110740 +15142778 +12419769 +17161277 +20466897 +11384305 +15440310 +16801486 +682326 +10228911 +11398723 +17266789 +7967929 +19743383 +17126543 +6029384 +19690955 +20053367 +1239380 +17400482 +15803377 +5165623 +19057880 +20360074 +17405725 +9561102 +6660492 +12947987 +20989872 +18230164 +10512681 +12519384 +8897881 +13147216 +7777221 +6942296 +12500378 +11904659 +7846688 +7010453 +600406 +7903704 +19707994 +7460683 +20541608 +11419039 +17329048 +18325846 +20928269 +15040542 +3069792 +16975811 +19662774 +18379586 +668564 +4053482 +3254602 +21447312 +13377246 +13644631 +6353785 +14210860 diff --git a/2ano1/AED/aula11/file10.txt b/2ano1/AED/aula11/file10.txt new file mode 100644 index 0000000..ff806ff --- /dev/null +++ b/2ano1/AED/aula11/file10.txt @@ -0,0 +1,10 @@ +beggar +blinders +intermarry +intrusions +mainline +misplaying +mossier +portents +supercomputers +zucchinis diff --git a/2ano1/AED/aula11/file11.txt b/2ano1/AED/aula11/file11.txt new file mode 100644 index 0000000..98234bf --- /dev/null +++ b/2ano1/AED/aula11/file11.txt @@ -0,0 +1,11 @@ +banker +befouls +comrades +driblets +lily +mainframe +parsons +psychically +recorders +revealed +substitute diff --git a/2ano1/AED/aula11/file12.txt b/2ano1/AED/aula11/file12.txt new file mode 100644 index 0000000..73a5c38 --- /dev/null +++ b/2ano1/AED/aula11/file12.txt @@ -0,0 +1,12 @@ +adversarial +alyson +counterexample +empress +lawgivers +payer +plateaus +skittered +smirch +tongs +viscount +winnows diff --git a/2ano1/AED/aula11/file20.txt b/2ano1/AED/aula11/file20.txt new file mode 100644 index 0000000..96c9061 --- /dev/null +++ b/2ano1/AED/aula11/file20.txt @@ -0,0 +1,20 @@ +abates +acanthi +agings +bamboozle +challenged +dewlaps +exquisitely +fleeciest +forest +havanas +interruption +kebabs +malefactor +mending +prosecutes +sanely +sentinel +shaggier +thespians +transformation diff --git a/2ano1/AED/aula11/file99.txt b/2ano1/AED/aula11/file99.txt new file mode 100644 index 0000000..f8ccced --- /dev/null +++ b/2ano1/AED/aula11/file99.txt @@ -0,0 +1,99 @@ +abrogate +arrested +audiences +austerer +barely +barreling +bewail +bowditch +bulimics +bulky +bully +bunks +cabinetmakers +carpi +celestas +coalesced +cogitate +contaminate +dangerfield +dibbled +disproportion +distinguished +diverted +dot +dotting +dunce +emetics +emptiest +engenders +erase +excrescences +expertise +farthing +flashy +gen +germinal +got +grosser +grumman +hardiest +hench +highjackers +housebreaking +hugeness +inhibiting +insists +jig +keeling +lathing +leak +lesbianism +lugubriousness +manifestations +meteors +mint +muslims +neurons +oarsman +obstacles +organizer +pocono +projections +reciprocated +registrations +religious +renoir +repatriated +requisitioning +rhyming +romping +saturday +scheming +semitic +shadowier +smörgåsbord +snowdrops +solemnize +sot +speccing +spelunkers +spiriting +stairwells +statements +steps +stromboli +submarine +substation +sunbathing +thees +toggle +trilaterals +unfeasible +updates +visages +vitamins +waywardness +wettest +womanizers +zürich diff --git a/2ano1/AED/aula11/ordInversa02500.txt b/2ano1/AED/aula11/ordInversa02500.txt new file mode 100644 index 0000000..d3b332a --- /dev/null +++ b/2ano1/AED/aula11/ordInversa02500.txt @@ -0,0 +1,2500 @@ + 2500 + 2499 + 2498 + 2497 + 2496 + 2495 + 2494 + 2493 + 2492 + 2491 + 2490 + 2489 + 2488 + 2487 + 2486 + 2485 + 2484 + 2483 + 2482 + 2481 + 2480 + 2479 + 2478 + 2477 + 2476 + 2475 + 2474 + 2473 + 2472 + 2471 + 2470 + 2469 + 2468 + 2467 + 2466 + 2465 + 2464 + 2463 + 2462 + 2461 + 2460 + 2459 + 2458 + 2457 + 2456 + 2455 + 2454 + 2453 + 2452 + 2451 + 2450 + 2449 + 2448 + 2447 + 2446 + 2445 + 2444 + 2443 + 2442 + 2441 + 2440 + 2439 + 2438 + 2437 + 2436 + 2435 + 2434 + 2433 + 2432 + 2431 + 2430 + 2429 + 2428 + 2427 + 2426 + 2425 + 2424 + 2423 + 2422 + 2421 + 2420 + 2419 + 2418 + 2417 + 2416 + 2415 + 2414 + 2413 + 2412 + 2411 + 2410 + 2409 + 2408 + 2407 + 2406 + 2405 + 2404 + 2403 + 2402 + 2401 + 2400 + 2399 + 2398 + 2397 + 2396 + 2395 + 2394 + 2393 + 2392 + 2391 + 2390 + 2389 + 2388 + 2387 + 2386 + 2385 + 2384 + 2383 + 2382 + 2381 + 2380 + 2379 + 2378 + 2377 + 2376 + 2375 + 2374 + 2373 + 2372 + 2371 + 2370 + 2369 + 2368 + 2367 + 2366 + 2365 + 2364 + 2363 + 2362 + 2361 + 2360 + 2359 + 2358 + 2357 + 2356 + 2355 + 2354 + 2353 + 2352 + 2351 + 2350 + 2349 + 2348 + 2347 + 2346 + 2345 + 2344 + 2343 + 2342 + 2341 + 2340 + 2339 + 2338 + 2337 + 2336 + 2335 + 2334 + 2333 + 2332 + 2331 + 2330 + 2329 + 2328 + 2327 + 2326 + 2325 + 2324 + 2323 + 2322 + 2321 + 2320 + 2319 + 2318 + 2317 + 2316 + 2315 + 2314 + 2313 + 2312 + 2311 + 2310 + 2309 + 2308 + 2307 + 2306 + 2305 + 2304 + 2303 + 2302 + 2301 + 2300 + 2299 + 2298 + 2297 + 2296 + 2295 + 2294 + 2293 + 2292 + 2291 + 2290 + 2289 + 2288 + 2287 + 2286 + 2285 + 2284 + 2283 + 2282 + 2281 + 2280 + 2279 + 2278 + 2277 + 2276 + 2275 + 2274 + 2273 + 2272 + 2271 + 2270 + 2269 + 2268 + 2267 + 2266 + 2265 + 2264 + 2263 + 2262 + 2261 + 2260 + 2259 + 2258 + 2257 + 2256 + 2255 + 2254 + 2253 + 2252 + 2251 + 2250 + 2249 + 2248 + 2247 + 2246 + 2245 + 2244 + 2243 + 2242 + 2241 + 2240 + 2239 + 2238 + 2237 + 2236 + 2235 + 2234 + 2233 + 2232 + 2231 + 2230 + 2229 + 2228 + 2227 + 2226 + 2225 + 2224 + 2223 + 2222 + 2221 + 2220 + 2219 + 2218 + 2217 + 2216 + 2215 + 2214 + 2213 + 2212 + 2211 + 2210 + 2209 + 2208 + 2207 + 2206 + 2205 + 2204 + 2203 + 2202 + 2201 + 2200 + 2199 + 2198 + 2197 + 2196 + 2195 + 2194 + 2193 + 2192 + 2191 + 2190 + 2189 + 2188 + 2187 + 2186 + 2185 + 2184 + 2183 + 2182 + 2181 + 2180 + 2179 + 2178 + 2177 + 2176 + 2175 + 2174 + 2173 + 2172 + 2171 + 2170 + 2169 + 2168 + 2167 + 2166 + 2165 + 2164 + 2163 + 2162 + 2161 + 2160 + 2159 + 2158 + 2157 + 2156 + 2155 + 2154 + 2153 + 2152 + 2151 + 2150 + 2149 + 2148 + 2147 + 2146 + 2145 + 2144 + 2143 + 2142 + 2141 + 2140 + 2139 + 2138 + 2137 + 2136 + 2135 + 2134 + 2133 + 2132 + 2131 + 2130 + 2129 + 2128 + 2127 + 2126 + 2125 + 2124 + 2123 + 2122 + 2121 + 2120 + 2119 + 2118 + 2117 + 2116 + 2115 + 2114 + 2113 + 2112 + 2111 + 2110 + 2109 + 2108 + 2107 + 2106 + 2105 + 2104 + 2103 + 2102 + 2101 + 2100 + 2099 + 2098 + 2097 + 2096 + 2095 + 2094 + 2093 + 2092 + 2091 + 2090 + 2089 + 2088 + 2087 + 2086 + 2085 + 2084 + 2083 + 2082 + 2081 + 2080 + 2079 + 2078 + 2077 + 2076 + 2075 + 2074 + 2073 + 2072 + 2071 + 2070 + 2069 + 2068 + 2067 + 2066 + 2065 + 2064 + 2063 + 2062 + 2061 + 2060 + 2059 + 2058 + 2057 + 2056 + 2055 + 2054 + 2053 + 2052 + 2051 + 2050 + 2049 + 2048 + 2047 + 2046 + 2045 + 2044 + 2043 + 2042 + 2041 + 2040 + 2039 + 2038 + 2037 + 2036 + 2035 + 2034 + 2033 + 2032 + 2031 + 2030 + 2029 + 2028 + 2027 + 2026 + 2025 + 2024 + 2023 + 2022 + 2021 + 2020 + 2019 + 2018 + 2017 + 2016 + 2015 + 2014 + 2013 + 2012 + 2011 + 2010 + 2009 + 2008 + 2007 + 2006 + 2005 + 2004 + 2003 + 2002 + 2001 + 2000 + 1999 + 1998 + 1997 + 1996 + 1995 + 1994 + 1993 + 1992 + 1991 + 1990 + 1989 + 1988 + 1987 + 1986 + 1985 + 1984 + 1983 + 1982 + 1981 + 1980 + 1979 + 1978 + 1977 + 1976 + 1975 + 1974 + 1973 + 1972 + 1971 + 1970 + 1969 + 1968 + 1967 + 1966 + 1965 + 1964 + 1963 + 1962 + 1961 + 1960 + 1959 + 1958 + 1957 + 1956 + 1955 + 1954 + 1953 + 1952 + 1951 + 1950 + 1949 + 1948 + 1947 + 1946 + 1945 + 1944 + 1943 + 1942 + 1941 + 1940 + 1939 + 1938 + 1937 + 1936 + 1935 + 1934 + 1933 + 1932 + 1931 + 1930 + 1929 + 1928 + 1927 + 1926 + 1925 + 1924 + 1923 + 1922 + 1921 + 1920 + 1919 + 1918 + 1917 + 1916 + 1915 + 1914 + 1913 + 1912 + 1911 + 1910 + 1909 + 1908 + 1907 + 1906 + 1905 + 1904 + 1903 + 1902 + 1901 + 1900 + 1899 + 1898 + 1897 + 1896 + 1895 + 1894 + 1893 + 1892 + 1891 + 1890 + 1889 + 1888 + 1887 + 1886 + 1885 + 1884 + 1883 + 1882 + 1881 + 1880 + 1879 + 1878 + 1877 + 1876 + 1875 + 1874 + 1873 + 1872 + 1871 + 1870 + 1869 + 1868 + 1867 + 1866 + 1865 + 1864 + 1863 + 1862 + 1861 + 1860 + 1859 + 1858 + 1857 + 1856 + 1855 + 1854 + 1853 + 1852 + 1851 + 1850 + 1849 + 1848 + 1847 + 1846 + 1845 + 1844 + 1843 + 1842 + 1841 + 1840 + 1839 + 1838 + 1837 + 1836 + 1835 + 1834 + 1833 + 1832 + 1831 + 1830 + 1829 + 1828 + 1827 + 1826 + 1825 + 1824 + 1823 + 1822 + 1821 + 1820 + 1819 + 1818 + 1817 + 1816 + 1815 + 1814 + 1813 + 1812 + 1811 + 1810 + 1809 + 1808 + 1807 + 1806 + 1805 + 1804 + 1803 + 1802 + 1801 + 1800 + 1799 + 1798 + 1797 + 1796 + 1795 + 1794 + 1793 + 1792 + 1791 + 1790 + 1789 + 1788 + 1787 + 1786 + 1785 + 1784 + 1783 + 1782 + 1781 + 1780 + 1779 + 1778 + 1777 + 1776 + 1775 + 1774 + 1773 + 1772 + 1771 + 1770 + 1769 + 1768 + 1767 + 1766 + 1765 + 1764 + 1763 + 1762 + 1761 + 1760 + 1759 + 1758 + 1757 + 1756 + 1755 + 1754 + 1753 + 1752 + 1751 + 1750 + 1749 + 1748 + 1747 + 1746 + 1745 + 1744 + 1743 + 1742 + 1741 + 1740 + 1739 + 1738 + 1737 + 1736 + 1735 + 1734 + 1733 + 1732 + 1731 + 1730 + 1729 + 1728 + 1727 + 1726 + 1725 + 1724 + 1723 + 1722 + 1721 + 1720 + 1719 + 1718 + 1717 + 1716 + 1715 + 1714 + 1713 + 1712 + 1711 + 1710 + 1709 + 1708 + 1707 + 1706 + 1705 + 1704 + 1703 + 1702 + 1701 + 1700 + 1699 + 1698 + 1697 + 1696 + 1695 + 1694 + 1693 + 1692 + 1691 + 1690 + 1689 + 1688 + 1687 + 1686 + 1685 + 1684 + 1683 + 1682 + 1681 + 1680 + 1679 + 1678 + 1677 + 1676 + 1675 + 1674 + 1673 + 1672 + 1671 + 1670 + 1669 + 1668 + 1667 + 1666 + 1665 + 1664 + 1663 + 1662 + 1661 + 1660 + 1659 + 1658 + 1657 + 1656 + 1655 + 1654 + 1653 + 1652 + 1651 + 1650 + 1649 + 1648 + 1647 + 1646 + 1645 + 1644 + 1643 + 1642 + 1641 + 1640 + 1639 + 1638 + 1637 + 1636 + 1635 + 1634 + 1633 + 1632 + 1631 + 1630 + 1629 + 1628 + 1627 + 1626 + 1625 + 1624 + 1623 + 1622 + 1621 + 1620 + 1619 + 1618 + 1617 + 1616 + 1615 + 1614 + 1613 + 1612 + 1611 + 1610 + 1609 + 1608 + 1607 + 1606 + 1605 + 1604 + 1603 + 1602 + 1601 + 1600 + 1599 + 1598 + 1597 + 1596 + 1595 + 1594 + 1593 + 1592 + 1591 + 1590 + 1589 + 1588 + 1587 + 1586 + 1585 + 1584 + 1583 + 1582 + 1581 + 1580 + 1579 + 1578 + 1577 + 1576 + 1575 + 1574 + 1573 + 1572 + 1571 + 1570 + 1569 + 1568 + 1567 + 1566 + 1565 + 1564 + 1563 + 1562 + 1561 + 1560 + 1559 + 1558 + 1557 + 1556 + 1555 + 1554 + 1553 + 1552 + 1551 + 1550 + 1549 + 1548 + 1547 + 1546 + 1545 + 1544 + 1543 + 1542 + 1541 + 1540 + 1539 + 1538 + 1537 + 1536 + 1535 + 1534 + 1533 + 1532 + 1531 + 1530 + 1529 + 1528 + 1527 + 1526 + 1525 + 1524 + 1523 + 1522 + 1521 + 1520 + 1519 + 1518 + 1517 + 1516 + 1515 + 1514 + 1513 + 1512 + 1511 + 1510 + 1509 + 1508 + 1507 + 1506 + 1505 + 1504 + 1503 + 1502 + 1501 + 1500 + 1499 + 1498 + 1497 + 1496 + 1495 + 1494 + 1493 + 1492 + 1491 + 1490 + 1489 + 1488 + 1487 + 1486 + 1485 + 1484 + 1483 + 1482 + 1481 + 1480 + 1479 + 1478 + 1477 + 1476 + 1475 + 1474 + 1473 + 1472 + 1471 + 1470 + 1469 + 1468 + 1467 + 1466 + 1465 + 1464 + 1463 + 1462 + 1461 + 1460 + 1459 + 1458 + 1457 + 1456 + 1455 + 1454 + 1453 + 1452 + 1451 + 1450 + 1449 + 1448 + 1447 + 1446 + 1445 + 1444 + 1443 + 1442 + 1441 + 1440 + 1439 + 1438 + 1437 + 1436 + 1435 + 1434 + 1433 + 1432 + 1431 + 1430 + 1429 + 1428 + 1427 + 1426 + 1425 + 1424 + 1423 + 1422 + 1421 + 1420 + 1419 + 1418 + 1417 + 1416 + 1415 + 1414 + 1413 + 1412 + 1411 + 1410 + 1409 + 1408 + 1407 + 1406 + 1405 + 1404 + 1403 + 1402 + 1401 + 1400 + 1399 + 1398 + 1397 + 1396 + 1395 + 1394 + 1393 + 1392 + 1391 + 1390 + 1389 + 1388 + 1387 + 1386 + 1385 + 1384 + 1383 + 1382 + 1381 + 1380 + 1379 + 1378 + 1377 + 1376 + 1375 + 1374 + 1373 + 1372 + 1371 + 1370 + 1369 + 1368 + 1367 + 1366 + 1365 + 1364 + 1363 + 1362 + 1361 + 1360 + 1359 + 1358 + 1357 + 1356 + 1355 + 1354 + 1353 + 1352 + 1351 + 1350 + 1349 + 1348 + 1347 + 1346 + 1345 + 1344 + 1343 + 1342 + 1341 + 1340 + 1339 + 1338 + 1337 + 1336 + 1335 + 1334 + 1333 + 1332 + 1331 + 1330 + 1329 + 1328 + 1327 + 1326 + 1325 + 1324 + 1323 + 1322 + 1321 + 1320 + 1319 + 1318 + 1317 + 1316 + 1315 + 1314 + 1313 + 1312 + 1311 + 1310 + 1309 + 1308 + 1307 + 1306 + 1305 + 1304 + 1303 + 1302 + 1301 + 1300 + 1299 + 1298 + 1297 + 1296 + 1295 + 1294 + 1293 + 1292 + 1291 + 1290 + 1289 + 1288 + 1287 + 1286 + 1285 + 1284 + 1283 + 1282 + 1281 + 1280 + 1279 + 1278 + 1277 + 1276 + 1275 + 1274 + 1273 + 1272 + 1271 + 1270 + 1269 + 1268 + 1267 + 1266 + 1265 + 1264 + 1263 + 1262 + 1261 + 1260 + 1259 + 1258 + 1257 + 1256 + 1255 + 1254 + 1253 + 1252 + 1251 + 1250 + 1249 + 1248 + 1247 + 1246 + 1245 + 1244 + 1243 + 1242 + 1241 + 1240 + 1239 + 1238 + 1237 + 1236 + 1235 + 1234 + 1233 + 1232 + 1231 + 1230 + 1229 + 1228 + 1227 + 1226 + 1225 + 1224 + 1223 + 1222 + 1221 + 1220 + 1219 + 1218 + 1217 + 1216 + 1215 + 1214 + 1213 + 1212 + 1211 + 1210 + 1209 + 1208 + 1207 + 1206 + 1205 + 1204 + 1203 + 1202 + 1201 + 1200 + 1199 + 1198 + 1197 + 1196 + 1195 + 1194 + 1193 + 1192 + 1191 + 1190 + 1189 + 1188 + 1187 + 1186 + 1185 + 1184 + 1183 + 1182 + 1181 + 1180 + 1179 + 1178 + 1177 + 1176 + 1175 + 1174 + 1173 + 1172 + 1171 + 1170 + 1169 + 1168 + 1167 + 1166 + 1165 + 1164 + 1163 + 1162 + 1161 + 1160 + 1159 + 1158 + 1157 + 1156 + 1155 + 1154 + 1153 + 1152 + 1151 + 1150 + 1149 + 1148 + 1147 + 1146 + 1145 + 1144 + 1143 + 1142 + 1141 + 1140 + 1139 + 1138 + 1137 + 1136 + 1135 + 1134 + 1133 + 1132 + 1131 + 1130 + 1129 + 1128 + 1127 + 1126 + 1125 + 1124 + 1123 + 1122 + 1121 + 1120 + 1119 + 1118 + 1117 + 1116 + 1115 + 1114 + 1113 + 1112 + 1111 + 1110 + 1109 + 1108 + 1107 + 1106 + 1105 + 1104 + 1103 + 1102 + 1101 + 1100 + 1099 + 1098 + 1097 + 1096 + 1095 + 1094 + 1093 + 1092 + 1091 + 1090 + 1089 + 1088 + 1087 + 1086 + 1085 + 1084 + 1083 + 1082 + 1081 + 1080 + 1079 + 1078 + 1077 + 1076 + 1075 + 1074 + 1073 + 1072 + 1071 + 1070 + 1069 + 1068 + 1067 + 1066 + 1065 + 1064 + 1063 + 1062 + 1061 + 1060 + 1059 + 1058 + 1057 + 1056 + 1055 + 1054 + 1053 + 1052 + 1051 + 1050 + 1049 + 1048 + 1047 + 1046 + 1045 + 1044 + 1043 + 1042 + 1041 + 1040 + 1039 + 1038 + 1037 + 1036 + 1035 + 1034 + 1033 + 1032 + 1031 + 1030 + 1029 + 1028 + 1027 + 1026 + 1025 + 1024 + 1023 + 1022 + 1021 + 1020 + 1019 + 1018 + 1017 + 1016 + 1015 + 1014 + 1013 + 1012 + 1011 + 1010 + 1009 + 1008 + 1007 + 1006 + 1005 + 1004 + 1003 + 1002 + 1001 + 1000 + 999 + 998 + 997 + 996 + 995 + 994 + 993 + 992 + 991 + 990 + 989 + 988 + 987 + 986 + 985 + 984 + 983 + 982 + 981 + 980 + 979 + 978 + 977 + 976 + 975 + 974 + 973 + 972 + 971 + 970 + 969 + 968 + 967 + 966 + 965 + 964 + 963 + 962 + 961 + 960 + 959 + 958 + 957 + 956 + 955 + 954 + 953 + 952 + 951 + 950 + 949 + 948 + 947 + 946 + 945 + 944 + 943 + 942 + 941 + 940 + 939 + 938 + 937 + 936 + 935 + 934 + 933 + 932 + 931 + 930 + 929 + 928 + 927 + 926 + 925 + 924 + 923 + 922 + 921 + 920 + 919 + 918 + 917 + 916 + 915 + 914 + 913 + 912 + 911 + 910 + 909 + 908 + 907 + 906 + 905 + 904 + 903 + 902 + 901 + 900 + 899 + 898 + 897 + 896 + 895 + 894 + 893 + 892 + 891 + 890 + 889 + 888 + 887 + 886 + 885 + 884 + 883 + 882 + 881 + 880 + 879 + 878 + 877 + 876 + 875 + 874 + 873 + 872 + 871 + 870 + 869 + 868 + 867 + 866 + 865 + 864 + 863 + 862 + 861 + 860 + 859 + 858 + 857 + 856 + 855 + 854 + 853 + 852 + 851 + 850 + 849 + 848 + 847 + 846 + 845 + 844 + 843 + 842 + 841 + 840 + 839 + 838 + 837 + 836 + 835 + 834 + 833 + 832 + 831 + 830 + 829 + 828 + 827 + 826 + 825 + 824 + 823 + 822 + 821 + 820 + 819 + 818 + 817 + 816 + 815 + 814 + 813 + 812 + 811 + 810 + 809 + 808 + 807 + 806 + 805 + 804 + 803 + 802 + 801 + 800 + 799 + 798 + 797 + 796 + 795 + 794 + 793 + 792 + 791 + 790 + 789 + 788 + 787 + 786 + 785 + 784 + 783 + 782 + 781 + 780 + 779 + 778 + 777 + 776 + 775 + 774 + 773 + 772 + 771 + 770 + 769 + 768 + 767 + 766 + 765 + 764 + 763 + 762 + 761 + 760 + 759 + 758 + 757 + 756 + 755 + 754 + 753 + 752 + 751 + 750 + 749 + 748 + 747 + 746 + 745 + 744 + 743 + 742 + 741 + 740 + 739 + 738 + 737 + 736 + 735 + 734 + 733 + 732 + 731 + 730 + 729 + 728 + 727 + 726 + 725 + 724 + 723 + 722 + 721 + 720 + 719 + 718 + 717 + 716 + 715 + 714 + 713 + 712 + 711 + 710 + 709 + 708 + 707 + 706 + 705 + 704 + 703 + 702 + 701 + 700 + 699 + 698 + 697 + 696 + 695 + 694 + 693 + 692 + 691 + 690 + 689 + 688 + 687 + 686 + 685 + 684 + 683 + 682 + 681 + 680 + 679 + 678 + 677 + 676 + 675 + 674 + 673 + 672 + 671 + 670 + 669 + 668 + 667 + 666 + 665 + 664 + 663 + 662 + 661 + 660 + 659 + 658 + 657 + 656 + 655 + 654 + 653 + 652 + 651 + 650 + 649 + 648 + 647 + 646 + 645 + 644 + 643 + 642 + 641 + 640 + 639 + 638 + 637 + 636 + 635 + 634 + 633 + 632 + 631 + 630 + 629 + 628 + 627 + 626 + 625 + 624 + 623 + 622 + 621 + 620 + 619 + 618 + 617 + 616 + 615 + 614 + 613 + 612 + 611 + 610 + 609 + 608 + 607 + 606 + 605 + 604 + 603 + 602 + 601 + 600 + 599 + 598 + 597 + 596 + 595 + 594 + 593 + 592 + 591 + 590 + 589 + 588 + 587 + 586 + 585 + 584 + 583 + 582 + 581 + 580 + 579 + 578 + 577 + 576 + 575 + 574 + 573 + 572 + 571 + 570 + 569 + 568 + 567 + 566 + 565 + 564 + 563 + 562 + 561 + 560 + 559 + 558 + 557 + 556 + 555 + 554 + 553 + 552 + 551 + 550 + 549 + 548 + 547 + 546 + 545 + 544 + 543 + 542 + 541 + 540 + 539 + 538 + 537 + 536 + 535 + 534 + 533 + 532 + 531 + 530 + 529 + 528 + 527 + 526 + 525 + 524 + 523 + 522 + 521 + 520 + 519 + 518 + 517 + 516 + 515 + 514 + 513 + 512 + 511 + 510 + 509 + 508 + 507 + 506 + 505 + 504 + 503 + 502 + 501 + 500 + 499 + 498 + 497 + 496 + 495 + 494 + 493 + 492 + 491 + 490 + 489 + 488 + 487 + 486 + 485 + 484 + 483 + 482 + 481 + 480 + 479 + 478 + 477 + 476 + 475 + 474 + 473 + 472 + 471 + 470 + 469 + 468 + 467 + 466 + 465 + 464 + 463 + 462 + 461 + 460 + 459 + 458 + 457 + 456 + 455 + 454 + 453 + 452 + 451 + 450 + 449 + 448 + 447 + 446 + 445 + 444 + 443 + 442 + 441 + 440 + 439 + 438 + 437 + 436 + 435 + 434 + 433 + 432 + 431 + 430 + 429 + 428 + 427 + 426 + 425 + 424 + 423 + 422 + 421 + 420 + 419 + 418 + 417 + 416 + 415 + 414 + 413 + 412 + 411 + 410 + 409 + 408 + 407 + 406 + 405 + 404 + 403 + 402 + 401 + 400 + 399 + 398 + 397 + 396 + 395 + 394 + 393 + 392 + 391 + 390 + 389 + 388 + 387 + 386 + 385 + 384 + 383 + 382 + 381 + 380 + 379 + 378 + 377 + 376 + 375 + 374 + 373 + 372 + 371 + 370 + 369 + 368 + 367 + 366 + 365 + 364 + 363 + 362 + 361 + 360 + 359 + 358 + 357 + 356 + 355 + 354 + 353 + 352 + 351 + 350 + 349 + 348 + 347 + 346 + 345 + 344 + 343 + 342 + 341 + 340 + 339 + 338 + 337 + 336 + 335 + 334 + 333 + 332 + 331 + 330 + 329 + 328 + 327 + 326 + 325 + 324 + 323 + 322 + 321 + 320 + 319 + 318 + 317 + 316 + 315 + 314 + 313 + 312 + 311 + 310 + 309 + 308 + 307 + 306 + 305 + 304 + 303 + 302 + 301 + 300 + 299 + 298 + 297 + 296 + 295 + 294 + 293 + 292 + 291 + 290 + 289 + 288 + 287 + 286 + 285 + 284 + 283 + 282 + 281 + 280 + 279 + 278 + 277 + 276 + 275 + 274 + 273 + 272 + 271 + 270 + 269 + 268 + 267 + 266 + 265 + 264 + 263 + 262 + 261 + 260 + 259 + 258 + 257 + 256 + 255 + 254 + 253 + 252 + 251 + 250 + 249 + 248 + 247 + 246 + 245 + 244 + 243 + 242 + 241 + 240 + 239 + 238 + 237 + 236 + 235 + 234 + 233 + 232 + 231 + 230 + 229 + 228 + 227 + 226 + 225 + 224 + 223 + 222 + 221 + 220 + 219 + 218 + 217 + 216 + 215 + 214 + 213 + 212 + 211 + 210 + 209 + 208 + 207 + 206 + 205 + 204 + 203 + 202 + 201 + 200 + 199 + 198 + 197 + 196 + 195 + 194 + 193 + 192 + 191 + 190 + 189 + 188 + 187 + 186 + 185 + 184 + 183 + 182 + 181 + 180 + 179 + 178 + 177 + 176 + 175 + 174 + 173 + 172 + 171 + 170 + 169 + 168 + 167 + 166 + 165 + 164 + 163 + 162 + 161 + 160 + 159 + 158 + 157 + 156 + 155 + 154 + 153 + 152 + 151 + 150 + 149 + 148 + 147 + 146 + 145 + 144 + 143 + 142 + 141 + 140 + 139 + 138 + 137 + 136 + 135 + 134 + 133 + 132 + 131 + 130 + 129 + 128 + 127 + 126 + 125 + 124 + 123 + 122 + 121 + 120 + 119 + 118 + 117 + 116 + 115 + 114 + 113 + 112 + 111 + 110 + 109 + 108 + 107 + 106 + 105 + 104 + 103 + 102 + 101 + 100 + 99 + 98 + 97 + 96 + 95 + 94 + 93 + 92 + 91 + 90 + 89 + 88 + 87 + 86 + 85 + 84 + 83 + 82 + 81 + 80 + 79 + 78 + 77 + 76 + 75 + 74 + 73 + 72 + 71 + 70 + 69 + 68 + 67 + 66 + 65 + 64 + 63 + 62 + 61 + 60 + 59 + 58 + 57 + 56 + 55 + 54 + 53 + 52 + 51 + 50 + 49 + 48 + 47 + 46 + 45 + 44 + 43 + 42 + 41 + 40 + 39 + 38 + 37 + 36 + 35 + 34 + 33 + 32 + 31 + 30 + 29 + 28 + 27 + 26 + 25 + 24 + 23 + 22 + 21 + 20 + 19 + 18 + 17 + 16 + 15 + 14 + 13 + 12 + 11 + 10 + 9 + 8 + 7 + 6 + 5 + 4 + 3 + 2 + 1 diff --git a/2ano1/AED/aula11/ordenados02500.txt b/2ano1/AED/aula11/ordenados02500.txt new file mode 100644 index 0000000..560d304 --- /dev/null +++ b/2ano1/AED/aula11/ordenados02500.txt @@ -0,0 +1,2500 @@ + 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10 + 11 + 12 + 13 + 14 + 15 + 16 + 17 + 18 + 19 + 20 + 21 + 22 + 23 + 24 + 25 + 26 + 27 + 28 + 29 + 30 + 31 + 32 + 33 + 34 + 35 + 36 + 37 + 38 + 39 + 40 + 41 + 42 + 43 + 44 + 45 + 46 + 47 + 48 + 49 + 50 + 51 + 52 + 53 + 54 + 55 + 56 + 57 + 58 + 59 + 60 + 61 + 62 + 63 + 64 + 65 + 66 + 67 + 68 + 69 + 70 + 71 + 72 + 73 + 74 + 75 + 76 + 77 + 78 + 79 + 80 + 81 + 82 + 83 + 84 + 85 + 86 + 87 + 88 + 89 + 90 + 91 + 92 + 93 + 94 + 95 + 96 + 97 + 98 + 99 + 100 + 101 + 102 + 103 + 104 + 105 + 106 + 107 + 108 + 109 + 110 + 111 + 112 + 113 + 114 + 115 + 116 + 117 + 118 + 119 + 120 + 121 + 122 + 123 + 124 + 125 + 126 + 127 + 128 + 129 + 130 + 131 + 132 + 133 + 134 + 135 + 136 + 137 + 138 + 139 + 140 + 141 + 142 + 143 + 144 + 145 + 146 + 147 + 148 + 149 + 150 + 151 + 152 + 153 + 154 + 155 + 156 + 157 + 158 + 159 + 160 + 161 + 162 + 163 + 164 + 165 + 166 + 167 + 168 + 169 + 170 + 171 + 172 + 173 + 174 + 175 + 176 + 177 + 178 + 179 + 180 + 181 + 182 + 183 + 184 + 185 + 186 + 187 + 188 + 189 + 190 + 191 + 192 + 193 + 194 + 195 + 196 + 197 + 198 + 199 + 200 + 201 + 202 + 203 + 204 + 205 + 206 + 207 + 208 + 209 + 210 + 211 + 212 + 213 + 214 + 215 + 216 + 217 + 218 + 219 + 220 + 221 + 222 + 223 + 224 + 225 + 226 + 227 + 228 + 229 + 230 + 231 + 232 + 233 + 234 + 235 + 236 + 237 + 238 + 239 + 240 + 241 + 242 + 243 + 244 + 245 + 246 + 247 + 248 + 249 + 250 + 251 + 252 + 253 + 254 + 255 + 256 + 257 + 258 + 259 + 260 + 261 + 262 + 263 + 264 + 265 + 266 + 267 + 268 + 269 + 270 + 271 + 272 + 273 + 274 + 275 + 276 + 277 + 278 + 279 + 280 + 281 + 282 + 283 + 284 + 285 + 286 + 287 + 288 + 289 + 290 + 291 + 292 + 293 + 294 + 295 + 296 + 297 + 298 + 299 + 300 + 301 + 302 + 303 + 304 + 305 + 306 + 307 + 308 + 309 + 310 + 311 + 312 + 313 + 314 + 315 + 316 + 317 + 318 + 319 + 320 + 321 + 322 + 323 + 324 + 325 + 326 + 327 + 328 + 329 + 330 + 331 + 332 + 333 + 334 + 335 + 336 + 337 + 338 + 339 + 340 + 341 + 342 + 343 + 344 + 345 + 346 + 347 + 348 + 349 + 350 + 351 + 352 + 353 + 354 + 355 + 356 + 357 + 358 + 359 + 360 + 361 + 362 + 363 + 364 + 365 + 366 + 367 + 368 + 369 + 370 + 371 + 372 + 373 + 374 + 375 + 376 + 377 + 378 + 379 + 380 + 381 + 382 + 383 + 384 + 385 + 386 + 387 + 388 + 389 + 390 + 391 + 392 + 393 + 394 + 395 + 396 + 397 + 398 + 399 + 400 + 401 + 402 + 403 + 404 + 405 + 406 + 407 + 408 + 409 + 410 + 411 + 412 + 413 + 414 + 415 + 416 + 417 + 418 + 419 + 420 + 421 + 422 + 423 + 424 + 425 + 426 + 427 + 428 + 429 + 430 + 431 + 432 + 433 + 434 + 435 + 436 + 437 + 438 + 439 + 440 + 441 + 442 + 443 + 444 + 445 + 446 + 447 + 448 + 449 + 450 + 451 + 452 + 453 + 454 + 455 + 456 + 457 + 458 + 459 + 460 + 461 + 462 + 463 + 464 + 465 + 466 + 467 + 468 + 469 + 470 + 471 + 472 + 473 + 474 + 475 + 476 + 477 + 478 + 479 + 480 + 481 + 482 + 483 + 484 + 485 + 486 + 487 + 488 + 489 + 490 + 491 + 492 + 493 + 494 + 495 + 496 + 497 + 498 + 499 + 500 + 501 + 502 + 503 + 504 + 505 + 506 + 507 + 508 + 509 + 510 + 511 + 512 + 513 + 514 + 515 + 516 + 517 + 518 + 519 + 520 + 521 + 522 + 523 + 524 + 525 + 526 + 527 + 528 + 529 + 530 + 531 + 532 + 533 + 534 + 535 + 536 + 537 + 538 + 539 + 540 + 541 + 542 + 543 + 544 + 545 + 546 + 547 + 548 + 549 + 550 + 551 + 552 + 553 + 554 + 555 + 556 + 557 + 558 + 559 + 560 + 561 + 562 + 563 + 564 + 565 + 566 + 567 + 568 + 569 + 570 + 571 + 572 + 573 + 574 + 575 + 576 + 577 + 578 + 579 + 580 + 581 + 582 + 583 + 584 + 585 + 586 + 587 + 588 + 589 + 590 + 591 + 592 + 593 + 594 + 595 + 596 + 597 + 598 + 599 + 600 + 601 + 602 + 603 + 604 + 605 + 606 + 607 + 608 + 609 + 610 + 611 + 612 + 613 + 614 + 615 + 616 + 617 + 618 + 619 + 620 + 621 + 622 + 623 + 624 + 625 + 626 + 627 + 628 + 629 + 630 + 631 + 632 + 633 + 634 + 635 + 636 + 637 + 638 + 639 + 640 + 641 + 642 + 643 + 644 + 645 + 646 + 647 + 648 + 649 + 650 + 651 + 652 + 653 + 654 + 655 + 656 + 657 + 658 + 659 + 660 + 661 + 662 + 663 + 664 + 665 + 666 + 667 + 668 + 669 + 670 + 671 + 672 + 673 + 674 + 675 + 676 + 677 + 678 + 679 + 680 + 681 + 682 + 683 + 684 + 685 + 686 + 687 + 688 + 689 + 690 + 691 + 692 + 693 + 694 + 695 + 696 + 697 + 698 + 699 + 700 + 701 + 702 + 703 + 704 + 705 + 706 + 707 + 708 + 709 + 710 + 711 + 712 + 713 + 714 + 715 + 716 + 717 + 718 + 719 + 720 + 721 + 722 + 723 + 724 + 725 + 726 + 727 + 728 + 729 + 730 + 731 + 732 + 733 + 734 + 735 + 736 + 737 + 738 + 739 + 740 + 741 + 742 + 743 + 744 + 745 + 746 + 747 + 748 + 749 + 750 + 751 + 752 + 753 + 754 + 755 + 756 + 757 + 758 + 759 + 760 + 761 + 762 + 763 + 764 + 765 + 766 + 767 + 768 + 769 + 770 + 771 + 772 + 773 + 774 + 775 + 776 + 777 + 778 + 779 + 780 + 781 + 782 + 783 + 784 + 785 + 786 + 787 + 788 + 789 + 790 + 791 + 792 + 793 + 794 + 795 + 796 + 797 + 798 + 799 + 800 + 801 + 802 + 803 + 804 + 805 + 806 + 807 + 808 + 809 + 810 + 811 + 812 + 813 + 814 + 815 + 816 + 817 + 818 + 819 + 820 + 821 + 822 + 823 + 824 + 825 + 826 + 827 + 828 + 829 + 830 + 831 + 832 + 833 + 834 + 835 + 836 + 837 + 838 + 839 + 840 + 841 + 842 + 843 + 844 + 845 + 846 + 847 + 848 + 849 + 850 + 851 + 852 + 853 + 854 + 855 + 856 + 857 + 858 + 859 + 860 + 861 + 862 + 863 + 864 + 865 + 866 + 867 + 868 + 869 + 870 + 871 + 872 + 873 + 874 + 875 + 876 + 877 + 878 + 879 + 880 + 881 + 882 + 883 + 884 + 885 + 886 + 887 + 888 + 889 + 890 + 891 + 892 + 893 + 894 + 895 + 896 + 897 + 898 + 899 + 900 + 901 + 902 + 903 + 904 + 905 + 906 + 907 + 908 + 909 + 910 + 911 + 912 + 913 + 914 + 915 + 916 + 917 + 918 + 919 + 920 + 921 + 922 + 923 + 924 + 925 + 926 + 927 + 928 + 929 + 930 + 931 + 932 + 933 + 934 + 935 + 936 + 937 + 938 + 939 + 940 + 941 + 942 + 943 + 944 + 945 + 946 + 947 + 948 + 949 + 950 + 951 + 952 + 953 + 954 + 955 + 956 + 957 + 958 + 959 + 960 + 961 + 962 + 963 + 964 + 965 + 966 + 967 + 968 + 969 + 970 + 971 + 972 + 973 + 974 + 975 + 976 + 977 + 978 + 979 + 980 + 981 + 982 + 983 + 984 + 985 + 986 + 987 + 988 + 989 + 990 + 991 + 992 + 993 + 994 + 995 + 996 + 997 + 998 + 999 + 1000 + 1001 + 1002 + 1003 + 1004 + 1005 + 1006 + 1007 + 1008 + 1009 + 1010 + 1011 + 1012 + 1013 + 1014 + 1015 + 1016 + 1017 + 1018 + 1019 + 1020 + 1021 + 1022 + 1023 + 1024 + 1025 + 1026 + 1027 + 1028 + 1029 + 1030 + 1031 + 1032 + 1033 + 1034 + 1035 + 1036 + 1037 + 1038 + 1039 + 1040 + 1041 + 1042 + 1043 + 1044 + 1045 + 1046 + 1047 + 1048 + 1049 + 1050 + 1051 + 1052 + 1053 + 1054 + 1055 + 1056 + 1057 + 1058 + 1059 + 1060 + 1061 + 1062 + 1063 + 1064 + 1065 + 1066 + 1067 + 1068 + 1069 + 1070 + 1071 + 1072 + 1073 + 1074 + 1075 + 1076 + 1077 + 1078 + 1079 + 1080 + 1081 + 1082 + 1083 + 1084 + 1085 + 1086 + 1087 + 1088 + 1089 + 1090 + 1091 + 1092 + 1093 + 1094 + 1095 + 1096 + 1097 + 1098 + 1099 + 1100 + 1101 + 1102 + 1103 + 1104 + 1105 + 1106 + 1107 + 1108 + 1109 + 1110 + 1111 + 1112 + 1113 + 1114 + 1115 + 1116 + 1117 + 1118 + 1119 + 1120 + 1121 + 1122 + 1123 + 1124 + 1125 + 1126 + 1127 + 1128 + 1129 + 1130 + 1131 + 1132 + 1133 + 1134 + 1135 + 1136 + 1137 + 1138 + 1139 + 1140 + 1141 + 1142 + 1143 + 1144 + 1145 + 1146 + 1147 + 1148 + 1149 + 1150 + 1151 + 1152 + 1153 + 1154 + 1155 + 1156 + 1157 + 1158 + 1159 + 1160 + 1161 + 1162 + 1163 + 1164 + 1165 + 1166 + 1167 + 1168 + 1169 + 1170 + 1171 + 1172 + 1173 + 1174 + 1175 + 1176 + 1177 + 1178 + 1179 + 1180 + 1181 + 1182 + 1183 + 1184 + 1185 + 1186 + 1187 + 1188 + 1189 + 1190 + 1191 + 1192 + 1193 + 1194 + 1195 + 1196 + 1197 + 1198 + 1199 + 1200 + 1201 + 1202 + 1203 + 1204 + 1205 + 1206 + 1207 + 1208 + 1209 + 1210 + 1211 + 1212 + 1213 + 1214 + 1215 + 1216 + 1217 + 1218 + 1219 + 1220 + 1221 + 1222 + 1223 + 1224 + 1225 + 1226 + 1227 + 1228 + 1229 + 1230 + 1231 + 1232 + 1233 + 1234 + 1235 + 1236 + 1237 + 1238 + 1239 + 1240 + 1241 + 1242 + 1243 + 1244 + 1245 + 1246 + 1247 + 1248 + 1249 + 1250 + 1251 + 1252 + 1253 + 1254 + 1255 + 1256 + 1257 + 1258 + 1259 + 1260 + 1261 + 1262 + 1263 + 1264 + 1265 + 1266 + 1267 + 1268 + 1269 + 1270 + 1271 + 1272 + 1273 + 1274 + 1275 + 1276 + 1277 + 1278 + 1279 + 1280 + 1281 + 1282 + 1283 + 1284 + 1285 + 1286 + 1287 + 1288 + 1289 + 1290 + 1291 + 1292 + 1293 + 1294 + 1295 + 1296 + 1297 + 1298 + 1299 + 1300 + 1301 + 1302 + 1303 + 1304 + 1305 + 1306 + 1307 + 1308 + 1309 + 1310 + 1311 + 1312 + 1313 + 1314 + 1315 + 1316 + 1317 + 1318 + 1319 + 1320 + 1321 + 1322 + 1323 + 1324 + 1325 + 1326 + 1327 + 1328 + 1329 + 1330 + 1331 + 1332 + 1333 + 1334 + 1335 + 1336 + 1337 + 1338 + 1339 + 1340 + 1341 + 1342 + 1343 + 1344 + 1345 + 1346 + 1347 + 1348 + 1349 + 1350 + 1351 + 1352 + 1353 + 1354 + 1355 + 1356 + 1357 + 1358 + 1359 + 1360 + 1361 + 1362 + 1363 + 1364 + 1365 + 1366 + 1367 + 1368 + 1369 + 1370 + 1371 + 1372 + 1373 + 1374 + 1375 + 1376 + 1377 + 1378 + 1379 + 1380 + 1381 + 1382 + 1383 + 1384 + 1385 + 1386 + 1387 + 1388 + 1389 + 1390 + 1391 + 1392 + 1393 + 1394 + 1395 + 1396 + 1397 + 1398 + 1399 + 1400 + 1401 + 1402 + 1403 + 1404 + 1405 + 1406 + 1407 + 1408 + 1409 + 1410 + 1411 + 1412 + 1413 + 1414 + 1415 + 1416 + 1417 + 1418 + 1419 + 1420 + 1421 + 1422 + 1423 + 1424 + 1425 + 1426 + 1427 + 1428 + 1429 + 1430 + 1431 + 1432 + 1433 + 1434 + 1435 + 1436 + 1437 + 1438 + 1439 + 1440 + 1441 + 1442 + 1443 + 1444 + 1445 + 1446 + 1447 + 1448 + 1449 + 1450 + 1451 + 1452 + 1453 + 1454 + 1455 + 1456 + 1457 + 1458 + 1459 + 1460 + 1461 + 1462 + 1463 + 1464 + 1465 + 1466 + 1467 + 1468 + 1469 + 1470 + 1471 + 1472 + 1473 + 1474 + 1475 + 1476 + 1477 + 1478 + 1479 + 1480 + 1481 + 1482 + 1483 + 1484 + 1485 + 1486 + 1487 + 1488 + 1489 + 1490 + 1491 + 1492 + 1493 + 1494 + 1495 + 1496 + 1497 + 1498 + 1499 + 1500 + 1501 + 1502 + 1503 + 1504 + 1505 + 1506 + 1507 + 1508 + 1509 + 1510 + 1511 + 1512 + 1513 + 1514 + 1515 + 1516 + 1517 + 1518 + 1519 + 1520 + 1521 + 1522 + 1523 + 1524 + 1525 + 1526 + 1527 + 1528 + 1529 + 1530 + 1531 + 1532 + 1533 + 1534 + 1535 + 1536 + 1537 + 1538 + 1539 + 1540 + 1541 + 1542 + 1543 + 1544 + 1545 + 1546 + 1547 + 1548 + 1549 + 1550 + 1551 + 1552 + 1553 + 1554 + 1555 + 1556 + 1557 + 1558 + 1559 + 1560 + 1561 + 1562 + 1563 + 1564 + 1565 + 1566 + 1567 + 1568 + 1569 + 1570 + 1571 + 1572 + 1573 + 1574 + 1575 + 1576 + 1577 + 1578 + 1579 + 1580 + 1581 + 1582 + 1583 + 1584 + 1585 + 1586 + 1587 + 1588 + 1589 + 1590 + 1591 + 1592 + 1593 + 1594 + 1595 + 1596 + 1597 + 1598 + 1599 + 1600 + 1601 + 1602 + 1603 + 1604 + 1605 + 1606 + 1607 + 1608 + 1609 + 1610 + 1611 + 1612 + 1613 + 1614 + 1615 + 1616 + 1617 + 1618 + 1619 + 1620 + 1621 + 1622 + 1623 + 1624 + 1625 + 1626 + 1627 + 1628 + 1629 + 1630 + 1631 + 1632 + 1633 + 1634 + 1635 + 1636 + 1637 + 1638 + 1639 + 1640 + 1641 + 1642 + 1643 + 1644 + 1645 + 1646 + 1647 + 1648 + 1649 + 1650 + 1651 + 1652 + 1653 + 1654 + 1655 + 1656 + 1657 + 1658 + 1659 + 1660 + 1661 + 1662 + 1663 + 1664 + 1665 + 1666 + 1667 + 1668 + 1669 + 1670 + 1671 + 1672 + 1673 + 1674 + 1675 + 1676 + 1677 + 1678 + 1679 + 1680 + 1681 + 1682 + 1683 + 1684 + 1685 + 1686 + 1687 + 1688 + 1689 + 1690 + 1691 + 1692 + 1693 + 1694 + 1695 + 1696 + 1697 + 1698 + 1699 + 1700 + 1701 + 1702 + 1703 + 1704 + 1705 + 1706 + 1707 + 1708 + 1709 + 1710 + 1711 + 1712 + 1713 + 1714 + 1715 + 1716 + 1717 + 1718 + 1719 + 1720 + 1721 + 1722 + 1723 + 1724 + 1725 + 1726 + 1727 + 1728 + 1729 + 1730 + 1731 + 1732 + 1733 + 1734 + 1735 + 1736 + 1737 + 1738 + 1739 + 1740 + 1741 + 1742 + 1743 + 1744 + 1745 + 1746 + 1747 + 1748 + 1749 + 1750 + 1751 + 1752 + 1753 + 1754 + 1755 + 1756 + 1757 + 1758 + 1759 + 1760 + 1761 + 1762 + 1763 + 1764 + 1765 + 1766 + 1767 + 1768 + 1769 + 1770 + 1771 + 1772 + 1773 + 1774 + 1775 + 1776 + 1777 + 1778 + 1779 + 1780 + 1781 + 1782 + 1783 + 1784 + 1785 + 1786 + 1787 + 1788 + 1789 + 1790 + 1791 + 1792 + 1793 + 1794 + 1795 + 1796 + 1797 + 1798 + 1799 + 1800 + 1801 + 1802 + 1803 + 1804 + 1805 + 1806 + 1807 + 1808 + 1809 + 1810 + 1811 + 1812 + 1813 + 1814 + 1815 + 1816 + 1817 + 1818 + 1819 + 1820 + 1821 + 1822 + 1823 + 1824 + 1825 + 1826 + 1827 + 1828 + 1829 + 1830 + 1831 + 1832 + 1833 + 1834 + 1835 + 1836 + 1837 + 1838 + 1839 + 1840 + 1841 + 1842 + 1843 + 1844 + 1845 + 1846 + 1847 + 1848 + 1849 + 1850 + 1851 + 1852 + 1853 + 1854 + 1855 + 1856 + 1857 + 1858 + 1859 + 1860 + 1861 + 1862 + 1863 + 1864 + 1865 + 1866 + 1867 + 1868 + 1869 + 1870 + 1871 + 1872 + 1873 + 1874 + 1875 + 1876 + 1877 + 1878 + 1879 + 1880 + 1881 + 1882 + 1883 + 1884 + 1885 + 1886 + 1887 + 1888 + 1889 + 1890 + 1891 + 1892 + 1893 + 1894 + 1895 + 1896 + 1897 + 1898 + 1899 + 1900 + 1901 + 1902 + 1903 + 1904 + 1905 + 1906 + 1907 + 1908 + 1909 + 1910 + 1911 + 1912 + 1913 + 1914 + 1915 + 1916 + 1917 + 1918 + 1919 + 1920 + 1921 + 1922 + 1923 + 1924 + 1925 + 1926 + 1927 + 1928 + 1929 + 1930 + 1931 + 1932 + 1933 + 1934 + 1935 + 1936 + 1937 + 1938 + 1939 + 1940 + 1941 + 1942 + 1943 + 1944 + 1945 + 1946 + 1947 + 1948 + 1949 + 1950 + 1951 + 1952 + 1953 + 1954 + 1955 + 1956 + 1957 + 1958 + 1959 + 1960 + 1961 + 1962 + 1963 + 1964 + 1965 + 1966 + 1967 + 1968 + 1969 + 1970 + 1971 + 1972 + 1973 + 1974 + 1975 + 1976 + 1977 + 1978 + 1979 + 1980 + 1981 + 1982 + 1983 + 1984 + 1985 + 1986 + 1987 + 1988 + 1989 + 1990 + 1991 + 1992 + 1993 + 1994 + 1995 + 1996 + 1997 + 1998 + 1999 + 2000 + 2001 + 2002 + 2003 + 2004 + 2005 + 2006 + 2007 + 2008 + 2009 + 2010 + 2011 + 2012 + 2013 + 2014 + 2015 + 2016 + 2017 + 2018 + 2019 + 2020 + 2021 + 2022 + 2023 + 2024 + 2025 + 2026 + 2027 + 2028 + 2029 + 2030 + 2031 + 2032 + 2033 + 2034 + 2035 + 2036 + 2037 + 2038 + 2039 + 2040 + 2041 + 2042 + 2043 + 2044 + 2045 + 2046 + 2047 + 2048 + 2049 + 2050 + 2051 + 2052 + 2053 + 2054 + 2055 + 2056 + 2057 + 2058 + 2059 + 2060 + 2061 + 2062 + 2063 + 2064 + 2065 + 2066 + 2067 + 2068 + 2069 + 2070 + 2071 + 2072 + 2073 + 2074 + 2075 + 2076 + 2077 + 2078 + 2079 + 2080 + 2081 + 2082 + 2083 + 2084 + 2085 + 2086 + 2087 + 2088 + 2089 + 2090 + 2091 + 2092 + 2093 + 2094 + 2095 + 2096 + 2097 + 2098 + 2099 + 2100 + 2101 + 2102 + 2103 + 2104 + 2105 + 2106 + 2107 + 2108 + 2109 + 2110 + 2111 + 2112 + 2113 + 2114 + 2115 + 2116 + 2117 + 2118 + 2119 + 2120 + 2121 + 2122 + 2123 + 2124 + 2125 + 2126 + 2127 + 2128 + 2129 + 2130 + 2131 + 2132 + 2133 + 2134 + 2135 + 2136 + 2137 + 2138 + 2139 + 2140 + 2141 + 2142 + 2143 + 2144 + 2145 + 2146 + 2147 + 2148 + 2149 + 2150 + 2151 + 2152 + 2153 + 2154 + 2155 + 2156 + 2157 + 2158 + 2159 + 2160 + 2161 + 2162 + 2163 + 2164 + 2165 + 2166 + 2167 + 2168 + 2169 + 2170 + 2171 + 2172 + 2173 + 2174 + 2175 + 2176 + 2177 + 2178 + 2179 + 2180 + 2181 + 2182 + 2183 + 2184 + 2185 + 2186 + 2187 + 2188 + 2189 + 2190 + 2191 + 2192 + 2193 + 2194 + 2195 + 2196 + 2197 + 2198 + 2199 + 2200 + 2201 + 2202 + 2203 + 2204 + 2205 + 2206 + 2207 + 2208 + 2209 + 2210 + 2211 + 2212 + 2213 + 2214 + 2215 + 2216 + 2217 + 2218 + 2219 + 2220 + 2221 + 2222 + 2223 + 2224 + 2225 + 2226 + 2227 + 2228 + 2229 + 2230 + 2231 + 2232 + 2233 + 2234 + 2235 + 2236 + 2237 + 2238 + 2239 + 2240 + 2241 + 2242 + 2243 + 2244 + 2245 + 2246 + 2247 + 2248 + 2249 + 2250 + 2251 + 2252 + 2253 + 2254 + 2255 + 2256 + 2257 + 2258 + 2259 + 2260 + 2261 + 2262 + 2263 + 2264 + 2265 + 2266 + 2267 + 2268 + 2269 + 2270 + 2271 + 2272 + 2273 + 2274 + 2275 + 2276 + 2277 + 2278 + 2279 + 2280 + 2281 + 2282 + 2283 + 2284 + 2285 + 2286 + 2287 + 2288 + 2289 + 2290 + 2291 + 2292 + 2293 + 2294 + 2295 + 2296 + 2297 + 2298 + 2299 + 2300 + 2301 + 2302 + 2303 + 2304 + 2305 + 2306 + 2307 + 2308 + 2309 + 2310 + 2311 + 2312 + 2313 + 2314 + 2315 + 2316 + 2317 + 2318 + 2319 + 2320 + 2321 + 2322 + 2323 + 2324 + 2325 + 2326 + 2327 + 2328 + 2329 + 2330 + 2331 + 2332 + 2333 + 2334 + 2335 + 2336 + 2337 + 2338 + 2339 + 2340 + 2341 + 2342 + 2343 + 2344 + 2345 + 2346 + 2347 + 2348 + 2349 + 2350 + 2351 + 2352 + 2353 + 2354 + 2355 + 2356 + 2357 + 2358 + 2359 + 2360 + 2361 + 2362 + 2363 + 2364 + 2365 + 2366 + 2367 + 2368 + 2369 + 2370 + 2371 + 2372 + 2373 + 2374 + 2375 + 2376 + 2377 + 2378 + 2379 + 2380 + 2381 + 2382 + 2383 + 2384 + 2385 + 2386 + 2387 + 2388 + 2389 + 2390 + 2391 + 2392 + 2393 + 2394 + 2395 + 2396 + 2397 + 2398 + 2399 + 2400 + 2401 + 2402 + 2403 + 2404 + 2405 + 2406 + 2407 + 2408 + 2409 + 2410 + 2411 + 2412 + 2413 + 2414 + 2415 + 2416 + 2417 + 2418 + 2419 + 2420 + 2421 + 2422 + 2423 + 2424 + 2425 + 2426 + 2427 + 2428 + 2429 + 2430 + 2431 + 2432 + 2433 + 2434 + 2435 + 2436 + 2437 + 2438 + 2439 + 2440 + 2441 + 2442 + 2443 + 2444 + 2445 + 2446 + 2447 + 2448 + 2449 + 2450 + 2451 + 2452 + 2453 + 2454 + 2455 + 2456 + 2457 + 2458 + 2459 + 2460 + 2461 + 2462 + 2463 + 2464 + 2465 + 2466 + 2467 + 2468 + 2469 + 2470 + 2471 + 2472 + 2473 + 2474 + 2475 + 2476 + 2477 + 2478 + 2479 + 2480 + 2481 + 2482 + 2483 + 2484 + 2485 + 2486 + 2487 + 2488 + 2489 + 2490 + 2491 + 2492 + 2493 + 2494 + 2495 + 2496 + 2497 + 2498 + 2499 + 2500 diff --git a/2ano1/AED/aula12/Graph.c b/2ano1/AED/aula12/Graph.c new file mode 100644 index 0000000..3e2150c --- /dev/null +++ b/2ano1/AED/aula12/Graph.c @@ -0,0 +1,465 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// Graph - Using a list of adjacency lists representation +// + +#include "Graph.h" + +#include +#include +#include + +#include "SortedList.h" + +struct _Vertex { + unsigned int id; + unsigned int inDegree; + unsigned int outDegree; + List* edgesList; +}; + +struct _Edge { + unsigned int adjVertex; + double weight; +}; + +struct _GraphHeader { + int isDigraph; + int isComplete; + int isWeighted; + unsigned int numVertices; + unsigned int numEdges; + List* verticesList; +}; + +// The comparator for the VERTICES LIST + +int graphVerticesComparator(const void* p1, const void* p2) { + unsigned int v1 = ((struct _Vertex*)p1)->id; + unsigned int v2 = ((struct _Vertex*)p2)->id; + int d = v1 - v2; + return (d > 0) - (d < 0); +} + +// The comparator for the EDGES LISTS + +int graphEdgesComparator(const void* p1, const void* p2) { + unsigned int v1 = ((struct _Edge*)p1)->adjVertex; + unsigned int v2 = ((struct _Edge*)p2)->adjVertex; + int d = v1 - v2; + return (d > 0) - (d < 0); +} + +Graph* GraphCreate(unsigned int numVertices, int isDigraph, int isWeighted) { + Graph* g = (Graph*)malloc(sizeof(struct _GraphHeader)); + if (g == NULL) abort(); + + g->isDigraph = isDigraph; + g->isComplete = 0; + g->isWeighted = isWeighted; + + g->numVertices = numVertices; + g->numEdges = 0; + + g->verticesList = ListCreate(graphVerticesComparator); + + for (unsigned int i = 0; i < numVertices; i++) { + struct _Vertex* v = (struct _Vertex*)malloc(sizeof(struct _Vertex)); + if (v == NULL) abort(); + + v->id = i; + v->inDegree = 0; + v->outDegree = 0; + + v->edgesList = ListCreate(graphEdgesComparator); + + ListInsert(g->verticesList, v); + } + + assert(g->numVertices == ListGetSize(g->verticesList)); + + return g; +} + +Graph* GraphCreateComplete(unsigned int numVertices, int isDigraph) { + Graph* g = GraphCreate(numVertices, isDigraph, 0); + + g->isComplete = 1; + + List* vertices = g->verticesList; + ListMoveToHead(vertices); + unsigned int i = 0; + for (; i < g->numVertices; ListMoveToNext(vertices), i++) { + struct _Vertex* v = ListGetCurrentItem(vertices); + List* edges = v->edgesList; + for (unsigned int j = 0; j < g->numVertices; j++) { + if (i == j) { + continue; + } + struct _Edge* new = (struct _Edge*)malloc(sizeof(struct _Edge)); + if (new == NULL) abort(); + new->adjVertex = j; + new->weight = 1; + + ListInsert(edges, new); + } + if (g->isDigraph) { + v->inDegree = g->numVertices - 1; + v->outDegree = g->numVertices - 1; + } else { + v->outDegree = g->numVertices - 1; + } + } + if (g->isDigraph) { + g->numEdges = numVertices * (numVertices - 1); + } else { + g->numEdges = numVertices * (numVertices - 1) / 2; + } + + return g; +} + +void GraphDestroy(Graph** p) { + assert(*p != NULL); + Graph* g = *p; + + List* vertices = g->verticesList; + if (ListIsEmpty(vertices) == 0) { + ListMoveToHead(vertices); + unsigned int i = 0; + for (; i < g->numVertices; ListMoveToNext(vertices), i++) { + struct _Vertex* v = ListGetCurrentItem(vertices); + + List* edges = v->edgesList; + if (ListIsEmpty(edges) == 0) { + unsigned int i = 0; + ListMoveToHead(edges); + for (; i < ListGetSize(edges); ListMoveToNext(edges), i++) { + struct _Edge* e = ListGetCurrentItem(edges); + free(e); + } + } + ListDestroy(&(v->edgesList)); + free(v); + } + } + + ListDestroy(&(g->verticesList)); + free(g); + + *p = NULL; +} + +Graph* GraphCopy(const Graph* g) { + assert(g != NULL); + + // TO BE COMPLETED !! + + return NULL; +} + +Graph* GraphFromFile(FILE* f) { + assert(f != NULL); + + // TO BE COMPLETED !! + + return NULL; +} + +// Graph + +int GraphIsDigraph(const Graph* g) { return g->isDigraph; } + +int GraphIsComplete(const Graph* g) { return g->isComplete; } + +int GraphIsWeighted(const Graph* g) { return g->isWeighted; } + +unsigned int GraphGetNumVertices(const Graph* g) { return g->numVertices; } + +unsigned int GraphGetNumEdges(const Graph* g) { return g->numEdges; } + +// +// For a graph +// +double GraphGetAverageDegree(const Graph* g) { + assert(g->isDigraph == 0); + return 2.0 * (double)g->numEdges / (double)g->numVertices; +} + +static unsigned int _GetMaxDegree(const Graph* g) { + List* vertices = g->verticesList; + if (ListIsEmpty(vertices)) return 0; + + unsigned int maxDegree = 0; + ListMoveToHead(vertices); + unsigned int i = 0; + for (; i < g->numVertices; ListMoveToNext(vertices), i++) { + struct _Vertex* v = ListGetCurrentItem(vertices); + if (v->outDegree > maxDegree) { + maxDegree = v->outDegree; + } + } + return maxDegree; +} + +// +// For a graph +// +unsigned int GraphGetMaxDegree(const Graph* g) { + assert(g->isDigraph == 0); + return _GetMaxDegree(g); +} + +// +// For a digraph +// +unsigned int GraphGetMaxOutDegree(const Graph* g) { + assert(g->isDigraph == 1); + return _GetMaxDegree(g); +} + +// Vertices + +// +// returns an array of size (outDegree + 1) +// element 0, stores the number of adjacent vertices +// and is followed by indices of the adjacent vertices +// +unsigned int* GraphGetAdjacentsTo(const Graph* g, unsigned int v) { + assert(v < g->numVertices); + + // Node in the list of vertices + List* vertices = g->verticesList; + ListMove(vertices, v); + struct _Vertex* vPointer = ListGetCurrentItem(vertices); + unsigned int numAdjVertices = vPointer->outDegree; + + unsigned int* adjacent = + (unsigned int*)calloc(1 + numAdjVertices, sizeof(unsigned int)); + + if (numAdjVertices > 0) { + adjacent[0] = numAdjVertices; + List* adjList = vPointer->edgesList; + ListMoveToHead(adjList); + for (unsigned int i = 0; i < numAdjVertices; ListMoveToNext(adjList), i++) { + struct _Edge* ePointer = ListGetCurrentItem(adjList); + adjacent[i + 1] = ePointer->adjVertex; + } + } + + return adjacent; +} + +// +// returns an array of size (outDegree + 1) +// element 0, stores the number of adjacent vertices +// and is followed by the distances to the adjacent vertices +// +double* GraphGetDistancesToAdjacents(const Graph* g, unsigned int v) { + assert(v < g->numVertices); + + // Node in the list of vertices + List* vertices = g->verticesList; + ListMove(vertices, v); + struct _Vertex* vPointer = ListGetCurrentItem(vertices); + unsigned int numAdjVertices = vPointer->outDegree; + + double* distance = (double*)calloc(1 + numAdjVertices, sizeof(double)); + + if (numAdjVertices > 0) { + distance[0] = numAdjVertices; + List* adjList = vPointer->edgesList; + ListMoveToHead(adjList); + for (unsigned int i = 0; i < numAdjVertices; ListMoveToNext(adjList), i++) { + struct _Edge* ePointer = ListGetCurrentItem(adjList); + distance[i + 1] = ePointer->weight; + } + } + + return distance; +} + +// +// For a graph +// +unsigned int GraphGetVertexDegree(Graph* g, unsigned int v) { + assert(g->isDigraph == 0); + assert(v < g->numVertices); + + ListMove(g->verticesList, v); + struct _Vertex* p = ListGetCurrentItem(g->verticesList); + + return p->outDegree; +} + +// +// For a digraph +// +unsigned int GraphGetVertexOutDegree(Graph* g, unsigned int v) { + assert(g->isDigraph == 1); + assert(v < g->numVertices); + + ListMove(g->verticesList, v); + struct _Vertex* p = ListGetCurrentItem(g->verticesList); + + return p->outDegree; +} + +// +// For a digraph +// +unsigned int GraphGetVertexInDegree(Graph* g, unsigned int v) { + assert(g->isDigraph == 1); + assert(v < g->numVertices); + + ListMove(g->verticesList, v); + struct _Vertex* p = ListGetCurrentItem(g->verticesList); + + return p->inDegree; +} + +// Edges + +static int _addEdge(Graph* g, unsigned int v, unsigned int w, double weight) { + struct _Edge* edge = (struct _Edge*)malloc(sizeof(struct _Edge)); + edge->adjVertex = w; + edge->weight = weight; + + ListMove(g->verticesList, v); + struct _Vertex* vertex = ListGetCurrentItem(g->verticesList); + int result = ListInsert(vertex->edgesList, edge); + + if (result == -1) { + return 0; + } else { + g->numEdges++; + vertex->outDegree++; + + ListMove(g->verticesList, w); + struct _Vertex* destVertex = ListGetCurrentItem(g->verticesList); + destVertex->inDegree++; + } + + if (g->isDigraph == 0) { + // Bidirectional edge + struct _Edge* edge = (struct _Edge*)malloc(sizeof(struct _Edge)); + edge->adjVertex = v; + edge->weight = weight; + + ListMove(g->verticesList, w); + struct _Vertex* vertex = ListGetCurrentItem(g->verticesList); + result = ListInsert(vertex->edgesList, edge); + + if (result == -1) { + return 0; + } else { + // g->numEdges++; // Do not count the same edge twice on a undirected + // graph !! + vertex->outDegree++; + } + } + + return 1; +} + +int GraphAddEdge(Graph* g, unsigned int v, unsigned int w) { + assert(g->isWeighted == 0); + assert(v != w); + assert(v < g->numVertices); + assert(w < g->numVertices); + + return _addEdge(g, v, w, 1.0); +} + +int GraphAddWeightedEdge(Graph* g, unsigned int v, unsigned int w, + double weight) { + assert(g->isWeighted == 1); + assert(v != w); + assert(v < g->numVertices); + assert(w < g->numVertices); + + return _addEdge(g, v, w, weight); +} + +int GraphRemoveEdge(Graph* g, unsigned int v, unsigned int w) { + assert(g != NULL); + + // TO BE COMPLETED !! + + return 0; +} + +// CHECKING + +int GraphCheckInvariants(const Graph* g) { + assert(g != NULL); + // TO BE COMPLETED !! + + return 0; +} + +// DISPLAYING on the console + +void GraphDisplay(const Graph* g) { + printf("---\n"); + if (g->isWeighted) { + printf("Weighted "); + } + if (g->isComplete) { + printf("COMPLETE "); + } + if (g->isDigraph) { + printf("Digraph\n"); + printf("Max Out-Degree = %d\n", GraphGetMaxOutDegree(g)); + } else { + printf("Graph\n"); + printf("Max Degree = %d\n", GraphGetMaxDegree(g)); + } + printf("Vertices = %2d | Edges = %2d\n", g->numVertices, g->numEdges); + + List* vertices = g->verticesList; + ListMoveToHead(vertices); + unsigned int i = 0; + for (; i < g->numVertices; ListMoveToNext(vertices), i++) { + printf("%2d ->", i); + struct _Vertex* v = ListGetCurrentItem(vertices); + if (ListIsEmpty(v->edgesList)) { + printf("\n"); + } else { + List* edges = v->edgesList; + unsigned int i = 0; + ListMoveToHead(edges); + for (; i < ListGetSize(edges); ListMoveToNext(edges), i++) { + struct _Edge* e = ListGetCurrentItem(edges); + if (g->isWeighted) { + printf(" %2d(%4.2f)", e->adjVertex, e->weight); + } else { + printf(" %2d", e->adjVertex); + } + } + printf("\n"); + } + } + printf("---\n"); +} + +void GraphListAdjacents(const Graph* g, unsigned int v) { + printf("---\n"); + + unsigned int* array = GraphGetAdjacentsTo(g, v); + + printf("Vertex %d has %d adjacent vertices -> ", v, array[0]); + + for (unsigned int i = 1; i <= array[0]; i++) { + printf("%d ", array[i]); + } + + printf("\n"); + + free(array); + + printf("---\n"); +} diff --git a/2ano1/AED/aula12/Graph.h b/2ano1/AED/aula12/Graph.h new file mode 100644 index 0000000..934448f --- /dev/null +++ b/2ano1/AED/aula12/Graph.h @@ -0,0 +1,94 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// Graph - Using a list of adjacency lists representation +// + +#ifndef _GRAPH_ +#define _GRAPH_ + +#include + +typedef struct _GraphHeader Graph; + +Graph* GraphCreate(unsigned int numVertices, int isDigraph, int isWeighted); + +Graph* GraphCreateComplete(unsigned int numVertices, int isDigraph); + +void GraphDestroy(Graph** p); + +Graph* GraphCopy(const Graph* g); + +Graph* GraphFromFile(FILE* f); + +// Graph + +int GraphIsDigraph(const Graph* g); + +int GraphIsComplete(const Graph* g); + +int GraphIsWeighted(const Graph* g); + +unsigned int GraphGetNumVertices(const Graph* g); + +unsigned int GraphGetNumEdges(const Graph* g); + +// +// For a graph +// +double GraphGetAverageDegree(const Graph* g); + +// +// For a graph +// +unsigned int GraphGetMaxDegree(const Graph* g); + +// +// For a digraph +// +unsigned int GraphGetMaxOutDegree(const Graph* g); + +// Vertices + +unsigned int* GraphGetAdjacentsTo(const Graph* g, unsigned int v); + +// Vertices distances +double* GraphGetDistancesToAdjacents(const Graph* g, unsigned int v); + +// +// For a graph +// +unsigned int GraphGetVertexDegree(Graph* g, unsigned int v); + +// +// For a digraph +// +unsigned int GraphGetVertexOutDegree(Graph* g, unsigned int v); + +// +// For a digraph +// +unsigned int GraphGetVertexInDegree(Graph* g, unsigned int v); + +// Edges + +int GraphAddEdge(Graph* g, unsigned int v, unsigned int w); + +int GraphAddWeightedEdge(Graph* g, unsigned int v, unsigned int w, + double weight); + +int GraphRemoveEdge(Graph* g, unsigned int v, unsigned int w); + +// CHECKING + +int GraphCheckInvariants(const Graph* g); + +// DISPLAYING on the console + +void GraphDisplay(const Graph* g); + +void GraphListAdjacents(const Graph* g, unsigned int v); + +#endif // _GRAPH_ diff --git a/2ano1/AED/aula12/GraphBFSWithQueue.c b/2ano1/AED/aula12/GraphBFSWithQueue.c new file mode 100644 index 0000000..4a98bad --- /dev/null +++ b/2ano1/AED/aula12/GraphBFSWithQueue.c @@ -0,0 +1,150 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphBFS - QUEUE-based Breadth-First Search +// + +#include "GraphBFSWithQueue.h" + +#include +#include +#include + +#include "Graph.h" +#include "IntegersQueue.h" +#include "IntegersStack.h" + +struct _GraphBFSWithQueue { + int *marked; // To mark vertices when reached for the first time + int *distance; // The number of edges on the path from the start vertex + int *predecessor; // The predecessor vertex, when a vertex was reached + Graph *graph; + unsigned int startVertex; +}; + +GraphBFSWithQueue *GraphBFSWithQueueExecute(Graph *g, + unsigned int startVertex) { + assert(g != NULL); + assert(startVertex < GraphGetNumVertices(g)); + + GraphBFSWithQueue *traversal = + (GraphBFSWithQueue *)malloc(sizeof(struct _GraphBFSWithQueue)); + assert(traversal != NULL); + + unsigned int numVertices = GraphGetNumVertices(g); + + traversal->marked = (int *)calloc(numVertices, sizeof(unsigned int)); + assert(traversal->marked != NULL); + + traversal->predecessor = (int *)malloc(numVertices * sizeof(int)); + assert(traversal->predecessor != NULL); + for (unsigned int i = 0; i < numVertices; i++) { + traversal->predecessor[i] = -1; + } + + traversal->distance = (int *)malloc(numVertices * sizeof(int)); + assert(traversal->distance != NULL); + for (unsigned int i = 0; i < numVertices; i++) { + traversal->distance[i] = -1; + } + + traversal->graph = g; + traversal->startVertex = startVertex; + + // CARRY OUT THE TRAVERSAL + Queue *to_visit = QueueCreate(numVertices); + + QueueEnqueue(to_visit, startVertex); + traversal->predecessor[startVertex] = 0; + traversal->distance[startVertex] = 0; + + while (!QueueIsEmpty(to_visit)) { + unsigned int vertex = QueueDequeue(to_visit); + + traversal->marked[vertex] = 1; + + unsigned int this_distance = traversal->distance[vertex]; + + unsigned int *neighbors = GraphGetAdjacentsTo(traversal->graph, vertex); + + for (unsigned int i = 1; i <= neighbors[0]; i++) { + unsigned int w = neighbors[i]; + if (traversal->marked[w] == 0) { + traversal->predecessor[w] = vertex; + traversal->distance[w] = this_distance + 1; + QueueEnqueue(to_visit, w); + } + } + + free(neighbors); + } + + QueueDestroy(&to_visit); + + return traversal; +} + +void GraphBFSWithQueueDestroy(GraphBFSWithQueue **p) { + assert(*p != NULL); + + GraphBFSWithQueue *aux = *p; + + free(aux->marked); + free(aux->predecessor); + + free(*p); + *p = NULL; +} + +// Getting the result + +int GraphBFSWithQueueHasPathTo(const GraphBFSWithQueue *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + return p->marked[v]; +} + +Stack *GraphBFSWithQueuePathTo(const GraphBFSWithQueue *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack *s = StackCreate(GraphGetNumVertices(p->graph)); + + if (p->marked[v] == 0) { + return s; + } + + // Store the path + for (unsigned int current = v; current != p->startVertex; + current = p->predecessor[current]) { + StackPush(s, current); + } + + StackPush(s, p->startVertex); + + return s; +} + +// DISPLAYING on the console + +void GraphBFSWithQueueShowPath(const GraphBFSWithQueue *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack *s = GraphBFSWithQueuePathTo(p, v); + + while (StackIsEmpty(s) == 0) { + printf("%d ", StackPop(s)); + } + + StackDestroy(&s); +} + +void GraphBFSWithQueueDisplay(const GraphBFSWithQueue *p) { + assert(p != NULL); + + // TO BE COMPLETED !! +} diff --git a/2ano1/AED/aula12/GraphBFSWithQueue.h b/2ano1/AED/aula12/GraphBFSWithQueue.h new file mode 100644 index 0000000..9f62ff0 --- /dev/null +++ b/2ano1/AED/aula12/GraphBFSWithQueue.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphBFSWithQueue - QUEUE-based Breadth-First Search +// + +#ifndef _GRAPH_BFS_WITH_QUEUE_ +#define _GRAPH_BFS_WITH_QUEUE_ + +#include "Graph.h" +#include "IntegersStack.h" + +typedef struct _GraphBFSWithQueue GraphBFSWithQueue; + +GraphBFSWithQueue* GraphBFSWithQueueExecute(Graph* g, unsigned int startVertex); + +void GraphBFSWithQueueDestroy(GraphBFSWithQueue** p); + +// Getting the result + +int GraphBFSWithQueueHasPathTo(const GraphBFSWithQueue* p, unsigned int v); + +Stack* GraphBFSWithQueuePathTo(const GraphBFSWithQueue* p, unsigned int v); + +// DISPLAYING on the console + +void GraphBFSWithQueueShowPath(const GraphBFSWithQueue* p, unsigned int v); + +void GraphBFSWithQueueDisplay(const GraphBFSWithQueue* p); + +#endif // _GRAPH_BFS_WITH_QUEUE_ diff --git a/2ano1/AED/aula12/GraphDFSRec.c b/2ano1/AED/aula12/GraphDFSRec.c new file mode 100644 index 0000000..471f89c --- /dev/null +++ b/2ano1/AED/aula12/GraphDFSRec.c @@ -0,0 +1,132 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphDFSRec - RECURSIVE Depth-First Search +// + +#include "GraphDFSRec.h" + +#include +#include +#include + +#include "Graph.h" +#include "IntegersStack.h" + +struct _GraphDFSRec { + unsigned int* marked; // To mark vertices when reached for the first time + int* predecessor; // The predecessor vertex, when a vertex was reached + Graph* graph; + unsigned int startVertex; +}; + +static void _dfs(GraphDFSRec* traversal, unsigned int vertex) { + traversal->marked[vertex] = 1; + + unsigned int* neighbors = GraphGetAdjacentsTo(traversal->graph, vertex); + + for (unsigned int i = 1; i <= neighbors[0]; i++) { + unsigned int w = neighbors[i]; + if (traversal->marked[w] == 0) { + traversal->predecessor[w] = vertex; + _dfs(traversal, w); + } + } + + free(neighbors); +} + +GraphDFSRec* GraphDFSRecExecute(Graph* g, unsigned int startVertex) { + assert(g != NULL); + assert(startVertex < GraphGetNumVertices(g)); + + GraphDFSRec* result = (GraphDFSRec*)malloc(sizeof(struct _GraphDFSRec)); + assert(result != NULL); + + unsigned int numVertices = GraphGetNumVertices(g); + + result->marked = (unsigned int*)calloc(numVertices, sizeof(unsigned int)); + assert(result->marked != NULL); + + result->predecessor = (int*)malloc(numVertices * sizeof(int)); + assert(result->predecessor != NULL); + for (unsigned int i = 0; i < numVertices; i++) { + result->predecessor[i] = -1; + } + + result->predecessor[startVertex] = 0; + + result->graph = g; + result->startVertex = startVertex; + + // START THE RECURSIVE TRAVERSAL + + _dfs(result, startVertex); + + return result; +} + +void GraphDFSRecDestroy(GraphDFSRec** p) { + assert(*p != NULL); + + GraphDFSRec* aux = *p; + + free(aux->marked); + free(aux->predecessor); + + free(*p); + *p = NULL; +} + +// Getting the result + +unsigned int GraphDFSRecHasPathTo(const GraphDFSRec* p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + return p->marked[v]; +} + +Stack* GraphDFSRecPathTo(const GraphDFSRec* p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack* s = StackCreate(GraphGetNumVertices(p->graph)); + + if (p->marked[v] == 0) { + return s; + } + + // Store the path + for (unsigned int current = v; current != p->startVertex; + current = p->predecessor[current]) { + StackPush(s, current); + } + + StackPush(s, p->startVertex); + + return s; +} + +// DISPLAYING on the console + +void GraphDFSRecShowPath(const GraphDFSRec* p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack* s = GraphDFSRecPathTo(p, v); + + while (StackIsEmpty(s) == 0) { + printf("%d ", StackPop(s)); + } + + StackDestroy(&s); +} + +void GraphDFSRecDisplay(const GraphDFSRec* p) { + assert(p != NULL); + + // TO BE COMPLETED !! +} diff --git a/2ano1/AED/aula12/GraphDFSRec.h b/2ano1/AED/aula12/GraphDFSRec.h new file mode 100644 index 0000000..c5cf802 --- /dev/null +++ b/2ano1/AED/aula12/GraphDFSRec.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphDFS - RECURSIVE Depth-First Search +// + +#ifndef _GRAPH_DFS_REC_ +#define _GRAPH_DFS_REC_ + +#include "Graph.h" +#include "IntegersStack.h" + +typedef struct _GraphDFSRec GraphDFSRec; + +GraphDFSRec* GraphDFSRecExecute(Graph* g, unsigned int startVertex); + +void GraphDFSRecDestroy(GraphDFSRec** p); + +// Getting the result + +unsigned int GraphDFSRecHasPathTo(const GraphDFSRec* p, unsigned int v); + +Stack* GraphDFSRecPathTo(const GraphDFSRec* p, unsigned int v); + +// DISPLAYING on the console + +void GraphDFSRecShowPath(const GraphDFSRec* p, unsigned int v); + +void GraphDFSRecDisplay(const GraphDFSRec* p); + +#endif // _GRAPH_DFS_REC_ diff --git a/2ano1/AED/aula12/GraphDFSWithStack.c b/2ano1/AED/aula12/GraphDFSWithStack.c new file mode 100644 index 0000000..b2c4aea --- /dev/null +++ b/2ano1/AED/aula12/GraphDFSWithStack.c @@ -0,0 +1,139 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphDFS - STACK-based Depth-First Search +// + +#include "GraphDFSWithStack.h" + +#include +#include +#include + +#include "Graph.h" +#include "IntegersStack.h" + +struct _GraphDFSWithStack { + int *marked; // To mark vertices when reached for the first time + int *predecessor; // The predecessor vertex, when a vertex was reached + Graph *graph; + unsigned int startVertex; +}; + +GraphDFSWithStack *GraphDFSWithStackExecute(Graph *g, + unsigned int startVertex) { + assert(g != NULL); + assert(startVertex < GraphGetNumVertices(g)); + + GraphDFSWithStack *traversal = + (GraphDFSWithStack *)malloc(sizeof(struct _GraphDFSWithStack)); + assert(traversal != NULL); + + unsigned int numVertices = GraphGetNumVertices(g); + + traversal->marked = (int *)calloc(numVertices, sizeof(unsigned int)); + assert(traversal->marked != NULL); + + traversal->predecessor = (int *)malloc(numVertices * sizeof(int)); + assert(traversal->predecessor != NULL); + for (unsigned int i = 0; i < numVertices; i++) { + traversal->predecessor[i] = -1; + } + + traversal->predecessor[startVertex] = 0; + + traversal->graph = g; + traversal->startVertex = startVertex; + + // CARRY OUT THE TRAVERSAL + Stack *to_visit = StackCreate(numVertices); + + StackPush(to_visit, startVertex); + + while (!StackIsEmpty(to_visit)) { + unsigned int vertex = StackPop(to_visit); + + traversal->marked[vertex] = 1; + + unsigned int *neighbors = GraphGetAdjacentsTo(traversal->graph, vertex); + + for (unsigned int i = neighbors[0]; i > 0; i--) { + unsigned int w = neighbors[i]; + if (traversal->marked[w] == 0) { + traversal->predecessor[w] = vertex; + StackPush(to_visit, w); + } + } + + free(neighbors); + } + + StackDestroy(&to_visit); + + return traversal; +} + +void GraphDFSWithStackDestroy(GraphDFSWithStack **p) { + assert(*p != NULL); + + GraphDFSWithStack *aux = *p; + + free(aux->marked); + free(aux->predecessor); + + free(*p); + *p = NULL; +} + +// Getting the result + +int GraphDFSWithStackHasPathTo(const GraphDFSWithStack *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + return p->marked[v]; +} + +Stack *GraphDFSWithStackPathTo(const GraphDFSWithStack *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack *s = StackCreate(GraphGetNumVertices(p->graph)); + + if (p->marked[v] == 0) { + return s; + } + + // Store the path + for (unsigned int current = v; current != p->startVertex; + current = p->predecessor[current]) { + StackPush(s, current); + } + + StackPush(s, p->startVertex); + + return s; +} + +// DISPLAYING on the console + +void GraphDFSWithStackShowPath(const GraphDFSWithStack *p, unsigned int v) { + assert(p != NULL); + assert(v < GraphGetNumVertices(p->graph)); + + Stack *s = GraphDFSWithStackPathTo(p, v); + + while (StackIsEmpty(s) == 0) { + printf("%d ", StackPop(s)); + } + + StackDestroy(&s); +} + +void GraphDFSWithStackDisplay(const GraphDFSWithStack *p) { + assert(p != NULL); + + // TO BE COMPLETED !! +} diff --git a/2ano1/AED/aula12/GraphDFSWithStack.h b/2ano1/AED/aula12/GraphDFSWithStack.h new file mode 100644 index 0000000..1f72402 --- /dev/null +++ b/2ano1/AED/aula12/GraphDFSWithStack.h @@ -0,0 +1,33 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// GraphDFSWithStack - STACK-based Depth-First Search +// + +#ifndef _GRAPH_DFS_WITH_STACK_ +#define _GRAPH_DFS_WITH_STACK_ + +#include "Graph.h" +#include "IntegersStack.h" + +typedef struct _GraphDFSWithStack GraphDFSWithStack; + +GraphDFSWithStack* GraphDFSWithStackExecute(Graph* g, unsigned int startVertex); + +void GraphDFSWithStackDestroy(GraphDFSWithStack** p); + +// Getting the result + +int GraphDFSWithStackHasPathTo(const GraphDFSWithStack* p, unsigned int v); + +Stack* GraphDFSWithStackPathTo(const GraphDFSWithStack* p, unsigned int v); + +// DISPLAYING on the console + +void GraphDFSWithStackShowPath(const GraphDFSWithStack* p, unsigned int v); + +void GraphDFSWithStackDisplay(const GraphDFSWithStack* p); + +#endif // _GRAPH_DFS_WITH_STACK_ diff --git a/2ano1/AED/aula12/IntegersQueue.c b/2ano1/AED/aula12/IntegersQueue.c new file mode 100644 index 0000000..128a3e3 --- /dev/null +++ b/2ano1/AED/aula12/IntegersQueue.c @@ -0,0 +1,86 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// Integers queue (First In First Out) implementation based on a circular array + +#include "IntegersQueue.h" + +#include +#include + +struct _IntegersQueue { + int max_size; // maximum Queue size + int cur_size; // current Queue size + int head; + int tail; + int* data; // the Queue data (integers stored in an array) +}; + +// PRIVATE auxiliary function + +static int increment_index(const Queue* q, int i) { + return (i + 1 < q->max_size) ? i + 1 : 0; +} + +// PUBLIC functions + +Queue* QueueCreate(int size) { + assert(size >= 1 && size <= 1000000); + Queue* q = (Queue*)malloc(sizeof(Queue)); + if (q == NULL) abort(); + + q->max_size = size; + q->cur_size = 0; + + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; + + q->data = (int*)malloc(size * sizeof(int)); + if (q->data == NULL) { + free(q); + abort(); + } + return q; +} + +void QueueDestroy(Queue** p) { + assert(*p != NULL); + Queue* q = *p; + free(q->data); + free(q); + *p = NULL; +} + +void QueueClear(Queue* q) { + q->cur_size = 0; + q->head = 1; // cur_size = tail - head + 1 + q->tail = 0; +} + +int QueueSize(const Queue* q) { return q->cur_size; } + +int QueueIsFull(const Queue* q) { return (q->cur_size == q->max_size) ? 1 : 0; } + +int QueueIsEmpty(const Queue* q) { return (q->cur_size == 0) ? 1 : 0; } + +int QueuePeek(const Queue* q) { + assert(q->cur_size > 0); + return q->data[q->head]; +} + +void QueueEnqueue(Queue* q, int i) { + assert(q->cur_size < q->max_size); + q->tail = increment_index(q, q->tail); + q->data[q->tail] = i; + q->cur_size++; +} + +int QueueDequeue(Queue* q) { + assert(q->cur_size > 0); + int old_head = q->head; + q->head = increment_index(q, q->head); + q->cur_size--; + return q->data[old_head]; +} diff --git a/2ano1/AED/aula12/IntegersQueue.h b/2ano1/AED/aula12/IntegersQueue.h new file mode 100644 index 0000000..3ea524e --- /dev/null +++ b/2ano1/AED/aula12/IntegersQueue.h @@ -0,0 +1,32 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// Integers queue (First In First Out) implementation based on a circular array +// + +#ifndef _INTEGERS_QUEUE_ +#define _INTEGERS_QUEUE_ + +typedef struct _IntegersQueue Queue; + +Queue* QueueCreate(int size); + +void QueueDestroy(Queue** p); + +void QueueClear(Queue* q); + +int QueueSize(const Queue* q); + +int QueueIsFull(const Queue* q); + +int QueueIsEmpty(const Queue* q); + +int QueuePeek(const Queue* q); + +void QueueEnqueue(Queue* q, int i); + +int QueueDequeue(Queue* q); + +#endif // _INTEGERS_QUEUE_ diff --git a/2ano1/AED/aula12/IntegersStack.c b/2ano1/AED/aula12/IntegersStack.c new file mode 100644 index 0000000..2200172 --- /dev/null +++ b/2ano1/AED/aula12/IntegersStack.c @@ -0,0 +1,65 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - April 2020, November 2023 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// Integers stack (First In Last Out) implementation based on an array +// + +#include "IntegersStack.h" + +#include +#include + +struct _IntStack { + int max_size; // maximum stack size + int cur_size; // current stack size + int* data; // the stack data (stored in an array) +}; + +Stack* StackCreate(int size) { + assert(size >= 1 && size <= 1000000); + Stack* s = (Stack*)malloc(sizeof(Stack)); + if (s == NULL) abort(); + s->max_size = size; + s->cur_size = 0; + s->data = (int*)malloc(size * sizeof(int)); + if (s->data == NULL) { + free(s); + abort(); + } + return s; +} + +void StackDestroy(Stack** p) { + assert(*p != NULL); + Stack* s = *p; + free(s->data); + free(s); + *p = NULL; +} + +void StackClear(Stack* s) { s->cur_size = 0; } + +int StackSize(const Stack* s) { return s->cur_size; } + +int StackIsFull(const Stack* s) { return (s->cur_size == s->max_size); } + +int StackIsEmpty(const Stack* s) { return (s->cur_size == 0); } + +int StackPeek(const Stack* s) { + assert(s->cur_size > 0); + return s->data[s->cur_size - 1]; +} + +void StackPush(Stack* s, int i) { + assert(s->cur_size < s->max_size); + s->data[s->cur_size++] = i; +} + +int StackPop(Stack* s) { + assert(s->cur_size > 0); + return s->data[--(s->cur_size)]; +} diff --git a/2ano1/AED/aula12/IntegersStack.h b/2ano1/AED/aula12/IntegersStack.h new file mode 100644 index 0000000..e70ad63 --- /dev/null +++ b/2ano1/AED/aula12/IntegersStack.h @@ -0,0 +1,34 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - April 2020, November 2023 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// Integers stack (First In Last Out) implementation based on an array +// + +#ifndef _INTEGERS_STACK_ +#define _INTEGERS_STACK_ + +typedef struct _IntStack Stack; + +Stack* StackCreate(int size); + +void StackDestroy(Stack** p); + +void StackClear(Stack* s); + +int StackSize(const Stack* s); + +int StackIsFull(const Stack* s); + +int StackIsEmpty(const Stack* s); + +int StackPeek(const Stack* s); + +void StackPush(Stack* s, int i); + +int StackPop(Stack* s); + +#endif // _INTEGERS_STACK_ diff --git a/2ano1/AED/aula12/Makefile b/2ano1/AED/aula12/Makefile new file mode 100644 index 0000000..c83a7ec --- /dev/null +++ b/2ano1/AED/aula12/Makefile @@ -0,0 +1,48 @@ +# To compile all programs, run: +# make +# +# AED, ua, 2023 + +CFLAGS += -g -Wall -Wextra + +TARGETS = example1 example2 example3 + +all: $(TARGETS) + +example1: example1.o Graph.o SortedList.o + +example2: example2.o Graph.o GraphDFSRec.o IntegersStack.o SortedList.o + +example3: example3.o Graph.o GraphBFSWithQueue.o IntegersStack.o \ + IntegersQueue.o GraphDFSRec.o GraphDFSWithStack.o SortedList.o + +# Dependencies of source files (obtained with gcc -MM) + +example1.o: example1.c Graph.h + +example2.o: example2.c Graph.h GraphDFSRec.h + +example3.o: example2.c Graph.h GraphBFSWithQueue.h IntegersStack.h \ + GraphDFSRec.h GraphDFSWithStack.h + +Graph.o: Graph.c Graph.h SortedList.h + +GraphBFSWithQueue.o: GraphBFSWithQueue.c GraphBFSWithQueue.h Graph.h \ + IntegersStack.h IntegersQueue.h + +GraphDFSRec.o: GraphDFSRec.c GraphDFSRec.h Graph.h IntegersStack.h + +GraphDFSWithStack.o: GraphDFSWithStack.c GraphDFSWithStack.h Graph.h \ + IntegersStack.h + +IntegersQueue.o: IntegersQueue.c IntegersQueue.h + +IntegersStack.o: IntegersStack.c IntegersStack.h + +SortedList.o: SortedList.c SortedList.h + +clean: + rm -f *.o + rm -f $(TARGETS) + + diff --git a/2ano1/AED/aula12/SortedList.c b/2ano1/AED/aula12/SortedList.c new file mode 100644 index 0000000..9d65ca7 --- /dev/null +++ b/2ano1/AED/aula12/SortedList.c @@ -0,0 +1,340 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, April 2020, November 2023 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// SORTED LIST implementation based on an linked list +// + +// ***************** COMPLETAR AS FUNCOES !!! ******************* + +#include "SortedList.h" + +#include +#include + +struct _ListNode { + void* item; + struct _ListNode* next; +}; + +struct _SortedList { + int size; // current List size + struct _ListNode* head; // the head of the List + struct _ListNode* tail; // the tail of the List + struct _ListNode* current; // the current node + int currentPos; // the current node index + compFunc compare; +}; + +List* ListCreate(compFunc compF) { + List* l = (List*)malloc(sizeof(List)); + assert(l != NULL); + + l->size = 0; + l->head = NULL; + l->tail = NULL; + l->current = NULL; + l->currentPos = -1; // Default: before the head of the list + l->compare = compF; + return l; +} + +void ListDestroy(List** p) { + assert(*p != NULL); + List* l = *p; + + ListClear(l); + + free(l); + *p = NULL; +} + +void ListClear(List* l) { + assert(l != NULL); + + struct _ListNode* p = l->head; + struct _ListNode* aux; + + while (p != NULL) { + aux = p; + p = aux->next; + free(aux); + } + + l->size = 0; + l->head = NULL; + l->tail = NULL; + l->current = NULL; + l->currentPos = -1; // Default: before the head of the list +} + +unsigned int ListGetSize(const List* l) { + assert(l != NULL); + return l->size; +} + +int ListIsEmpty(const List* l) { + assert(l != NULL); + return (l->size == 0) ? 1 : 0; +} + +// Current node functions + +int ListGetCurrentIndex(const List* l) { + assert(l != NULL); + return l->currentPos; +} + +void* ListGetCurrentItem(const List* l) { + assert(l != NULL && l->current != NULL); + return l->current->item; +} + +void ListModifyCurrentValue(const List* l, void* p) { + assert(l != NULL && l->current != NULL); + l->current->item = p; +} + +// The move and search functions return 0 on success and -1 on failure (on +// success the current node is changed, on failure it is not changed) + +// Search +// +// starting at the current node, search for the first node with a value of *p +// on failure the current node is not changed +// +int ListSearch(List* l, const void* p) { + int i = (l->currentPos < 0) ? 0 : l->currentPos; + + struct _ListNode* sn = (l->currentPos < 0) ? l->head : l->current; + + while (i < l->size && l->compare(p, sn->item) > 0) { + i++; + sn = sn->next; + } + + if (i == l->size) { + return -1; + } // failure + + if (l->compare(p, sn->item) < 0) { + return -1; + } // failure + + l->current = sn; + l->currentPos = i; + + return 0; // success +} + +// Move to functions + +int ListMove(List* l, int newPos) { + if (newPos < -1 || newPos > l->size) { + return -1; + } // failure + + if (newPos == -1 || newPos == l->size) { + l->current = NULL; + } else if (newPos == 0) { + l->current = l->head; + } else if (newPos == l->size - 1) { + l->current = l->tail; + } else { + if (l->currentPos == -1 || l->currentPos == l->size || + newPos < l->currentPos) { + l->current = l->head; + l->currentPos = 0; + } + + for (int i = l->currentPos; i < newPos; i++) { + l->current = l->current->next; + } + } + l->currentPos = newPos; + + return 0; // success +} + +int ListMoveToNext(List* l) { return ListMove(l, l->currentPos + 1); } + +int ListMoveToPrevious(List* l) { return ListMove(l, l->currentPos - 1); } + +int ListMoveToHead(List* l) { return ListMove(l, 0); } + +int ListMoveToTail(List* l) { return ListMove(l, l->size - 1); } + +// Insert function + +// +// insert a node +// the current node is not changed +// return 0 on success +// return -1 on failure +// +int ListInsert(List* l, void* p) { + struct _ListNode* sn = (struct _ListNode*)malloc(sizeof(struct _ListNode)); + assert(sn != NULL); + sn->item = p; + sn->next = NULL; + + // Empty list + if (l->size == 0) { + l->head = l->tail = sn; + l->size = 1; + return 0; + } + + // Search + + int i = 0; + struct _ListNode* prev = NULL; + struct _ListNode* aux = l->head; + + while (i < l->size && l->compare(p, aux->item) > 0) { + i++; + prev = aux; + aux = aux->next; + } + + if (i == l->size) { // Append at the tail + l->tail->next = sn; + l->tail = sn; + l->size++; + return 0; + } + + if (l->compare(p, aux->item) == 0) { // Already exists !! + free(sn); + return -1; + } // failure + + if (i == 0) { // Append at the head + sn->next = l->head; + l->head = sn; + l->size++; + if (l->currentPos >= 0) { + l->currentPos++; + } + return 0; + } + + sn->next = aux; + prev->next = sn; + l->size++; + if (l->currentPos >= i) { + l->currentPos++; + } + + return 0; +} + +// Remove functions + +// +// remove the head of the list and make its next node the new head +// if the current node is the head, it is replaced by its next node +// +void* ListRemoveHead(List* l) { + assert(l->size > 0); + if (l->current == l->head) { + l->current = l->head->next; + l->currentPos++; + } + if (l->size == 1) { + void* p = l->head->item; + free(l->head); + l->head = NULL; + l->tail = NULL; + l->size = 0; + if (l->currentPos > 0) l->currentPos = 0; + return p; + } else { + struct _ListNode* sn = l->head->next; + void* p = l->head->item; + free(l->head); + l->head = sn; + if (l->currentPos > 0) l->currentPos--; + l->size--; + return p; + } +} + +// +// remove the tail of the list and make its previous node the new tail +// if the current node is the tail, it is replaced by it by its next node +// +void* ListRemoveTail(List* l) { + assert(l->size > 0); + if (l->current == l->tail) { + l->current = NULL; + l->currentPos++; + } + if (l->size == 1) { + void* p = l->head->item; + free(l->head); + l->head = NULL; + l->tail = NULL; + l->current = NULL; + if (l->currentPos > 0) l->currentPos = 0; + l->size = 0; + return p; + } else { + struct _ListNode* sn = l->head; + while (sn->next != l->tail) sn = sn->next; + sn->next = NULL; + void* p = l->tail->item; + free(l->tail); + l->tail = sn; + if (l->currentPos == l->size) l->currentPos--; + l->size--; + return p; + } +} + +// +// remove the current node and make its next node the current node +// +void* ListRemoveCurrent(List* l) { + assert(l->currentPos >= 0 && l->currentPos < l->size); + if (l->currentPos == 0) + return ListRemoveHead(l); + else if (l->currentPos == l->size - 1) + return ListRemoveTail(l); + else { + struct _ListNode* sn = l->head; + while (sn->next != l->current) sn = sn->next; + sn->next = l->current->next; + void* p = l->current->item; + free(l->current); + l->current = sn->next; + l->size--; + return p; + } +} + +// Tests + +void ListTestInvariants(const List* l) { + assert(l->size >= 0); + if (l->size == 0) + assert(l->head == NULL && l->tail == NULL); + else + assert(l->head != NULL && l->tail != NULL); + if (l->size == 1) assert(l->head == l->tail); + assert(-1 <= l->currentPos && l->currentPos <= l->size); + if (l->currentPos == -1 || l->currentPos == l->size) + assert(l->current == NULL); + struct _ListNode* sn = l->head; + for (int i = 0; i < l->size; i++) { + if (i == l->size - 1) + assert(sn == l->tail && sn->next == NULL); + else + assert(sn->next != NULL); + if (i == l->currentPos) assert(sn == l->current); + sn = sn->next; + } +} diff --git a/2ano1/AED/aula12/SortedList.h b/2ano1/AED/aula12/SortedList.h new file mode 100644 index 0000000..67b77db --- /dev/null +++ b/2ano1/AED/aula12/SortedList.h @@ -0,0 +1,70 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, April 2020, November 2023 +// +// Adapted from Tomás Oliveira e Silva, AED, September 2015 +// +// SORTED LIST implementation based on a linked list +// + +#ifndef _SORTED_LIST_ +#define _SORTED_LIST_ + +typedef struct _SortedList List; +typedef int (*compFunc)(const void* p1, const void* p2); + +List* ListCreate(compFunc compF); + +void ListDestroy(List** p); + +void ListClear(List* l); + +unsigned int ListGetSize(const List* l); + +int ListIsEmpty(const List* l); + +// Current node functions + +int ListGetCurrentIndex(const List* l); + +void* ListGetCurrentItem(const List* l); + +void ListModifyCurrentItem(const List* l, void* p); + +// The move and search functions return 0 on success and -1 on failure (on +// success the current node is changed, on failure it is not changed) + +// Search + +int ListSearch(List* l, const void* p); + +// Move to + +int ListMove(List* l, int newPos); + +int ListMoveToNext(List* l); + +int ListMoveToPrevious(List* l); + +int ListMoveToHead(List* l); + +int ListMoveToTail(List* l); + +// Insert + +int ListInsert(List* l, void* p); + +// Remove + +void* ListRemoveHead(List* l); + +void* ListRemoveTail(List* l); + +void* ListRemoveCurrent(List* l); + +// Tests + +void ListTestInvariants(const List* l); + +#endif // _SORTED_LIST_ \ No newline at end of file diff --git a/2ano1/AED/aula12/example1.c b/2ano1/AED/aula12/example1.c new file mode 100644 index 0000000..e9b9da9 --- /dev/null +++ b/2ano1/AED/aula12/example1.c @@ -0,0 +1,51 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - June 2021, Nov 2023 +// +// Graph EXAMPLE : Creating and displaying graphs +// + +#include "Graph.h" + +int main(void) { + // What kind of graph is g01? + Graph* g01 = GraphCreate(6, 0, 0); + GraphAddEdge(g01, 1, 2); + GraphAddEdge(g01, 1, 4); + GraphAddEdge(g01, 3, 4); + printf("The first graph:\n"); + GraphDisplay(g01); + for (int i = 0; i < 6; i++) { + GraphListAdjacents(g01, i); + } + printf("Remove edge (1,2)\n"); + GraphDisplay(g01); + for (int i = 0; i < 6; i++) { + GraphListAdjacents(g01, i); + } + + Graph* dig01 = GraphCreate(6, 1, 0); + GraphAddEdge(dig01, 1, 2); + GraphAddEdge(dig01, 1, 4); + GraphAddEdge(dig01, 3, 4); + printf("The second graph:\n"); + GraphDisplay(dig01); + printf("Remove edge (1,2)\n"); + GraphDisplay(dig01); + + Graph* g03 = GraphCreate(6, 0, 1); + GraphAddWeightedEdge(g03, 1, 2, 3); + GraphAddWeightedEdge(g03, 1, 4, 5); + GraphAddWeightedEdge(g03, 3, 4, 10); + printf("The third graph:\n"); + GraphDisplay(g03); + printf("Remove edge (1,2)\n"); + GraphDisplay(g03); + + GraphDestroy(&g01); + GraphDestroy(&dig01); + GraphDestroy(&g03); + + return 0; +} diff --git a/2ano1/AED/aula12/example2.c b/2ano1/AED/aula12/example2.c new file mode 100644 index 0000000..d9dd3eb --- /dev/null +++ b/2ano1/AED/aula12/example2.c @@ -0,0 +1,64 @@ +// +// Algoritmos e Estruturas de Dados --- 2023/2024 +// +// Joaquim Madeira, Joao Manuel Rodrigues - May 2020, Nov 2023 +// +// Graph EXAMPLE : Recursive Depth-First Traversal +// + +#include "Graph.h" +#include "GraphDFSRec.h" + +int main(void) { + // Graph + Graph* g01 = GraphCreate(6, 0, 0); + + GraphAddEdge(g01, 0, 5); + GraphAddEdge(g01, 2, 4); + GraphAddEdge(g01, 2, 3); + GraphAddEdge(g01, 1, 2); + GraphAddEdge(g01, 0, 1); + GraphAddEdge(g01, 3, 4); + GraphAddEdge(g01, 3, 5); + GraphAddEdge(g01, 0, 2); + + GraphDisplay(g01); + + // DFS traversal starting at vertex 0 + GraphDFSRec* traversal = GraphDFSRecExecute(g01, 0); + + printf("Path from 0 to 5: "); + GraphDFSRecShowPath(traversal, 5); + printf("\n"); + + GraphDFSRecDestroy(&traversal); + + GraphDestroy(&g01); + + // Digraph + g01 = GraphCreate(6, 1, 0); + + GraphAddEdge(g01, 0, 5); + GraphAddEdge(g01, 2, 4); + GraphAddEdge(g01, 2, 3); + GraphAddEdge(g01, 1, 2); + GraphAddEdge(g01, 0, 1); + GraphAddEdge(g01, 3, 4); + GraphAddEdge(g01, 3, 5); + GraphAddEdge(g01, 0, 2); + + GraphDisplay(g01); + + // DFS traversal starting at vertex 1 + traversal = GraphDFSRecExecute(g01, 1); + + printf("Path from 1 to 5: "); + GraphDFSRecShowPath(traversal, 5); + printf("\n"); + + GraphDFSRecDestroy(&traversal); + + GraphDestroy(&g01); + + return 0; +} diff --git a/2ano1/AED/aula12/example3.c b/2ano1/AED/aula12/example3.c new file mode 100644 index 0000000..1eedfe3 --- /dev/null +++ b/2ano1/AED/aula12/example3.c @@ -0,0 +1,63 @@ +// +// Joaquim Madeira, AlgC, June 2021 +// João Manuel Rodrigues, AlgC, June 2021 +// +// Graph EXAMPLE : The different traversals +// + +#include "Graph.h" +#include "GraphBFSWithQueue.h" +#include "GraphDFSRec.h" +#include "GraphDFSWithStack.h" + +int main(void) { + Graph* g01 = GraphCreate(6, 0, 0); + + GraphAddEdge(g01, 0, 5); + GraphAddEdge(g01, 2, 4); + GraphAddEdge(g01, 2, 3); + GraphAddEdge(g01, 1, 2); + GraphAddEdge(g01, 0, 1); + GraphAddEdge(g01, 3, 4); + GraphAddEdge(g01, 3, 5); + GraphAddEdge(g01, 0, 2); + + GraphDisplay(g01); + + // Recursive DFS traversal + + printf("RECURSIVE DFS traversal\n"); + GraphDFSRec* traversalRec = GraphDFSRecExecute(g01, 0); + + printf("Path from 0 to 5: "); + GraphDFSRecShowPath(traversalRec, 5); + printf("\n"); + + GraphDFSRecDestroy(&traversalRec); + + // STACK-based DFS traversal + + printf("DFS traversal with STACK\n"); + GraphDFSWithStack* traversalWithStack = GraphDFSWithStackExecute(g01, 0); + + printf("Path from 0 to 5: "); + GraphDFSWithStackShowPath(traversalWithStack, 5); + printf("\n"); + + GraphDFSWithStackDestroy(&traversalWithStack); + + // QUEUE-based BFS traversal + + printf("BFS traversal with QUEUE\n"); + GraphBFSWithQueue* traversalWithQueue = GraphBFSWithQueueExecute(g01, 0); + + printf("Path from 0 to 5: "); + GraphBFSWithQueueShowPath(traversalWithQueue, 5); + printf("\n"); + + GraphBFSWithQueueDestroy(&traversalWithQueue); + + GraphDestroy(&g01); + + return 0; +} diff --git a/2ano1/AED/aula13/Circle.cpp b/2ano1/AED/aula13/Circle.cpp new file mode 100644 index 0000000..f613d76 --- /dev/null +++ b/2ano1/AED/aula13/Circle.cpp @@ -0,0 +1,83 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// COMPLETE the code, according to Circle.h +// + +#include "Circle.h" + +#define _USE_MATH_DEFINES + +#include +#include +#include +#include + +#include "Figure.h" +#include "Point.h" + +Circle::Circle(void) : Figure(), radius_(1) { + // Circle of radius 1 and centered at (0,0) +} + +Circle::Circle(Point center, const std::string &color, double length) + : Figure(center, color), radius_(length) { + // Ensure that the radius is larger than 0.0 + assert(radius_ > 0.0); +} + +Circle::Circle(double x, double y, const std::string &color, double length) + : Figure(x, y, color), radius_(length) { + // Ensure that the radius is larger than 0.0 + assert(radius_ > 0.0); +} + +double Circle::GetRadius(void) const { return radius_; } +void Circle::SetRadius(double length) { + // Ensure that the radius is larger than 0.0 + assert(length > 0.0); + radius_ = length; +} + +std::string Circle::GetClassName(void) const { return "Circle"; } + +double Circle::Area(void) const { return M_PI * radius_ * radius_; } + +double Circle::Perimeter(void) const { return 2 * M_PI * radius_; } + +bool Circle::Intersects(const Circle &c) const { + // |r1 - r2| < dist(C1,C2) < r1 + r2 + + double distance_between_centers = GetCenter().DistanceTo(c.GetCenter()); + + double sum_of_radii = radius_ + c.radius_; + + double absolute_difference_of_radii = std::abs(radius_ - c.radius_); + + return ((absolute_difference_of_radii < distance_between_centers) && + (distance_between_centers < sum_of_radii)); +} + +std::ostream &operator<<(std::ostream &os, const Circle &obj) { + os << "Center: " << obj.GetCenter() << std::endl; + os << "Color: " << obj.GetColor() << std::endl; + os << "Radius = " << obj.radius_ << std::endl; + return os; +} + +std::istream &operator>>(std::istream &is, Circle &obj) { + Point center; + is >> center; + obj.SetCenter(center); + + std::cout << "color = "; + std::string color; + is.ignore(); + std::getline(is, color); + obj.SetColor(color); + + std::cout << "radius = "; + is >> obj.radius_; + + return is; +} diff --git a/2ano1/AED/aula13/Circle.h b/2ano1/AED/aula13/Circle.h new file mode 100644 index 0000000..14a2fee --- /dev/null +++ b/2ano1/AED/aula13/Circle.h @@ -0,0 +1,37 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - April/May 2022 +// + +#ifndef CIRCLE_H_ +#define CIRCLE_H_ + +#include + +#include "Figure.h" +#include "Point.h" + +class Circle : public Figure { + public: + Circle(void); + Circle(Point center, const std::string& color, double radius); + Circle(double x, double y, const std::string& color, double radius); + + double GetRadius(void) const; + void SetRadius(double radius); + + std::string GetClassName(void) const; + double Area(void) const; + double Perimeter(void) const; + + bool Intersects(const Circle& c) const; + + friend std::ostream& operator<<(std::ostream& os, const Circle& obj); + friend std::istream& operator>>(std::istream& is, Circle& obj); + + private: + double radius_; +}; + +#endif // CIRCLE_H_ diff --git a/2ano1/AED/aula13/CircleTest.cpp b/2ano1/AED/aula13/CircleTest.cpp new file mode 100644 index 0000000..9ab7686 --- /dev/null +++ b/2ano1/AED/aula13/CircleTest.cpp @@ -0,0 +1,53 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - May 2022 +// + +#include +#include + +#include "Circle.h" +#include "Point.h" + +int main(void) { + Circle circle_1; + std::cout << circle_1 << std::endl; + + Circle circle_2(0.0, 0.0, "yellow", 2.0); + std::cout << circle_2 << std::endl; + + std::cout << "The yellow circle intersects the black circle?" << std::endl; + std::cout << std::boolalpha << circle_1.Intersects(circle_2) << std::endl; + std::cout << std::endl; + + Circle circle_3(1.0, 0.0, "red", 1.0); + std::cout << circle_3 << std::endl; + + std::cout << "The red circle intersects the black circle?" << std::endl; + std::cout << std::boolalpha << circle_1.Intersects(circle_3) << std::endl; + std::cout << std::endl; + + Point p1(2, 2); + Circle circle_4(p1, "blue", 4), circle_5; + std::cout << "Insert Circle Info:" << std::endl; + std::cin >> circle_5; + std::cout << std::endl; + + std::cout << "circle_4: " << circle_4 << std::endl + << "circle_5: " << circle_5 << std::endl; + std::cout << "Area: circle_4 = " << circle_4.Area() + << "; circle_5 = " << circle_5.Area() << std::endl; + std::cout << "Perimeter: circle_4 = " << circle_4.Perimeter() + << "; circle_5 = " << circle_5.Perimeter() << std::endl; + std::cout << "circle_4 intersects circle_5: " << std::boolalpha + << circle_4.Intersects(circle_5) << std::endl; + std::cout << std::endl; + + Circle circle_6(circle_2); + Circle circle_7 = circle_6; + std::cout << "circle_6: " << circle_6 << std::endl + << "circle_7: " << circle_7 << std::endl; + + return 0; +} \ No newline at end of file diff --git a/2ano1/AED/aula13/Figure.cpp b/2ano1/AED/aula13/Figure.cpp new file mode 100644 index 0000000..19e8247 --- /dev/null +++ b/2ano1/AED/aula13/Figure.cpp @@ -0,0 +1,28 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - May 2022 +// + +#include "Figure.h" + +#define _USE_MATH_DEFINES + +#include +#include + +#include "Point.h" + +Figure::Figure(void) : center_(Point(0.0, 0.0)), color_("black") {} + +Figure::Figure(Point center, const std::string& color) + : center_(center), color_(color) {} + +Figure::Figure(double x, double y, const std::string& color) + : center_(Point(x, y)), color_(color) {} + +Point Figure::GetCenter(void) const { return center_; } +void Figure::SetCenter(Point center) { center_ = center; } + +std::string Figure::GetColor(void) const { return color_; } +void Figure::SetColor(const std::string& color) { color_ = color; } diff --git a/2ano1/AED/aula13/Figure.h b/2ano1/AED/aula13/Figure.h new file mode 100644 index 0000000..09c33c0 --- /dev/null +++ b/2ano1/AED/aula13/Figure.h @@ -0,0 +1,36 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - May 2022 +// + +#ifndef FIGURE_H_ +#define FIGURE_H_ + +#include +#include + +#include "Point.h" + +class Figure { + public: + Figure(void); + Figure(Point center, const std::string& color); + Figure(double x, double y, const std::string& color); + virtual ~Figure(void) = default; + + Point GetCenter(void) const; + void SetCenter(Point center); + std::string GetColor(void) const; + void SetColor(const std::string& color); + + virtual std::string GetClassName(void) const = 0; + virtual double Area(void) const = 0; + virtual double Perimeter(void) const = 0; + + private: + Point center_; + std::string color_; +}; + +#endif // FIGURE_H_ diff --git a/2ano1/AED/aula13/FiguresTest.cpp b/2ano1/AED/aula13/FiguresTest.cpp new file mode 100644 index 0000000..d7a0e0b --- /dev/null +++ b/2ano1/AED/aula13/FiguresTest.cpp @@ -0,0 +1,56 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// + +#include +#include +#include + +#include "Circle.h" +#include "Figure.h" +#include "Rectangle.h" +#include "Square.h" + +int main(void) { + Square square_1; + std::cout << square_1; + std::cout << std::endl; + + Rectangle rect_1; + std::cout << rect_1; + std::cout << std::endl; + + Circle circle_1; + std::cout << circle_1; + std::cout << std::endl; + + Circle circle_2(0.0, 0.0, "yellow", 2.0); + std::cout << circle_2; + std::cout << std::endl; + + std::cout << "The yellow circle intersects the black circle?" << std::endl; + std::cout << std::boolalpha << circle_1.Intersects(circle_2) << std::endl; + std::cout << std::endl; + + Circle circle_3(1.0, 0.0, "red", 1.0); + std::cout << circle_3; + std::cout << std::endl; + + std::cout << "The red circle intersects the black circle?" << std::endl; + std::cout << std::boolalpha << circle_1.Intersects(circle_3) << std::endl; + + std::vector figures; + figures.push_back(&square_1); + figures.push_back(&rect_1); + figures.push_back(&circle_1); + figures.push_back(&circle_2); + figures.push_back(&circle_3); + + std::cout << std::endl; + for (auto ptr : figures) { + std::cout << ptr->GetClassName() << " - Area = " << ptr->Area() + << " - Perimeter = " << ptr->Perimeter() << std::endl; + } + + return 0; +} \ No newline at end of file diff --git a/2ano1/AED/aula13/Makefile b/2ano1/AED/aula13/Makefile new file mode 100644 index 0000000..4a87d71 --- /dev/null +++ b/2ano1/AED/aula13/Makefile @@ -0,0 +1,45 @@ +# To compile all programs, run: +# make +# +# AED, ua, 2023 + +CC = g++ +CFLAGS += -g -std=c++17 -Wall -Wextra -lm +CPPFLAGS = $(CFLAGS) + +TARGETS = PointTest CircleTest RectangleTest SquareTest FiguresTest + +all: $(TARGETS) + +PointTest: PointTest.o Point.o + $(CC) $(CFLAGS) PointTest.o Point.o -o PointTest + +CircleTest: CircleTest.o Circle.o Figure.o Point.o + $(CC) $(CFLAGS) CircleTest.o Circle.o Figure.o Point.o -o CircleTest + +RectangleTest: RectangleTest.o Rectangle.o Figure.o Point.o + $(CC) $(CFLAGS) RectangleTest.o Rectangle.o Figure.o Point.o -o RectangleTest + +SquareTest: SquareTest.o Square.o Rectangle.o Figure.o Point.o + $(CC) $(CFLAGS) SquareTest.o Square.o Rectangle.o Figure.o Point.o -o SquareTest + +FiguresTest: FiguresTest.o Square.o Rectangle.o Circle.o Figure.o Point.o + $(CC) $(CFLAGS) FiguresTest.o Square.o Rectangle.o Circle.o Figure.o Point.o -o FiguresTest + +# Dependencies of source files + +PointTest.o: PointTest.cpp Point.h + +CircleTest.o: CircleTest.cpp Circle.h Figure.h Point.h + +RectangleTest.o: RectangleTest.cpp Rectangle.h Figure.h Point.h + +SquareTest.o: SquareTest.cpp Square.h Rectangle.h Figure.h Point.h + +FiguresTest.o: FiguresTest.cpp Square.h Rectangle.h Circle.h Figure.h Point.h + +clean: + rm -f *.o + rm -f $(TARGETS) + + diff --git a/2ano1/AED/aula13/Point.cpp b/2ano1/AED/aula13/Point.cpp new file mode 100644 index 0000000..e1b5d65 --- /dev/null +++ b/2ano1/AED/aula13/Point.cpp @@ -0,0 +1,38 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - April/May 2022 +// + +#include "Point.h" + +#include +#include + +Point::Point(void) : x_(0.0), y_(0.0) {} +Point::Point(double x, double y) : x_(x), y_(y) {} + +double Point::GetX(void) const { return x_; } +void Point::SetX(double x) { x_ = x; } +double Point::GetY(void) const { return y_; } +void Point::SetY(double y) { y_ = y; } + +double Point::DistanceTo(const Point& p) const { + double delta_x = p.GetX() - x_; + double delta_y = p.GetY() - y_; + + return std::sqrt(delta_x * delta_x + delta_y * delta_y); +} + +std::ostream& operator<<(std::ostream& os, const Point& obj) { + os << "(" << obj.x_ << "," << obj.y_ << ")"; + return os; +} + +std::istream& operator>>(std::istream& is, Point& obj) { + std::cout << "x = "; + is >> obj.x_; + std::cout << "y = "; + is >> obj.y_; + return is; +} diff --git a/2ano1/AED/aula13/Point.h b/2ano1/AED/aula13/Point.h new file mode 100644 index 0000000..5b6619c --- /dev/null +++ b/2ano1/AED/aula13/Point.h @@ -0,0 +1,32 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - April/May 2022 +// + +#ifndef POINT_H_ +#define POINT_H_ + +#include + +class Point { + public: + Point(void); + Point(double x, double y); + + double GetX(void) const; + void SetX(double x); + double GetY(void) const; + void SetY(double y); + + double DistanceTo(const Point& p) const; + + friend std::ostream& operator<<(std::ostream& os, const Point& obj); + friend std::istream& operator>>(std::istream& is, Point& obj); + + private: + double x_; + double y_; +}; + +#endif // POINT_H_ diff --git a/2ano1/AED/aula13/PointTest.cpp b/2ano1/AED/aula13/PointTest.cpp new file mode 100644 index 0000000..c397125 --- /dev/null +++ b/2ano1/AED/aula13/PointTest.cpp @@ -0,0 +1,24 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// + +#include + +#include "Point.h" + +int main(void) { + // Testing class Point + Point p1(2, 2), p2; + std::cout << "Insert Point:" << std::endl; + std::cin >> p2; + std::cout << std::endl; + + std::cout << "P1: " << p1 << std::endl << "P2: " << p2 << std::endl; + std::cout << "Distance P1<->P2: " << p1.DistanceTo(p2) << std::endl; + + Point p3(p2); + Point p4 = p3; + std::cout << "P3: " << p3 << std::endl << "P4: " << p4 << std::endl; + + return 0; +} \ No newline at end of file diff --git a/2ano1/AED/aula13/Rectangle.cpp b/2ano1/AED/aula13/Rectangle.cpp new file mode 100644 index 0000000..fc00da8 --- /dev/null +++ b/2ano1/AED/aula13/Rectangle.cpp @@ -0,0 +1,81 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// COMPLETE the code, according to Rectangle.h +// + +#include "Rectangle.h" + +#include +#include +#include + +#include "Figure.h" +#include "Point.h" + +Rectangle::Rectangle(void) : Figure(), height_(1), width_(1) { + // Rectangle of width=1 and height=1 and centered at (0,0) +} + +Rectangle::Rectangle(Point center, const std::string &color, double width, + double height) + : Figure(center, color), height_(height), width_(width) { + // Ensure that the width and height are larger than 0.0 + assert(width_ > 0.0); + assert(height_ > 0.0); +} + +Rectangle::Rectangle(double x, double y, const std::string &color, double width, + double height) + : Figure(x, y, color), height_(height), width_(width) { + // Ensure that the width and height are larger than 0.0 + assert(width_ > 0.0); + assert(height_ > 0.0); +} + +double Rectangle::GetHeight(void) const { return height_; } +void Rectangle::SetHeight(double length) { + // Ensure that the height is larger than 0.0 + assert(length > 0.0); + height_ = length; +} + +double Rectangle::GetWidth(void) const { return width_; } +void Rectangle::SetWidth(double length) { + // Ensure that the width is larger than 0.0 + assert(length > 0.0); + width_ = length; +} + +std::string Rectangle::GetClassName(void) const { return "Rectangle"; } + +double Rectangle::Area(void) const { return width_ * height_; } + +double Rectangle::Perimeter(void) const { return 2 * width_ + 2 * height_; } + +std::ostream &operator<<(std::ostream &os, const Rectangle &obj) { + os << "Center: " << obj.GetCenter() << std::endl; + os << "Color: " << obj.GetColor() << std::endl; + os << "Width = " << obj.width_ << std::endl; + os << "Height = " << obj.height_ << std::endl; + return os; +} + +std::istream &operator>>(std::istream &is, Rectangle &obj) { + Point center; + is >> center; + obj.SetCenter(center); + + std::cout << "color = "; + std::string color; + is.ignore(); + std::getline(is, color); + obj.SetColor(color); + + std::cout << "width = "; + is >> obj.width_; + std::cout << "height = "; + is >> obj.height_; + + return is; +} diff --git a/2ano1/AED/aula13/Rectangle.h b/2ano1/AED/aula13/Rectangle.h new file mode 100644 index 0000000..c02e363 --- /dev/null +++ b/2ano1/AED/aula13/Rectangle.h @@ -0,0 +1,41 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - April/May 2022 +// + +#ifndef RECTANGLE_H_ +#define RECTANGLE_H_ + +#include +#include + +#include "Figure.h" +#include "Point.h" + +class Rectangle : public Figure { + public: + Rectangle(void); + Rectangle(Point center, const std::string& color, double width, + double height); + Rectangle(double x, double y, const std::string& color, double width, + double height); + + double GetHeight(void) const; + void SetHeight(double height); + double GetWidth(void) const; + void SetWidth(double width); + + std::string GetClassName(void) const; + double Area(void) const; + double Perimeter(void) const; + + friend std::ostream& operator<<(std::ostream& os, const Rectangle& obj); + friend std::istream& operator>>(std::istream& is, Rectangle& obj); + + private: + double height_; + double width_; +}; + +#endif // RECTANGLE_H_ diff --git a/2ano1/AED/aula13/RectangleTest.cpp b/2ano1/AED/aula13/RectangleTest.cpp new file mode 100644 index 0000000..1caeb42 --- /dev/null +++ b/2ano1/AED/aula13/RectangleTest.cpp @@ -0,0 +1,40 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - May 2022 +// + +#include + +#include "Point.h" +#include "Rectangle.h" + +int main(void) { + Rectangle r1; + std::cout << r1 << std::endl; + + Rectangle r2(0.0, 0.0, "yellow", 2, 5); + std::cout << r2 << std::endl; + + Rectangle r3(1.0, 0.0, "red", 10, 50); + std::cout << r3 << std::endl; + + Point p1(2, 2); + Rectangle r4(p1, "blue", 4, 10), r5; + std::cout << "Insert Rectangle Info:" << std::endl; + std::cin >> r5; + std::cout << std::endl; + + std::cout << "r4: " << r4 << std::endl << "r5: " << r5 << std::endl; + std::cout << "Area: r4 = " << r4.Area() << "; r5 = " << r5.Area() + << std::endl; + std::cout << "Perimeter: r4 = " << r4.Perimeter() + << "; r5 = " << r5.Perimeter() << std::endl; + std::cout << std::endl; + + Rectangle r6(r2); + Rectangle r7 = r6; + std::cout << "r6: " << r6 << std::endl << "r7: " << r7 << std::endl; + + return 0; +} \ No newline at end of file diff --git a/2ano1/AED/aula13/Square.cpp b/2ano1/AED/aula13/Square.cpp new file mode 100644 index 0000000..c063f56 --- /dev/null +++ b/2ano1/AED/aula13/Square.cpp @@ -0,0 +1,58 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// COMPLETE the code, according to Square.h +// + +#include "Square.h" + +#include +#include +#include + +#include "Point.h" +#include "Rectangle.h" + +Square::Square(void) : Rectangle() { + // Rectangle of edge=1 and centered at (0,0) +} + +Square::Square(Point center, const std::string &color, double length) + : Rectangle(center, color, length, length) {} + +Square::Square(double x, double y, const std::string &color, double length) + : Rectangle(x, y, color, length, length) {} + +double Square::GetEdgeLength(void) const { return GetWidth(); } +void Square::SetEdgeLength(double length) { + SetWidth(length); + SetHeight(length); +} + +std::string Square::GetClassName(void) const { return "Rectangle"; } + +std::ostream &operator<<(std::ostream &os, const Square &obj) { + os << "Center: " << obj.GetCenter() << std::endl; + os << "Color: " << obj.GetColor() << std::endl; + os << "Edge length = " << obj.GetWidth() << std::endl; + return os; +} + +std::istream &operator>>(std::istream &is, Square &obj) { + Point center; + is >> center; + obj.SetCenter(center); + + std::cout << "color = "; + std::string color; + is.ignore(); + std::getline(is, color); + obj.SetColor(color); + + double length; + std::cout << "edge length = "; + is >> length; + obj.SetEdgeLength(length); + + return is; +} diff --git a/2ano1/AED/aula13/Square.h b/2ano1/AED/aula13/Square.h new file mode 100644 index 0000000..ac42ca3 --- /dev/null +++ b/2ano1/AED/aula13/Square.h @@ -0,0 +1,31 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - April/May 2022 +// + +#ifndef SQUARE_H_ +#define SQUARE_H_ + +#include +#include + +#include "Point.h" +#include "Rectangle.h" + +class Square : public Rectangle { + public: + Square(void); + Square(Point center, const std::string& color, double length); + Square(double x, double y, const std::string& color, double length); + + double GetEdgeLength(void) const; + void SetEdgeLength(double length); + + virtual std::string GetClassName(void) const; + + friend std::ostream& operator<<(std::ostream& os, const Square& obj); + friend std::istream& operator>>(std::istream& is, Square& obj); +}; + +#endif // SQUARE_H_ diff --git a/2ano1/AED/aula13/SquareTest.cpp b/2ano1/AED/aula13/SquareTest.cpp new file mode 100644 index 0000000..31aa26f --- /dev/null +++ b/2ano1/AED/aula13/SquareTest.cpp @@ -0,0 +1,40 @@ +// +// Algoritmos e Estruturas de Dados - 2023/2024 +// +// J. Madeira - May 2022 +// + +#include + +#include "Point.h" +#include "Square.h" + +int main(void) { + Square r1; + std::cout << r1 << std::endl; + + Square r2(0.0, 0.0, "yellow", 2); + std::cout << r2 << std::endl; + + Square r3(1.0, 0.0, "red", 10); + std::cout << r3 << std::endl; + + Point p1(2, 2); + Square r4(p1, "blue", 4), r5; + std::cout << "Insert Square Info:" << std::endl; + std::cin >> r5; + std::cout << std::endl; + + std::cout << "r4: " << r4 << std::endl << "r5: " << r5 << std::endl; + std::cout << "Area: r4 = " << r4.Area() << "; r5 = " << r5.Area() + << std::endl; + std::cout << "Perimeter: r4 = " << r4.Perimeter() + << "; r5 = " << r5.Perimeter() << std::endl; + std::cout << std::endl; + + Square r6(r2); + Square r7 = r6; + std::cout << "r6: " << r6 << std::endl << "r7: " << r7 << std::endl; + + return 0; +} \ No newline at end of file diff --git a/2ano1/AED/aula13/Triangle.cpp b/2ano1/AED/aula13/Triangle.cpp new file mode 100644 index 0000000..e0349a8 --- /dev/null +++ b/2ano1/AED/aula13/Triangle.cpp @@ -0,0 +1,45 @@ +#include "Triangle.h" + +#include +#include +#include +#include + +#include "Point.h" +#include "Triangle.h" + +Triangle::Triangle(void) : Figure(), sideA_(1), sideB_(1), angle_(M_PI / 3) {} + +Triangle::Triangle(Point center, const std::string &color, double sideA, + double sideB, double angle) + : Figure(center, color), sideA_(sideA), sideB_(sideB), angle_(angle) { + assert(sideA > 0.0); + assert(sideB > 0.0); + assert(angle > 0.0); +} + +Triangle::Triangle(double x, double y, const std::string &color, double sideA, + double sideB, double angle) + : Triangle(Point(x, y), color, sideA, sideB, angle){}; + +double Triangle::GetSideA(void) const { return sideA_; } +void Triangle::SetSideA(double sideA) { + assert(sideA > 0.0); + sideA_ = sideA; +} +double Triangle::GetSideB(void) const { return sideB_; } +void Triangle::SetSideB(double sideB) { + assert(sideB > 0.0); + sideB_ = sideB; +} +double Triangle::GetAngle(void) const { return angle_; } +void Triangle::SetAngle(double angle) { + assert(angle > 0.0); + angle_ = angle; +} + +double Triangle::GetSideC(void) const { + double sideA2 = sideA_ * sideA_; + double sideB2 = sideB_ * sideB_; + return std::sqrt(sideA2 + sideB2 - 2 * sideA_ * sideB_ * std::cos(angle_)); +} diff --git a/2ano1/AED/aula13/Triangle.h b/2ano1/AED/aula13/Triangle.h new file mode 100644 index 0000000..c3f0708 --- /dev/null +++ b/2ano1/AED/aula13/Triangle.h @@ -0,0 +1,40 @@ +#ifndef TRIANGLE_H_ +#define TRIANGLE_H_ + +#include +#include + +#include "Figure.h" +#include "Point.h" + +class Triangle : public Figure { +public: + Triangle(void); + Triangle(Point center, const std::string &color, double sideA, double sideB, + double angle); + Triangle(double x, double y, const std::string &color, double sideA, + double sideB, double angle); + + double GetSideA(void) const; + void SetSideA(double sideA); + double GetSideB(void) const; + void SetSideB(double sideB); + double GetAngle(void) const; + void SetAngle(double sideC); + + double GetSideC(void) const; + + std::string GetClassName(void) const; + double Area(void) const; + double Perimeter(void) const; + + friend std::ostream &operator<<(std::ostream &os, const Triangle &obj); + friend std::istream &operator>>(std::istream &is, Triangle &obj); + +private: + double sideA_; + double sideB_; + double angle_; +}; + +#endif // TRIANGLE_H_