iiif_print 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (211) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +2 -0
  3. data/.env +5 -0
  4. data/.fcrepo_wrapper +4 -0
  5. data/.github/release.yml +20 -0
  6. data/.github/workflows/branches.yml +24 -0
  7. data/.github/workflows/build-lint-test-action.yaml +33 -0
  8. data/.github/workflows/release_labels.yml +25 -0
  9. data/.gitignore +52 -0
  10. data/.rubocop.yml +177 -0
  11. data/.solr_wrapper +8 -0
  12. data/.travis.yml +49 -0
  13. data/CONTRIBUTING.md +181 -0
  14. data/Dockerfile +15 -0
  15. data/Gemfile +52 -0
  16. data/LICENSE +203 -0
  17. data/README.md +203 -0
  18. data/Rakefile +38 -0
  19. data/app/actors/iiif_print/actors/file_set_actor_decorator.rb +56 -0
  20. data/app/assets/config/iiif_print_manifest.js +2 -0
  21. data/app/assets/images/iiif_print/.keep +0 -0
  22. data/app/assets/javascripts/iiif_print/autocomplete_fix.js +33 -0
  23. data/app/assets/javascripts/iiif_print/ocr_search.js.erb +6 -0
  24. data/app/assets/javascripts/iiif_print.js +3 -0
  25. data/app/assets/stylesheets/iiif_print/_iiif_print.scss +4 -0
  26. data/app/assets/stylesheets/iiif_print/_issue_search.scss +13 -0
  27. data/app/assets/stylesheets/iiif_print/_issues_calendar.scss +18 -0
  28. data/app/assets/stylesheets/iiif_print/_newspapers_search.scss +38 -0
  29. data/app/assets/stylesheets/iiif_print/_search_results.scss +6 -0
  30. data/app/helpers/hyrax/iiif_helper.rb +22 -0
  31. data/app/helpers/iiif_print/application_helper.rb +5 -0
  32. data/app/helpers/iiif_print_helper.rb +64 -0
  33. data/app/indexers/concerns/iiif_print/child_indexer.rb +34 -0
  34. data/app/indexers/concerns/iiif_print/file_set_indexer.rb +29 -0
  35. data/app/mailers/iiif_print/application_mailer.rb +8 -0
  36. data/app/models/concerns/iiif_print/set_child_flag.rb +29 -0
  37. data/app/models/concerns/iiif_print/solr/document.rb +47 -0
  38. data/app/models/iiif_print/application_record.rb +6 -0
  39. data/app/models/iiif_print/derivative_attachment.rb +8 -0
  40. data/app/models/iiif_print/iiif_search_response_decorator.rb +17 -0
  41. data/app/models/iiif_print/ingest_file_relation.rb +14 -0
  42. data/app/models/iiif_print/pending_relationship.rb +7 -0
  43. data/app/presenters/iiif_print/iiif_manifest_presenter_behavior.rb +10 -0
  44. data/app/presenters/iiif_print/iiif_manifest_presenter_factory_behavior.rb +33 -0
  45. data/app/presenters/iiif_print/work_show_presenter_decorator.rb +29 -0
  46. data/app/renderers/hyrax/renderers/faceted_attribute_renderer_decorator.rb +18 -0
  47. data/app/search_builders/concerns/iiif_print/exclude_models.rb +17 -0
  48. data/app/search_builders/concerns/iiif_print/highlight_search_params.rb +14 -0
  49. data/app/services/iiif_print/manifest_builder_service_behavior.rb +97 -0
  50. data/app/services/iiif_print/pluggable_derivative_service.rb +120 -0
  51. data/app/views/catalog/_snippets_more.html.erb +16 -0
  52. data/app/views/hyrax/base/_representative_media.html.erb +9 -0
  53. data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +8 -0
  54. data/app/views/hyrax/file_sets/_actions.html.erb +45 -0
  55. data/bin/rails +13 -0
  56. data/config/fcrepo_wrapper_test.yml +5 -0
  57. data/config/initializers/assets.rb +2 -0
  58. data/config/locales/iiif_print.de.yml +148 -0
  59. data/config/locales/iiif_print.en.yml +119 -0
  60. data/config/locales/iiif_print.es.yml +148 -0
  61. data/config/locales/iiif_print.fr.yml +149 -0
  62. data/config/locales/iiif_print.it.yml +142 -0
  63. data/config/locales/iiif_print.pt-BR.yml +148 -0
  64. data/config/locales/iiif_print.zh.yml +142 -0
  65. data/config/solr_wrapper_test.yml +9 -0
  66. data/config/test-fixture/solr-config/_rest_managed.json +3 -0
  67. data/config/test-fixture/solr-config/admin-extra.html +31 -0
  68. data/config/test-fixture/solr-config/elevate.xml +36 -0
  69. data/config/test-fixture/solr-config/mapping-ISOLatin1Accent.txt +246 -0
  70. data/config/test-fixture/solr-config/protwords.txt +21 -0
  71. data/config/test-fixture/solr-config/schema.xml +366 -0
  72. data/config/test-fixture/solr-config/scripts.conf +24 -0
  73. data/config/test-fixture/solr-config/solrconfig.xml +322 -0
  74. data/config/test-fixture/solr-config/spellings.txt +2 -0
  75. data/config/test-fixture/solr-config/stopwords.txt +58 -0
  76. data/config/test-fixture/solr-config/stopwords_en.txt +58 -0
  77. data/config/test-fixture/solr-config/synonyms.txt +31 -0
  78. data/config/test-fixture/solr-config/xslt/example.xsl +132 -0
  79. data/config/test-fixture/solr-config/xslt/example_atom.xsl +67 -0
  80. data/config/test-fixture/solr-config/xslt/example_rss.xsl +66 -0
  81. data/config/test-fixture/solr-config/xslt/luke.xsl +337 -0
  82. data/config/vendor/fits.xml +55 -0
  83. data/config/vendor/imagemagick-6-policy.xml +76 -0
  84. data/db/migrate/20181214181358_create_iiif_print_derivative_attachments.rb +12 -0
  85. data/db/migrate/20190107165909_create_iiif_print_ingest_file_relations.rb +11 -0
  86. data/db/migrate/20230109000000_create_iiif_print_pending_relationships.rb +11 -0
  87. data/docker-compose.yml +129 -0
  88. data/iiif_print.gemspec +43 -0
  89. data/lib/generators/iiif_print/assets_generator.rb +29 -0
  90. data/lib/generators/iiif_print/catalog_controller_generator.rb +32 -0
  91. data/lib/generators/iiif_print/install_generator.rb +52 -0
  92. data/lib/generators/iiif_print/templates/config/initializers/iiif_print.rb +22 -0
  93. data/lib/generators/iiif_print/templates/iiif_print.scss +1 -0
  94. data/lib/iiif_print/base_derivative_service.rb +113 -0
  95. data/lib/iiif_print/blacklight_iiif_search/annotation_decorator.rb +84 -0
  96. data/lib/iiif_print/catalog_search_builder.rb +31 -0
  97. data/lib/iiif_print/configuration.rb +99 -0
  98. data/lib/iiif_print/data/fileset_helper.rb +25 -0
  99. data/lib/iiif_print/data/path_helper.rb +40 -0
  100. data/lib/iiif_print/data/work_derivatives.rb +323 -0
  101. data/lib/iiif_print/data/work_file.rb +92 -0
  102. data/lib/iiif_print/data/work_files.rb +199 -0
  103. data/lib/iiif_print/data.rb +35 -0
  104. data/lib/iiif_print/engine.rb +77 -0
  105. data/lib/iiif_print/errors.rb +9 -0
  106. data/lib/iiif_print/image_tool.rb +119 -0
  107. data/lib/iiif_print/jobs/application_job.rb +8 -0
  108. data/lib/iiif_print/jobs/child_works_from_pdf_job.rb +107 -0
  109. data/lib/iiif_print/jobs/create_relationships_job.rb +78 -0
  110. data/lib/iiif_print/jp2_derivative_service.rb +118 -0
  111. data/lib/iiif_print/jp2_image_metadata.rb +81 -0
  112. data/lib/iiif_print/lineage_service.rb +41 -0
  113. data/lib/iiif_print/metadata.rb +125 -0
  114. data/lib/iiif_print/pdf_derivative_service.rb +42 -0
  115. data/lib/iiif_print/split_pdfs/child_work_creation_from_pdf_service.rb +75 -0
  116. data/lib/iiif_print/split_pdfs/pages_into_images_service.rb +130 -0
  117. data/lib/iiif_print/split_pdfs/pdf_image_extraction_service.rb +85 -0
  118. data/lib/iiif_print/text_extraction/alto_reader.rb +123 -0
  119. data/lib/iiif_print/text_extraction/hocr_reader.rb +172 -0
  120. data/lib/iiif_print/text_extraction/page_ocr.rb +87 -0
  121. data/lib/iiif_print/text_extraction/render_alto.rb +84 -0
  122. data/lib/iiif_print/text_extraction/word_coords_builder.rb +38 -0
  123. data/lib/iiif_print/text_extraction.rb +11 -0
  124. data/lib/iiif_print/text_extraction_derivative_service.rb +47 -0
  125. data/lib/iiif_print/text_formats_from_alto_service.rb +77 -0
  126. data/lib/iiif_print/tiff_derivative_service.rb +50 -0
  127. data/lib/iiif_print/version.rb +3 -0
  128. data/lib/iiif_print/works_controller_behavior.rb +9 -0
  129. data/lib/iiif_print.rb +136 -0
  130. data/lib/tasks/set_child_works.rake +22 -0
  131. data/spec/.keep.txt +1 -0
  132. data/spec/factories/ability.rb +6 -0
  133. data/spec/factories/newspaper_issue.rb +7 -0
  134. data/spec/factories/newspaper_page.rb +7 -0
  135. data/spec/factories/newspaper_page_solr_document.rb +12 -0
  136. data/spec/factories/newspaper_title.rb +8 -0
  137. data/spec/factories/uploaded_pdf_file.rb +9 -0
  138. data/spec/factories/uploaded_txt_file.rb +9 -0
  139. data/spec/factories/user.rb +13 -0
  140. data/spec/fixtures/files/4.1.07.jp2 +0 -0
  141. data/spec/fixtures/files/4.1.07.tiff +0 -0
  142. data/spec/fixtures/files/README.md +7 -0
  143. data/spec/fixtures/files/alto-2-0.xsd +714 -0
  144. data/spec/fixtures/files/broken-truncated.pdf +0 -0
  145. data/spec/fixtures/files/credits.md +16 -0
  146. data/spec/fixtures/files/lowres-gray-via-ndnp-sample.tiff +0 -0
  147. data/spec/fixtures/files/minimal-1-page.pdf +0 -0
  148. data/spec/fixtures/files/minimal-2-page.pdf +0 -0
  149. data/spec/fixtures/files/minimal-alto.xml +31 -0
  150. data/spec/fixtures/files/ndnp-alto-sample.xml +24 -0
  151. data/spec/fixtures/files/ndnp-sample1-json.json +1 -0
  152. data/spec/fixtures/files/ndnp-sample1-txt.txt +1 -0
  153. data/spec/fixtures/files/ndnp-sample1.pdf +0 -0
  154. data/spec/fixtures/files/ocr_alto.xml +202 -0
  155. data/spec/fixtures/files/ocr_alto_scaled_4pts_per_px.xml +202 -0
  156. data/spec/fixtures/files/ocr_color.tiff +0 -0
  157. data/spec/fixtures/files/ocr_gray.jp2 +0 -0
  158. data/spec/fixtures/files/ocr_gray.tiff +0 -0
  159. data/spec/fixtures/files/ocr_mono.tiff +0 -0
  160. data/spec/fixtures/files/ocr_mono_text_hocr.html +78 -0
  161. data/spec/fixtures/files/page1.tiff +0 -0
  162. data/spec/fixtures/files/sample-4page-issue.pdf +0 -0
  163. data/spec/fixtures/files/sample-color-newsletter.pdf +0 -0
  164. data/spec/fixtures/files/thumbnail.jpg +0 -0
  165. data/spec/helpers/hyrax/iiif_helper_spec.rb +65 -0
  166. data/spec/helpers/iiif_print_helper_spec.rb +43 -0
  167. data/spec/iiif_print/base_derivative_service_spec.rb +11 -0
  168. data/spec/iiif_print/blacklight_iiif_search/annotation_decorator_spec.rb +51 -0
  169. data/spec/iiif_print/catalog_search_builder_spec.rb +60 -0
  170. data/spec/iiif_print/configuration_spec.rb +67 -0
  171. data/spec/iiif_print/data/work_derivatives_spec.rb +245 -0
  172. data/spec/iiif_print/data/work_file_spec.rb +99 -0
  173. data/spec/iiif_print/data/work_files_spec.rb +237 -0
  174. data/spec/iiif_print/image_tool_spec.rb +109 -0
  175. data/spec/iiif_print/jobs/child_works_from_pdf_job_spec.rb +30 -0
  176. data/spec/iiif_print/jobs/create_relationships_job_spec.rb +17 -0
  177. data/spec/iiif_print/jp2_image_metadata_spec.rb +37 -0
  178. data/spec/iiif_print/lineage_service_spec.rb +13 -0
  179. data/spec/iiif_print/metadata_spec.rb +115 -0
  180. data/spec/iiif_print/split_pdfs/pages_into_images_service_spec.rb +6 -0
  181. data/spec/iiif_print/text_extraction/alto_reader_spec.rb +49 -0
  182. data/spec/iiif_print/text_extraction/hocr_reader_spec.rb +45 -0
  183. data/spec/iiif_print/text_extraction/page_ocr_spec.rb +84 -0
  184. data/spec/iiif_print/text_extraction/render_alto_spec.rb +54 -0
  185. data/spec/iiif_print/text_extraction/word_coords_builder_spec.rb +44 -0
  186. data/spec/iiif_print_spec.rb +51 -0
  187. data/spec/misc_shared.rb +111 -0
  188. data/spec/models/iiif_print/derivative_attachment_spec.rb +37 -0
  189. data/spec/models/iiif_print/ingest_file_relation_spec.rb +56 -0
  190. data/spec/models/solr_document_spec.rb +14 -0
  191. data/spec/presenters/iiif_print/iiif_manifest_presenter_behavior_spec.rb +19 -0
  192. data/spec/presenters/iiif_print/iiif_manifest_presenter_factory_behavior_spec.rb +49 -0
  193. data/spec/services/iiif_print/jp2_derivative_service_spec.rb +59 -0
  194. data/spec/services/iiif_print/pdf_derivative_service_spec.rb +66 -0
  195. data/spec/services/iiif_print/pluggable_derivative_service_spec.rb +178 -0
  196. data/spec/services/iiif_print/text_extraction_derivative_service_spec.rb +82 -0
  197. data/spec/services/iiif_print/text_formats_from_alto_service_spec.rb +127 -0
  198. data/spec/services/iiif_print/tiff_derivative_service_spec.rb +65 -0
  199. data/spec/spec_helper.rb +181 -0
  200. data/spec/support/controller_level_helpers.rb +28 -0
  201. data/spec/support/iiif_print_models.rb +127 -0
  202. data/spec/test_app_templates/blacklight.yml +9 -0
  203. data/spec/test_app_templates/fedora.yml +15 -0
  204. data/spec/test_app_templates/lib/generators/test_app_generator.rb +40 -0
  205. data/spec/test_app_templates/redis.yml +9 -0
  206. data/spec/test_app_templates/solr/conf/schema.xml +362 -0
  207. data/spec/test_app_templates/solr/conf/solrconfig.xml +322 -0
  208. data/spec/test_app_templates/solr.yml +7 -0
  209. data/tasks/iiif_print_dev.rake +34 -0
  210. data/tmp/.keep +0 -0
  211. metadata +605 -0
@@ -0,0 +1 @@
1
+ {"width":3774,"height":5046,"coords":{" ":[[0,0,404,404],[1458,555,166,58],[168,2674,98,30],[168,2772,199,32],[173,2804,287,19],[354,2730,126,22],[206,2816,254,7],[170,2910,266,24],[332,3021,49,31],[171,3021,210,38],[585,3052,44,42],[172,3256,323,25],[172,3281,94,31],[524,3261,2,28],[418,3542,18,47],[177,3675,229,49],[639,3786,18,14],[301,3892,31,15],[284,4035,84,39],[493,4309,61,11],[189,4646,130,41],[509,4650,44,38],[189,4687,111,48],[171,3079,210,20],[1518,2487,61,12],[754,2537,73,30],[754,2567,398,16],[950,2559,202,8],[168,2620,480,10],[168,2630,459,27],[1164,2630,105,39],[2589,2656,13,17],[1836,2678,25,17],[993,2747,64,24],[2242,2752,56,25],[2229,2777,47,30],[665,2852,189,61],[1442,2770,46,42],[1445,2812,37,25],[2448,2819,112,42],[2374,2854,40,28],[913,2942,53,35],[1598,2934,40,28],[2070,2970,67,43],[857,2938,52,39],[1558,3044,109,33],[2328,3149,56,18],[1445,3113,56,56],[763,3275,17,30],[1619,3311,19,28],[2432,3339,19,26],[531,3433,131,54],[743,3915,51,40],[2012,4433,118,38],[2166,4381,52,22],[2090,4532,40,34],[816,4611,22,18],[874,4612,39,38],[1773,4741,30,35],[1046,4774,100,45],[1861,4852,82,17],[2811,3995,7,15],[3348,2787,117,30]],"Foran":[[224,382,98,33]],"important":[[343,384,144,33]],"offer":[[511,382,68,27],[3576,386,68,30]],"strictly":[[190,437,100,33],[3250,444,103,33]],"limited":[[320,437,101,26],[3382,441,104,28]],"to":[[456,442,26,21],[3520,446,27,21],[404,984,27,27],[3266,1702,19,15],[3620,2206,22,18],[1576,2632,19,14],[2621,2802,19,14],[2343,2969,20,15],[1960,2990,20,15],[2466,3280,18,15],[718,3506,19,13],[999,3507,19,14],[344,3870,19,13],[271,3990,19,12],[276,4627,19,13],[973,2418,18,13],[854,3720,20,15],[757,3841,18,14],[1752,2442,20,14],[2456,2561,19,16],[829,2728,20,11],[1389,3039,19,13],[1353,3063,19,13],[1413,3087,18,13],[2408,3066,19,13],[2507,3113,20,13],[2228,3255,19,13],[2506,3257,19,14],[863,3387,19,13],[922,3914,18,13],[957,3986,18,15],[1259,4306,18,15],[2290,4339,20,15],[2569,4366,19,15],[2435,4389,18,13],[1908,4526,20,15],[1901,4244,22,14],[1731,4288,19,15],[2008,4315,19,14],[1709,4335,18,14],[1660,4359,19,14],[1997,4409,18,15],[2041,4646,18,14],[1746,4689,19,15],[1997,4763,20,15],[1828,4809,18,15],[2226,4694,19,14],[2459,4861,19,15],[2898,2670,20,16],[2784,2789,19,14],[2878,3029,20,15],[3074,3244,19,16],[2772,3385,20,16],[3112,3389,20,15],[2654,3528,18,15],[2859,3530,18,14],[2953,3650,19,15],[2928,3673,20,16],[2813,3913,20,14],[2937,4017,19,15],[2893,4111,20,16],[2946,4184,19,15],[2649,4420,18,13],[2770,4444,18,15],[3009,4588,19,15],[2805,4710,13,11],[3235,2850,19,14],[3606,3309,22,15],[3442,4042,20,15],[3372,4066,19,14],[3215,4112,20,14],[3445,4113,20,15],[3234,4158,19,16],[3367,4632,19,13],[3590,4799,22,15]],"sub":[[516,437,62,26]],"ocribcrs":[[187,489,111,26]],"see":[[317,499,43,17],[3382,505,44,18]],"Eighth":[[378,489,97,35],[3443,495,100,34]],"Page.":[[502,489,75,34],[3567,494,76,35]],"1V":[[596,346,206,208]],"mt":[[778,348,269,207],[705,3844,23,11]],"Nita":[[1113,348,259,213]]," ":[[736,56,29,14],[815,60,42,18],[1221,63,111,30],[1432,47,767,54],[2351,55,48,35],[2447,64,79,27],[1461,551,152,4],[203,632,3377,14],[652,643,773,12],[531,718,30,1],[385,1350,46,3],[251,1463,13,2],[240,1542,3,7],[441,1799,19,12],[303,2038,39,10],[650,726,20,1641],[2210,626,536,24],[709,706,2833,14],[722,795,2376,1427],[3336,1262,140,9],[667,2365,2480,10],[168,2657,478,17],[408,2674,238,23],[376,2729,103,1],[168,2730,126,22],[168,2752,312,20],[383,2684,14,17],[270,2724,10,12],[533,2805,35,10],[266,2855,220,12],[170,2934,265,28],[242,2853,22,13],[170,2872,4,23],[217,2872,23,23],[556,2877,15,10],[472,2948,19,2],[488,2953,3,4],[399,3027,145,17],[400,3056,36,10],[607,3069,22,25],[569,3099,234,24],[584,3104,59,15],[175,3123,257,15],[175,3138,186,17],[524,3256,86,1],[491,3257,4,24],[608,3261,2,28],[644,3276,1,2],[420,3336,37,16],[324,3365,43,11],[380,3431,34,17],[176,3481,108,38],[298,3479,11,13],[548,3487,3,9],[402,3532,34,10],[417,3599,18,13],[381,3620,12,18],[177,3657,81,18],[227,3570,35,23],[438,3574,83,15],[356,3608,6,12],[387,3699,46,12],[516,3720,35,16],[416,3733,3,2],[226,3851,35,8],[289,3878,14,9],[289,3896,9,11],[657,3936,1,22],[645,3949,3,3],[241,4018,7,2],[254,4018,9,2],[307,4016,50,10],[607,4019,32,11],[315,4111,28,11],[342,4135,30,11],[365,4154,33,16],[283,4193,12,26],[269,4233,43,9],[242,4252,43,11],[298,4187,4,6],[358,4287,17,3],[628,4371,37,14],[628,4385,135,37],[660,4422,103,20],[806,4469,5,12],[802,4481,3,22],[394,4399,23,10],[266,4482,56,13],[552,4491,2,9],[493,4532,37,15],[613,4585,13,11],[533,4697,92,27],[325,4742,20,17],[444,4828,214,27],[343,4767,49,16],[397,4776,2,5],[437,4768,16,13],[458,4768,20,13],[643,4854,2,3],[663,2607,31,11],[171,3099,222,24],[665,3152,55,16],[666,4148,128,36],[666,4184,475,39],[1048,2421,30,10],[1787,2422,8,6],[1797,2421,5,10],[1479,2444,23,12],[1369,2445,22,11],[1352,2464,40,20],[1883,2487,7,16],[2093,2496,19,7],[1520,2499,48,29],[1527,2529,22,3],[1541,2536,32,16],[950,2537,38,22],[1542,2553,22,3],[655,2567,10,13],[2029,2598,132,29],[1139,2597,13,11],[210,2608,835,12],[798,2620,247,5],[1766,2606,299,21],[1508,2635,36,12],[1806,2635,39,11],[1164,2669,79,23],[1084,2653,53,14],[1121,2667,16,10],[2261,2682,18,3],[687,2698,29,22],[722,2683,3,9],[1483,2680,10,8],[1728,2684,7,4],[2189,2680,32,39],[1025,2729,4,5],[967,2771,81,25],[741,2730,35,33],[2321,2752,49,16],[1515,2776,30,12],[2103,2779,1,7],[733,2766,147,27],[665,2793,207,59],[665,2913,110,45],[1002,2801,22,2],[1348,2779,57,25],[1496,2804,3,3],[2168,2811,1,3],[1047,2802,32,34],[1335,2806,5,6],[2318,2826,43,18],[2527,2861,33,30],[1095,2913,50,45],[1311,2846,148,19],[1805,2863,3,3],[2260,2854,4,9],[2280,2848,14,19],[2561,2855,3,3],[1402,2875,4,9],[1421,2875,28,11],[1807,2874,33,11],[1399,2891,40,20],[1292,2911,147,25],[821,2891,31,14],[913,2896,8,10],[1313,2918,35,15],[1676,2917,33,38],[1402,2937,37,23],[1963,2969,20,5],[2453,2972,10,9],[2467,2973,2,5],[2470,2981,2,11],[2473,2992,20,7],[775,2989,20,16],[813,3009,41,16],[1601,3019,34,10],[2094,3008,15,20],[1558,3032,101,12],[836,3036,66,13],[2206,3044,34,10],[1542,3040,14,16],[2256,3063,46,19],[2367,3068,7,11],[1007,3084,33,13],[1054,3063,29,34],[1352,3084,27,16],[912,3104,231,23],[893,3127,250,22],[1196,3089,35,10],[807,3091,9,28],[2165,3115,35,13],[1494,3128,15,12],[2332,3140,60,9],[2182,3167,178,11],[1482,3157,19,12],[1693,3175,10,1],[1771,3160,33,16],[2165,3164,12,6],[1657,3176,96,42],[1441,3209,20,11],[1541,3208,15,22],[1312,3232,42,11],[1557,3240,3,3],[1569,3233,3,10],[2167,3229,161,44],[2337,3254,26,19],[2371,3259,4,9],[1042,3272,4,10],[1348,3274,33,17],[1351,3298,57,19],[1026,3284,13,11],[1596,3281,51,11],[1005,3295,27,12],[1597,3301,41,10],[662,3328,3,32],[853,3318,42,10],[1294,3316,19,22],[1837,3376,26,12],[1162,3449,545,4],[2056,3450,573,7],[703,3456,214,18],[926,3468,1,5],[853,3527,70,16],[985,3530,49,11],[974,3541,27,27],[1064,3552,73,18],[973,3624,51,15],[967,3639,47,18],[686,3821,39,10],[2380,3797,2,43],[816,3869,17,10],[718,3889,44,19],[765,4130,13,17],[1190,3472,1407,677],[1401,4221,52,4],[2067,4229,57,2],[2298,4244,37,16],[1582,4262,59,23],[784,4304,18,4],[1567,4285,74,16],[2054,4299,82,24],[2603,4298,30,10],[2027,4323,109,20],[2009,4343,127,39],[1459,4335,4,11],[1901,4365,17,16],[2202,4369,3,3],[1898,4383,23,17],[2188,4404,21,2],[1766,4418,5,3],[2109,4389,23,36],[1768,4428,5,17],[1806,4440,4,5],[1256,4460,15,5],[778,4473,3,4],[814,4477,2,21],[1255,4469,34,17],[2190,4484,12,7],[871,4492,30,12],[907,4494,3,10],[1444,4500,36,12],[2184,4503,1,6],[1311,4523,39,11],[1271,4569,27,8],[2492,4580,75,15],[720,4586,17,12],[1220,4592,18,11],[1519,4597,17,13],[702,4604,16,18],[816,4629,19,13],[1213,4616,39,11],[1524,4620,9,10],[1534,4614,41,16],[723,4630,37,15],[668,4758,105,52],[697,4687,19,6],[2330,4699,7,11],[2532,4701,28,7],[2187,4768,15,10],[2547,4770,9,9],[2207,4785,18,4],[1463,4785,6,10],[2207,4791,9,11],[1692,4810,16,12],[677,4823,40,34],[734,4820,44,15],[860,4821,5,14],[1645,4230,7,647],[2698,2610,11,7],[2900,2753,22,4],[2925,2913,31,10],[2835,3170,12,3],[2835,3175,11,11],[2790,3605,19,11],[2814,4018,16,10],[2814,4028,16,10],[2810,4038,18,16],[2763,4472,11,10],[2762,4495,28,11],[2643,4686,35,9],[2694,4714,25,11],[2774,4729,53,44],[2696,4805,6,10],[2711,4800,11,10],[2735,4799,21,40],[2633,2382,26,2514],[1147,2971,19,1918],[1911,4869,26,26],[2136,4241,11,663],[2931,4881,175,7],[3270,2661,33,13],[3347,2663,11,11],[3379,2663,3,18],[3294,2680,11,15],[3354,2681,31,10],[3401,2902,34,10],[3443,2944,29,16],[3174,3307,6,11],[3532,4422,16,11],[3516,4441,44,16],[3157,4558,3,6],[3153,4565,8,8],[3415,4730,4,9],[3362,4761,22,27],[3486,4772,2,3],[3136,728,37,4181],[0,4988,3764,56]],"A":[[1370,310,6,9],[3169,937,26,29],[2674,3838,16,16],[2816,3942,13,14]],"/":[[1357,320,13,12]],"../":[[1290,350,43,12]],"_":[[1556,561,2,2],[2221,2694,4,3],[2045,2955,9,4],[791,2410,6,3],[1610,4818,5,3]],"fl":[[1766,557,60,8]],".2...":[[1858,514,70,40]],"‘tlunrrjorjintwttuwjmfi":[[1490,572,421,28]]," ":[[1911,528,835,98],[644,3252,5,37],[380,4170,41,29],[530,4747,99,41],[801,2657,167,42],[1354,3102,53,46],[1156,3176,65,42],[579,3374,86,59],[700,4678,160,35],[668,4713,131,45]]," ":[[1458,414,1616,137],[251,2537,414,46],[362,2697,145,32],[168,2704,84,26],[263,2819,204,36],[170,2867,289,43],[514,3123,289,32],[175,3155,487,97],[262,3552,43,46],[177,3598,127,59],[227,4311,42,13],[400,4513,135,62],[437,4788,221,40],[661,3059,142,40],[227,2583,925,25],[2139,2577,61,21],[2015,2660,170,38],[798,2625,185,27],[1391,2631,54,39],[1441,2675,33,14],[966,2843,137,25],[966,2868,179,45],[2032,2952,105,23],[2426,3308,40,31],[664,3414,73,58],[1484,4733,151,63],[1564,4770,71,35],[3263,2753,202,34],[3136,4747,225,142],[3362,4730,41,31]],"”119.":[[2855,433,378,129]],"For":[[3285,388,55,28],[172,1824,37,18],[2547,4790,36,16]],"an":[[3356,398,35,18],[229,1659,24,12],[2717,3747,24,12],[3005,4639,24,11]],"importno’":[[3408,389,135,34]],"t":[[3542,391,11,23],[2130,2702,7,16],[784,3292,4,13],[334,4770,5,13],[1478,4761,5,10]],"wh-":[[3582,442,60,26]],"Icribers":[[3251,497,114,26]],"Est-tinisnsii":[[217,644,250,46]],"1677—NElV":[[478,646,168,45]],"ssiiiss.":[[672,665,130,30]],"iiismisminii":[[183,709,346,93]],"RESERVES.":[[413,820,238,61]],"Career":[[181,928,97,28]],"of":[[295,927,29,28],[312,1427,20,17],[284,1568,19,17],[368,1653,20,17],[571,1680,21,16],[473,1708,21,18],[624,1736,22,17],[170,2061,23,18],[293,2109,21,17],[453,2156,22,16],[515,2323,22,16],[2163,2317,32,26],[3302,1082,25,23],[3356,1125,24,24],[3261,1212,25,23],[3580,1322,22,16],[3312,1377,22,17],[3573,1406,22,17],[3348,1533,20,17],[3362,1773,19,16],[3430,1774,23,16],[3545,1870,22,16],[3470,1892,21,17],[3621,1942,23,18],[3168,2058,22,18],[3305,2130,22,17],[3168,2177,22,17],[3507,2228,20,17],[3341,2274,21,17],[3227,2297,22,17],[3392,2322,22,17],[228,2444,22,16],[421,2443,21,16],[580,2467,20,16],[2249,2632,21,16],[1071,2844,21,15],[1352,2869,19,16],[1616,2894,20,16],[2444,2895,22,16],[1791,2915,19,17],[2480,3015,21,16],[227,3360,20,16],[433,3408,19,15],[316,3479,21,16],[518,3792,22,17],[539,3868,21,16],[308,4509,17,13],[641,4701,17,14],[1396,2464,22,16],[2440,2584,19,17],[2158,2750,21,17],[1217,2726,19,16],[1023,3034,21,16],[2157,3037,19,16],[1842,3059,22,17],[1932,3202,21,18],[1377,3227,21,16],[2047,3250,20,17],[1705,3394,22,16],[2116,3396,21,16],[962,3575,21,16],[933,3863,21,16],[1055,3936,22,17],[2352,4197,23,17],[1023,4319,21,16],[2561,4458,21,17],[1890,4477,24,17],[2355,4503,23,17],[1659,4263,21,15],[1955,4288,22,17],[1707,4404,20,16],[1400,4543,22,15],[2602,4697,21,16],[2472,4766,21,16],[2383,4789,21,15],[1351,4706,20,17],[2851,2549,22,17],[2888,2693,21,17],[2921,2717,21,17],[3071,2813,20,18],[2780,2859,22,17],[3115,3149,22,17],[2776,3241,22,16],[2969,3266,23,17],[2905,3361,22,17],[2820,3456,23,17],[3110,3577,21,19],[2792,3647,21,17],[3085,3650,22,17],[2928,3768,19,16],[2991,3863,19,18],[2883,3991,21,16],[2975,4231,22,16],[2649,4274,20,16],[2966,4491,22,17],[2776,4539,22,15],[2943,4540,22,16],[2973,4633,23,18],[2443,4883,23,18],[3572,2397,23,17],[3230,2464,22,17],[3531,2467,21,18],[3164,2511,22,18],[3616,2635,24,18],[3239,2704,21,16],[3615,2707,24,18],[3567,2731,19,17],[3237,2775,21,16],[3490,2850,21,17],[3293,2895,22,16],[3564,3089,22,17],[3565,3258,20,16],[3463,3328,20,17],[3151,3420,19,17],[3262,3470,22,16],[3258,3661,23,17],[3604,3664,23,18],[3199,3780,22,17],[3219,3828,22,17],[3603,3830,22,18],[3447,3945,21,17],[3315,3967,21,17],[3408,3968,22,17],[3205,4062,22,17],[3419,4088,22,16],[3336,4206,22,17],[3287,4253,23,17],[3226,4581,21,16],[3543,4822,22,16]],"These":[[340,926,84,28],[195,1966,59,17],[3255,4181,61,17]],"Veterans":[[437,925,134,29]],"from":[[584,925,68,28],[205,1190,55,24],[3272,1724,46,17],[3171,1796,47,17],[1163,2773,45,17],[1536,2846,47,17],[716,2511,47,17],[980,3791,47,17],[848,4081,46,15],[1295,2559,46,17],[2016,3036,46,16],[1472,4472,46,16],[1382,4636,46,17],[1433,4685,47,16],[965,4772,45,17],[2824,3647,48,17],[3072,4207,48,18],[3032,4349,48,18],[3561,4891,49,19]],"Cold":[[197,985,64,30],[264,1989,46,17]],"Harbor":[[280,983,105,30]],"Appomattox":[[445,983,187,35]],"Organizations":[[180,1072,165,28]],"Which":[[376,1069,79,23]],"Did":[[485,1068,42,23]],"Gallant":[[564,1068,86,23]],"Service—Led":[[207,1109,156,25]],"by":[[379,1109,30,28],[486,1879,25,22],[3229,1772,25,22],[3253,1820,26,22],[3436,2155,24,22],[1808,2845,28,17],[382,4083,22,21],[1363,2511,23,21],[470,2538,23,21],[1895,2463,25,22],[1901,2725,24,21],[2112,3107,24,21],[2110,3419,23,23],[937,4151,23,22],[1075,4272,23,21],[2174,4502,24,22],[1816,4571,25,21],[2058,4243,25,22],[1615,4569,22,20],[2006,4809,24,22],[3548,2516,24,22],[3459,2539,24,22],[3308,2800,20,21],[3489,2826,24,22],[3261,2991,24,21],[3542,3018,25,21],[3366,3686,24,21],[3572,3807,24,22],[3588,4441,27,22],[3379,4582,23,20],[3584,4702,29,22]],"Good":[[424,1107,56,24]],"Officers,":[[499,1107,89,25]],"Dis-":[[604,1106,45,22]],"cipline":[[206,1151,79,29]],"and":[[309,1149,42,23],[548,1453,36,17],[438,1538,36,18],[172,1626,38,18],[367,1624,37,18],[606,1651,38,17],[605,1850,37,17],[404,2179,36,17],[1291,2317,64,26],[2470,2319,66,27],[3384,1292,38,18],[3329,1629,36,17],[3491,1917,36,17],[3355,2202,37,18],[3361,2227,37,17],[3210,2344,38,17],[605,2345,37,17],[575,2443,37,17],[2357,2655,40,17],[1970,2703,37,16],[1769,2821,37,17],[2158,2870,37,16],[1657,2892,35,15],[1892,2892,39,17],[2561,2943,38,17],[1262,2964,37,16],[1983,2964,38,18],[1103,2987,37,16],[2157,3276,35,17],[2514,3350,39,17],[175,3408,36,16],[177,3598,36,18],[322,3940,36,16],[461,4108,34,16],[577,4350,35,16],[580,4397,35,16],[188,4553,37,17],[403,4579,35,15],[524,4580,37,16],[309,4862,37,16],[902,3599,36,17],[777,3645,36,18],[920,3648,36,16],[990,3743,37,18],[862,3790,37,17],[611,3844,35,17],[951,4009,35,16],[2005,2416,36,17],[1796,2487,38,17],[2482,2418,38,17],[2331,2512,38,18],[2244,2584,37,17],[841,2486,37,17],[874,3081,36,15],[1300,3036,38,17],[1549,3085,36,15],[2421,3039,37,17],[2051,3106,39,17],[2600,3136,37,16],[1931,3156,38,16],[2271,3181,37,17],[1343,3203,36,17],[1221,3250,36,17],[1719,3249,36,16],[1101,3363,36,16],[1101,3434,36,17],[927,3457,36,16],[1553,3418,37,16],[2528,3397,39,17],[1099,3649,37,17],[1016,3816,37,17],[996,3912,37,16],[968,4057,38,16],[794,4151,35,16],[1222,4327,36,17],[1271,4446,37,16],[671,4224,35,15],[941,4225,35,16],[818,4295,38,16],[2501,4339,38,16],[2150,4432,36,16],[1836,4454,36,16],[2359,4456,38,17],[2094,4479,36,16],[981,4537,37,16],[1110,4586,36,15],[1958,4808,37,18],[2360,4741,37,17],[2146,4787,37,15],[1111,4656,36,17],[1027,4679,37,16],[1230,4658,36,17],[1428,4660,38,18],[1337,4684,37,15],[1599,4687,37,16],[1298,4730,36,16],[1380,4801,36,17],[1047,4821,36,17],[3100,2766,37,17],[2749,2907,37,16],[2658,3002,38,16],[2658,3025,38,17],[2794,3121,36,18],[2954,3194,39,18],[3024,3339,37,17],[2750,3408,38,16],[2966,3552,38,17],[3016,3602,37,16],[3088,3889,38,18],[2723,4108,37,17],[2710,4299,37,16],[2911,4348,38,18],[2959,4373,38,17],[2648,4441,37,17],[2895,4467,38,17],[2746,4562,37,16],[1552,4873,36,18],[3370,2442,36,16],[3234,2488,38,17],[3332,2537,36,17],[3424,2586,36,16],[3543,2612,36,16],[3596,2683,39,17],[3348,2706,37,16],[3213,2728,38,16],[3213,3014,38,17],[3308,3039,37,16],[3317,3159,37,16],[3406,3208,37,16],[3589,3209,40,18],[3559,3330,36,17],[3469,3352,35,16],[3587,3450,39,17],[3562,3496,39,18],[3149,3540,38,17],[3455,3567,38,16],[3258,3709,39,17],[3253,3757,39,17],[3469,3783,37,17],[3316,3829,38,16],[3225,3967,38,16],[3340,4135,36,16],[3540,4185,37,16],[3140,4509,37,17],[3524,4513,37,16],[3532,4560,38,16],[3436,4606,37,16],[3481,4749,36,16],[3384,4772,36,16]],"‘Bravery":[[372,1148,104,28]],"Saved":[[497,1145,71,24]],"Them":[[584,1145,64,23]],"Annihilation":[[276,1188,151,24]],"on":[[446,1192,26,17],[1651,2324,41,19],[3321,1354,24,12],[3311,1753,24,13],[3438,1946,25,11],[3545,2257,24,13],[579,2376,24,11],[2158,2852,22,10],[2304,2971,24,13],[2571,3308,22,11],[175,3436,23,12],[594,3534,23,12],[349,3579,22,11],[365,3944,22,11],[188,4535,23,11],[517,2424,24,11],[2337,2398,25,12],[2342,2446,25,12],[2290,2590,24,11],[1991,3065,23,11],[2567,3140,24,12],[1382,3161,23,11],[1357,3184,25,12],[871,3437,22,11],[1058,4037,23,12],[1248,4286,24,11],[1465,4335,23,11],[1400,4453,23,12],[2380,4319,23,12],[2229,4367,23,12],[1714,4433,24,11],[913,4494,22,10],[1060,4520,23,10],[1433,4713,24,12],[3112,2866,23,12],[2787,2888,23,11],[2891,3175,25,12],[3110,3201,23,12],[3065,3321,25,11],[3067,3415,25,13],[2863,3605,25,12],[2833,3748,24,12],[2982,3845,25,12],[2850,3971,23,13],[3007,4283,25,11],[2690,4519,23,11],[3096,4546,24,11],[2899,4662,23,12],[2780,4829,22,11],[3161,2636,23,11],[3401,2734,24,11],[3308,3566,23,15],[3585,4189,34,12],[3393,4396,24,12]],"Hard-Fought":[[493,1184,154,29]],"Fields~llleinorable":[[205,1226,227,26]],"Combats.":[[446,1224,104,23]],"BY":[[309,1295,28,17]],"R.":[[349,1295,20,16]],"E.":[[380,1294,19,16]],"MCBRIDE.":[[409,1293,102,19]],"CO.":[[323,1319,29,15]],"0.":[[366,1318,19,17]],"190m":[[397,1317,56,15]],"Pa.":[[465,1317,31,15]],"The":[[198,1372,40,17],[385,1511,39,17],[398,2323,38,16],[3193,1291,40,19],[3494,1797,39,18],[3515,1845,39,18],[3192,2010,40,18],[3192,2106,39,17],[3192,2200,39,19],[1184,2988,40,17],[1160,3274,38,18],[2097,3130,40,17],[2512,3373,41,17],[1255,4185,40,18],[1189,4398,39,17],[2476,4433,40,17],[1803,4523,39,18],[1683,4309,38,17],[1802,4665,39,17],[1680,4711,39,16],[2171,4669,39,16],[2371,4717,40,17],[2982,2598,41,17],[3101,2695,40,17],[3099,2789,41,17],[3047,3172,40,17],[2681,3240,39,17],[2789,3361,38,16],[2677,3455,40,17],[2932,4158,40,17],[2844,4229,39,17],[2986,2398,40,18],[3104,2502,43,18],[3190,2367,39,19],[3270,2417,42,17],[3178,3157,41,18],[3499,3400,39,17],[3402,3471,40,17],[3474,3759,40,17],[3251,3851,41,18],[3165,4390,40,17],[3243,4485,38,16],[3482,4582,39,17],[3162,4890,38,18]],"di\\i<ion":[[247,1371,79,17]],"known":[[341,1370,70,17],[1966,4500,67,18]],"as":[[424,1374,21,12],[391,2017,20,12],[3256,1921,21,12],[3322,1921,20,12],[3168,2158,20,12],[516,2495,22,11],[2421,2565,21,12],[1119,3893,20,13],[893,3917,20,11],[2042,4507,21,12],[2821,2450,22,12],[2816,2624,23,13],[3084,2867,20,12],[3113,3105,21,12],[2807,3556,20,12],[3594,4213,23,13]],"the":[[459,1368,32,17],[173,1429,33,17],[491,1538,32,17],[232,1682,32,17],[425,1680,31,18],[506,1709,33,16],[253,1739,32,17],[172,1768,33,18],[610,1765,33,18],[287,1852,32,17],[172,1880,33,18],[171,1937,33,18],[489,1964,33,18],[170,2109,33,17],[474,2228,31,16],[367,2252,32,16],[551,2322,31,16],[2221,2317,57,27],[3534,937,47,29],[3230,1124,37,24],[3454,1169,39,23],[3298,1212,38,23],[3449,1322,32,17],[3171,1376,32,18],[3432,1406,33,16],[3227,1532,32,18],[3172,1556,32,18],[3362,1581,32,17],[3554,1582,31,18],[3363,1868,32,17],[3280,1891,33,17],[3351,1916,31,17],[3538,1918,31,17],[3299,1939,32,18],[3473,1941,31,17],[3170,1963,32,17],[3378,1964,32,17],[3461,2036,31,17],[3201,2058,31,18],[3328,2084,32,16],[3464,2084,32,17],[3460,2108,32,16],[3197,2153,31,17],[3469,2156,31,17],[3196,2177,32,17],[3200,2225,32,18],[3388,2251,32,17],[3168,2272,32,17],[3374,2274,31,18],[3313,2345,32,17],[411,2346,32,17],[612,2370,32,18],[260,2443,32,17],[420,2467,32,16],[612,2466,33,17],[2226,2608,31,16],[1846,2653,31,17],[2407,2655,31,27],[1605,2703,33,16],[2472,2775,31,17],[2261,2799,32,16],[1824,2821,32,17],[1111,2844,30,16],[1506,2893,31,16],[2361,2895,32,17],[1826,2916,31,16],[2190,2918,32,17],[2608,2943,30,17],[2377,2966,31,18],[1999,2989,32,16],[2305,2992,32,16],[2007,3012,31,17],[2508,3015,34,17],[422,3074,31,16],[2605,3278,31,18],[2279,3301,31,17],[1248,3346,31,17],[2268,3348,31,17],[258,3360,30,16],[348,3479,31,16],[364,3550,32,16],[399,3767,30,16],[617,3771,30,17],[360,3792,33,15],[570,3869,31,15],[511,4109,31,17],[188,4505,33,18],[340,4506,30,17],[294,4578,30,16],[358,4601,32,17],[550,2418,31,18],[1001,2415,31,17],[571,2514,33,17],[773,2510,30,18],[503,2538,32,16],[664,2534,37,27],[1106,3720,32,17],[757,3791,30,17],[498,3891,30,17],[1045,4009,31,16],[912,4080,30,16],[1021,4080,32,17],[1162,2392,31,16],[2108,2392,33,17],[1930,2440,31,18],[1431,2464,33,16],[1606,2464,32,16],[1981,2510,33,19],[1479,2535,31,16],[1985,2582,32,17],[2161,2392,32,17],[2482,2393,32,18],[2531,2418,33,17],[2379,2441,34,17],[2305,2537,32,16],[2611,2562,32,17],[2472,2584,32,17],[1313,2440,32,16],[756,2488,32,15],[1724,2749,31,16],[2254,2728,32,16],[2561,2728,32,18],[2416,2752,31,16],[970,2724,32,16],[941,3058,31,16],[1109,3059,31,15],[1417,3037,31,16],[1830,3036,31,16],[1874,3060,32,16],[2607,3111,31,16],[1756,3131,32,16],[2384,3159,35,16],[2318,3182,31,17],[2104,3202,32,17],[1409,3227,32,16],[2011,3227,38,26],[1275,3251,33,16],[1862,3250,32,18],[1742,3370,32,17],[2005,3371,32,17],[2021,3395,30,17],[1772,3418,32,17],[2382,3372,32,17],[908,3815,30,17],[964,3864,32,15],[1045,3983,31,18],[805,4033,30,15],[1007,4127,32,17],[2215,4196,33,18],[2385,4196,32,18],[1469,4260,29,16],[1282,4281,31,16],[1519,4308,30,16],[1359,4424,31,16],[1467,4425,31,16],[1167,4445,31,17],[1518,4449,31,17],[1251,4493,31,16],[1113,4273,31,16],[2263,4290,30,18],[2414,4456,31,17],[1814,4500,32,18],[2211,4502,32,18],[2389,4503,30,18],[2478,4504,32,18],[2361,4527,33,17],[2246,4550,31,17],[2412,4551,32,17],[853,4536,30,16],[1440,4542,32,17],[2284,4597,31,17],[1318,4611,31,18],[1656,4828,31,17],[1776,4831,31,16],[2037,4834,33,16],[1656,4851,30,16],[2034,4856,33,17],[2462,4695,32,17],[2413,4742,30,16],[2300,4787,30,16],[2414,4789,32,16],[2389,4812,31,18],[989,4630,32,17],[1445,4636,33,17],[1168,4681,31,17],[1549,4709,31,17],[1371,4753,31,17],[1223,4799,30,17],[1445,4826,33,16],[1542,4850,30,17],[2747,2548,31,17],[2879,2550,32,16],[2663,2571,33,17],[2816,2596,33,17],[3062,2622,33,17],[3037,2669,33,19],[2819,2716,32,17],[2954,2717,33,17],[2929,2812,32,18],[3107,2813,33,18],[2983,2860,34,18],[2918,2884,31,16],[3106,2885,31,17],[3104,2956,32,18],[2875,2978,32,18],[3020,3004,32,17],[2974,3028,33,17],[2731,3097,32,17],[2947,3147,31,17],[2808,3241,33,17],[3102,3243,32,18],[2886,3265,32,17],[3014,3291,32,17],[2778,3313,32,16],[3099,3316,32,17],[2866,3337,32,21],[2655,3407,32,17],[2866,3408,33,18],[3100,3410,32,18],[2849,3456,33,18],[2976,3505,33,17],[2886,3528,31,17],[2983,3576,32,18],[2652,3598,33,17],[2652,3622,32,17],[2918,3624,32,17],[2956,3768,33,17],[3095,3770,33,17],[3025,3840,33,18],[2877,3863,32,17],[3028,3865,31,16],[2763,3885,33,18],[2842,3911,31,17],[2889,3967,31,17],[2990,3967,32,18],[2915,3990,31,18],[2853,4013,32,17],[3041,4017,33,17],[3034,4040,32,18],[2741,4085,31,16],[2735,4131,32,17],[2709,4155,32,17],[3090,4183,32,18],[2651,4227,32,16],[3004,4254,31,17],[2677,4274,32,17],[3041,4278,32,17],[3007,4325,31,17],[3089,4349,32,18],[2744,4394,32,18],[3036,4397,31,17],[2814,4419,32,17],[3036,4444,31,17],[2823,4514,33,17],[2808,4538,32,17],[2975,4539,32,17],[2728,4585,31,16],[3043,4587,32,17],[2907,4610,31,17],[2859,4633,31,17],[2645,4655,31,18],[3027,4682,31,17],[3006,4753,32,17],[3086,4801,30,17],[852,4866,31,17],[1735,4878,33,15],[2283,4881,33,19],[2865,2501,33,17],[3524,2372,33,18],[3305,2393,32,18],[3166,2440,32,17],[3479,2490,32,18],[3199,2511,32,18],[3604,2588,34,18],[3282,2608,33,17],[3196,2679,31,17],[3600,2875,34,17],[3504,2898,31,16],[3540,2945,31,18],[3340,3063,31,16],[3408,3087,31,17],[3595,3089,36,18],[3507,3112,32,18],[3323,3254,32,17],[3593,3257,35,19],[3488,3280,32,18],[3204,3373,32,17],[3152,3445,31,18],[3464,3448,31,17],[3523,3520,31,17],[3528,3544,31,16],[3290,3661,34,18],[3479,3945,31,17],[3440,3969,33,16],[3585,4066,35,17],[3312,4087,31,16],[3391,4136,31,16],[3442,4159,33,17],[3348,4230,31,17],[3585,4232,33,17],[3319,4253,32,17],[3143,4276,32,16],[3266,4414,32,17],[3503,4487,31,17],[3241,4557,31,17],[3580,4559,34,18],[3258,4580,31,18],[3484,4606,32,17],[3400,4629,31,16],[3401,4820,31,17],[3577,4822,34,16],[3410,4892,31,18]],"Pennsylvania":[[506,1367,140,22],[3503,1893,140,23]],"RESA’I‘VL‘S.":[[174,1399,95,20]],"“lllt'h":[[278,1399,60,16]],"hail":[[347,1398,37,17],[182,4082,36,17]],"among":[[393,1402,69,17]],"its":[[471,1397,24,16],[340,1427,23,16],[338,1484,24,16],[1946,2516,20,13],[3066,2723,21,12],[3516,3783,25,17]],"officeisdtiring":[[500,1395,145,22]],"lllSl":[[215,1429,38,16]],"year":[[262,1433,44,16]],"servit'e":[[371,1426,71,17]],"such":[[450,1425,46,17]],"distinguished":[[504,1423,140,23]],"noldit-n":[[172,1458,79,19]],"11\"":[[264,1462,20,11]],"Meade,":[[299,1456,70,19]],"leynolds,":[[391,1454,91,22]],"0rd":[[493,1453,36,17]],"Sey-":[[600,1453,44,21]],"mour.":[[173,1490,61,14]],"finished":[[245,1484,77,17],[2470,2727,81,18]],"history":[[375,1483,71,21],[3485,1406,71,22]],"May":[[460,1482,43,22]],"30,":[[515,1482,30,21]],"Infill,":[[557,1481,50,20]],"at":[[625,1483,18,15],[3299,2085,19,14],[1934,2680,19,15],[1072,3267,20,16],[666,2750,18,13],[1511,3397,17,14],[851,4130,19,14],[1890,4456,22,15],[1774,4548,21,16],[2426,4697,19,14],[2977,2527,22,17],[2651,3648,20,14],[2910,4518,19,14],[2697,4732,17,12],[3286,4680,20,13]],"Bethesda":[[174,1513,92,18]],"Churrh.":[[279,1511,79,19]],"men":[[439,1515,42,13],[263,1970,41,12],[499,2184,43,12],[408,2256,42,13],[2516,2590,44,12],[2364,3187,43,12],[805,3389,41,11],[2430,4818,41,12],[1105,4685,42,11],[2865,2721,42,12],[2831,3995,44,12],[3026,4141,43,12],[2981,4164,43,12],[3077,4403,42,12]],"who":[[499,1509,43,17],[370,2059,42,19],[1169,4563,40,16],[839,4724,40,17],[3034,4159,42,17]],"had":[[558,1509,36,17],[464,2251,37,17],[2460,3135,35,16],[1881,3418,36,18],[2589,4505,36,19],[1936,4832,36,16],[2762,2595,35,18],[3085,4136,37,17],[3084,4159,37,18]],"not":[[612,1511,32,15],[438,3527,33,18],[550,4376,29,13],[376,2517,33,14],[925,3698,32,13],[2789,2812,33,17],[2649,3815,33,14],[3495,3379,33,14]],"re-enlistul":[[173,1541,109,18]],"went":[[299,1543,48,14]],"home.":[[364,1539,60,17]],"remaining":[[540,1537,104,20]],"fragments":[[173,1569,103,22]],"these":[[314,1568,52,17],[3009,4467,52,18],[3523,2851,50,16]],"regiments":[[380,1567,102,22]],"were":[[491,1571,47,12],[253,2472,47,12],[598,2495,47,11],[2509,2829,48,12],[1399,3351,47,12],[1368,3422,48,12],[1165,4261,47,12],[2579,4559,46,12],[2473,4677,46,11],[2728,3198,47,12],[2653,3555,48,12],[2807,4185,49,12],[3071,4616,47,12],[2736,2425,49,13],[3461,3310,45,12],[3320,3427,46,11],[3266,4515,48,11]],"orginized":[[546,1565,97,22]],"into":[[173,1597,41,19],[2430,4268,40,16],[2473,4291,40,17],[2804,4636,39,13],[3437,4301,42,18]],"two":[[223,1600,37,15],[486,2158,38,14],[282,2692,37,29],[2518,4412,39,15],[2025,4386,37,15],[2719,4276,37,15]],"veteran":[[270,1600,74,14]],"regiments.":[[353,1595,108,23]],"numbered":[[471,1594,103,18]],"190th":[[588,1593,55,18]],"ltllst,":[[226,1627,57,19]],"or":[[294,1631,20,11],[238,2042,20,12],[561,2280,20,11],[3538,1683,21,13],[3420,2017,20,12],[3430,2112,21,12],[248,2710,19,11],[563,4304,16,12],[883,2420,21,12],[665,3579,19,11],[1349,3232,20,11],[2511,4701,20,11],[3588,3951,34,13]],"lst":[[324,1625,27,17]],"MYeterau":[[419,1624,114,17]],"“curves,":[[549,1623,92,20]],"with":[[172,1655,47,16],[319,2156,45,17],[368,2275,47,17],[595,2274,46,26],[3220,1891,46,17],[1712,2892,45,16],[2207,3348,45,16],[829,2463,48,16],[992,3600,45,16],[667,3693,45,17],[1265,3107,46,17],[2320,3372,46,17],[2380,3396,46,17],[1970,4384,45,16],[1167,4799,45,16],[2980,2741,47,17],[2980,4706,46,16],[3265,2584,47,17],[3449,2634,44,17],[3565,2778,46,18],[3440,3041,47,16],[3506,3185,44,17],[3238,3493,45,17],[3250,3804,48,17],[3219,4533,46,17]],"aggregate":[[263,1656,97,19]],"about":[[400,1653,57,17],[222,3456,56,16],[2552,2442,59,18],[874,3409,55,15],[2786,2397,60,17],[2713,3002,55,16]],"1,421)":[[467,1653,52,21]],"offimrs":[[527,1651,72,18]],"men.":[[172,1687,51,13],[2910,2402,48,13]],"former":[[273,1682,68,17]],"under":[[350,1681,61,17],[370,1737,60,17],[1463,3347,59,16]],"command":[[464,1680,98,18],[2146,4881,99,17]],"Col.":[[603,1679,38,18],[444,1737,37,17],[425,1907,37,19]],"W.":[[171,1710,30,18]],"It.":[[214,1711,20,17],[3495,1582,18,17]],"Ilartshnrne,":[[246,1710,118,21]],"formerly":[[376,1709,88,22]],"13th":[[551,1708,43,17]],"Re.-":[[608,1708,35,16]],"nerves:":[[172,1744,69,13]],"latter":[[300,1738,56,17],[2715,2666,57,19],[2325,4882,56,18]],"James":[[493,1736,64,18],[457,2346,63,16]],"Carl,":[[566,1736,48,23]],"tith":[[224,1768,34,17]],"Reserves.":[[279,1768,92,17]],"They":[[398,1767,52,21],[3008,4611,52,21]],"constituted":[[470,1766,116,17]],"Third":[[171,1796,60,18],[341,1795,59,17],[3084,2574,59,18],[2805,2907,60,17],[2955,3991,62,18]],"Brigade,":[[247,1796,83,22]],"Di":[[415,1795,23,17],[2407,3349,23,16],[2764,3599,22,17]],"'sion,":[[453,1794,53,22]],"Filth":[[518,1794,53,17]],"Corps.":[[579,1794,61,22]],"some":[[220,1829,51,12],[2381,2780,50,25],[825,2396,52,12],[2577,4249,52,12],[1883,4624,51,11],[3025,2866,51,13],[2659,2935,51,12],[2898,3127,51,14],[3259,2826,53,15]],"cause":[[284,1829,54,12]],"(‘01.":[[346,1823,39,18]],"llnrtshorne":[[397,1823,115,17]],"was":[[525,1827,40,12],[292,1885,38,12],[430,2066,37,12],[606,2207,36,23],[170,2257,39,13],[3604,1804,40,13],[3473,2208,38,14],[2603,2638,38,12],[2512,2661,39,12],[2470,2804,37,12],[2028,2826,39,12],[1415,2994,36,11],[1808,3352,41,13],[1409,2421,37,12],[1659,2515,37,13],[1423,2541,38,10],[1991,2540,38,12],[2368,2493,41,12],[1200,3065,38,11],[1885,3136,39,12],[2156,3376,36,12],[1212,4309,38,11],[1422,4406,38,12],[2206,4437,38,11],[2237,4484,37,12],[2501,4534,38,12],[1659,4574,36,11],[1963,4317,38,12],[1944,4411,39,12],[1053,4471,35,12],[2006,4673,37,11],[2587,4749,36,10],[2881,2865,38,12],[2887,3104,37,11],[2888,3152,37,12],[2727,3389,37,12],[3094,3464,38,12],[2786,3508,37,12],[3090,3751,38,13],[2885,4591,37,12],[3153,3378,37,12],[3507,4141,36,12],[3283,4443,39,11],[3140,4609,37,12],[3460,4658,37,13],[3461,4707,37,11]],"nhsent":[[577,1822,66,17]],"until":[[171,1852,51,18],[296,1937,50,17],[2357,3110,49,16],[853,4560,47,15],[2714,3575,49,16]],"after":[[232,1852,47,17],[2841,3122,49,18]],"army":[[327,1856,52,17],[2856,3247,53,15]],"reached":[[390,1851,77,17]],"I’eteisburg,":[[477,1851,117,21]],"mom":[[221,1880,56,18]],"commanded":[[346,1879,123,18],[519,1906,123,19]],"Lieut.»Col.":[[528,1878,112,18]],"Joaeph":[[171,1908,71,24]],"B,":[[252,1908,19,18]],"Puttee.":[[282,1908,69,19]],"while":[[359,1907,57,19],[862,2509,55,18],[2991,2621,57,17],[2951,3457,57,18]],"Carl":[[470,1907,43,18]],"brigade":[[213,1937,75,22],[928,3265,77,20],[2982,4207,77,21]],"Aug.":[[356,1937,47,22],[3563,4537,49,21]],"19,":[[416,1937,26,20]],"1.564.":[[453,1937,51,17]],"participated":[[317,1965,124,22]],"in":[[456,1965,19,16],[3416,1170,24,22],[3414,1321,18,17],[3333,1581,19,17],[2076,2629,20,18],[564,2708,20,13],[1215,2824,18,14],[1472,2899,17,10],[1051,2938,32,16],[2572,2997,19,11],[1121,3017,20,10],[1977,3013,19,16],[628,3028,16,16],[402,3412,21,11],[333,3437,16,11],[361,3437,17,11],[582,3606,18,11],[382,4040,19,9],[380,4252,32,15],[472,4304,17,10],[636,4752,21,11],[721,3646,17,16],[986,3676,21,12],[1073,3696,19,17],[351,3897,22,10],[1539,2440,18,17],[1120,2535,19,16],[1620,2584,17,16],[2161,2440,18,17],[2536,2757,19,12],[2318,3039,19,16],[2202,3371,19,16],[1958,4194,18,18],[2182,4196,20,17],[1514,4237,18,16],[1566,4402,18,17],[2449,4244,18,17],[2465,4363,18,16],[1028,4518,19,12],[1011,4563,20,13],[1254,4616,15,12],[2231,4762,17,17],[1264,4824,18,16],[2839,2644,20,17],[2727,3169,19,17],[2656,3360,18,16],[2848,3480,19,17],[2809,4157,22,16],[2863,4657,19,18],[2933,4806,10,10],[2255,4881,20,18],[3270,2393,20,16],[3311,3062,18,17],[3460,3280,17,17],[3603,3568,21,17],[3607,3616,18,18],[3149,3637,20,17],[3479,3854,20,17],[3342,3943,20,17],[3231,4038,20,17],[3559,4066,20,16],[3308,4230,20,16],[3425,4516,20,11],[3140,4652,18,17]],"operations":[[537,1964,105,22]],"nronnd":[[171,1989,73,19]],"Ilurbor,":[[331,1989,79,21]],"though":[[433,1988,71,22],[1401,2750,70,19],[910,3935,70,21]],"fortunately":[[525,1988,116,22]],"without":[[172,2013,83,17],[2250,3015,79,17]],"hm:":[[269,2013,36,17]],"so":[[321,2018,20,11],[217,2258,21,11],[665,2706,20,11],[2118,2850,20,12],[2475,2900,21,11],[491,4185,19,10]],"far":[[350,2013,27,16],[3613,2134,29,17],[1425,4471,27,17],[2532,4364,28,16]],"can":[[424,2017,34,12],[3143,4233,35,13]],"now":[[473,2017,41,12],[1838,3111,42,14],[1431,3422,43,12],[2537,4677,43,12],[2931,2865,43,12],[2919,3247,42,11],[2869,4282,40,11],[2786,4804,41,11]],"be":[[528,2012,22,16],[3246,1844,23,16],[3168,2225,24,17],[480,4626,21,15],[998,2439,23,16],[3400,4064,22,16],[3474,4112,23,17]],"term-ni-":[[564,2017,77,12]],"bered":[[172,2037,55,18]],"asce":[[266,2042,40,12]],"'ned.":[[338,2036,49,19]],"exvept":[[397,2038,65,20]],"&rg't":[[470,2036,59,19]],"Woodard.":[[540,2035,98,20]],"(‘0.":[[206,2061,31,18]],"A,":[[254,2061,22,21]],"ltluth,":[[293,2060,60,22]],"killed":[[483,2059,59,19]],"June":[[559,2059,51,19],[239,2133,50,17],[175,3384,50,17]],"3.":[[623,2060,16,17]],"There":[[170,2085,61,17]],"may":[[247,2090,43,16]],"have":[[303,2085,46,17],[1160,3394,46,17],[3521,3161,48,18]],"been":[[364,2085,46,16],[3292,1653,46,17],[1058,3888,45,17]],"other":[[427,2085,53,16],[493,2275,55,17],[3365,1724,54,18],[3296,1796,54,17],[3512,1941,53,17],[2420,2441,54,18]],"casualties,":[[494,2084,105,21]],"but.":[[607,2084,35,17]],"records":[[213,2109,72,17]],"tliitt":[[320,2108,43,17]],"prriml":[[372,2108,64,22]],"are":[[446,2113,30,12],[332,2518,31,13],[2720,4710,31,10],[3236,2613,31,11],[3405,2686,31,12]],"defective.":[[484,2108,96,17]],"(In":[[194,2134,29,16]],"13":[[305,2133,21,17]],"they":[[342,2132,45,22],[319,2299,45,21],[171,2347,45,23],[545,2490,46,21],[441,3456,44,21],[557,4062,43,21],[391,2419,43,22],[1884,2392,46,22],[2597,2395,46,22],[2597,2489,47,23],[1238,3179,44,21],[1096,4057,43,21],[1974,4784,44,22],[3095,2718,46,22],[3040,3793,44,22],[2973,4421,45,21],[3076,4469,44,21],[2644,4727,44,21],[2789,4847,45,21],[3392,3111,46,22]],"Skirmiilfl‘d":[[396,2132,111,17]],"near":[[522,2137,45,12],[338,2376,44,12],[1554,2469,43,11],[2725,3318,44,12]],"White":[[579,2131,63,17],[3577,1918,66,18],[2656,3431,63,18],[2959,3625,65,17]],"Oak":[[170,2157,41,17],[2728,3432,40,17],[3032,3625,42,17]],"Swamp.":[[227,2158,80,20]],"a":[[378,2161,12,12],[857,2323,20,19],[3632,1440,13,15],[3580,1612,11,12],[3540,1635,11,13],[3228,2135,12,12],[3407,2233,12,11],[258,2377,11,12],[630,2567,8,7],[2428,2613,12,12],[1413,2685,11,10],[2023,2708,12,11],[535,2776,5,10],[2571,2900,12,12],[797,3000,11,7],[635,3535,11,11],[809,2421,11,12],[721,3604,11,11],[792,3628,11,11],[1824,2421,12,12],[1441,2492,11,12],[1325,4239,11,12],[2383,4579,12,12],[2118,4721,10,11],[2439,4628,12,12],[2851,2449,12,13],[2881,3653,11,12],[3116,3655,12,12],[2921,4116,11,11],[3364,2518,11,13],[3580,2545,12,13],[3326,2590,11,12],[3200,2636,11,12],[3507,2640,11,11],[3446,2687,11,11],[3549,2760,10,11],[3271,2923,11,12],[3299,2996,11,12],[3294,3475,12,12],[3179,3569,12,12],[3422,3596,12,11],[3503,3668,12,12],[3275,3737,12,14],[3315,3810,11,11],[3510,3836,12,11],[3607,4046,13,13],[3215,4210,11,12]],"loss":[[405,2156,35,16],[2515,4457,38,18]],"killed,":[[539,2155,65,20]],"10":[[620,2156,22,16],[1659,4616,20,16]],"wounded,":[[170,2180,100,20],[1482,2392,101,21],[2251,4455,97,22]],"one":[[280,2185,36,12],[1105,3272,34,11],[2657,3150,35,11],[3446,2854,36,12]],"oflitrr":[[328,2180,62,16]],"six":[[454,2180,27,16]],"missing.":[[557,2179,81,21]],"In":[[170,2203,24,20],[605,2303,18,11],[3195,1533,23,17],[3266,1940,22,16],[1204,2684,15,11],[534,3579,19,12],[640,4492,16,11],[583,4537,17,12],[196,2420,22,17],[763,3718,19,16],[1161,3203,19,16],[1510,4850,22,16],[2837,3767,22,17]],"this":[[203,2204,39,18],[3263,2297,39,17],[1874,2964,40,20],[2601,2992,38,17],[436,4862,38,17],[228,2419,38,17],[883,3719,37,16],[769,2440,39,16],[968,3177,38,16],[1542,4238,38,17],[1165,4303,38,17],[2252,4244,38,16],[2154,4337,37,16],[1658,4545,37,17],[1861,4288,39,18],[1955,4595,38,17],[2265,4813,37,15],[1300,4824,32,16],[2756,3170,38,16],[3008,4231,38,17],[2948,4729,39,16],[3217,3085,38,17]],"nilhir":[[254,2204,54,18]],"Lirut.-(‘ol.":[[323,2203,110,18]],"l‘uttee‘s":[[446,2203,81,18]],"horse":[[543,2202,53,28],[952,3815,55,18]],"shot":[[170,2229,43,17],[1044,3768,42,17]],"undrr":[[222,2229,61,16]],"him.":[[292,2228,44,17]],"Although":[[362,2228,98,21]],"organization":[[513,2229,128,20]],"recent":[[246,2256,61,13]],"that":[[317,2251,41,17],[3536,1378,42,17],[3601,1655,43,18],[437,3868,38,15],[602,2538,42,16],[540,3672,40,17],[1098,2724,38,16],[974,3459,41,15],[1022,3482,40,16],[2704,3288,42,18],[2647,4845,41,17],[3379,3375,40,17],[3152,3397,42,17],[3267,3517,43,17],[3150,3780,41,17]],"become":[[517,2251,74,17],[2160,2510,77,19]],"but":[[606,2251,34,17],[539,3600,30,16],[474,4036,33,15],[870,3695,33,16],[1963,2488,35,16],[2285,2393,36,17],[2497,2488,38,18],[1505,3180,33,16],[1470,4236,33,17],[679,4488,31,15],[1903,4642,36,17],[2744,2883,32,16],[3040,3744,36,19],[2989,3792,36,18],[2648,4513,32,17],[2841,4752,32,16],[1440,4872,37,18],[3108,2423,38,17]],"little":[[170,2276,51,17],[1303,2510,50,19],[2929,4825,49,16]],"nrquaiiited":[[239,2276,111,22]],"each":[[432,2275,44,17],[3371,2465,47,18],[3582,3162,48,18],[3431,4725,46,17]],"their":[[171,2300,50,17],[1162,2535,48,17],[2268,2488,50,17],[2593,2514,50,18],[1025,3386,48,16],[1426,4801,50,18],[2769,2739,49,17],[2824,2787,51,17],[2776,3575,50,16],[2724,4514,48,17],[2715,4751,48,17]],"ollit‘t-ri,":[[234,2299,74,19]],"acquitted":[[372,2299,97,22]],"themselves":[[483,2299,113,16]],":t":[[632,2303,10,11],[443,4280,11,10]],"(l’fllllulilv":[[171,2323,102,18]],"ulllllllt'l'.":[[288,2328,82,12]],"night":[[452,2322,53,20],[1830,2559,55,22],[1871,3036,55,20],[1922,3060,55,21],[1399,4424,54,21],[986,4225,53,20],[1493,4543,53,21],[1318,4800,53,22],[2923,3864,54,21]],"lia'tli":[[599,2321,43,17]],"VOL.":[[2990,669,75,30]],"XVI":[[3087,669,60,28]],"=":[[3591,639,51,17]],"Il—NO.":[[3153,669,108,29]],"5—WIIOLE":[[3281,669,172,28]],"NO.":[[3475,669,53,28],[3550,669,59,29]],"WASHIITGTON,":[[1425,651,247,56]],"D.":[[1690,673,32,29]],"0.,":[[1747,673,40,34]],"THURSDAYTNOVEMBER":[[1810,655,424,52]],"10,":[[2261,672,38,34]],"1898.":[[2321,672,70,28]],"THE":[[1412,2255,121,48],[3170,746,86,59],[3347,1504,43,14],[1841,3312,43,14],[1884,4161,64,23],[2775,2476,43,14]],"UNITED":[[1590,2255,218,41],[3281,745,160,60],[1972,4162,114,23]],"STATES":[[1863,2255,216,42],[3251,825,173,48],[2111,4164,116,22]],"CAPITOL.":[[2135,2256,258,43],[2256,4165,138,21]],"Here":[[754,2316,79,27]],"Disastrous":[[898,2315,184,26]],"Explosion":[[1104,2314,166,35]],"Fire":[[1383,2316,70,27],[3405,938,64,29]],"Occurred":[[1474,2316,156,27]],"Nov.":[[1714,2316,77,27]],"6.":[[1807,2316,29,31]],"Wrecking":[[1852,2315,174,34]],"Parts":[[2046,2316,99,27]],"Building":[[2300,2317,152,34],[3461,1081,102,30]],"lnjuring":[[2565,2319,147,34]],"Valuable":[[2730,2319,155,28]],"Records;":[[2907,2321,151,30]],"“j":[[3556,714,78,13]],"ennui.":[[3453,821,189,78]],"Destructive":[[3213,936,174,31]],"i":[[3487,916,34,60],[1800,2636,3,9],[831,2921,3,6],[855,3016,4,10],[1645,3301,2,8],[412,3556,4,10],[1042,2420,4,11],[1933,2470,8,9],[2158,3109,3,15],[2141,4341,3,20]],"Sir":[[3600,937,44,31]],"preme":[[3214,995,90,29]],"Court":[[3317,987,81,30]],"Apartments.":[[3416,987,184,36]],"Something":[[3170,1081,127,30]],"the.":[[3334,1081,38,23],[2449,3062,31,17],[1987,4194,31,18],[2504,4766,43,17],[2929,3170,31,17],[2999,4491,31,17]],"Noble":[[3382,1082,67,23]],"which":[[3570,1081,75,24],[3350,1406,60,17],[3541,2229,62,18],[3576,2253,64,18],[3478,2323,61,18],[2651,3860,59,17],[2905,4134,60,17],[3217,3612,62,18],[3559,3970,63,18],[3461,4016,60,18],[3142,4299,60,17]],"is":[[3200,1125,20,23],[3442,1558,15,16],[3526,1583,16,16],[3467,2275,15,17],[3384,2298,16,17],[927,2777,14,10],[429,4489,14,9],[1937,4500,17,19],[3487,2419,15,18],[3558,2473,12,12],[3334,2512,16,18],[3523,2754,14,16],[3237,2871,16,16],[3248,2919,15,16],[3156,2990,16,17],[3467,3376,16,17],[3523,3472,16,18],[3150,3517,16,16],[3149,3564,16,17],[3287,3613,18,18],[3607,3760,17,17],[3606,3784,18,17]],"Pride":[[3278,1125,66,24]],"All":[[3393,1125,37,24]],"Americans—4h:":[[3448,1125,197,24]],"Grandat":[[3199,1168,107,24]],"Edillce":[[3323,1169,78,23]],"World—Do":[[3503,1169,143,24]],"tails":[[3199,1211,53,23]],"Fire.":[[3346,1212,55,24]],"destructive":[[3249,1290,115,20]],"wholly":[[3440,1292,71,23]],"unexpected":[[3527,1292,118,24]],"firs":[[3171,1320,33,17]],"whit-It":[[3217,1321,62,17]],"broke":[[3294,1322,58,16]],"out":[[3366,1324,33,14],[3285,2253,35,14],[1364,2649,39,21],[2176,3135,32,14],[3272,3970,34,13]],"Capitol":[[3494,1322,73,21],[3369,4254,73,21]],"th-":[[3612,1322,33,17],[3606,2397,34,18],[3602,2731,33,17]],"Cnited":[[3171,1348,72,18]],"States":[[3253,1349,63,17],[3255,1433,63,18],[3294,1558,61,16],[3243,3110,63,17]],"Inst":[[3352,1349,34,17]],"Sunday":[[3393,1349,78,22]],"evening":[[3478,1350,80,20]],"aim":[[3566,1351,80,17]],"attention":[[3212,1377,93,17]],"every":[[3339,1383,56,16],[2951,2770,59,16],[3430,3500,57,17],[3221,4305,56,16]],"Amerimn":[[3402,1378,100,17]],"ho":[[3511,1379,19,16]],"grand":[[3584,1378,61,22]],"edifice,":[[3171,1405,72,22]],"around":[[3260,1406,72,17]],"tho":[[3612,1406,33,19],[3612,1559,33,18],[3607,2277,35,18],[3606,2324,35,19],[2289,2632,32,26],[2347,2680,33,17],[2106,2893,32,16],[1737,3394,32,16],[1604,4403,32,16],[2593,4459,32,17],[1697,4263,31,16],[2040,4809,32,18],[3036,2574,33,18],[2662,2666,33,18],[2902,3600,32,17],[2646,4560,31,17],[3264,2847,32,17],[3491,4845,30,17]],"United":[[3172,1433,71,18],[3213,1557,71,17]],"has":[[3330,1433,34,18],[3241,1652,34,18],[496,2918,31,34],[3417,2442,34,17],[3315,3278,33,17]],"centered":[[3376,1434,87,17]],"for":[[3471,1434,29,17],[3541,1607,28,17],[3376,1629,28,17],[3472,1701,28,17],[3286,1916,29,17],[2223,2655,28,17],[886,2867,24,16],[316,3789,27,18],[2349,2418,30,16],[2401,2537,30,16],[1793,3035,28,16],[1973,3227,28,16],[1289,4234,28,17],[2601,4316,29,16],[2400,4410,27,15],[1419,4731,28,17],[3610,2421,30,18],[3238,2680,26,16],[3598,3281,30,19],[3254,3541,28,16],[3466,4486,28,17],[3536,4726,28,17]],"more":[[3511,1439,51,14],[3416,1635,52,12],[489,2567,51,12],[2843,4258,50,11]],"than":[[3574,1434,47,19],[3482,1630,47,18]],"century.":[[3170,1464,86,19]],"WHAT":[[3271,1504,65,14]],"BUILDING":[[3403,1504,104,15]],"'13.":[[3519,1506,24,14]],"opinion":[[3265,1533,77,22]],"many":[[3376,1538,55,17],[991,3940,56,16]],"mmpetentobervul":[[3438,1535,207,21]],"Capital":[[3361,1557,72,22]],"incompnrnhly":[[3465,1558,140,23]],"finest":[[3171,1580,56,17]],"building":[[3236,1580,89,22],[3240,1604,89,23],[3137,4723,88,20],[3526,4606,87,23],[3459,4892,88,22]],"world.":[[3403,1581,64,18],[3399,4231,65,17]],"only":[[3598,1583,47,23],[1744,2630,45,20],[186,4369,46,21],[2378,4622,46,22],[2995,3147,45,22]],"great.":[[3171,1607,53,20]],"erected":[[3341,1606,73,17]],"distinctly":[[3428,1606,100,22]],"Na-":[[3608,1607,37,18]],"tional":[[3171,1629,59,17]],"Capitol,":[[3239,1629,79,22],[3153,3277,79,22]],"century":[[3564,1633,80,20]],"there":[[3172,1652,52,18],[2204,2870,51,17]],"lavished":[[3356,1653,82,17]],"upon":[[3462,1659,50,17],[3328,2255,50,17],[729,3627,48,17],[3211,3737,50,18]],"it":[[3527,1655,16,16],[3373,1700,16,17],[3304,2322,14,16],[1776,2869,16,16],[2492,2972,12,12],[984,2534,32,16],[886,3579,11,12],[1625,4474,12,16],[2615,4340,14,16],[2262,4368,11,11],[2400,4363,14,16],[3122,2909,15,17],[2680,3651,11,12],[2870,4110,15,17],[2765,4329,12,11],[2903,4829,10,12],[3610,3330,18,18],[3435,3376,16,16],[3609,3497,18,17],[3321,3522,15,12],[3532,4041,13,17],[3286,4538,12,12],[3403,4729,12,12]],"all":[[3558,1655,25,17],[3327,1724,26,17],[1017,4466,24,16],[1405,4849,26,16],[2747,2396,25,17],[2938,4658,25,17],[3233,3253,26,17]],"architectural":[[3171,1676,136,18]],"nrt":[[3322,1678,31,16]],"could":[[3372,1677,54,17],[924,2439,55,17]],"suggest":[[3448,1679,75,21]],"mono,":[[3575,1683,69,18]],"procure":[[3171,1705,77,17]],"make":[[3302,1700,56,18],[784,3839,53,16]],"ideal":[[3406,1701,49,17]],"im":[[3515,1701,25,18]],"pnrpoa.":[[3557,1707,85,18]],"Dill'ering":[[3172,1723,92,23]],"National":[[3433,1725,90,17]],"Cnpitolsl.":[[3536,1725,108,23]],"stands":[[3170,1747,66,18],[3424,3663,67,17],[3351,3992,65,15],[3551,4256,67,17],[3311,4390,66,17]],"alone,":[[3243,1748,60,19]],"n":[[3350,1753,11,13],[358,2568,10,6],[266,2687,11,11],[878,2785,10,8],[1035,2801,10,9],[1528,2541,11,10],[1011,2729,11,9],[1855,4576,12,12],[835,4636,11,10],[2980,3654,12,11],[2800,4686,12,12],[2757,4829,10,9],[3282,2685,12,10],[3610,3812,12,12]],"tommariding":[[3374,1749,133,23]],"hight,":[[3521,1749,59,22]],"seps-":[[3590,1755,53,19]],"rnted":[[3171,1772,52,18]],"hundreds":[[3260,1772,96,17]],"tee:":[[3389,1773,36,17]],"beautiful":[[3459,1774,92,17],[3427,1964,94,18]],"ground:":[[3559,1775,85,21]],"any":[[3238,1801,39,17],[3383,1849,33,17],[443,2567,36,16],[2339,3020,38,16],[298,3992,35,15],[1242,3375,36,16]],"building.":[[3369,1797,94,22]],"site":[[3552,1799,36,16]],"chosen":[[3171,1819,66,18]],"George":[[3294,1820,70,22],[3141,4463,70,18]],"Washington":[[3371,1820,124,22],[3238,4062,123,21],[3452,4088,122,21]],"himself,":[[3509,1821,82,22]],"sud":[[3604,1822,39,18]],"cannot":[[3171,1846,67,14]],"SUM":[[3277,1844,97,22]],"where.":[[3422,1845,67,17]],"western":[[3563,1849,80,15]],"portioo":[[3170,1867,72,22]],"overlooks":[[3253,1868,98,16]],"greater":[[3406,1870,73,18]],"part":[[3491,1870,42,21],[3292,2275,42,20],[573,3032,39,17],[489,3871,39,18],[1788,3062,41,18],[1071,3915,41,19],[2299,4198,41,21],[2389,4885,43,20]],"Wash-":[[3577,1870,66,18]],"ing,":[[3171,1891,37,22],[1166,4869,36,23]],"noble":[[3326,1892,56,16]],"stretch":[[3390,1892,71,17]],"Avenue":[[3170,1916,78,17]],"'l'remxnry":[[3391,1917,92,22]],"House.":[[3171,1939,69,18]],"distant-e.":[[3340,1940,88,18]],"side":[[3573,1942,41,17],[3513,2730,40,17]],"Potomac,":[[3215,1963,94,22]],"rise":[[3326,1964,35,17]],"llighla":[[3535,1965,70,23]],"(1":[[3621,1965,21,19]],"Arlington.":[[3169,1987,105,22]],"southern":[[3237,2010,90,18]],"portim.":[[3335,2011,75,22],[3345,2108,74,21]],"House":[[3449,2012,62,18],[3194,4509,63,17]],"Win;":[[3517,2012,61,24]],"look!":[[3587,2013,55,19]],"over":[[3169,2039,44,12],[3555,4046,45,13],[3572,4284,46,12]],"southernt":[[3221,2035,95,17]],"\\\\‘:t-i;ingtun.":[[3323,2035,128,22]],"broad":[[3501,2037,55,17]],"estnnry":[[3564,2041,77,19]],"Inner":[[3246,2058,56,18]],"l’oioruue.":[[3316,2059,92,19]],"“2th":[[3420,2060,47,17]],"Alexandria":[[3476,2060,114,19]],"Ind.":[[3603,2061,39,20]],"Mt.":[[3169,2082,34,17],[3201,4133,34,17]],"Vemnn":[[3215,2082,74,18]],"“mild":[[3369,2084,59,16]],"ot‘":[[3436,2085,21,16],[2061,2559,23,16]],"horizon.":[[3505,2085,80,17]],"northern":[[3240,2107,89,17]],"Senate":[[3500,2109,66,17],[3232,3158,69,17]],"Wing.":[[3577,2110,62,22]],"gives":[[3168,2129,52,22]],"view":[[3249,2130,47,17]],"northwut":[[3341,2131,94,17]],"\\‘v'nsllilllllou":[[3448,2131,123,21]],"nsi":[[3583,2139,21,11]],"eminent-e":[[3236,2154,97,17]],"truwuul":[[3341,2155,85,16]],"white":[[3506,2157,56,17],[3294,3493,59,18]],"rut-Lina":[[3571,2162,70,14]],"Soldiers”":[[3236,2178,88,16]],"Ilmrte,":[[3335,2178,64,17]],"cast":[[3239,2204,40,15]],"front.":[[3289,2202,55,19],[2654,3503,56,17],[2967,3743,56,21]],"whit-h":[[3402,2202,61,19]],"intended":[[3523,2204,89,19],[3511,2420,90,18]],"muin":[[3245,2226,52,16]],"one,":[[3311,2231,41,17]],"picture":[[3426,2228,74,21]],"we":[[3612,2235,30,13],[799,4731,28,9]],"give,":[[3167,2249,49,22]],"looks":[[3226,2249,52,17]],"level":[[3430,2252,46,16],[3314,4414,46,17]],"plain":[[3486,2252,50,22],[3318,2298,52,22]],"eastern":[[3208,2275,73,15],[3142,4254,73,15]],"city":[[3418,2275,40,22]],"built.":[[3491,2276,55,17]],"At":[[3572,2277,27,17],[2184,2488,26,16],[2673,3718,28,16],[2780,4419,24,16],[3162,2680,24,16]],"edge":[[3167,2296,46,22],[3229,4253,45,20]],"Anacostin":[[3414,2299,101,18]],"River,":[[3530,2300,60,21]],"Ind":[[3602,2300,38,18]],"rising":[[3168,2320,60,21],[3521,4393,58,22]],"above":[[3235,2320,59,18],[2231,2536,59,17]],":i":[[3326,2327,11,11]],"line":[[3346,2322,38,16],[437,3431,48,17],[999,3576,36,16],[976,4319,37,16],[1908,4288,38,17],[2734,2859,37,16],[2839,4586,37,17],[3155,3181,36,17],[3458,3208,37,17],[3171,4204,36,18]],"hills":[[3424,2322,46,18]],"meet":[[3548,2326,50,16]],"sky":[[3166,2343,36,23]],"firm":[[3256,2345,48,17]],"huriwn.":[[3353,2345,81,18]],"nlnll'llt‘d":[[225,2347,86,16]],"toward":[[326,2346,70,17],[1657,3370,70,16],[1365,4519,70,17],[2792,2978,73,18],[2651,4131,71,17]],"River.":[[534,2346,61,17],[2075,2439,63,18]],"rum":[[171,2377,35,12]],"bed":[[213,2372,36,16]],"point":[[277,2372,52,22],[2953,4800,53,22]],"Willa»;":[[393,2371,78,17]],"Landing":[[484,2371,87,22]],"I":[[652,2371,2,19],[434,2878,2,3],[1449,2893,4,16],[1443,2923,3,9],[473,2971,4,17],[1578,3014,5,16],[1954,3313,7,13],[2046,3322,3,4],[2236,2752,4,15],[722,3158,4,10],[1283,3131,6,17],[1805,3155,4,16],[1324,3245,8,22],[810,4612,4,9],[3619,2783,13,13],[3342,2800,6,16],[3438,2801,4,16]],"14th.":[[169,2396,52,17]],"noon":[[171,2448,49,13]],"122th,":[[302,2443,48,21]],"short":[[361,2443,50,17]],"provisions,":[[454,2448,110,17]],"no":[[622,2448,23,11],[2520,2804,25,12],[2015,2492,25,12],[1479,3208,23,12],[1041,3917,21,12],[3358,3284,23,12]],"mtions":[[171,2467,73,17]],"issued":[[310,2467,60,17]],"till":[[381,2467,30,16],[1562,2703,30,16],[1216,2869,29,16],[176,3456,30,15],[248,3626,39,12],[2805,3217,30,17],[2838,3862,30,17]],"afternoon":[[467,2466,97,17]],"15th,":[[171,2490,51,20]],"exvr-pz":[[231,2494,64,18]],"Fume":[[304,2495,50,12]],"fresh":[[361,2490,49,16]],"bet-l":[[422,2489,39,17]],"just":[[467,2490,40,20]],"»":[[653,2500,2,2],[2523,2871,4,2],[773,2994,2,2],[555,4517,7,4]],"1":[[664,2488,8,15],[195,2590,4,9],[1627,2799,4,15],[654,3696,2,17],[1574,3773,8,11],[1646,3392,1,19],[2204,4414,5,11],[3379,4652,6,17]],"starting.":[[171,2514,85,22]],"MIL“":[[171,2543,36,12]],"Is‘":[[213,2546,22,9]],"('1'":[[244,2545,21,9],[3152,3302,22,16]],"lhi-":[[171,2563,38,16]],"Inn":[[219,2562,29,17]],"'l:":[[208,2590,14,12]],"llli‘lu":[[382,2562,51,16]],"ielign.":[[550,2563,64,19]],".":[[183,2609,3,3],[1424,2661,4,4],[395,2688,1,3],[1444,2690,2,4],[1633,2689,4,1],[503,2781,4,4],[721,2783,5,4],[1037,2784,2,3],[1530,2788,4,3],[632,2805,3,2],[1058,2802,2,4],[1307,2857,4,5],[1130,2874,3,4],[1460,2883,3,3],[1476,2879,3,2],[779,2919,4,5],[900,2974,3,3],[1549,2989,4,3],[1567,2989,3,3],[371,3278,3,2],[1761,3312,3,4],[303,3491,4,4],[263,3516,3,2],[391,3533,5,10],[284,4285,3,4],[535,4569,3,2],[384,4799,3,7],[984,3563,2,4],[1234,3710,3,3],[1442,3720,3,1],[1597,3709,7,6],[1624,3079,4,3],[2218,3051,3,2],[2351,3171,3,4],[1219,3193,4,4],[1646,3244,2,3],[555,3488,6,8],[2610,4303,2,4],[2622,4305,4,4],[2081,4467,4,4],[1535,4628,2,2],[761,4837,4,3],[2788,4741,2,2],[3164,4570,3,4],[3215,4666,4,3],[3286,4853,6,7]],"tiliih‘.":[[2161,2607,55,17]],"others":[[2266,2609,62,16],[1703,4852,63,17]],"kept":[[2339,2608,46,21]],"up":[[2394,2613,26,16],[2111,2420,27,17],[1826,4292,26,18],[1579,4573,25,16],[3080,2914,26,17],[3062,2961,26,17],[2833,3699,26,18]],"rapid":[[2448,2608,55,22]],"fire:":[[2512,2608,45,17]],"“her:":[[2576,2609,61,18]],"“H":[[171,2614,35,13],[590,2874,29,36]],"Hut-t.":[[664,2633,55,13]],"lit":[[747,2629,19,16],[465,3891,22,17]],"”II":[[774,2634,24,11]],"x":[[986,2637,7,7]],"ml":[[1004,2633,17,12],[821,4536,16,16]],"TI'LLAIH'":[[1033,2634,62,12]],"Ills,":[[1103,2633,37,16]],"l":[[1151,2627,1,22],[1440,2654,5,16],[1509,2775,4,15],[2221,2799,4,15],[892,2818,5,17],[2148,2819,1,20],[1151,2875,1,22],[1151,2907,1,22],[1594,3014,3,14],[665,3203,5,12],[438,3599,4,15],[346,4106,5,16],[667,4737,2,11],[597,2752,5,16],[657,3930,1,17],[1802,2416,6,16],[1463,3203,5,16],[2258,3258,4,11],[655,3487,1,8],[1737,4333,7,17],[772,4465,3,15],[1646,4663,2,14],[837,4678,2,10],[927,4701,4,15],[3149,2768,2,29]],"HIP.":[[1254,2636,28,11]],"{lav":[[1292,2631,38,16]],"\\liev":[[1340,2630,44,17]],"tron“":[[1452,2631,63,16]],"111":[[1540,2630,26,17]],"”in":[[1605,2631,32,16]],"um":[[1660,2634,35,11],[2264,2876,36,12],[1046,2920,34,9],[618,3917,30,17],[947,4494,36,10]],"ihr":[[1705,2630,30,15]],":llty":[[1845,2631,39,20]],"Vl":[[1896,2635,12,11]],"inch":[[1916,2632,41,15]],"occurred":[[1971,2630,91,17]],"tlicl":[[2107,2617,43,30]],"‘ltlillxll":[[2165,2631,68,20]],"LIIEII":[[2335,2637,44,12]],"“'i-re":[[2395,2637,48,11]],"ore-r":[[2459,2637,45,21]],"a.":[[2516,2637,13,12],[2782,3971,16,12]],"rush":[[2541,2633,45,16]],"V":[[181,2640,3,4]],"both":[[665,2652,45,17],[881,3057,43,16],[1097,4033,42,15]],"rebel":[[733,2643,51,26],[859,3265,49,16],[2912,3409,51,17],[2699,3623,50,16],[2651,3789,49,17],[2692,4227,48,17]],"urn:":[[961,2658,48,11]],"C“'i|l‘l.'":[[1029,2657,71,16]],"hitll'.":[[1253,2654,53,20]],"iiiid":[[1317,2648,37,23]],"Ill":[[1464,2655,18,15],[465,3055,16,11],[252,4087,21,11],[478,4767,19,16],[797,4560,19,15]],"ul":[[1492,2655,18,16],[728,3815,15,16],[2223,4386,16,16]],"tnv-":[[1525,2658,31,13]],"l'nllmi-":[[1566,2655,71,16]],"ruiiiumnd":[[1658,2653,97,27]],"iliiiiii:":[[1767,2654,69,18]],"raid.":[[1887,2654,46,17]],"uh»":[[2185,2655,29,16]],"lllt:":[[2260,2655,32,17],[3309,4700,31,16]],"pits,":[[2305,2657,42,21]],"Il‘flillt'":[[2447,2655,56,34]],"qu":[[2560,2661,26,18]],"'kly":[[2602,2657,37,34]],"p,":[[289,2682,18,16]],",":[[317,2690,4,8],[735,2690,3,8],[202,3659,3,3],[396,3630,7,8],[655,3687,1,5],[1938,2501,4,7],[2148,2767,1,13],[1851,3202,3,3],[2181,3241,4,4],[804,4309,2,5],[897,4691,3,4],[3361,2694,3,3],[3560,4454,5,8]],",,,":[[333,2687,15,10]],"I,":[[366,2685,12,11]],"em.\"":[[665,2677,53,16]],"‘.":[[763,2677,3,15]],"i._":[[786,2677,18,21]],"-,":[[979,2686,11,8]],".il":[[1029,2677,16,15]],"_t.L":[[1068,2681,31,17]],"1..":[[1117,2677,19,21]],"in;":[[1163,2679,30,17],[929,2965,31,13],[807,3133,31,15]],"“I.":[[1243,2679,24,15],[468,2804,34,11]],"m-":[[1279,2685,24,10]],"y":[[1311,2684,11,16]],"v“..-":[[1335,2684,45,10]],"t.":[[1391,2681,12,14],[513,3602,12,14]],"“.th":[[1463,2679,45,26]],"i.":[[1519,2682,18,12],[499,3103,11,12]],"12.,":[[1552,2679,23,26]],"r-":[[1596,2685,17,9]],"'l‘lis'.":[[1683,2678,61,30]],".l":[[1785,2686,10,8],[480,2752,10,16]],"..":[[1847,2688,10,6],[375,2781,10,4],[1801,3312,15,5],[639,4263,12,8],[607,4856,15,5]],"o.‘":[[1868,2678,19,17]],"g,":[[1900,2684,17,21]],"and\"":[[1964,2678,51,17]],"n-":[[2030,2684,23,12]],"..'—":[[2159,2692,22,20]],"5":[[2253,2681,10,15],[1782,3347,12,16],[2391,3773,8,6],[2716,2883,16,18]],"men?":[[2279,2680,57,16]],"deletions":[[2394,2680,99,18]],"est-“mud,":[[2508,2681,85,22]],"buu":[[2604,2681,36,17]],"IliA‘n":[[333,2693,29,28]],"lit-id":[[507,2705,44,16]],"Inert-t":[[598,2708,49,13]],"turn":[[725,2704,43,12],[523,3100,46,14],[1037,4542,41,12]],"{-1":[[777,2702,18,14]],"bumper-~14":[[810,2700,122,16]],"'I":[[953,2706,7,8],[462,4626,9,15]],"land":[[1152,2700,46,22]],"llll'l‘lnll,":[[1214,2702,91,21]],"where":[[1321,2702,60,17],[2904,3027,61,17]],"tin-y":[[1396,2703,44,21]],"rumatnml":[[1450,2702,95,17]],"nwn.":[[1659,2706,47,12]],"lln-":[[1741,2702,35,16]],"Illllll":[[1790,2703,46,15]],"ivm":[[1852,2707,37,12]],"«loop,":[[1905,2707,56,16]],"~t.oriit":[[2049,2705,59,13]],"o":[[2118,2707,10,10],[2444,2541,12,13],[798,3918,11,9]],"I...":[[2147,2701,31,20]],"re":[[2221,2709,18,12]],"ruptured.":[[2249,2704,94,22]],"vhnh":[[294,2728,60,16]],"hum":[[497,2728,47,16],[538,2919,50,39],[244,4554,41,15]],"tlu-":[[560,2728,31,16],[415,4083,30,16],[302,4554,30,16],[2821,4490,32,16]],"ll":[[606,2729,12,15],[1031,2819,13,16],[874,2843,10,16],[972,3528,14,16],[668,3815,14,16],[1970,2564,11,12],[1718,3225,11,16],[2207,4362,11,16],[1508,4614,12,16],[2758,4799,12,16],[3603,3711,21,18]],"l'i.":[[626,2729,18,15]],"r“.":[[574,2780,30,12]],"u],":[[619,2776,26,16]],"u":[[668,2776,12,10],[904,2777,12,9],[957,2777,10,11],[953,2897,13,9],[590,4018,12,11],[1849,4861,10,10],[2660,2840,17,11],[3268,2876,11,12]],"tr":[[691,2777,13,10]],".,":[[879,2777,10,5],[413,3752,11,8]],"lull-till”":[[1057,2766,84,26]],"iht»":[[1224,2773,31,17]],"tt-numl":[[1265,2774,67,16]],"l\\'|'ll":[[1390,2774,39,16]],":lfl'l":[[1545,2774,35,16]],".tl.”":[[1597,2775,40,16]],".\\t‘\\'~":[[1683,2773,49,16]],"Illlil'lllll:":[[1750,2778,88,15]],"llic":[[1855,2773,32,17],[1434,3370,32,17]],"It'tlllll":[[1905,2777,63,23]],"iuurrli":[[1988,2774,62,26]],"lll‘htlll.":[[2070,2774,66,19]],"‘":[[2148,2781,1,18],[566,2782,3,8],[1151,2838,1,3],[2147,2888,2,10],[340,4259,7,4],[653,2418,1,5],[1479,3761,6,6],[679,4164,4,4],[698,4159,3,3],[1151,2534,1,3],[1152,2748,1,4],[800,3104,3,3],[1045,3205,4,2],[1386,3137,2,4],[1745,3201,3,3],[1563,3239,4,5],[677,3408,2,2],[2707,4816,4,4]],"futile.":[[2160,2775,64,27]],"'":[[2237,2781,3,4],[2241,2804,4,4],[186,2824,2,2],[467,2837,4,6],[1280,2917,2,2],[586,3105,3,2],[870,3295,3,5],[656,3959,3,10],[656,3970,3,46],[361,4131,2,3],[299,4207,3,5],[330,4301,2,3],[653,2532,2,5],[599,2562,2,2],[1648,2440,2,8],[2095,2589,4,4],[1083,3082,2,2],[1646,3129,2,7],[1071,3558,4,3],[2131,4432,4,3],[2106,4532,3,2],[2026,4336,4,4],[1917,4365,4,4],[2817,3995,5,3],[3245,4652,4,4]],"nunul":[[2284,2775,82,17]],"til":[[2440,2775,19,17]],"lust":[[2517,2775,38,18]],"bullets":[[2569,2776,71,17],[3049,4325,71,18]],"(M":[[367,2781,28,11]],"r":[[404,2781,7,10],[1306,2922,5,7],[253,3944,6,11],[331,4488,4,10],[813,2515,8,13],[1713,3742,9,7]],"“P":[[431,2780,28,16]],"i,":[[468,2780,10,28]],".1111.“":[[490,2781,50,33]],"'l.":[[601,2783,15,21]],"This":[[901,2795,44,16],[1658,2463,46,17],[1360,2535,46,17],[1184,3227,45,16],[3036,2645,46,18],[2825,3146,46,17],[2644,4703,46,16]],"hint":[[970,2799,41,12]],"maul":[[1084,2796,54,16]],"‘unu":[[1152,2799,44,14]],"i-":[[1205,2802,9,12]],":u-tl":[[1248,2797,39,17]],"_\\|;.":[[1299,2797,30,17]],"-":[[1340,2802,3,3],[545,2829,2,3],[1209,2923,2,2],[2104,2971,3,3],[645,4382,2,2],[1288,2434,4,3],[3570,3407,2,3]],",,u":[[1354,2801,22,12]],"n-iur":[[1394,2801,51,13]],"tbui!":[[1501,2799,50,14]],".V-":[[1563,2803,21,10]],"ll.":[[1595,2802,17,12]],"Tina":[[1657,2796,39,16]],"ground":[[1713,2797,72,20],[2561,3375,72,19],[2410,4528,72,21],[2816,4824,72,20],[3433,4392,74,21]],"\\vn-i":[[1802,2802,37,11]],"mil.":[[1853,2798,33,20]],"sudtriently":[[1903,2796,116,23]],"Il'":[[2038,2799,15,15]],"Len":[[2067,2802,34,11]],"tad":[[2120,2799,43,19]],"«I":[[2187,2799,17,15],[854,2867,16,15]],"robobi.":[[2309,2799,63,17]],"llit-re":[[2404,2799,56,17]],"nerd":[[2559,2801,46,16]],"I.":[[515,2806,9,9],[349,3456,13,16],[386,4210,10,10]],"ml.":[[571,2805,29,12]],"””1-":[[613,2803,31,29]],"p'rtu‘l’i":[[917,2824,64,17]],"nl'":[[999,2819,21,16]],".‘uuili":[[1082,2820,56,16]],"mm":[[1161,2821,35,17],[666,2962,45,15],[612,4651,38,17],[1035,4448,36,11]],";":[[1252,2826,6,12],[1593,3302,4,14],[1936,2732,4,10]],"mmmmbl‘nf":[[1273,2811,135,28]],"llt":[[1425,2822,20,17]],"lam":[[1475,2825,37,12]],"legillnilult‘":[[1528,2816,106,25]],"butt":[[1659,2820,42,17]],"up,":[[1719,2825,29,17],[2459,4343,32,18]],"day's":[[1873,2820,58,22]],"Ill.ll't‘ll":[[1948,2821,60,17]],"iiin'll:":[[2084,2821,54,17]],"lliallllllt‘ulllti'd’":[[2160,2822,158,21]],"illiclh-s":[[2360,2822,91,18]],"getting":[[2564,2824,75,21]],"“W":[[175,2827,31,13],[526,2852,41,11]],"ifm‘":[[223,2826,40,24]],"{Hui":[[483,2824,36,31]],"‘3‘\"":[[533,2827,32,23]],"\"NH“:":[[580,2829,64,28]],"lil.4'.ul~":[[900,2847,69,12]],"aid":[[1025,2843,30,16]],"whit'll":[[1163,2845,59,17]],"iii-[rd":[[1237,2846,53,16]],"ttlmn":[[1464,2846,57,16]],"Illl\"":[[1598,2847,39,16]],"through":[[1658,2845,80,20],[1777,2964,81,27],[667,3791,80,20],[2649,4394,80,21]],"the,":[[1757,2845,32,16],[1206,3311,39,28],[1536,3347,32,16]],"slit-ill.":[[1854,2842,58,22]],"TIM":[[1940,2845,40,17]],"mud":[[1997,2846,46,16],[288,3503,40,16],[1166,4327,42,16],[2083,4834,43,16],[1109,4845,36,17],[3016,3028,44,17]],"“'lli":[[2063,2850,39,11]],"\\r-ryu'":[[2190,2852,68,16]],"[llt\\":[[2311,2848,43,16]],"\\w-ri":[[2367,2853,42,11]],"quilt":[[2421,2849,48,19]],"trough,":[[2567,2848,67,21]],"“in":[[174,2852,39,26],[1604,3418,32,16]],"m":[[222,2851,20,12],[424,3003,20,12],[393,4137,16,9],[400,3849,17,10],[738,4470,16,10],[1555,4809,17,12],[2851,4687,18,10]],"m\"":[[486,2852,29,11]],"J":[[575,2853,10,11]],"”W\"":[[604,2848,38,21]],"in'":[[927,2872,21,16]],"mm.":[[1162,2869,44,16]],"tln-":[[1256,2869,30,17],[562,3576,30,16],[1055,3035,31,15],[2795,4466,30,16]],"(-11“;":[[1295,2869,48,17]],"“1‘":[[1381,2873,30,12]],"thmp":[[1657,2868,46,21]],"that.":[[1719,2868,42,17],[1939,2536,43,17],[2225,4597,42,17]],"H'll'ilr":[[1842,2869,54,21]],"abort:":[[1912,2868,59,18]],"our":[[1985,2874,34,12],[2887,3390,35,12],[2759,3532,34,12],[3205,3995,35,12]],"shots-tops,":[[2035,2869,100,21]],"noiiw‘emilyoi’oxlmsi":[[2308,2871,219,21]],".ilnrgvr":[[2562,2872,77,21]],"L“!":[[174,2870,43,17]],"d”":[[240,2871,24,16]],"”Hi!":[[452,2874,43,36]],"iii?":[[516,2876,50,39]],"it]":[[628,2877,15,34]],"w":[[879,2896,15,7],[2333,2897,18,14],[339,3603,21,10],[1484,3694,74,6],[2761,4710,14,9],[2720,4828,15,10]],"'ll":[[911,2891,23,15]],">519":[[1185,2883,40,31]],"\"":[[1245,2895,10,4],[846,3320,9,8],[316,4112,7,4],[716,4157,10,5],[1163,3135,11,4],[3404,2610,11,7]],"ii":[[1277,2894,12,14],[736,3844,10,11]],"lump.":[[1547,2894,59,16]],"U.»":[[1782,2892,31,16]],"ml!":[[1830,2891,42,18]],"miltv":[[1948,2893,59,21]],"inti":[[2029,2898,32,11]],"l,":[[2071,2893,11,19]],"nuiuln-r":[[2159,2894,80,17]],"ul'":[[2248,2895,21,16],[1059,2605,22,16]],"lllI'II":[[2281,2900,41,12]],"tire":[[2403,2895,32,17],[871,3887,32,18]],"small":[[2504,2895,57,17],[1850,2416,56,17]],"force":[[2591,2896,47,17]],"'7‘":[[459,2901,8,9]],"..‘":[[482,2899,22,22]],"L":[[556,2903,8,7]],"\"I":[[577,2900,22,10]],"”A“.":[[850,2903,50,26]],"'.,":[[942,2914,27,15]],":":[[1013,2919,6,10],[652,2391,2,24],[655,3739,2,30]],"’.":[[1172,2917,15,14]],".5":[[1230,2907,24,25]],"\\'":[[1465,2922,15,10]],"iirli":[[1490,2917,35,16]],"tin-v":[[1541,2917,43,16]],"m:":[[1608,2921,25,12]],"l-l":[[1657,2915,15,16]],"\"VI":[[1699,2915,23,16]],"li-r-t":[[1739,2915,37,17]],"rut-n":[[1873,2921,43,12]],"rein-lured":[[1932,2916,90,17]],"mnrcliiiigmf":[[2039,2916,140,21]],"enemy.":[[2233,2923,72,17],[1774,4882,73,18]],"Bah":[[435,2918,50,40]],"do,”":[[599,2919,47,39]],"i..l..\\.yl.":[[783,2919,70,35]],"1'":[[865,2919,9,11]],"{Ir":[[890,2917,26,31]],"l“":[[933,2918,18,12]],"doll.“":[[969,2920,66,34]],"‘Ill‘l‘Al:]J]ll‘lUlIPlivlllLll‘ll,":[[1151,2916,189,42]],"mir-":[[1355,2945,34,11]],"“Hum!":[[1447,2919,74,38]],"l‘.\\.;":[[1540,2935,39,22]],"[1":[[1592,2918,12,39]],"o.":[[1657,2945,15,9]],"olilnitlnih‘":[[1710,2942,105,13]],"lill’tlllL‘.":[[1830,2942,76,15]],"'I‘iwy":[[1934,2940,53,21]],"sti'":[[2002,2943,27,13]],"led":[[2071,2939,28,17],[1371,2989,28,16]],"mil":[[2113,2939,35,17]],"Tilt\"":[[2181,2941,40,17]],"bridge":[[2231,2942,64,21]],"was»":[[2305,2948,38,11]],"rebuilt":[[2352,2942,70,17]],"by]":[[2434,2943,42,20]],"p.":[[2489,2948,17,17],[2583,3044,18,17],[2800,3007,17,17],[2738,3723,16,16]],"m,":[[2519,2947,33,16],[1065,3368,26,14]],"Ir-":[[174,2967,29,16]],"'lul'":[[224,2965,53,18]],",d":[[291,2966,17,16]],".“,,,tddu,,.1;”Li-,3“.":[[320,2947,231,36]],"u“":[[573,2947,27,11]],"H":[[628,2949,10,9],[2118,4565,11,6]],"liult":[[722,2965,38,12]],"\\\\;i~":[[787,2966,37,11]],"tpi":[[852,2967,24,17]],"t‘lrllll‘JrIL":[[982,2965,92,19]],"'l'lu-":[[1103,2963,38,15],[956,4248,40,16]],"\\ttnilltlutl":[[1162,2964,90,16]],"I)I_l(:l1ll~~lu;_',":[[1309,2964,126,21]],"'ll‘l‘UXll'Jlly":[[1657,2963,100,30]],"'ddy":[[1925,2963,38,29]],"“'f'":[[2035,2964,32,27]],"l'orpi":[[2158,2971,56,22]],"pn<~i~l":[[2226,2966,63,22]],"\\tl":[[2424,2967,27,17]],".4":[[2468,2966,15,33],[630,3750,16,13]],"roads":[[2520,2967,56,28],[2810,3886,53,18]],"'lll-c-":[[2599,2967,40,33]],"[m":[[193,2971,30,12]],"Li":[[235,2971,22,11],[303,3360,19,16]],".H":[[272,2971,17,12]],"d":[[319,2972,10,10],[568,3410,11,15],[1086,3058,11,16],[2830,4013,14,17]],"h":[[349,2978,4,4],[497,3720,10,16]],"\"ht":[[798,2986,30,16]],"\\tith":[[857,2986,45,16]],"us":[[924,2991,20,12],[3142,4210,20,11]],"mi":[[966,2992,24,11]],"‘ll":[[1006,2987,15,15]],"Tim":[[1044,2992,37,11]],"Ufllt'l‘r":[[1236,2988,62,17]],"woun":[[1308,2994,54,11]],"Aili‘t":[[1468,2989,54,20]],"“right.":[[1531,2989,81,20]],".1":[[1624,2995,11,11],[2462,4391,10,11],[3354,2663,9,9]],"lots":[[1662,2988,41,16]],"brungnt":[[1721,2988,81,20]],"tlu-m":[[1820,2988,51,18]],"again":[[1888,2993,54,16],[2937,3099,55,20]],".\\l":[[2045,2989,25,16]],"rI-uiuinth-ruf":[[2159,2990,133,17]],"ant-moon":[[2347,2992,98,16]],"\\\\":[[2456,2997,12,10],[1286,2731,12,10]],"spent":[[2501,2993,58,20]],"1’":[[301,3003,17,12]],"'5\"":[[330,3003,34,12]],"7“”":[[379,3002,35,13]],"I”":[[459,3003,20,12]],"TY'":[[488,3003,31,12]],"llzi":[[877,3015,20,11]],"min-h":[[919,3011,55,15]],"rkill":[[997,3010,44,16]],"“lid":[[1063,3011,36,16]],"fit-nun\",":[[1162,3012,85,17]],"1].,":[[1276,3012,28,17]],"m...":[[1311,3017,36,11]],"strurl;":[[1355,3013,63,16]],"\"bunt":[[1427,3013,59,16]],"ilm":[[1496,3007,32,22]],"h.-":[[1537,3013,21,17]],"liner,":[[1659,3011,61,20]],"\\vlii--Ii":[[1733,3011,61,17]],"tilt-y":[[1811,3012,46,21]],"rt-rrumd":[[1871,3012,91,17]],"eve!":[[2047,3017,40,11]],"ig,":[[2111,3017,24,16]],"tit-inity":[[2159,3014,80,21]],"evidence":[[2386,3015,88,17]],"jll‘ciCIlt'L'":[[2552,3021,86,15]],"l:t":[[352,3027,19,16]],"~4-":[[378,3034,18,8]],"9":[[519,3034,9,10]],"'r":[[544,3028,14,16]],"lg":[[439,3056,17,14]],"llll’":[[496,3051,30,16]],"hill":[[538,3052,42,16],[612,2752,34,16]],"4-.\"":[[391,3075,21,15]],"hut:":[[471,3074,38,16]],"in.”":[[525,3080,41,11]],"\\\\l":[[587,3076,20,15]],"v":[[393,3104,9,5],[784,2755,8,7],[1385,3089,9,11],[890,3462,4,4]],"‘wl":[[415,3099,28,14]],"lil'l":[[459,3098,30,16]],"“114'":[[436,3127,45,11]],"pl.":[[491,3122,23,22]],".u":[[361,3152,16,10]],"norm—o.":[[388,3146,84,16]],"tln":[[488,3147,25,15],[1110,2748,25,16]],"Thr":[[197,3027,42,17]],"\\‘ti'":[[255,3027,39,16]],"i-in":[[302,3033,30,10]],"llu":[[467,3265,24,16]],"*it":[[512,3269,18,12]],"ti":[[543,3267,13,14]],"tut,":[[575,3268,42,14]],":-":[[631,3270,13,10]],"Gen.":[[687,3265,46,16]],"l'a'uml's":[[751,3264,95,17]],"\\":[[1019,3271,7,10],[453,4773,5,10]],"s":[[1048,3271,8,12]],"ballot":[[1213,3274,56,18]],"“f":[[1282,3274,21,18]],"u\"":[[1320,3274,27,18]],"'N-n-m":[[1381,3276,77,16]],"w“,":[[1472,3280,37,12]],"\"1":[[1522,3280,19,12]],"(“11¢":[[1557,3275,38,17]],"luv.":[[1657,3272,36,19]],"\\\\'l'\\l":[[2204,3280,43,14]],"ot":[[2257,3277,18,17],[565,3650,17,14],[782,3938,19,14],[3287,4017,21,14]],"llutt-livr‘s":[[2291,3277,99,17]],"Run,":[[2405,3277,49,20]],"ascertain":[[2502,3279,93,17]],"tbt-":[[266,3289,29,16]],"mom.":[[306,3294,59,12]],"“1“":[[375,3294,36,10]],"Lulrdflunl":[[420,3289,104,17]],"I.i-.ut,":[[538,3290,59,17]],"l.d,":[[610,3291,32,16]],"'t'rne":[[653,3285,58,21]],":llm":[[724,3289,36,16]],"~urrn":[[801,3295,52,11]],"lwl,":[[888,3289,35,21]],"und":[[935,3290,35,17],[343,3503,35,16],[2650,4061,37,16]],"tli":[[982,3290,20,16],[794,3863,19,17]],"\\llrl‘t'llulrr":[[1041,3292,98,16]],"Lincoln":[[1161,3299,76,16]],"27.3.":[[1261,3300,43,16]],"M,":[[1324,3299,26,16]],"m.":[[1408,3304,24,15],[574,3558,22,11],[2836,3008,24,11],[2810,3971,24,12]],"1.3,.":[[1450,3299,39,17]],"Total":[[1516,3299,53,17]],".-":[[1919,3313,6,7],[355,4280,15,10]],"RIGHT":[[1979,3313,66,13]],",Nhllltlll":[[2156,3301,82,20]],"\"y":[[2248,3301,21,16]],"pm.":[[2319,3307,33,11],[529,3552,32,16]],"y.":[[2375,3307,18,15],[1808,3184,17,15]],"g":[[2416,3302,15,16]],"wt'ord":[[2455,3302,57,17]],"““5":[[2524,3308,38,11]],"u“,":[[2604,3303,31,17]],"“I'm“":[[176,3314,73,15]],"“1":[[264,3314,17,15],[496,3551,17,16],[3360,2945,20,13]],"“1*“":[[292,3318,36,10]],"WWW“)":[[338,3313,83,21]],"“\"\"'-‘l\"‘l-":[[435,3314,94,15]],"W”":[[667,3318,36,11]],"\"”“‘“l\"\"\"1":[[720,3313,106,16]],"”'-":[[898,3319,23,11]],"Capt.":[[954,3314,53,21]],"“Mk.“":[[1028,3314,72,22]],"“I":[[1119,3315,20,17]],"On":[[1160,3325,28,14],[1679,3346,28,17],[1351,4260,27,14],[3178,3087,27,15],[3171,3662,30,16]],"sum:":[[1254,3313,50,26]],"vlrul.":[[1314,3322,43,17]],"\\‘lolt-nt":[[1370,3323,71,16]],"suppmiiioii":[[1458,3313,118,31]],"tli.":[[1594,3323,25,16]],"M":[[1736,3312,22,13]],"AM“":[[1768,3312,61,13]],"RLBFH":[[1898,3312,67,15]],"right":[[2156,3324,49,20],[2859,3290,51,21],[2843,4705,50,18]],"“:m‘":[[2216,3324,45,26]],"””-":[[2271,3325,31,16]],"Thlrd":[[2316,3325,60,17]],"D\".":[[2393,3325,36,27]],"\"v":[[2467,3331,19,15]],"Ayresun'ih\"":[[2497,3326,137,27]],"’luw":[[200,3337,38,15]],"lib-Hrs":[[255,3337,86,15]],"lit-1t:":[[358,3341,46,11]],"ulmztil":[[460,3338,69,14]],"{rt-m":[[549,3337,46,17]],"tin.":[[608,3338,37,16],[2203,2589,31,12],[1285,3226,31,17]],"‘Uiii'l'~|":[[665,3336,82,16]],"“\"\"mg":[[889,3342,69,15]],"“\"7\"'-":[[976,3338,58,18]],"“\"\"V‘I":[[1051,3338,60,17]],"3‘":[[1125,3344,10,11]],"nonc-of":[[1160,3346,77,17]],"bovs":[[1293,3346,46,17]],"“ho":[[1349,3346,40,17],[766,3431,40,17]],"Iq-gil":[[1586,3346,47,21]],"Feb.":[[1723,3347,44,16],[2861,2573,44,17]],"begun":[[1858,3347,63,21],[923,3504,56,20]],"another":[[1934,3347,80,18]],"movement":[[2028,3349,107,16],[274,2421,106,16]],"It-lt.":[[2156,3348,34,16]],"Semitd":[[2316,3348,72,18]],"sum,":[[2451,3355,48,17]],"(inllin":[[2568,3350,67,17]],"pair":[[175,3364,42,18]],"fill":[[370,3360,24,15]],"rwtud":[[409,3360,58,16]],"lur":[[485,3361,25,15]],"oi...":[[525,3366,34,11]],":15.":[[236,3385,27,15]],"Sat":[[290,3384,48,16]],"tiny":[[352,3389,37,15]],"lim)":[[404,3384,39,21]],"rum-ml":[[458,3384,63,16]],"{Him":[[537,3388,52,13]],"rebuild":[[227,3407,80,16]],"son\"":[[322,3412,45,11]],"illu-":[[464,3408,30,16]],"ri-rui":[[508,3413,51,11]],"tin":[[208,3432,26,16],[1398,3180,25,16]],"Jeni-mil":[[248,3431,76,17]],"tl.i":[[500,3433,26,15]],"July":[[292,3455,44,21],[475,4394,45,22],[3161,4700,47,21]],"win-n":[[372,3455,54,17]],"“El":[[495,3461,33,11]],"mail,":[[395,3479,48,17]],"thou":[[454,3479,47,17]],"ri-‘":[[512,3480,33,16]],"lamilgtile":[[390,3503,101,19]],"out.":[[501,3507,49,13]],"ifru:":[[653,3502,50,33]],"do":[[749,3503,24,16],[2204,4479,23,16]],"so.":[[788,3509,24,10]],"limit-y":[[840,3503,67,22]],"argue":[[1032,3510,57,15]],"Ihi":[[1105,3506,26,17]],"11....":[[201,3527,49,16]],"”m,":[[266,3527,43,16]],"w...":[[324,3532,46,11]],"3,.":[[488,3527,18,16]],"“up":[[525,3528,49,17]],"hup-lounmsur":[[666,3526,151,22]],"res":[[825,3532,27,11]],"itltutlltlu":[[1031,3529,105,17]],"Ixrii":[[306,3551,40,14]],"urnt":[[293,3577,46,12]],"pit!":[[384,3575,33,21]],"fnxt":[[176,3550,34,17]],"nit":[[229,3553,32,13]],"wlw":[[177,3574,40,16]],"I\\v":[[604,3582,18,10]],"\\l":[[631,3581,14,13]],"It":[[312,3599,17,16],[238,3896,11,11],[559,4012,16,17],[453,4458,8,7],[2225,3109,16,16],[2611,4388,16,16],[820,4493,10,10],[3500,2563,16,17],[3272,3588,20,18]],"in}.":[[458,3599,41,21]],"lllil,":[[611,3604,45,17]],"the)":[[177,3622,42,22]],"tunltt":[[305,3623,71,15]],"[In":[[304,3651,26,15]],"Nillii'hl":[[343,3649,75,12]],"tin:":[[433,3647,30,15]],"remit-h":[[479,3648,72,16]],"'Iiit:":[[602,3650,44,16]],"~41":[[428,3726,18,9]],"inu-":[[454,3724,36,11]],"ll:":[[561,3724,22,13],[795,4629,19,16]],"ranks":[[593,3722,54,16]],"withdrawal":[[447,3767,115,18]],"oi":[[580,3771,17,15],[368,4420,17,12],[303,4770,16,12],[766,4562,16,12],[2233,4742,17,13],[775,4845,17,13],[3609,3114,22,17]],"Sixth":[[178,3790,55,16]],"L'urp~":[[247,3791,56,23]],"piolecliuu":[[407,3793,102,20]],"“tubing":[[552,3793,94,24]],"ton.":[[177,3819,38,17]],"Ti":[[203,3841,21,19]],"I‘tiu":[[179,3871,47,12]],"h'lfl.\"":[[240,3867,56,16]],"will.":[[180,3891,45,16]],"u-r.":[[257,3896,29,11]],"-nt":[[306,3871,24,12]],"hold":[[378,3867,44,16],[1842,2463,42,17]],"hue":[[612,3869,36,16]],"Mien:":[[181,3939,63,21]],"Lib;":[[270,3938,43,18],[980,4362,42,13]],"intivm":[[399,3942,65,13]],"llkd":[[471,3939,34,16]],"shirinhbdiin":[[513,3940,131,18]],"rum-«l":[[181,3963,62,15]],"“I‘ll":[[260,3963,45,15],[972,3081,35,20]],"lliln":[[320,3963,37,16]],"wupun":[[374,3968,73,16]],"Mn":[[463,3968,36,12]],"1:":[[514,3969,11,11]],"llJflliltlulllI:":[[540,3964,108,18]],"ulr‘iu":[[181,3986,58,16]],"11'":[[247,3986,15,16]],"ll-ll‘t'.":[[342,3990,52,12]],"'llJIY":[[205,4010,51,16]],"irii":[[275,4015,29,11]],"vl":[[351,4010,14,16]],"here":[[385,4010,41,17]],"1-":[[445,4011,20,16]],"days.":[[480,4011,50,22]],"a,":[[639,4019,20,22],[1137,4497,22,30]],"[It'llmi":[[181,4036,63,21]],"nil":[[253,4037,29,12]],"quit-i,":[[409,4039,57,18]],"yr":[[515,4042,17,15]],"lot":[[540,4039,29,14]],"innimi~":[[580,4042,69,12]],"trimii-dim-ni":[[182,4058,120,17]],"'i'lu":[[378,4059,33,16]],"\\mrln":[[424,4060,59,15]],"“birh":[[489,4061,60,15]],"held":[[607,4062,41,17],[2651,4155,44,16]],"b":[[231,4083,10,15],[1079,4443,10,16],[2798,3990,11,16]],"my":[[284,4089,24,8]],"upnd":[[317,4083,53,20]],"mmnd":[[459,4085,68,16]],"U’flm,":[[542,4089,60,19]],"I._..I":[[615,4087,33,17]],"betn":[[183,4106,45,17]],"lulu-n":[[244,4106,55,16]],"ielnLi-n.":[[367,4106,82,18]],"llt'ltl":[[557,4111,42,16]],"lull":[[610,4117,31,11]],"teaitd":[[182,4130,60,17]],"“illi":[[261,4130,44,16]],"ii-nmnanun":[[417,4135,120,14]],"tllnt":[[558,4135,41,16]],"lin-":[[620,4136,30,15]],"giuuul":[[183,4154,72,22]],"rm,":[[274,4160,35,11]],"tb-":[[328,4155,33,15]],"Mnii)":[[183,4178,56,22]],"nl‘":[[252,4178,20,16],[849,3057,21,16]],".e":[[293,4184,19,11]],"tl'u'l":[[322,4178,46,16]],"lwrn":[[433,4179,44,16]],"mad.":[[520,4181,48,15]],"lion'-":[[576,4186,48,16]],"Iy":[[634,4183,16,21]],"liulllf’l":[[184,4203,65,17]],"ti.":[[265,4202,18,17]],"lbr":[[319,4207,30,12]],"hi":[[362,4210,13,10]],"hull":[[411,4203,35,17]],"bro-ti":[[461,4203,44,17]],"Mull-«1":[[517,4206,72,15]],".mu}":[[600,4212,47,16]],"tiom":[[185,4229,47,14]],":lt":[[248,4227,19,16]],"uni":[[312,4227,36,16]],"b1:":[[364,4228,32,15]],"mpnttl":[[411,4228,78,21]],"lulrillllizivf":[[500,4231,110,18]],"[Ht-":[[622,4234,30,12]],"dm.)":[[185,4251,53,20]],"x.":[[421,4257,11,10]],"u...":[[446,4257,38,10]],".~\\t.|llI|-Iil":[[496,4253,101,16]],"xi”":[[606,4254,23,15]],"pl‘nlllt":[[186,4274,62,22]],"tut":[[317,4275,21,15]],".lli'l":[[392,4275,35,15]],"lllutix'iuil":[[471,4276,91,16]],"[Hr-'11:":[[581,4282,69,16]],"run":[[185,4302,38,12],[2378,4273,32,11]],"sul'":[[282,4298,35,15]],"ll:i":[[348,4298,23,15]],"“phi-d":[[388,4298,69,17]],"“.H":[[596,4306,31,11]],"IJtii":[[212,4321,37,16]],"I};":[[269,4327,15,14]],".lu!)":[[298,4321,42,20]],"lln‘":[[359,4322,29,15]],"lms":[[405,4322,35,16]],"\\tn':":[[450,4327,35,11]],"tl.":[[495,4323,18,15]],"\\mnndul":[[556,4325,88,16]],"Thrrt-":[[186,4345,60,17]],"\\\\.i-":[[257,4350,36,11]],"gt":[[307,4351,10,10]],"your!":[[331,4345,44,20]],"vbul":[[392,4345,40,17]],"ol":[[447,4349,17,13],[1619,4497,20,17]],"mint-w.":[[479,4347,87,19]],"llw‘":[[624,4345,39,21]],"\\tuiblr-i":[[250,4371,71,14]],"i~":[[342,4375,13,10]],"llml":[[370,4369,40,16]],"tlu-ru":[[428,4370,51,16]],"“31‘":[[496,4376,36,11]],"It)\"":[[599,4379,28,10]],"('ol.":[[187,4393,38,15]],"llnri-iinlm-":[[240,4393,112,16]],"iI'":[[370,4397,24,12]],"tir-l":[[422,4394,34,15]],":0":[[538,4398,22,13]],"Iuiued":[[186,4416,67,17]],"mini-punt":[[262,4416,95,16]],"iln-":[[399,4417,30,15]],"ltmib.":[[441,4418,58,16]],"n:":[[326,4135,15,12]]," ":[[227,4263,77,48],[660,4442,139,39]],"bud.-":[[286,4251,47,15]],"I.\\'":[[311,4453,21,13]],"ll”.":[[347,4453,40,12]],"Til.”":[[401,4453,40,13]],"01’":[[478,4454,23,12]],"17.":[[516,4455,24,12]],"Th»":[[211,4482,40,16]],"1.":[[260,4488,18,9],[869,3157,16,16]],"“in:":[[351,4483,42,15]],"l:":[[402,4483,9,15]],"ever":[[457,4488,42,11],[3276,3403,45,11]],"Ill\"!":[[513,4489,35,11]],"I.“":[[591,4486,34,15]],"lii~loit":[[229,4505,67,18]],"\\'¢-t":[[385,4506,30,16]],"it“":[[438,4513,22,10]],"“A“!":[[475,4507,38,17]],"lbt":[[522,4514,24,10]],"u'i-iliird":[[573,4512,84,14]],"Aug":[[229,4531,42,19]],"11!.":[[289,4531,25,15]],"\\\\..r.":[[344,4530,55,16]],"r-t.i":[[534,4533,29,15]],"iuLe":[[617,4535,42,15]],"\\\\e'.":[[351,4554,45,16]],"’l‘b.‘":[[565,4556,45,17]],"nus":[[625,4563,35,10]],"donn-":[[188,4577,49,16]],"«m":[[253,4582,23,11]],"iriii":[[344,4579,42,15]],"hub,":[[458,4580,48,20]],"uh":[[578,4586,23,10]],"uh-":[[628,4582,30,15]],"b’fllul-nt":[[189,4604,79,17]],"days":[[290,4601,46,21]],"ll'lrt‘l‘":[[411,4602,58,16]],"tuiuln:":[[491,4603,52,16]],"tlispriulr":[[564,4603,94,22]],"ellurt:":[[190,4624,64,15]],"raw-net":[[322,4629,69,12]],"it.":[[416,4629,19,12],[2231,2416,14,17],[1340,4470,15,16],[2865,4067,17,12],[3203,3397,16,17]],"wumlul":[[527,4628,74,15]],"HlHl":[[623,4629,35,15]],"mm!":[[304,4648,41,14]],"ui‘":[[356,4648,21,15],[760,4630,21,15]],"lliii":[[389,4648,37,17]],"nylon":[[441,4653,61,15]],"\\t":[[560,4655,14,11]],"'3'":[[584,4656,18,15]],"nialdllilla":[[332,4676,109,16]],":u.-i":[[452,4677,34,11]],"ih-":[[498,4673,24,15]],"‘m-iuu-b":[[560,4676,98,16]],"ilitl":[[310,4695,35,16]],"Hunt":[[367,4701,49,11]],"in.-.inti.;":[[438,4700,91,12]],"“M.":[[621,4772,47,14]],"(‘i":[[279,4743,19,16]],":i'.‘":[[303,4748,22,11]],"(ion":[[214,4743,40,15]],"‘llt-":[[190,4765,32,16]],"tit-3i":[[239,4766,46,18]],"‘lll”":[[191,4789,32,16]],"in:":[[233,4795,24,10]],"Jrruudt":[[191,4811,81,19]],"l:l":[[280,4819,16,11]],"plaivlt":[[306,4814,56,21]],"Xuzitl.":[[379,4815,48,17]],"-d‘.~’":[[347,4743,43,16]],"'I'lziid":[[406,4743,56,16]],"I!i'2»,u'i":[[486,4743,82,17]],"ipi,":[[402,4772,33,16]],"l.i":[[513,4767,17,16]],"'nml":[[278,4790,48,16]],"nu.":[[343,4796,28,10],[680,4541,42,11]],"n2:":[[398,4796,23,12]],"bit-tun":[[437,4791,79,15]],"l..":[[534,4791,17,16]],"mile.":[[191,4837,50,16]],"(-01).":[[268,4840,44,14]],"Indy:":[[332,4838,59,20]],"“1M":[[409,4844,35,11]],"Cranium":[[190,4858,96,19]],"cover":[[366,4867,54,12]],"gap":[[490,4868,35,17],[797,2492,35,16]],"nitn":[[547,4867,44,13]],"s...i-":[[611,4870,45,11]],"nilsliers.":[[663,2392,85,17]],"started":[[441,2419,69,17],[1164,4281,69,16]],"aller-":[[589,2418,54,18]],"took":[[664,2416,46,17],[1947,2392,45,17],[1421,4189,45,17],[3146,3990,44,17]],"posihmi":[[718,2419,80,19]],"mile":[[829,2416,46,16],[2313,3063,43,16]],"mm»,":[[913,2420,50,12]],"-‘":[[1056,2421,7,4]],"'.":[[1079,2421,7,11],[1462,4501,7,12]],"sGeu.":[[653,2448,59,42]],"Mahune":[[732,2463,81,17]],"three":[[894,2463,53,16],[3034,2398,53,18]],"brigades":[[968,2462,86,21]],"pit.":[[1075,2468,27,16]],"ed":[[1117,2462,22,17]],"“1-":[[285,2514,32,18]],"certain":[[422,2515,71,16]],"(mm":[[506,2513,48,18]],"re-":[[618,2518,27,13],[1610,4833,26,11]],"find":[[665,2510,41,18]],"ll\"":[[838,2515,16,12]],"otiii-r":[[926,2512,52,15]],"troops":[[988,2511,62,21],[1077,3865,62,21]],"(‘lllfljfl‘d":[[1058,2509,82,22]],"lllfllit’l’s":[[1162,2513,77,15]],"npa":[[1248,2515,44,18]],"bill":[[1394,2510,39,18]],"'llllL!":[[1442,2510,47,21]],"lll'":[[1498,2511,22,17]],"unallv":[[305,2539,62,16]],"droppq-il":[[377,2538,83,22]],"boys":[[548,2538,45,21],[2663,2714,46,22]],"num.":[[714,2535,55,16]],"wnitli":[[665,2558,60,17]],"tn":[[741,2561,19,14]],"lrtli":[[502,2752,42,16]],"Ill\"":[[556,2752,29,16]],"”m":[[696,2748,37,16]],".1418":[[439,3550,43,17]],"“,1,,":[[605,3554,39,19]],"alllll’l,":[[665,3550,57,21]],"ill‘l":[[739,3550,30,16]],"demandedatntego":[[780,3551,191,21]],"N":[[700,3574,14,16]],":.":[[723,3581,8,9]],"nilh":[[668,3598,44,16]],"tin-wing":[[742,3598,75,22]],"beard,":[[830,3599,64,21]],".«rit":[[954,3602,28,14]],"lum-nrd":[[1053,3600,84,18]],"psiilunuti":[[413,3623,97,21]],"lpuitvlibi:":[[531,3626,115,20]],"reins":[[666,3623,49,15]],"noble-looking":[[820,3623,140,21]],"“Ill!":[[666,3647,45,15]],"ad":[[745,3647,22,16]],"L'lll":[[824,3646,33,17]],"creel":[[865,3650,48,14]],"1H":[[258,3673,27,13]],"lint-t":[[303,3670,54,16]],"M.":[[368,3673,27,13]],"donut":[[404,3669,61,18]],"know":[[475,3670,54,17]],"“In.“":[[589,3673,57,17]],"di-tt-ntli-d":[[665,3670,99,16]],"nostril-i,":[[780,3671,81,21]],"quivering":[[873,3671,99,22]],"et't-ry":[[1021,3677,55,17]],"limb":[[1091,3673,47,16]],"e":[[436,3700,9,11]],"“humm-":[[457,3694,84,18]],"mu“":[[550,3697,53,16]],"“”1":[[613,3702,30,12]],"(:Xl‘lll'lut‘lil,":[[729,3694,121,21]],"moving":[[977,3696,75,21]],"his":[[1110,3696,28,17],[793,3742,28,17],[1037,3792,29,17],[1448,3084,29,16],[2820,3289,31,17],[2744,3479,29,17],[3101,3482,31,18],[3034,4088,30,17],[2979,4135,31,17],[3313,4110,29,16]],"trunks.":[[667,3717,66,17]],"reply":[[794,3718,50,21]],"abrupt":[[932,3719,69,22]],"demand":[[1017,3720,79,16]],"‘7“;“(3":[[1478,3720,103,27]],"3":[[1597,3726,7,18]],"“hm-n;":[[1618,3729,82,19]],"’33-":[[2390,3735,41,27]],"...u":[[371,3750,33,7]],"1.1,-":[[435,3743,23,21]],"rlu-":[[469,3743,30,17]],"rump-“mi":[[510,3749,110,14]],"ridvr":[[667,3741,49,18]],"l’ltl‘c-ll":[[725,3742,57,17]],"livztd":[[837,3742,47,17]],"proudly,":[[895,3743,84,21]],"decidedly":[[1036,3744,99,22]],"'3‘,":[[1556,3749,25,24]],".wnmngm.)":[[1599,3741,126,30]],"‘-":[[2411,3774,12,2]],"ansn’trvd":[[666,3767,95,16]],"‘No":[[774,3766,39,17]],"3'":[[822,3767,13,16]],"”":[[846,3767,11,7]],"llugtiod":[[891,3766,76,22]],"then":[[984,3768,44,16],[2729,4203,45,18]],"him":[[1099,3768,38,17],[972,3480,40,17],[2770,3026,39,17]],"Door.":[[1485,3768,75,14]],"2":[[1597,3772,6,22],[3139,4558,11,15]],"body,":[[798,3790,55,23]],"he":[[908,3790,22,17],[1118,2391,23,17],[674,3204,22,12],[2756,2954,21,16],[3193,4229,23,16]],"fell":[[939,3790,30,17],[1348,3036,30,17]],"horse.":[[1078,3792,58,17]],"\\.":[[246,3849,8,8]],"m,”":[[267,3849,44,10]],"“H“,":[[322,3845,62,20]],"strong":[[432,3847,63,17]],"“”01“.":[[509,3841,90,24]],"lii~":[[667,3838,28,17]],"’I":[[848,3844,10,12]],"hurried":[[867,3839,74,17]],"retreat.":[[951,3842,73,14]],"iv":[[327,3891,14,16]],"uriiy,":[[382,3891,55,22]],"brim":[[545,3892,53,17]],"pm:":[[608,3896,39,19]],"”ii\"":[[668,3886,39,18]],"01":[[180,3918,17,13],[824,4868,17,14]],"Jolt":[[211,3915,47,16]],"llm":[[269,3915,30,16]],"llwdi":[[314,3916,52,15]],"1.3.1":[[382,3915,36,17]],"ln-euiiiuu-d":[[433,3915,115,17]],"mu.":[[560,3917,44,16]],"(WW":[[667,3911,74,17]],"llIL'!":[[668,3939,37,13]],"fo:":[[714,3936,24,16]],"liztr":[[669,4007,34,17]],"rundltil-imof":[[712,4007,131,18]],"tilt:":[[852,4009,30,16]],"mild,":[[892,4008,51,21]],"also":[[997,4009,39,16]],"spirit":[[1085,4009,55,21]],">\\l(l\"\\.":[[658,4057,64,17]],"'mnbl":[[658,4081,65,16]],"bu":[[742,4081,21,14],[1745,4759,23,16]],"t-tkeu":[[777,4080,56,17]],"llt'll":[[960,4080,44,16]],"mpuin":[[1069,4083,72,19]],"marked":[[424,4155,76,17]],"“nth":[[519,4158,45,15]],"gi:t\\v<.-":[[581,4164,80,14]],"liv":[[776,2392,27,16]],"nii<tiniler~t1intllng":[[902,2391,191,22]],"llmth,":[[1211,2392,60,20]],"“\"LS":[[1289,2397,40,12]],"(leig'yrrati'ly":[[1345,2392,119,22]],"aiiillonnterinetits":[[1600,2376,189,33]],"when)":[[1806,2392,62,17]],"supper,":[[2012,2397,77,17]],"il.it-ut.":[[1151,2411,72,22]],"Ila-tin":[[1235,2416,61,18]],"I..":[[1313,2416,18,16]],"Stork":[[1343,2416,56,17]],"killed.":[[1456,2416,64,16]],".trrops":[[1648,2419,73,18]],"vrrw":[[1735,2421,50,11]],"stream":[[1920,2417,69,16],[2456,2754,68,15]],"tour":[[2056,2418,41,25]],":ivo.‘":[[1391,2445,49,11]],":i<.'-i":[[1449,2445,30,11]],"Ml":[[1506,2440,22,16]],"rnpnls-":[[1568,2440,71,22]],"llll:":[[1659,2440,32,16],[757,3384,32,16]],"road":[[1701,2440,43,16],[1855,4525,42,17],[2659,2978,44,17],[3086,3506,44,17],[3084,3627,44,17]],"lln'ltsfoi'd.":[[1782,2439,107,19]],"(in":[[1898,2445,25,12],[1184,2442,28,14],[3559,2590,29,15],[3461,2898,28,16]],".‘ltrhurriii":[[1969,2440,95,17]],"enemy":[[1476,2469,67,16],[2572,2424,69,16],[3068,3010,67,16],[3019,4545,68,17]],"place":[[1721,2463,53,22],[3511,3854,53,23],[3471,4040,51,23]],"“us":[[1790,2468,38,12]],"considerable":[[1949,2463,131,18]],"f0'ce":[[2090,2463,48,17]],"tart-n":[[1590,2492,46,12]],"ol'":[[1657,2487,23,16]],"infuntry":[[1694,2486,86,22]],"art":[[1851,2489,29,15]],".lcr":[[1890,2494,34,10]],"“'1‘":[[2056,2488,36,16]],"rut":[[2112,2489,28,16]],"l‘JiN‘ml":[[1568,2511,68,18]],"nutvlu":[[1713,2510,55,18]],"against":[[1782,2513,74,19]],"them.":[[1872,2510,58,19]],"expedition":[[2029,2511,111,22],[1386,4353,109,22]],"round.":[[1033,2534,74,18]],"ilfinltllllllifl,":[[1227,2535,105,17]],"time":[[1591,2536,47,17],[2913,4420,46,17]],"bud":[[1658,2535,36,16],[2808,2572,38,17]],"nnwut't‘lnllpllxltfil":[[1705,2535,189,22]],"llll":[[1903,2536,26,16]],"intended.":[[2040,2535,97,17]],"‘lllt‘l'fullglll.":[[1151,2551,130,28]],"lJullllitl":[[1357,2559,68,17]],"intnnu-inuvvnh‘.":[[1441,2559,153,18]],"t-X<":[[1606,2565,31,11]],"Ibii'iiii,r":[[1683,2558,74,22]],"lhi-i":[[1775,2559,37,16]],"\\tork":[[1901,2559,52,17]],"mztn":[[1999,2564,43,12]],"thi-":[[2107,2559,32,26],[2540,3254,32,16]],"rcpt":[[1161,2578,41,26]],"slum":[[1219,2583,51,16]],"sliqiitt.":[[1287,2582,74,23]],"(.‘npt.":[[1388,2584,52,20]],"Iii":[[1462,2583,20,17]],"unmi-":[[1496,2588,56,12]],"“its":[[1567,2588,38,12],[805,4133,36,11],[3482,4802,37,11]],"lieu-rm»;":[[1660,2582,87,17]],"\\vw":[[1766,2587,36,12]],"(ought.":[[1820,2583,69,18]],"llllllf‘l‘":[[1908,2583,60,17]],"ctuniunnd.":[[1161,2607,103,16]],"\\\\'.ls'":[[1659,2611,37,11]],"merit":[[1704,2610,59,12]],"rebels,":[[2207,2393,67,21]],"reaching":[[2380,2393,89,23]],"creek":[[2527,2394,56,18]],"found":[[2162,2416,58,17],[2149,4597,57,17],[3229,4229,58,17]],"too":[[2254,2419,31,15],[2492,4365,30,14]],"deep":[[2293,2417,48,22]],"fol-ding,":[[2391,2417,80,22]],"good":[[2189,2440,47,20]],"ride-pits":[[2246,2440,89,23]],"bank,":[[2483,2441,59,23]],"25":[[2620,2443,24,17]],"yards":[[2159,2464,58,22]],"away.":[[2226,2469,59,17],[1716,4670,59,16]],"first":[[2220,2488,40,16]],"fire":[[2327,2488,33,17],[2714,3789,32,17]],"lively,":[[2421,2488,66,23]],"soon":[[2543,2493,45,14]],"mtxled.":[[2246,2512,74,19]],"would":[[2379,2512,64,18],[920,3887,60,17],[2651,4251,62,16]],"scarcely":[[2451,2512,84,23]],"risk":[[2544,2513,40,18]],"heads":[[2160,2535,56,18]],"pits":[[2350,2537,40,21],[3084,4446,37,21]],"moment.":[[2470,2539,90,16]],"Trees":[[2588,2538,55,18]],"wen:":[[2161,2565,47,12]],"rhoppod":[[2223,2560,82,22]],"downso":[[2320,2561,87,16]],"fall":[[2490,2561,34,17]],"across":[[2541,2566,60,12],[2908,3509,60,12]],"those":[[2324,2584,52,17]],"purl.":[[2389,2587,42,19]],"crossed":[[2570,2586,71,16]],"lit-lure":[[688,2440,65,17]],"miszuko":[[824,2439,83,17]],"(‘UTlL":[[1037,2444,50,11]],"ted.":[[1100,2438,36,20]],"Iberia:":[[1223,2440,80,16]],"I:":[[1353,2440,14,16]],"ing":[[1162,2464,32,20]],":1.":[[1202,2469,12,11]],"stubborn":[[1222,2464,93,16]],"attnt":[[1324,2466,46,14]],"hrough":[[674,2487,72,21]],"furiously":[[889,2486,93,21]],"nosailcd":[[991,2486,79,16]],"me-":[[1079,2486,62,17]],"Yellow":[[1163,2487,69,17]],"House,":[[1248,2487,70,20]],"rind":[[1335,2487,37,16],[973,3034,39,16],[2307,4527,36,17],[2782,2763,38,16],[2649,4013,38,16]],"llilil":[[1388,2487,36,17]],"(dim":[[1469,2487,47,17]],"(ltwpehtie":[[827,2534,97,22]],"(-":[[940,2539,10,11]],"~":[[1045,2614,6,4],[781,3065,8,4],[721,3414,4,4],[826,4565,8,9],[2792,4714,4,3]],"l.n.ll":[[1095,2605,44,17]],"'uinn":[[1037,2724,50,16]],"“1'":[[1079,2748,20,15]],"nit-vi":[[1658,2725,43,15]],"iiiiil":[[1711,2726,36,16]],"snow,":[[1756,2731,59,12]],"drivmi":[[1824,2726,65,17]],"slum!":[[1956,2730,64,14]],"wind,":[[2030,2726,56,19]],"r-ii—":[[2098,2730,41,12]],".lrii-l":[[1658,2749,55,16]],"lt'tlioth":[[1766,2750,73,16]],"lllitllu‘":[[1849,2750,55,16]],":iliumt.":[[1914,2750,70,16]],"lllll‘lltllll'ulilt‘.":[[1997,2749,139,17]],"When":[[2182,2727,61,17],[2684,3073,59,17]],"work":[[2294,2728,51,16],[1412,4755,51,16],[1492,4827,51,16],[3253,3374,53,16]],"Wm":[[2355,2733,37,11]],"about:":[[2401,2727,59,18]],"rest":[[2602,2730,38,16],[2236,3377,31,11]],"lbs":[[2190,2751,32,17]],"wed":[[2358,2751,41,17]],"linear\"-":[[2566,2752,73,18]],"i-lnw":[[1162,2726,47,16]],"lllv:":[[1246,2726,30,16]],":ir.":[[1305,2731,23,11]],"l.iriii.—l'ul.":[[1186,2750,109,16]],"l’lllll't“.":[[1315,2750,68,18]],"put!":[[778,2729,39,16]],"('ltlvllttlll":[[862,2727,93,13]],"tin‘":[[808,2747,31,16]],"Nilillul~":[[855,2748,76,15]],"“1-10":[[947,2753,46,10]],".‘uiut":[[691,2725,48,15]],"gIill":[[1489,2750,39,16]],"Sllnvllll!":[[1546,2750,91,19]]," ":[[651,2982,174,77],[569,3328,495,46]],"nny":[[902,3038,36,17]],"p4":[[950,3039,14,16]],"nur.":[[1097,3040,40,11]],"uln-":[[799,3061,39,12]],"l'niun-":[[990,3057,74,16]],"(duly.":[[804,3085,58,16]],"lint:":[[926,3081,37,16]],"II":[[820,3108,11,12],[2190,3038,12,16]],"“as":[[843,3110,37,10],[925,4038,36,10]],"ill":[[889,3105,18,15],[2086,4718,18,14]],"om:":[[853,3133,37,12]],"IN":[[745,3157,15,11],[2779,3942,23,13]],"«luau":[[781,3153,65,15]],"iily":[[894,3153,37,20]],"lruin":[[948,3155,45,14]],"unripe.":[[673,3181,69,12]],"tum.":[[759,3179,42,12]],"plum:":[[820,3176,52,21]],"during":[[880,3176,70,22],[1937,3395,70,21],[1249,4541,71,21]],"snuggle":[[1019,3177,83,21]],"lUl'":[[1112,3181,28,13]],"Weldon":[[707,3199,77,17],[1323,4281,78,17],[805,4271,77,17]],"“Mil.":[[795,3200,48,16]],"Illll~nl‘l-llilll":[[1162,3036,120,17]],"ground.":[[1456,3037,86,20]],"“1-,":[[1162,3060,28,16]],"MI]!,il)~l'tl":[[1250,3060,92,21]],"bi:":[[1382,3060,20,16]],"ltllll'll,":[[1413,3060,66,18]],"buL":[[1491,3061,34,16]],"pi":[[1540,3066,17,16]],"l\":":[[1162,3084,21,15]],"itnbbvl":[[1234,3084,69,16]],"hri":[[1322,3084,27,16]],"I'm-I.":[[1496,3084,35,16]],"wr-":[[1603,3090,32,10]],"tlziimcd,":[[1160,3107,84,21]],"('V":[[1329,3113,21,11]],"tul":[[1670,3035,24,16]],"minpml":[[1704,3035,78,21]],"not.":[[1936,3038,34,15],[1371,4473,33,14]],"fur":[[1979,3036,28,16]],"tilivri:":[[2074,3036,61,16]],"rilciiiv":[[2234,3044,67,11]],"lurl'u.":[[2356,3042,53,14]],"about.":[[2476,3039,60,17]],"U":[[2556,3041,10,14]],"in.":[[2613,3044,22,12],[2471,3115,24,12],[2764,3723,24,12]],"tbrv":[[1658,3058,44,16]],"i-prnl":[[1717,3060,55,19]],"llll'll\"":[[2030,3060,50,16]],"out-I":[[2095,3061,53,23]],"Warron":[[2160,3061,77,17]],"«1":[[2374,3063,16,16]],"right,":[[2498,3063,58,21],[2948,3601,57,20]],"“here":[[2578,3064,60,16]],"\\iiiivl":[[1659,3082,50,16]],"lllilll‘ll.":[[1721,3083,67,16]],"Humphrey‘s":[[2160,3085,120,22]],"llflllt'xlbi‘l'll'lll't‘tlSOHIB":[[2290,3086,225,22]],"llltl'tl":[[2527,3086,45,17]],"ti;ht-":[[2584,3087,54,21]],"'1":[[1682,3106,10,16]],"b4-":[[1700,3106,21,16]],"“huh\"":[[1740,3107,81,16]],"grew":[[1897,3112,51,14]],"cddrr,":[[1965,3107,67,19]],"l'L'Illllfl'll":[[2255,3110,85,21]],"Go.":[[2424,3112,34,15]],"reach":[[2543,3111,54,16],[3346,3968,53,16]],"l'v":[[1184,3131,24,18]],"7—,":[[1221,3141,49,12]],"votrsl":[[1302,3132,64,17]],"Linu-":[[1399,3131,45,17]],"morning":[[1659,3130,88,20],[2258,4503,85,20],[1276,4754,86,21],[1346,4825,86,20],[2727,3456,86,21]],"\"l’lrllllll":[[1797,3130,71,17]],"frozen":[[1936,3131,61,17]],"solid.":[[2016,3131,53,17]],"p":[[2157,3139,11,16],[2194,4791,10,16]],"llt‘wl'ql'lll‘ll":[[2220,3133,108,17]],"storm":[[2392,3139,57,13],[2520,4506,59,17],[2835,3840,59,16]],"(‘0le":[[2505,3140,53,11]],"1,]":[[1185,3150,20,22]],"n“,":[[1216,3155,31,17]],",,,m-..m..m":[[1261,3158,107,14]],"I];":[[1423,3156,21,16]],"l.l":[[1462,3162,20,10]],"\",4":[[1502,3156,20,16]],"lion,":[[1533,3156,45,19],[1161,3250,44,22]],"()i-t.":[[1590,3158,41,15]],",llifi'll":[[1647,3159,54,14]],"um»":[[1720,3160,47,10]],"footnote,":[[1828,3155,84,22]],"llivy":[[1988,3156,44,20]],"hobblrd":[[2055,3155,81,17]],"i‘":[[2158,3158,10,15]],"wt-utlierliad":[[2429,3158,128,27]],"turned":[[2568,3159,69,17]],"“t'l'c":[[1297,3185,48,11]],"llt'l‘l,":[[1443,3180,49,19]],"didnot":[[1552,3180,83,17]],"‘H'":[[2145,3181,21,28]],"rye-old,":[[2182,3181,77,22]],"got.":[[2422,3185,32,19]],"neither":[[2468,3182,78,17]],"rust.":[[2554,3185,39,14]],"nor":[[2602,3188,34,12]],"iine":[[1200,3208,34,11]],"engaged,":[[1243,3203,89,21]],"sulfur":[[1388,3203,57,16]],"lm":[[1512,3203,28,17]],"”L:":[[1753,3207,24,15]],"Iliu":[[1793,3202,31,17]],"Vicinity":[[1836,3202,81,23]],"l’oterdnirg.":[[1974,3203,118,20]],",.":[[2145,3214,2,11]],"Nlt‘t'll.":[[2156,3205,54,21]],"“‘lh":[[1238,3232,37,11]],"l’le‘illl'l":[[1458,3227,80,17]],"lelw.":[[1575,3227,62,17]],"inrn":[[1657,3230,41,11]],"nlt":[[1737,3226,29,15]],"“'inti-r":[[1784,3225,74,18]],"quart-H":[[1869,3228,88,20]],"rwt'thllll":[[2067,3227,67,16]],",'":[[2145,3229,2,24]],"tnll<}'l\\‘:lllill":[[1341,3250,125,22]],"soldiriu":[[1481,3251,78,17]],"\\ut-«l,":[[1574,3251,60,17]],"“Him.":[[1646,3251,62,19]],"resumed":[[1768,3250,84,17]],"usual":[[1902,3250,55,17]],"routine":[[1966,3253,74,14]],"usurp":[[2079,3255,55,17]],"lol'tlt‘l\";":[[2145,3253,75,15]],".SlllfillIXlI":[[781,3236,99,12]],"INt‘IllEV'l'i.":[[903,3236,117,14]],"unmissamu":[[2378,3254,115,17]],"south":[[2581,3254,55,17]],"mlwul":[[672,3384,69,16]],"thrmv":[[891,3385,59,16]],"down":[[959,3385,56,17]],"arms.":[[1082,3391,54,12]],"lililnhtltdlt'ly":[[738,3408,126,21]],"himulity-t-d.":[[941,3408,122,22]],"(ion.":[[1091,3411,45,16]],"\"ml,":[[702,3431,46,19]],"tins":[[821,3437,36,11]],"fool.":[[909,3432,43,18]],"it]!,'il'lr.t(‘llt:4l":[[972,3433,115,22]],"hi:":[[1024,3458,23,16]],"yo":[[1059,3463,23,16]],"bun-k":[[1092,3458,44,17]],"“mm.":[[570,3482,76,16]],"“lllllll":[[666,3479,66,16]],"liln":[[743,3479,28,16]],"own":[[779,3484,42,12]],"line-i.":[[831,3479,54,19]],"trill\":":[[896,3480,67,19]],"lit:":[[1072,3482,21,16]],"mu":[[1102,3487,36,12]],"ago":[[1159,3376,33,14]],"did":[[1200,3370,32,16],[2741,2810,34,17],[3093,3793,34,18]],"ol‘ilie":[[1288,3370,60,16]],"voting,":[[1356,3370,69,20]],"i'l)lllllll|l|tl":[[1475,3371,98,16]],"inti<t":[[1583,3373,52,14]],"r.~ln:l":[[1788,3371,49,17]],"li;:lit.":[[1860,3372,48,26]],"Sim-e":[[1936,3372,55,16]],"drsirtiv-":[[2050,3372,84,16]],"utimbcmd":[[1215,3393,103,17]],"well":[[1329,3393,40,17]],"beyond":[[1384,3394,74,21]],"All!”":[[1467,3394,35,16]],"thistlate.":[[1539,3394,95,17]],"lion":[[1657,3397,39,13]],"\\l'uldpn":[[1784,3394,78,21]],"ru‘ul":[[1876,3395,45,17]],"rnul":[[2067,3396,39,26]],"Winter":[[1184,3417,73,17],[2548,4813,75,18]],"quarters":[[1269,3419,87,20]],"built,":[[1488,3418,54,21]],"|":[[1645,3430,2,15],[1014,3654,3,10],[1531,4803,3,16]],"lJoiM-iiilier":[[1657,3418,100,16]],"rebels":[[1812,3418,61,18]],"brought":[[1928,3418,80,23],[2775,4108,81,21]],"supplies":[[2016,3419,85,23]],"'vn":[[2280,3378,26,10]],"First.":[[2430,3373,54,17],[2698,3599,51,17]],"wusinustly":[[2155,3395,116,22]],"covered":[[2286,3396,77,17],[3151,3493,78,17]],"timber":[[2444,3397,69,17]],"thick":[[2581,3397,53,18]],"brush.":[[2156,3418,61,17]],".tl":[[1001,3552,15,16]],"r.:pl":[[1024,3553,37,21]],"llullt‘y":[[761,3574,64,22]],"two;":[[837,3579,37,12]],"man":[[906,3580,43,11]],"pros":[[1044,3581,42,18]],"141-,":[[1103,3582,32,14]],"llmt":[[1032,3624,41,17]],"flood":[[1085,3626,51,16]],"ngeye":[[1028,3653,63,16]],"E’":[[2300,3616,27,28]],"—i?iF‘":[[2223,3642,205,85]],"tin-n":[[755,3815,42,16]],"nmunted":[[808,3815,89,17]],"ordered":[[1062,3816,77,17],[2051,4668,76,18],[2943,4397,77,17],[3145,4037,77,18]],"Snub":[[691,3863,48,17]],"wu~":[[750,3868,35,12]],"satiation":[[833,3865,91,15]],"Union":[[1007,3863,60,18]],"Him-tire":[[771,3887,85,17]],"ham":[[997,3887,46,18]],"friend":[[820,3911,59,17]],"for,":[[950,3912,34,20]],"01'":[[1120,3913,22,16]],"through,":[[811,3935,87,20]],"them":[[1087,3936,51,17],[2747,4179,51,17],[3066,4849,50,17]],"M'I‘l’t'":[[670,3965,45,10]],"iiilulu":[[725,3959,51,17]],"pnNMJPI’S.":[[787,3964,97,17]],"’l'bis":[[692,3984,45,16]],":iivldont":[[749,3984,82,16]],"trill":[[841,3983,39,18]],"serve":[[896,3989,51,13]],"show":[[984,3984,50,18]],"pecu-":[[1085,3990,54,16]],"vt.lli":[[670,4032,45,16]],"“In-h":[[729,4031,59,17]],"battle":[[851,4033,57,16]],"fought":[[978,4032,66,21]],".‘ilrii":[[751,4057,41,16]],"twin-":[[803,4062,47,11]],"unpttiml,":[[863,4057,94,21]],"before":[[1022,4057,61,17]],"lllt‘llii'lu“,":[[670,4104,111,17]],"\\\\l'ft'":[[790,4109,44,11]],"inntlo":[[844,4104,52,16]],"pi'lmiiris.":[[905,4104,96,21]],"lien.":[[1024,4106,45,15]],"(flaw-":[[1080,4105,60,16]],"fuid":[[670,4128,40,16]],"llllll":[[721,4128,37,16],[1386,4778,36,16]],"If":[[782,4128,15,16]],"out:":[[879,4132,34,11]],"tum.-":[[923,4131,44,12]],"III":[[978,4132,19,11],[778,4611,17,10]],"llillltl'i":[[1051,4128,58,16]],"(it":[[1121,4129,17,15]],"ustztpul":[[846,4151,74,21]],"sonic:":[[974,4156,51,12]],"sut-li":[[1038,4151,45,17]],":uiii":[[1096,4155,43,13]],"PRINCIPAL":[[1395,4156,163,24]],"FLOOR":[[1584,4158,98,24]],"PLAN":[[1708,4160,83,22]],"OF":[[1820,4162,39,22]],"explosion":[[1309,4186,102,23]],"plm't:":[[1477,4189,51,23]],"umlt-r":[[1543,4191,59,17]],"Ibo":[[1616,4191,30,17],[958,4394,30,16]],"Fupit-int:":[[1656,4193,90,21]],"t‘otirt":[[1755,4195,58,15]],"apartments.":[[1823,4196,122,20]],"sub-basement":[[2027,4195,139,18]],"old":[[2257,4197,30,17],[3447,4820,30,17]],"East":[[2425,4196,46,19]],"trout.":[[2479,4196,58,21]],"bays":[[1165,4233,44,21]],"hoped":[[1218,4233,60,21]],"quiet":[[1344,4235,53,21]],"time.":[[1407,4236,51,18]],"tliny":[[1593,4238,45,21]],"misutlu-ii.":[[1225,4257,99,18]],"I)“:":[[1395,4259,40,17]],"7":[[1447,4260,12,16]],"l’ifth":[[1516,4261,49,16]],"mid,":[[1417,4283,46,16]],"’l‘lm":[[1490,4284,39,16]],"obj":[[1544,4285,29,20]],"ltttl‘":[[1286,4307,40,14]],"tip":[[1336,4310,24,17],[2051,4720,26,17]],"mim-":[[1368,4311,49,11]],"inurr":[[1428,4311,50,12]],"(if":[[1487,4307,18,16]],"\\\\'tvhlmi":[[1560,4308,78,17]],"lo":[[1275,4330,19,14]],"t'rentendiwt":[[1307,4329,136,17]],"\\\\'lll\"ll":[[1503,4331,59,17]],"iniulil":[[1579,4332,60,17]],"litvor":[[1165,4350,52,17]],"('Hi,":[[1229,4352,46,17]],"lliillcr's":[[1292,4351,82,18]],"itgztuist":[[1510,4356,73,20]],"\\‘t'il-":[[1594,4355,45,18]],"iniiigtoii.":[[1166,4375,90,20]],"‘1.":[[1267,4376,22,16]],"(I.":[[1300,4377,20,16]],"Notawuy":[[1244,4399,90,22]],"River":[[1353,4399,55,18]],"rt-ztvln-d":[[1474,4402,76,16]],"eteni":[[1166,4422,52,16]],"g.":[[1234,4428,15,14]],"During":[[1277,4422,74,21]],"corps":[[1506,4431,52,15],[1807,4599,53,17]],"(-iom-d":[[1566,4427,72,16]],"titer":[[1208,4446,48,16]],"prrsard":[[1318,4447,73,21]],"louzu‘d":[[1438,4449,69,16]],"\\\\'t:blnn":[[1559,4449,78,17]],"road,":[[1168,4469,49,20],[2824,3265,51,19]],"l't'":[[1236,4475,18,11]],"in};":[[1291,4470,32,21]],"“lll'l’l‘.":[[1542,4472,60,17]],"crosses":[[1166,4497,68,12]],"Noluwuy":[[1300,4493,91,23]],"Riv":[[1409,4494,34,18]],"TIM:":[[1496,4495,39,18]],"\\mrk":[[1555,4497,50,17]],"drum":[[717,4224,64,16]],"t'ioin":[[791,4224,45,16]],"theiirbl.":[[847,4225,86,17]],"I‘uuiidour":[[1047,4225,96,17]],"ll:i~‘~":[[672,4247,46,15]],"lli'nlly":[[736,4248,60,21]],"t'VlHlill‘lll‘tl.":[[811,4248,118,16]],"prim":[[1015,4249,48,20]],"ol'tliu":[[1080,4249,63,17]],"'tmllmt,":[[672,4271,79,19]],"tlp-":[[764,4271,30,16]],"mud.":[[899,4272,48,17],[2296,4717,48,16]],"“(Ii":[[966,4277,37,11]],"llz'lll":[[1015,4272,43,16]],"I'm-m":[[674,4293,59,17]],"tux.":[[744,4295,33,15]],"lllt‘":[[870,4295,30,16],[2598,4364,31,17]],"Utmfmlvtdlt‘i":[[913,4295,132,16]],"m-u-":[[1055,4301,45,11]],"dr-":[[1113,4296,30,16]],"pinmi":[[674,4318,63,21]],"u:":[[747,4322,17,11]],"ultulllt'r":[[778,4319,77,16]],"llllpol‘ltllll":[[865,4322,101,18]],"supplies.":[[1055,4320,87,21]],"While":[[2179,4243,64,17]],"since":[[2335,4249,46,12]],"\\vns":[[2397,4250,37,11]],"progn‘ss":[[2485,4249,84,18]],"slanipcdrd":[[2153,4268,110,20]],"enriilry":[[2285,4268,75,21]],"Ayrts's":[[2490,4268,78,22]],"lllll‘,":[[2585,4268,43,22]],"throwing":[[2155,4290,94,20]],"'l‘liiitl":[[2308,4291,59,17]],"llrigzuln":[[2384,4291,79,21]],"(‘iiiil'tislt":[[2522,4292,78,16]],"'l‘ht-ilitisiun":[[2153,4313,130,18]],"moved":[[2298,4315,66,16],[2995,2909,66,16],[2833,3505,66,16]],"“illitiut":[[2418,4315,80,16]],"uniting":[[2514,4315,79,22]],"bri::idu":[[2201,4337,76,19]],"get":[[2321,4340,32,19]],"rightctl":[[2368,4338,74,22]],"\\\"llt'll":[[2551,4339,52,17]],"[no":[[2153,4367,29,10]],"lllllt:":[[2282,4362,51,17]],"later":[[2342,4363,47,16]],"got":[[2423,4366,32,17]],"lt":[[2153,4385,10,16]],"became":[[2255,4386,73,16]],"exi":[[2343,4391,31,16]],"(mil":[[2382,4386,41,16]],"think":[[2482,4386,52,17],[2651,4297,49,17],[2688,4561,49,16]],"tire.":[[2545,4387,37,17]],"bob":[[2152,4408,34,17]],"sown.":[[2221,4414,64,13]],"llll\\\\t'\\'t‘l‘,":[[2298,4409,90,21]],"nearly":[[2440,4410,64,20],[3260,3326,66,22]],"hours,":[[2566,4411,61,20]],"Illt‘ll":[[2261,4432,43,17]],"Withdrawn.":[[2323,4432,117,17]],"llesert‘os":[[2539,4434,88,18]],"Tough!“":[[1660,4450,89,21]],"loud.":[[1772,4451,51,18]],"Arulutl'l":[[1933,4453,78,18]],"lost":[[2151,4455,35,16]],"nine":[[2196,4456,45,16],[3266,3015,44,16]],"total":[[2459,4457,45,17]],"Ilt-luw'llie":[[1661,4474,101,17]],"confluence":[[1776,4475,106,19]],"lfult-lier's":[[1924,4476,100,19]],"Run":[[2038,4478,42,17],[2369,4694,42,17]],"brig":[[2151,4478,39,21]],"71.":[[2283,4480,27,16]],"tinttolly":[[1658,4497,87,23]],"lluit":[[1755,4499,44,18]],"stroziui":[[1860,4502,67,16]],"Ilmv-":[[2078,4502,48,18]],"7th":[[2432,4503,32,18]],":uity":[[1657,4524,45,19]],"Creek.":[[1712,4523,64,17]],"Dinwiddiet-m":[[1943,4524,148,19]],"rh-uml":[[2149,4526,71,17]],"ntmy":[[2239,4532,53,17]],"from-n.":[[2557,4530,68,18]],"(-ri-vk":[[1708,4546,53,17]],"Win.":[[1804,4547,48,18]],"I'erkiiil’s.":[[1867,4547,101,18]],"'l'liv~":[[1995,4549,39,17]],"i-i'm":[[2047,4555,43,11]],"liming":[[2151,4550,73,21]],"intention":[[2303,4552,87,16]],"Ill-serves":[[2470,4552,88,18]],"disputed":[[1711,4569,89,22]],"snirtll":[[1880,4571,54,18]],"lorevol'":[[1950,4573,78,16]],"H'llt'l":[[2038,4573,50,16]],"in-":[[2103,4574,26,16]],"llll'lihll":[[2151,4573,73,17]],"fut-ward":[[2245,4574,80,16]],"II.\"":[[2346,4579,20,11]],"rut-oniio..":[[2411,4580,98,12]],":unl":[[2589,4578,36,16],[822,4465,37,16]],"wagon-trout":[[1661,4240,120,19]],"llit-kstord":[[1794,4241,99,17]],"Pelt-ruining":[[1935,4242,114,22]],"way":[[2094,4248,40,16]],"lloydtou":[[1744,4263,86,21]],"plank":[[1846,4265,56,21],[3012,2980,58,22],[2754,3265,58,21],[3018,3506,58,21]],"rend.":[[1919,4265,48,17]],"Grant":[[2001,4267,60,16]],"deter-":[[2074,4266,60,17]],"ruinod":[[1660,4286,62,16]],"break":[[1761,4287,55,17]],"supply.":[[1986,4290,74,21]],"rat.":[[1730,4316,39,11]],"ry,":[[1786,4316,26,16]],"IIndt-rb‘rotm.":[[1824,4312,130,20]],"idly":[[1660,4332,39,21]],"Inwiddio":[[1755,4334,90,18]],"t‘ourtlintise.":[[1859,4335,122,17]],"hike":[[1688,4356,43,17]],"pmitiuu":[[1741,4359,81,20]],"linlf-tt'i":[[1832,4359,69,17]],"between":[[1932,4360,83,17]],"(":[[2024,4362,6,15]],"llatrlit‘r's":[[1661,4380,97,17]],"Ilun;":[[1769,4381,50,23]],"lluiup":[[1832,4382,65,23]],"eye,":[[1921,4388,37,17]],"dit":[[2075,4385,29,16]],"ions":[[1660,4404,39,16]],"III.":[[1739,4405,27,16]],"«fond":[[1804,4405,52,18]],"Ulrllfi,":[[1870,4408,63,21]],"trike":[[2032,4408,43,16]],"iu":[[2093,4414,14,11]],"tinii":[[1659,4427,38,16]],"latt":[[1756,4428,45,17]],"ier's":[[1812,4429,43,18]],"ltun":[[1873,4430,43,18]],"tit.":[[1932,4432,20,14]],"tho.":[[1968,4430,32,16]],"l‘l‘t":[[2016,4436,23,11]],"’I.\\":[[819,4361,24,13]],"l'\\":[[849,4362,10,11]],"l..\\'":[[865,4361,24,12]],"l‘lll~(l.‘~":[[905,4362,69,12]],"!:.:<":[[770,4394,36,15]],"Itlltl'":[[819,4394,49,16]],"l.i-:.iu":[[886,4394,56,17]],"lit'w'rl’\\1\"l":[[1004,4395,86,17]],"wow":[[1099,4401,47,12]],".tit":[[769,4419,32,14]],"l‘":[[820,4423,13,9]],"sbiiinhhci“.":[[847,4417,121,17]],"'l‘liey":[[996,4419,51,21]],"rrpiilv-vl":[[1061,4420,84,21]],".Hmm":[[799,4441,67,15]],"aim-1.":[[876,4442,61,15]],"tutlmut":[[946,4442,77,16]],"Illlll-":[[1099,4443,48,16]],"t'tllljt":[[676,4469,49,16]],"Mlpplhcil":[[869,4465,89,20]],"Iliut":[[968,4465,39,16]],"well,":[[1098,4467,46,19]],"\\.l:.l-":[[724,4489,46,14]],"I!":[[787,4491,11,12]],".ti:":[[843,4492,26,12]],"tliu~":[[993,4489,43,16]],"t-nuziuud":[[1045,4490,82,20]],"It‘lnl":[[679,4513,48,15]],"l'lit'":[[743,4513,37,15]],"n1":[[789,4515,16,13]],"butih-":[[818,4513,57,16]],"vui":[[892,4518,36,11]],"rlmzu:":[[942,4513,71,19]],"lllt‘lrchilllll'lloll":[[1099,4515,182,19]],"l)!":[[1291,4517,17,17]],"evening,":[[1450,4516,86,25]],"itnd":[[1546,4521,36,16]],"('(III’":[[1596,4526,43,12]],"Pliny":[[751,4536,52,20]],"ulll\"ll\\":[[898,4537,69,15]],"know‘tinurd":[[1093,4536,139,20]],"most.":[[1337,4543,48,15]],"Thou:":[[1577,4544,61,17]],"nuiinn:":[[679,4559,78,17]],"ul‘tll‘ll'tl":[[917,4560,76,16]],"‘Ill‘ll'llllel'.":[[1043,4562,102,16]],"“'llllt":[[1218,4564,53,16]],"lthc":[[1311,4564,47,17]],"night.":[[1367,4565,54,20]],"work,":[[1429,4566,57,19]],"lighted":[[1498,4567,70,20],[3313,3613,73,23]],"Nib.":[[678,4586,42,12]],"lime.”":[[750,4583,80,15]],"'ll~y'tl\\l‘lt'll":[[848,4584,105,15]],"t..u":[[964,4586,30,13]],"situation,":[[1004,4588,95,16]],"lmnli":[[1168,4586,48,17]],"sol~":[[1238,4588,38,16]],"ties,":[[1286,4590,40,20]],"will":[[1338,4588,37,17],[3228,3397,40,17],[3350,3519,38,16]],"not,":[[1387,4592,33,14]],"boon":[[1433,4595,44,11]],"for:":[[1487,4590,32,16]],"lilo-stir-":[[1539,4590,98,18]],"fiiiitry.":[[1657,4592,68,22]],"'l‘lu-":[[1752,4593,40,17]],"marlin-d":[[1869,4594,77,18]],"plui-t-":[[2006,4596,50,21]],"ulnul":[[2071,4597,55,17]],"eiictiiy":[[2331,4603,68,16]],"hud":[[2416,4598,38,18]],"tellrutl":[[2471,4600,69,18]],"\\nlhin":[[2559,4602,66,16]],"Mi":[[678,4611,21,10]],"mlul":[[722,4606,44,16]],"i-ln":[[838,4607,33,15]],"aptttte":[[909,4610,69,18]],".\\t':|ll_\\'":[[1012,4608,67,21]],"lint-r»":[[1090,4608,59,17]],"ring":[[1168,4610,41,21]],"mg":[[1283,4616,22,12]],"\"It‘ll":[[1364,4617,42,12]],"whirled":[[1419,4613,78,17]],"ls.nnl":[[1576,4614,61,18]],"n.":[[1691,4621,16,11],[2927,4782,16,11]],"“L,":[[1723,4621,32,16]],"niitlifound":[[1765,4615,105,23]],"rut'nlry":[[1948,4619,74,22]],"skirmish-":[[2031,4620,98,17]],"Iing":[[1646,4639,42,23]],"“'llll":[[1705,4640,46,17]],"tliemuemy,":[[1770,4640,119,25]],"'uiiithlt:":[[1950,4640,73,19]],"drin:":[[2076,4644,53,17]],"tln-m":[[1657,4663,50,17]],"Thin!":[[1850,4666,56,17]],"llriizude":[[1918,4666,79,21]],"iin-aunl":[[1658,4687,77,17]],":u-minplish":[[1772,4689,112,22]],"thu":[[1897,4690,32,17]],"task.":[[1939,4691,47,16]],"“curves.":[[1729,4711,92,20]],"unlit-r":[[1838,4714,58,16]],"rilllL‘l‘,":[[1910,4713,70,22]],"Cllllll'":[[1991,4719,50,13]],"double-uni":[[1656,4734,109,22]],"itud":[[1810,4736,37,18]],"trlicn":[[1861,4738,54,16]],"iiliuut":[[1928,4737,58,17]],"opposili-":[[2000,4740,84,20]],"tlii:":[[2097,4739,31,17]],"l't‘lklll.‘":[[1657,4758,77,16]],"\":3;":[[1807,4765,33,15]],"“rt-n:":[[1849,4766,46,11]],"ot‘tlt'rvll":[[1904,4760,77,18]],"tilt-":[[2034,4763,30,16]],"il:lil,":[[2076,4762,49,20]],"unil":[[1656,4781,36,16],[2810,2931,38,16]],"thpluy":[[1706,4782,67,21]],"iruiidit-rs.":[[1811,4783,97,18]],"As":[[1937,4785,25,16]],"di-pluyctl":[[2035,4786,92,21]],"lllL‘_":[[1656,4804,36,22]],".tlw":[[1708,4805,38,17]],"lsgnii":[[1755,4806,58,21]],"udt‘uiit-o,":[[1859,4808,88,20]],"lllllt‘":[[2083,4813,44,14]],"rcnrol‘":[[1695,4830,71,16]],"cumin":[[1821,4836,58,12]],"id":[[1901,4832,18,16]],"left":[[1987,4832,34,17],[922,4772,30,16],[2893,4014,34,17],[3084,4587,34,17]],"worn":[[1783,4859,47,12]],"ill-lust":[[1958,4861,60,11]],"lirltl":[[2084,4857,41,17]],"tlit-ir":[[2149,4620,48,17]],"lines,":[[2214,4620,53,23]],"leaving":[[2286,4621,75,22],[1221,4870,75,23]],"thin":[[2468,4623,42,18]],"skilllllrll-":[[2527,4624,98,17]],"line.":[[2148,4644,43,17]],"l‘niun":[[2228,4668,60,17]],"iiitrvncliments":[[2307,4669,149,19]],"rx-":[[2594,4678,31,11]],"tondtrd":[[2148,4692,66,16]],"Iliitrhr":[[2257,4692,70,17]],"'5":[[2340,4694,14,16]],"\"int:":[[2548,4696,45,19]],"ilir":[[2150,4716,30,15]],"\\'.iug|u~n":[[2192,4716,89,20]],"rot-null":[[2426,4719,71,16]],"t'oi":[[2514,4721,32,14]],"‘lllt'ltl":[[2563,4720,60,16]],"”10":[[2150,4739,30,16]],"Mt":[[2192,4739,31,16]],"llto":[[2265,4740,31,16]],"line,":[[2306,4740,43,22],[2841,3575,43,21]],"l‘il'tli":[[2458,4743,50,16]],"t,":[[2518,4743,9,16]],"rp-i":[[2547,4748,30,16]],"nuts":[[2149,4768,38,10]],"'tl":[[2203,4763,15,15]],"lllc":[[2260,4763,31,17]],"fl'tll'":[[2301,4769,39,11]],"ot'":[[2352,4765,23,15]],"Illt‘":[[2386,4765,30,16]],"lrt'i":[[2426,4766,32,16]],"'tlillll.":[[2564,4767,57,18]],"lirllhg":[[2225,4786,65,21]],"lrft.":[[2340,4787,34,17]],"army,":[[2459,4795,59,15]],"llll‘":[[2593,4791,30,16]],"third":[[2148,4810,49,17]],"lime":[[2209,4813,45,14]],"HULL-m“":[[2310,4816,65,13]],"built":[[2482,4813,50,17],[1168,4705,49,16]],"quartets.":[[2146,4837,90,18]],"'l'lii:":[[2171,4857,39,16]],"1.271]:":[[2226,4858,53,16]],"I‘it.":[[2297,4858,29,18]],"tum":[[2339,4864,39,12],[678,4629,39,16]],"added":[[2388,4859,61,17]],"(‘ol.":[[2490,4860,38,16]],"Patton‘s":[[2539,4860,82,17]],"_\\":[[864,4635,7,15]],"mid":[[678,4653,36,16]],"\\‘tt‘lt‘":[[733,4658,44,11]],"turd:-":[[793,4653,53,16]],"lut’":[[679,4679,37,14]],"\\‘n":[[680,4705,20,10]],"rd":[[916,4631,22,15]],"It)":[[955,4634,19,12],[2751,3966,22,16]],")ilutilztlilp,":[[1039,4632,106,19]],"IIII-tillt‘l'i,":[[862,4658,95,17]],"(1m.-":[[984,4656,40,16]],"uilit-ln":[[1037,4655,58,17]],"'l":[[860,4678,9,9],[2738,2954,10,16]],"um-":[[910,4683,34,10]],"lililt‘l'l’":[[954,4678,61,16]],"IT":[[1075,4680,20,16]],"ll‘<":[[860,4707,27,9]],".lti":[[896,4706,21,11]],".“rlll":[[942,4702,32,16]],"moi.":[[988,4707,41,11]],"“ch":[[1041,4707,45,12]],"till»-":[[1096,4703,51,16]],"“vie":[[894,4730,45,11]],"cuplutcd":[[952,4725,89,22]],"ill-l":[[1056,4727,32,16]],"died":[[1103,4727,43,17]],"attached":[[1166,4634,86,17]],"tit-s":[[1270,4634,36,17]],"oter":[[1322,4640,43,12]],"road-ltd":[[1493,4638,86,16]],"“llli":[[1590,4639,46,16]],"Nlmut":[[1167,4656,53,18]],"ringing":[[1276,4658,75,22]],"cheer,":[[1359,4659,59,23]],"lllt'tl":[[1482,4660,43,18]],"wru-nelml":[[1540,4662,96,17]],"rails":[[1214,4682,44,16]],"apart":[[1270,4684,54,20]],"lies":[[1389,4684,35,17]],"tlu:":[[1496,4685,31,16]],"mils,":[[1540,4686,48,20]],"great":[[1231,4708,52,18],[3090,2672,52,20]],"tires":[[1296,4706,42,16]],"tips.":[[1383,4707,40,18]],"\\\\lll(‘ll":[[1475,4708,58,17]],"”II“":[[1594,4711,43,16]],"wore":[[1168,4733,46,12]],"llt‘fllt‘ll":[[1224,4728,65,18]],"mined":[[1345,4730,64,17]],"l'ul":[[1457,4732,27,16]],"Toward":[[1190,4752,77,17]],"nicn":[[1168,4780,40,12]],"gut":[[1217,4779,32,17]],"snt-li":[[1263,4777,45,16]],"slot-p":[[1322,4777,52,22]],"re.":[[1441,4784,22,11]],"{H":[[1493,4784,21,11]],"tln-v":[[1528,4780,36,21]],"(‘lllll":[[1262,4799,45,17]],"net":[[1485,4806,34,14]],"Early":[[1191,4823,55,22]],"Wth":[[1559,4832,36,12]],"sumed":[[1165,4846,65,18]],"uiiil":[[1244,4847,37,17]],"coutinuvd":[[1295,4848,101,16]],"day.":[[1439,4849,43,21]],"oveu~":[[1581,4856,55,11]],"t-uiild":[[1581,4781,54,16]],".‘Im":[[773,4773,34,13]],"noun-«:1-":[[817,4776,94,12]],"tbi'":[[1020,4772,36,17]],".,.":[[799,4801,26,9]],"it»":[[873,4802,30,9]],".upul":[[916,4797,45,19]],"urn-1'":[[974,4799,69,13]],"lilllwl":[[799,4820,61,20]],"Lit-iii,":[[887,4820,57,17]],"l'vzu-ot":[[957,4821,62,16]],"k":[[1027,4821,10,16]],"Adj'l":[[1093,4822,53,20]],".lu.":[[720,4841,37,19]],"ihv":[[815,4843,31,15]],"limb;":[[867,4844,60,21]],"t'upi.":[[948,4845,54,21]],"Norton":[[1022,4845,70,16]],"himin":[[2666,2396,69,17]],"500":[[2860,2398,36,17]],"acted.":[[2663,2444,57,18]],"together":[[2728,2444,86,22]],"regimental":[[2870,2445,116,23]],"unit.":[[2994,2446,49,18]],"YISAL":[[2830,2474,69,17]],"CAXPAIGN.":[[2911,2476,121,16]],"corn!":[[2664,2529,54,17]],"oroased":[[2726,2525,72,17]],"llowanty":[[2808,2525,94,22]],"Creek":[[2908,2526,61,17]],"Monk’s":[[3008,2526,77,18]],"Neck":[[3091,2527,53,18]],"Bridge.":[[2666,2548,72,19]],"scene":[[2787,2553,55,13]],"sharp":[[2919,2550,57,22]],"skirmishvvhioli":[[2981,2550,161,19]],"Reserves":[[2706,2572,88,17],[3041,3530,90,17],[2998,3769,90,18],[3034,3968,90,19]],"5.":[[2915,2574,17,16]],"Again":[[2959,2574,63,21]],"llri":[[2664,2595,31,17]],"tile":[[2716,2595,29,17]],"atlvanee.":[[2866,2597,89,18]],"210th":[[3038,2598,56,17],[3000,2718,57,16]],"I‘n.":[[3110,2599,31,17]],"wusdi-ployed":[[2663,2619,139,22]],"Skirmislit‘r‘,":[[2852,2620,126,21]],"Ite~":[[3107,2622,36,18]],"serves":[[2662,2648,62,11]],"Wale":[[2734,2648,47,12]],"put":[[2794,2646,35,19],[3428,3857,37,19]],"line—of—hattle.":[[2869,2644,140,18]],"gave":[[3095,2651,48,15]],"ocmsion":[[2792,2668,85,18]],"exercise":[[2935,2669,82,18]],"American":[[2663,2692,99,16]],"privilege":[[2780,2692,92,22]],"tinding":[[2928,2694,75,21]],"fault.":[[3020,2694,54,17]],"watched":[[2718,2715,86,17]],"deployed":[[2661,2738,93,22],[3007,3100,93,21],[2784,3193,92,22],[2706,3550,91,22]],"skirin’":[[2831,2739,67,18]],"dine":[[2923,2740,47,18]],"deliberate":[[3036,2741,105,18]],"(-xnrtiwu,":[[2661,2766,101,16]],"critit-i/etl":[[2839,2764,95,17]],"move":[[3027,2770,54,13]],"grumbled":[[2661,2786,99,20]],"heart’s":[[2895,2788,70,17]],"tontent.":[[2990,2791,83,15]],"t'nt'my":[[2660,2815,68,17]],"dispute":[[2836,2811,76,23]],"crossing":[[2976,2813,82,23]],"-k":[[2699,2835,16,16]],"'bv":[[2697,2859,27,16]],"mnrr'h":[[2808,2859,63,17]],"Feb":[[2661,2881,38,18]],"rearhing":[[2821,2883,89,21]],"Quaker":[[2958,2885,77,20]],"mail":[[3048,2885,44,17]],"Set-rind":[[2659,2906,71,16]],"Divi":[[2881,2908,44,16]],"ns":[[2956,2913,21,11]],"distance":[[2717,2929,84,18],[3240,3943,86,17]],"formed":[[2856,2931,69,16],[2979,3075,73,18]],"line-of-battle":[[2934,2931,134,18]],"facing:":[[3076,2933,61,21]],"nest.":[[2660,2955,50,15]],"First":[[2800,2954,50,17],[3581,2946,52,17]],"Illti~ioii":[[2871,2955,86,16]],"passed":[[2979,2956,65,21]],"further":[[2714,2977,70,18],[3030,3386,70,18]],"Roytlton":[[2917,2978,86,23]],"road.":[[3082,2980,50,19],[2760,3289,49,18],[2778,3432,48,18]],"4":[[2779,3003,11,16],[2713,3718,10,16]],"encountered":[[2876,3004,127,16]],"drove":[[2704,3026,56,17]],"back":[[2820,3026,48,17],[3087,3124,46,18]],"crow":[[3065,3033,69,13]],"llalt-her‘s":[[2660,3049,100,17]],"Itiiii.":[[2771,3050,46,17]],"tln:":[[2759,3073,31,17]],"Semnd":[[2798,3074,71,17]],"Division":[[2884,3074,86,18]],"line-of-":[[3062,3076,72,17]],"lmlllc":[[2659,3096,59,18]],":limh":[[2776,3098,57,16]],"l‘u.":[[2845,3098,29,17]],"nlilrllll<llt‘l'?‘,":[[2658,3120,125,21]],"tiring:":[[2959,3123,57,21]],"sent":[[3030,3126,41,15]],"pri~oner.":[[2709,3145,89,22]],"Sign":[[3057,3149,41,19]],"I‘t’heln":[[2658,3169,60,16]],"viv-":[[2802,3170,29,16]],"iity":[[2847,3170,36,21]],"29th.":[[2969,3172,51,16]],"Ke-":[[3096,3172,34,17]],"rit'lHJS":[[2656,3198,63,11]],"later,":[[2890,3194,53,22]],"remained":[[3006,3195,95,18]],"skirmish-line":[[2657,3216,138,18]],"inoming.":[[2846,3217,91,22]],"lelt":[[2730,3241,33,16]],"extended":[[2970,3242,94,18],[2721,3670,93,17]],"llt'iydton":[[2658,3264,85,22]],"let}":[[2927,3266,34,17]],"Luriflin":[[3004,3267,68,17]],"hold-":[[3081,3267,53,17]],"ing;":[[2657,3289,33,19]],"joining":[[2923,3290,78,22],[2892,3575,76,24]],"Second":[[3059,3292,71,17]],"Corps":[[2657,3314,59,20]],"(.‘row":[[2818,3314,55,16]],"llonse,":[[2883,3314,68,21]],"Crawford":[[2962,3315,94,17]],"mud,":[[2657,3337,49,21]],"thus":[[2717,3336,45,17],[3010,4111,44,18]],"covering":[[2770,3337,88,21]],"let:":[[2910,3337,35,17]],"flunk,":[[2957,3338,59,20]],"Ayres":[[3071,3340,62,21],[2719,3504,58,20]],"reserve.":[[2686,3365,76,12]],"object":[[2837,3361,60,21]],"subsequent":[[2939,3362,117,22]],"move-":[[3068,3368,62,12]],"ments":[[2656,3386,61,14],[2665,2422,63,15]],"extend":[[2804,3385,71,16],[2681,3527,69,16]],"position":[[2934,3386,82,21],[2975,3410,84,22],[3041,4255,81,21]],"loft,":[[2701,3407,38,20]],"llziuk":[[2800,3408,52,17]],"30th,":[[2890,3457,50,20]],"Grifliu":[[3016,3458,68,18]],"putting":[[2654,3480,77,20]],"lines":[[2786,3479,49,18]],"proper":[[2880,3486,67,17]],"shape":[[2958,3481,59,22]],"along":[[3031,3482,57,22],[2854,3624,55,21]],"lilies":[[2802,3527,48,17]],"left.":[[2927,3528,38,18],[3088,4279,34,17]],"'lhe":[[2992,3529,40,18],[3435,2968,39,18]],"skirmislieis.":[[2835,3551,124,20]],"pressed":[[3012,3553,73,22]],"for-":[[3093,3553,37,18]],"ward":[[2653,3574,50,17]],"pickets":[[3030,3577,73,23]],"‘sion":[[2803,3599,46,17]],"facing":[[3066,3602,63,22],[3062,4112,63,23]],"pos":[[2764,3628,32,17]],"ion":[[2815,3623,30,17]],"distance.":[[2700,3647,84,17]],"half":[[2901,3648,42,17]],"quarter":[[3000,3651,78,20]],"mile,":[[2652,3670,51,21]],"almost.":[[2843,3672,69,16]],"“'m.":[[2966,3672,48,18]],"Dnbney's.":[[3026,3673,101,23]],"llura":[[2653,3693,48,17]],"tlir-y":[[2709,3694,45,22]],"threw":[[2764,3694,59,17]],"skirmish'pits.":[[2867,3695,141,23]],"\\Vilcox’s":[[2800,3718,91,18]],"(‘onfedemte":[[2905,3719,123,18]],"division":[[3044,3720,84,19]],"made":[[2651,3741,53,18],[2860,4206,55,17]],"attack":[[2755,3741,64,19],[2745,4061,62,17],[3059,4232,63,16]],"(lrifiiu‘s":[[2871,3742,82,19]],"easily":[[2649,3766,60,21]],"repulsed.":[[2717,3766,91,22]],"front":[[2869,3767,51,18],[2949,4467,47,17],[3285,2370,50,17],[3380,3944,50,17],[3144,4133,47,17]],"ittt'rcas'ed":[[2760,3790,94,18]],"somewhat,":[[2869,3791,109,23]],"advance.":[[2691,3813,87,18]],"heavy":[[2704,3836,60,23]],"min":[[2780,3838,40,17]],"began":[[2910,3839,59,22]],"29th,":[[3073,3841,51,22]],"routinued":[[2720,3862,100,17]],"30th.":[[3073,3865,50,18]],"rendering":[[2650,3884,99,22]],"nlinost.":[[2879,3886,68,19]],"impsmble,":[[2961,3887,116,24]],"adding":[[2649,3908,71,23]],"greatly":[[2728,3910,75,22]],"discomfort":[[2881,3911,109,18]],"ofnll.":[[3002,3912,58,18]],"TIUXIT":[[2843,3942,64,14]],"PLACE.":[[2920,3943,74,14]],"About":[[2674,3965,64,17]],"fllst":[[2933,3968,41,16]],"wort-":[[2650,3994,48,11]],"relieved":[[2707,3989,81,17],[2651,4178,81,17]],"Division.":[[3032,3992,91,21]],"muted":[[2696,4013,66,17]],"tow:":[[2772,4016,42,14]],"rejoin":[[2967,4015,60,22]],"bri-":[[3088,4017,38,17]],"gade.":[[2649,4036,53,22]],"lleibrct":[[2731,4037,75,17]],"swasnreoniplisht-d":[[2830,4039,197,23]],"flunk":[[3073,4040,51,19]],"I'I'Hl'":[[2698,4066,39,11]],"be”":[[2817,4062,35,22]],"(lol.":[[2909,4063,38,17]],"I’nltee":[[2957,4064,65,17]],"promptly":[[3029,4066,95,22]],"grasped":[[2650,4085,78,20]],"situation.":[[2786,4085,97,18]],"He":[[2912,4087,29,17]],"halted":[[2953,4087,65,18]],"coni-":[[3076,4094,48,12]],"maud":[[2651,4107,57,17]],"front,":[[2942,4111,56,21]],"pirkctpits":[[2780,4133,111,22]],"past":[[2756,4158,41,19]],"hours.":[[2845,4157,60,18]],"unable":[[2870,4181,67,17]],"Withstand":[[2974,4183,102,17]],"Millth":[[2650,4202,64,18]],"being":[[2789,4203,58,24]],"byn":[[2928,4206,45,21]],"works.":[[2751,4228,65,17]],"Slll‘t‘tsi":[[2895,4234,71,13]],"render":[[2720,4252,66,16]],"still":[[2793,4252,40,16]],"desperate":[[2899,4253,97,22]],"di":[[2764,4276,19,16]],"'isious":[[2793,4276,63,17]],"assailed":[[2918,4277,81,17]],"\"‘1\".":[[2757,4304,43,12]],"Waiting":[[2674,4321,84,22]],"fetv":[[2790,4323,35,17]],"moments,":[[2835,4326,95,18]],"whiln":[[2942,4324,56,19]],"putlrrvtl":[[2650,4346,83,21]],"like":[[2748,4347,38,17]],"hail-stones":[[2795,4347,108,18]],"shells":[[2957,4348,59,19]],"lulu-l":[[2650,4370,48,17]],"artillery":[[2722,4371,85,22]],"Sl'l't‘et‘llt‘l‘":[[2835,4373,96,16]],"bellowed":[[3030,4374,90,17]],"brush,":[[2790,4396,63,19]],"l'illll‘l‘":[[2867,4396,63,16]],"(It-ploy.":[[2677,4418,75,22]],"suiiit-":[[2854,4424,50,12]],"mlt‘nut't‘ul":[[3026,4421,94,17]],"“PHI.":[[2703,4445,49,13]],"“ork,":[[2806,4443,56,16]],"'l‘ln‘y":[[2889,4443,51,21]],"seized":[[2956,4444,62,17]],":Ilt>ll;1|ltll'l":[[2647,4465,107,22]],"l'":[[2776,4466,8,16]],"liut‘.":[[2841,4467,44,18]],"t-nsily":[[2647,4489,59,21]],"t'llt‘t'":[[2723,4489,43,16]],"(I":[[2792,4489,11,17]],"ntlvntt-":[[2869,4490,66,17]],"t'":[[2942,4497,9,10]],"enemy,":[[3046,4497,72,17]],"lrft":[[2781,4514,31,17]],"piLs":[[2865,4515,37,21]],"once":[[2938,4521,45,11]],"bet-(Irma":[[2993,4516,74,17]],"use-":[[3081,4522,39,11]],"less":[[2647,4536,36,17]],"lwi-miw":[[2692,4538,76,16]],"thl\\1ILl|‘L'":[[2853,4540,82,16]],"rear.":[[2794,4567,44,12]],"r‘onn":[[2669,4585,48,16]],"rulin-":[[2768,4589,59,13]],"llll'lll‘tl":[[2931,4587,69,17]],"lint-Lwnril":[[2646,4607,98,18]],":In‘":[[2757,4615,20,10]],"thry":[[2792,4609,44,22]],"fut-ed":[[2846,4610,51,17]],"foe.":[[2947,4610,33,17]],"finally":[[2646,4631,64,22]],"form-d":[[2727,4632,59,17]],"shnptl":[[2903,4634,56,21]],"nxbuw,":[[3042,4634,72,20]],"einmv":[[2693,4661,66,12]],"t‘ltln‘lllfl":[[2776,4656,72,21]],"sides":[[2973,4657,51,18]],"exrepta":[[3031,4660,87,21]],"ipniutnt-Iy":[[2682,4681,105,21]],"{'1":[[2820,4687,21,10]],"\\Iflu’ll":[[2882,4687,53,16]],"ltr\\\\'.l|’tl":[[2944,4683,72,16]],"tour,":[[3070,4688,45,11]],"angles":[[2907,4705,62,18]],"\"III":[[3037,4706,31,17]],"[inc":[[3079,4707,37,16]],"lir>l":[[2727,4728,35,16]],"Through":[[2851,4729,87,18]],"tln-y":[[2996,4729,43,22]],"linatlly‘":[[3049,4730,65,21]],"iiiiulo":[[2644,4751,54,16]],"vt":[[2781,4757,12,11]],"coiiziiiiicd":[[2890,4753,102,16]],"lonlest":[[3046,4757,71,14]],"\\\\lll|":[[2644,4775,45,16]],"rt-nrwul":[[2700,4775,83,16]],"tlt‘ll‘rllllllllll":[[2791,4776,122,17]],"'1']:":[[2666,4798,28,16]],"l‘t‘flt'llt‘tl":[[2844,4800,75,16]],"“hire":[[3016,4800,60,18]],"rk‘lll'ls":[[2643,4822,60,17]],"higher":[[2994,4825,64,21]],"tlinu":[[3072,4826,44,16]],"Lust.":[[678,4865,59,17]],"blaster,":[[747,4866,65,22]],"lulst.":[[894,4867,56,18]],"Lieut.":[[976,4867,63,18]],"Steele,":[[1050,4868,66,23]],"ol‘":[[1127,4868,22,18]],"everything":[[1312,4871,112,23]],"anus":[[1488,4877,51,14]],"ac-":[[1606,4879,29,12]],"tou'nnl":[[1655,4876,71,16]],"Tin-y":[[1860,4879,51,21]],"'prctudto":[[1937,4879,96,21]],"“rush”":[[2043,4880,83,17]],"March,":[[2475,4883,72,23]],"giving":[[2556,4884,67,23]],"\\\\lIi('ll":[[2706,4846,59,16]],"occupied.":[[2851,4848,94,21]],"Behind":[[2973,4848,73,17]],"frag-":[[3096,2398,51,23]],"never":[[2797,2426,58,13]],"actually":[[2869,2421,84,23]],"consolidated,":[[2961,2422,137,23]],"March":[[2689,2499,65,18]],"Wliegan":[[2763,2500,93,21]],"final":[[2913,2501,44,17]],"campaign.":[[2972,2502,106,23]],"marble":[[3238,4724,70,16],[3293,2872,72,17],[3292,2919,70,17],[3197,3182,71,17]],"Win":[[3319,4724,41,16],[3300,4581,42,17]],"east":[[3237,2371,39,15]],"rushed":[[3344,2371,82,17]],"most":[[3436,2374,49,15]],"a!":[[3492,2371,21,18]],"embol-":[[3567,2373,73,19]],"lisliuient":[[3167,2392,89,18]],"earlier":[[3350,2394,68,17]],"construction":[[3431,2397,127,17]],"Cnpitol.":[[3165,2416,79,22]],"(ventral":[[3323,2418,70,17]],"portit‘o":[[3406,2419,72,21]],"main":[[3206,2440,52,17],[3524,3946,51,17]],"entrance,":[[3265,2443,95,20]],"2:!":[[3459,2443,22,17]],"ponderonl":[[3490,2444,104,21]],"eul—":[[3601,2445,39,18]],"man:":[[3166,2468,57,13]],"mndstoue,":[[3257,2464,107,21]],"mum":[[3426,2468,99,21]],"single":[[3576,2468,66,22]],"stone,":[[3166,2489,59,20]],"301‘ch":[[3281,2489,69,17]],"high.":[[3358,2489,52,23]],"0n":[[3436,2491,31,16]],"tympnnuin":[[3524,2493,116,21]],"portion":[[3248,2512,72,23],[3263,3087,72,20]],"design":[[3388,2513,67,20]],"drawn":[[3467,2514,66,19]],"John":[[3585,2516,54,19]],"Quincy":[[3164,2536,75,22]],"Adams":[[3247,2537,72,16]],"turret]":[[3382,2539,66,16]],"Persim.":[[3493,2540,77,19]],"dis-":[[3600,2541,40,17]],"tinguished":[[3164,2560,108,22]],"llomzin":[[3289,2561,71,17]],"sculptor.":[[3382,2562,88,22]],"represents":[[3533,2566,106,20]],"America,":[[3163,2584,90,19]],"shield":[[3350,2585,59,17],[3162,2607,60,17]],"spear.":[[3476,2592,57,17]],"letters":[[3329,2609,63,16]],"L'.":[[3426,2609,20,17]],"S.":[[3458,2611,17,16]],"A.,\"":[[3488,2611,45,21]],"rests":[[3589,2614,49,16],[3147,3734,48,16]],"low":[[3225,2631,36,17]],"nlmr,":[[3269,2632,54,19]],"demmiel":[[3334,2632,96,18]],"wreath":[[3532,2635,71,17]],"oak":[[3161,2655,34,16]],"leaves":[[3209,2655,60,17]],"date.":[[3384,2657,48,17]],"\"July":[[3453,2657,64,23]],"4.":[[3533,2659,15,19],[3218,4701,16,16]],"1776.”":[[3565,2659,70,18]],"Airn":[[3313,2681,38,16]],"-'i":[[3376,2686,19,9]],"large":[[3466,2682,48,21]],"l‘iffl\"":[[3530,2683,51,18]],"tignres":[[3163,2703,68,20]],"Justice":[[3266,2704,74,17]],"Hope,":[[3397,2705,57,22]],"fine":[[3482,2706,45,17]],"statues":[[3535,2709,73,15]],"War":[[3161,2726,45,18]],"I'ence":[[3262,2728,56,17]],"stand":[[3333,2729,54,16],[3343,3088,54,15]],"either":[[3438,2729,63,17]],"ninin":[[3160,2751,52,16]],"Quinn":[[3228,2754,59,14]],"'0":[[3430,2759,16,10]],"thnr":[[3462,2754,46,16]],"basso-":[[3573,2755,62,17]],"relievo":[[3160,2775,69,17]],"crowned":[[3469,2778,85,17],[3147,3804,87,17]],"lnurol":[[3159,2798,59,17]],"nreatn":[[3229,2802,69,14]],"z":[[3407,2807,3,9]],"i'eztee.":[[3457,2802,60,17]],"{mid":[[3191,2822,51,18]],"Sfl'p“":[[3328,2826,50,20]],"dunked":[[3395,2824,76,18]],"burn-em":[[3530,2826,105,19]],"mound":[[3158,2848,67,16],[2883,4882,71,24]],"portn'o.":[[3305,2851,76,18]],"Un":[[3408,2851,28,14]],"but-":[[3588,2851,44,17]],"tresies":[[3158,2872,65,15]],"group":[[3381,2877,60,17],[3370,2925,60,16]],"representing":[[3459,2875,127,20]],"“":[[3159,2895,12,6],[3393,3450,10,4]],"l)l.~(0\\'t‘l’_v":[[3179,2894,98,22]],"_~\\ttlel’l!'":[[3327,2896,73,16]],"opposite":[[3547,2899,87,21]],"buttress":[[3157,2918,82,17]],"bv":[[3438,2920,26,18]],"Horatio":[[3475,2921,78,17]],"Green-":[[3561,2924,71,15]],"ough,":[[3155,2942,56,21]],"”presuming":[[3221,2943,129,20]],"'iriliy":[[3387,2944,56,16]],"on.":[[3472,2950,29,12]],"ur":[[3510,2951,21,11]],"Seitlemuiitut'":[[3155,2966,137,18]],"Amt-rim,”":[[3302,2967,107,18]],"nininentruuco":[[3483,2969,147,19]],"closed":[[3186,2990,61,17]],"superb":[[3322,2992,69,21]],"bronze":[[3406,2992,68,18],[3256,3206,67,17]],"door":[[3491,2993,45,17]],"19":[[3553,2995,21,16]],"feet":[[3591,2994,41,18],[3326,3015,37,17],[3346,3565,36,17],[3549,3567,37,18],[3148,3708,36,17],[3142,4414,36,17]],"high":[[3156,3014,44,22],[3396,3566,45,21]],"wide,":[[3373,3015,53,19]],"(twinned":[[3438,3016,89,20]],"Rank":[[3581,3018,51,17]],"dolpli":[[3155,3038,58,22]],"Rogers.":[[3223,3038,74,22]],"('UVert'Ll":[[3354,3040,76,16]],"panels":[[3497,3041,64,22]],"repti-":[[3570,3047,62,17]],"senting:":[[3155,3062,75,21]],"St‘enth":[[3237,3067,65,12]],"life":[[3382,3064,30,16]],"ui‘t‘nlninhnv.":[[3421,3065,135,17]],"I'reaiilvnrs":[[3451,3088,105,18]],"['nited":[[3156,3109,71,17]],"when":[[3322,3110,54,17]],"take":[[3448,3112,44,17]],"oath":[[3551,3114,44,17]],"oilice.":[[3154,3133,57,18]],"Home":[[3369,3159,63,18]],"Wings":[[3441,3160,67,22],[3386,4485,66,21]],"portieoes.":[[3275,3186,95,18]],"embellished":[[3377,3184,122,18]],"stately":[[3557,3186,73,22]],"columns,":[[3153,3205,91,21]],"doors.":[[3338,3207,59,18]],"groups":[[3509,3214,69,18]],"reliefs,":[[3154,3229,68,22]],"executed":[[3232,3230,92,17]],"byemitient":[[3332,3230,115,22]],"sculptors.":[[3457,3233,97,21]],"Over":[[3176,3253,50,17]],"I'L-(‘s‘":[[3269,3259,45,11]],"magnificent":[[3368,3259,123,14],[3188,4276,122,21]],"dome":[[3503,3257,54,17],[3455,3472,55,17]],"whit'h":[[3244,3277,62,18]],"equal":[[3393,3279,56,22]],"world":[[3530,3281,57,18]],".~ic":[[3186,3302,31,17]],"heauiv.":[[3226,3302,76,18]],"Eight":[[3331,3303,57,21]],"years":[[3395,3309,55,16]],"required":[[3513,3306,86,21]],"build":[[3153,3325,54,17]],"it,":[[3221,3326,22,20]],"4,000":[[3340,3327,54,21]],"tons":[[3407,3331,43,13]],"iron.":[[3500,3329,45,18]],"cost":[[3152,3351,37,15],[3309,3760,39,14]],"$1,250.1NJO.":[[3197,3349,115,20]],"So":[[3339,3351,24,16]],"carefully":[[3371,3351,91,23],[3374,3422,93,23]],"thoroughly":[[3512,3353,117,23]],"done":[[3318,3374,48,17]],"believed":[[3541,3377,86,18],[3175,3517,83,17]],"need":[[3336,3398,46,17]],"n-pairs.":[[3398,3399,75,21]],"c":[[3546,3406,10,11]],"temperature":[[3182,3423,128,21]],"calculated":[[3476,3424,102,18]],"and.":[[3587,3425,40,18]],"whole":[[3192,3446,61,16]],"mass":[[3261,3451,50,12]],"moves":[[3320,3452,62,11]],"llkv)":[[3412,3447,38,17]],"folding":[[3508,3448,72,23]],"unfolding":[[3151,3469,99,24]],"lily.”":[[3321,3470,55,22]],"thickly":[[3551,3473,76,22]],"taint":[[3362,3494,53,22]],"year,":[[3502,3501,49,16]],"withstand":[[3404,3519,103,17]],"winds":[[3563,3520,63,18]],"rains":[[3195,3540,51,17]],"1,000":[[3296,3541,54,21]],"yeah:":[[3362,3547,59,16]],"Above":[[3449,3543,64,17]],"dam":[[3568,3544,58,18]],"lantern.":[[3213,3564,79,21]],"15":[[3509,3567,22,16]],"diameter.":[[3148,3587,97,19]],"contains":[[3318,3589,84,18]],"huge":[[3456,3590,49,23]],"reflecting":[[3527,3591,99,24]],"lamp,":[[3149,3612,57,23]],"whenever":[[3399,3614,99,18]],"Congress":[[3506,3614,93,24]],"sesion.":[[3176,3637,76,17]],"top":[[3213,3663,34,20]],"lantern":[[3337,3661,74,18]],"statue":[[3528,3665,62,17],[3306,3854,63,16],[3219,4016,62,15],[3434,4138,63,15]],"Freedom,":[[3149,3684,96,22]],"designed":[[3261,3685,90,22]],"Thos.":[[3406,3686,55,17]],"Crawford.":[[3476,3687,101,20]],"19’":[[3588,3687,36,22]],"high,":[[3192,3708,51,22]],"weighing":[[3312,3709,94,22]],"14,985":[[3421,3710,66,21]],"pounds.":[[3499,3712,77,20]],"globe":[[3303,3733,54,23]],"inscribed":[[3373,3733,94,19]],"\"E":[[3486,3734,34,19]],"I‘Iuribus":[[3534,3735,90,18]],"Unum,”":[[3149,3757,87,21]],"$4.000.":[[3364,3757,84,20]],"figure":[[3531,3760,58,21]],"1)":[[3229,3785,12,13]],"Goddess":[[3249,3781,85,17]],"0!":[[3342,3781,19,17],[3346,4362,27,13]],"Liberty,":[[3374,3781,84,23]],"head":[[3550,3783,46,17]],"helmet":[[3342,3805,71,17]],"surrounded":[[3433,3807,118,17]],"eirclet":[[3147,3828,62,17]],"stars,":[[3250,3830,55,19]],"topped":[[3368,3829,70,22]],"With":[[3455,3830,46,17]],"hunt]:":[[3531,3831,62,17]],"plumes.":[[3147,3852,78,21]],"wns":[[3378,3858,38,12]],"Dec.":[[3575,3855,46,18]],"2,":[[3145,3876,17,21]],"1563.":[[3173,3876,52,17]],"GREKNOUUH'S":[[3169,3910,151,17]],"STATUE":[[3327,3914,80,14]],"0'":[[3415,3915,26,14]],"WASHINGTON.":[[3449,3916,147,15]],"Some":[[3168,3942,56,18]],"trance,":[[3145,3967,70,21]],"camera":[[3479,3974,72,13]],"picture,":[[3255,3991,79,21]],"Greennugb's":[[3430,3993,129,21]],"cele":[[3573,3994,47,17]],"brated":[[3146,4014,64,17]],"\\Vadiington,":[[3321,4014,129,23]],"Congres":[[3530,4018,91,21]],"mu,":[[3262,4038,51,21]],"intending":[[3328,4038,101,23]],"tomb":[[3145,4062,52,17]],"constructed":[[3430,4066,119,16]],"rotunda,":[[3145,4086,86,17]],"lint":[[3259,4086,39,17]],"heirs":[[3358,4087,48,16]],"de-":[[3586,4090,33,17]],"clined":[[3144,4109,61,17]],"nllow":[[3243,4109,56,17]],"remains":[[3355,4111,80,17]],"transferred":[[3505,4113,114,18]],"Vernon,":[[3247,4133,82,21]],"platted":[[3553,4137,66,21]],"outside":[[3143,4157,75,17]],"help":[[3270,4157,46,22]],"decorate":[[3336,4158,85,17]],"ninguttit'enh":[[3496,4160,122,22]],"grounds":[[3143,4180,86,22],[3457,4255,83,20]],"comprise":[[3329,4182,90,21]],"46":[[3434,4184,23,15]],"ants.":[[3470,4188,55,13]],"specimen":[[3233,4204,95,23]],"landscape":[[3369,4206,102,22]],"gardening":[[3483,4208,103,22]],"Beyond":[[3492,4231,75,21]],"Congressional":[[3322,4276,141,22]],"Library,":[[3477,4278,84,22]],"visitor":[[3293,4300,66,17]],"goes":[[3377,4306,44,17]],"enthusizwtio":[[3492,4302,126,18]],"ndutiiution.":[[3141,4323,120,17]],"S’I'ATKTICS":[[3222,4361,116,14]],"1n:":[[3384,4362,44,14]],"cannon.":[[3436,4363,95,14]],"(‘apitol":[[3221,4390,73,22]],"88":[[3591,4393,25,18]],"nbme":[[3191,4414,58,17]],"ofrthc":[[3374,4414,64,25]],"l’otuuia":[[3457,4415,75,18]],"Thu":[[3575,4417,41,17]],"writer-stone":[[3140,4440,126,15]],"laid":[[3339,4438,39,17]],"Sept.":[[3395,4439,51,21]],"1*,":[[3467,4439,26,20]],"Washington,":[[3234,4461,131,21]],"mth":[[3388,4463,46,15]],"Masonic":[[3462,4463,84,17]],"tiere-":[[3566,4469,50,12]],"itiuiiies,":[[3141,4486,75,16]],"original":[[3296,4485,79,21],[3447,4630,79,20]],"Sent“.":[[3546,4489,70,16]],"tinisliml":[[3330,4509,79,18]],"1511,":[[3460,4512,50,19]],"mu-":[[3570,4518,44,11]],"nt-t-ted":[[3140,4533,64,17]],"Wooden":[[3314,4534,76,16]],"pamrgzctvay,":[[3411,4539,124,17]],"Isl-t,":[[3181,4557,49,20]],"Brit":[[3286,4557,41,17]],"destroyed":[[3372,4558,99,21]],"tilts":[[3487,4559,38,17]],"interior":[[3140,4581,78,16]],"fire.":[[3417,4582,38,16]],"damage":[[3533,4583,81,22]],"immediately":[[3186,4604,129,21]],"reputml,":[[3332,4605,90,21]],"t'niiipletetl":[[3139,4628,104,21]],"m'cuullu:":[[3253,4628,98,19]],"designs":[[3535,4630,78,21]],"15.":[[3170,4652,31,17]],"mutcii":[[3301,4652,63,17]],"used":[[3399,4652,46,18]],"sandstono":[[3511,4654,102,18]],"l'mni":[[3140,4676,45,16]],"tpizrrrim":[[3195,4681,83,17]],"Aquiu":[[3317,4677,61,21]],"Clt‘rk,":[[3390,4677,65,20]],"\\':L":[[3466,4677,33,17]],"1-Sl,":[[3247,4700,51,20]],"extrtmuu":[[3352,4704,98,13]],"lit-gun":[[3511,4702,60,19]],"t‘lltl":[[3490,4726,37,17]],"Lb.":[[3579,4726,34,17]],"House:":[[3402,4748,63,17]],"Senate.":[[3535,4751,75,16]],"tKCfllilt'rl":[[3433,4773,89,21]],"Jan.":[[3536,4773,43,17]],"«I,":[[3590,4775,20,20]],"'li;iittlit~r":[[3390,4796,81,16]],"given":[[3527,4797,54,21]],"rid":[[3362,4820,23,16]],"llt-ll":[[3489,4821,43,17]],"xutntzics":[[3306,4847,100,14]],"outdo":[[3422,4845,54,16]],"present":[[3535,4847,76,20]],"(Continued":[[2720,4891,115,16]],"1:;":[[2846,4882,26,24]],"page.)":[[2966,4895,65,16]],"entire":[[3216,4891,59,17]],"length":[[3293,4891,65,23]],"n!":[[3373,4891,22,18]]}}
@@ -0,0 +1 @@
1
+ Foran important offer strictly limited to sub ocribcrs see Eighth Page. 1V mt Nita A / ../ _ fl .2... ‘tlunrrjorjintwttuwjmfi ”119. For an importno’ t offer strictly limited to wh- Icribers see Eighth Page. Est-tinisnsii 1677—NElV ssiiiss. iiismisminii RESERVES. Career of These Veterans from Cold Harbor to Appomattox Organizations Which Did Gallant Service—Led by Good Officers, Dis- cipline and ‘Bravery Saved Them from Annihilation on Hard-Fought Fields~llleinorable Combats. BY R. E. MCBRIDE. CO. 0. 190m Pa. The di\i<ion known as the Pennsylvania RESA’I‘VL‘S. “lllt'h hail among its officeisdtiring the lllSl year of its servit'e such distinguished noldit-n 11" Meade, leynolds, 0rd and Sey- mour. finished its history May 30, Infill, at Bethesda Churrh. The men who had not re-enlistul went home. and the remaining fragments of these regiments were orginized into two veteran regiments. numbered 190th and ltllst, or lst and MYeterau “curves, with an aggregate of about 1,421) offimrs and men. the former under the command of Col. W. It. Ilartshnrne, formerly of the 13th Re.- nerves: the latter under Col. James Carl, of the tith Reserves. They constituted the Third Brigade, Third Di 'sion, Filth Corps. For some cause (‘01. llnrtshorne was nhsent until after the army reached I’eteisburg, and the mom was commanded by Lieut.»Col. Joaeph B, Puttee. while Col. Carl commanded the brigade until Aug. 19, 1.564. These men participated in the operations nronnd Cold Ilurbor, though fortunately without hm: so far as can now be term-ni- bered or asce 'ned. exvept &rg't Woodard. of (‘0. A, ltluth, who was killed June 3. There may have been other casualties, but. the records of tliitt prriml are defective. (In June 13 they Skirmiilfl‘d near White Oak Swamp. with a loss of two killed, 10 wounded, one oflitrr and six men missing. In this nilhir Lirut.-(‘ol. l‘uttee‘s horse was shot undrr him. Although the organization was so recent that the men had become but little nrquaiiited with each other or with their ollit‘t-ri, they acquitted themselves In :t (l’fllllulilv ulllllllt'l'. The night of the lia'tli VOL. XVI = Il—NO. 5—WIIOLE NO. NO. WASHIITGTON, D. 0., THURSDAYTNOVEMBER 10, 1898. THE UNITED STATES CAPITOL. Here a Disastrous Explosion and Fire Occurred on Nov. 6. Wrecking Parts of the Building and lnjuring Valuable Records; THE UNITED “j STATES ennui. A Destructive Fire i the Sir preme Court Apartments. Something of the. Noble Building which is the Pride of All Americans—4h: Grandat Edillce in the World—Do tails of the Fire. The destructive and wholly unexpected firs whit-It broke out in the Capitol of th- Cnited States on Inst Sunday evening aim the attention of every Amerimn ho that grand edifice, around which the history of tho United States has centered for more than a century. WHAT THE BUILDING '13. In the opinion of many mmpetentobervul the United States Capital is incompnrnhly tho finest building in the world. It. is the only great. building erected distinctly for a Na- tional Capitol, and for more than a century there has been lavished upon it all that architectural nrt could suggest or mono, procure to make it ideal for im pnrpoa. Dill'ering from all other National Cnpitolsl. stands alone, on n tommariding hight, seps- rnted by hundreds of tee: of beautiful ground: from any other building. The site was chosen by George Washington himself, sud cannot be SUM any where. The western portioo overlooks the greater part of Wash- ing, with the noble stretch of Pennsylvania Avenue as for as the 'l'remxnry and the White House. In the distant-e. on the other side of the Potomac, rise the beautiful llighla (1 Arlington. The southern portim. or House Win; look! over southernt \\‘:t-i;ingtun. the broad estnnry of the Inner l’oioruue. “2th Alexandria Ind. Mt. Vemnn at the “mild ot‘ the horizon. The northern portim. or the Senate Wing. gives a view of northwut \‘v'nsllilllllou nsi far as the eminent-e truwuul by the white rut-Lina of the Soldiers” Ilmrte, The cast front. and whit-h was intended to be the muin one, and a picture of which we give, looks out upon the level plain on which the eastern part of the city is built. At tho edge of this plain is Anacostin River, Ind rising above it :i line of hills which meet tho sky and firm the huriwn. they nlnll'llt‘d toward the James River. and rum bed a point near Willa»; Landing on the I 14th. noon of the 122th, short of provisions, and no mtions were issued till the afternoon of the 15th, exvr-pz Fume fresh bet-l just as they were » 1 starting. MIL“ Is‘ ('1' lhi- Inn 1 'l: n llli‘lu any more ielign. a . tiliih‘. the others kept up a rapid fire: “her: “H Hut-t. lit ”II x ml TI'LLAIH' Ills, l HIP. {lav \liev tron“ 111 to ”in um ihr only i :llty Vl inch occurred in tlicl ‘ltlillxll of tho LIIEII “'i-re ore-r a. rush was V both rebel urn: C“'i|l‘l.' hitll'. iiiid out . l Ill ul tnv- l'nllmi- ruiiiumnd iliiiiii: the raid. uh» for lllt: pits, and the Il‘flillt' was qu 'kly n p, , ,,, I, . em." , ‘. i._ -, .il _t.L 1.. in; In “I. m- y v“..- t. a . “.th i. 12., r- . 'l‘lis'. .l .. o.‘ g, at and" n- t ..'— _ 5 men? tho deletions est-“mud, buu or two IliA‘n lit-id in Inert-t so turn {-1 bumper-~14 'I land llll'l‘lnll, where tin-y rumatnml till the nwn. lln- Illllll ivm «loop, and a ~t.oriit o I... re ruptured. vhnh hum tlu- ll l'i. .. . a r“. u], u tr . ., u is u . lull-till” from iht» tt-numl l\'|'ll l . :lfl'l .tl.” .\t‘\'~ Illlil'lllll: llic It'tlllll iuurrli lll‘htlll. ‘ futile. ' nunul some til the lust bullets (M r “P i, .1111.“ ‘ 'l. . n This hint n . maul ‘unu i- :u-tl _\|;. - ,,u n-iur tbui! .V- ll. 1 Tina ground \vn-i mil. sudtriently Il' Len tad «I l ' the robobi. llit-re was no nerd to ' “I. I. - ml. ””1- l p'rtu‘l’i nl' ll .‘uuili mm in ; mmmmbl‘nf llt lam legillnilult‘ butt up, and the day's Ill.ll't‘ll was iiin'll: l lliallllllt‘ulllti'd’ illiclh-s were getting “W ifm‘ ' {Hui ‘3‘" "NH“: ll lil.4'.ul~ aid of the ‘ whit'll iii-[rd . ttlmn from Illl" through the, by slit-ill. TIM mud “'lli so on \r-ryu' [llt\ \w-ri quilt » trough, “in m m" “W J ”W" «I for in' . mm. till tln- (-11“; of “1‘ . . thmp that. it H'll'ilr abort: our shots-tops, and there um noiiw‘emilyoi’oxlmsi .ilnrgvr L“! d” I ”Hi! iii? “H it] w 'll u l >519 " ii I in the lump. of and with U.» ml! and miltv inti l, tho ‘ nuiuln-r ul' lllI'II w the tire of so small a force '7‘ ..‘ L "I . i ”A“. '., : um l ’. - .5 ' r I \' iirli tin-v m: l-l "VI li-r-t of the rut-n rein-lured mnrcliiiigmf the enemy. Bah has hum do,” i..l..\.yl. 1' {Ir l“ doll.“ in ‘Ill‘l‘Al:]J]ll‘lUlIPlivlllLll‘ll, mir- “Hum! l‘.\.; [1 o. olilnitlnih‘ lill’tlllL‘. 'I‘iwy sti' _ led mil Tilt" bridge was» rebuilt by] p. m, and the Ir- 'lul' ,d .“,,,tddu,,.1;”Li-,3“. u“ H mm liult \\;i~ tpi . in; t‘lrllll‘JrIL 'l'lu- \ttnilltlutl and I)I_l(:l1ll~~lu;_', . . 'll‘l‘UXll'Jlly through this 'ddy and “'f' - l'orpi pn<~i~l on to the \tl .4 it roads 'lll-c- [m Li .H d h I » "ht \tith us mi ‘ll Tim and The Ufllt'l‘r woun led was Aili‘t “right. .1 lots brungnt tlu-m again to the .\l rI-uiuinth-ruf the ant-moon \\ spent in this 1’ '5" 7“” m I” TY' a i llzi min-h rkill “lid in fit-nun", 1]., m... strurl; "bunt ilm h.- I l liner, \vlii--Ii tilt-y rt-rrumd in the eve! ig, tit-inity without any evidence of the jll‘ciCIlt'L' l:t ~4- 9 'r part in lg Ill llll’ hill 4-." the hut: in.” \\l v ‘wl lil'l i. turn ' “114' pl. .u norm—o. tln Thr \‘ti' i-in l . llu *it ti tut, :- Gen. l'a'uml's rebel brigade \ s at one The ballot “f u" 'N-n-m w“, "1 (“11¢ luv. and \\'l'\l ot llutt-livr‘s Run, to ascertain the tbt- mom. “1“ Lulrdflunl I.i-.ut, l.d, 't'rne :llm t ~urrn ' lwl, und tli \llrl‘t'llulrr Lincoln 27.3. M, m. 1.3,. Total ; i . .. .- I RIGHT ,Nhllltlll "y the pm. y. g wt'ord ““5 on u“, “I'm“ “1 “1*“ WWW“) “""'-‘l"‘l- W” "”“‘“l"""1 " ”'- Capt. “Mk.“ “I On the, sum: vlrul. \‘lolt-nt suppmiiioii tli. M AM“ THE RLBFH I right “:m‘ ””- Thlrd D". "v Ayresun'ih" ’luw lib-Hrs lit-1t: ulmztil {rt-m tin. ‘Uiii'l'~| “""mg “"7"'- “""V‘I 3‘ nonc-of the bovs “ho were under the, Iq-gil On Feb. 5 was begun another movement It-lt. with the Semitd Di sum, and (inllin pair of the Li fill rwtud lur oi... June :15. Sat tiny lim) rum-ml {Him and rebuild son" in of illu- ri-rui d on tin Jeni-mil in in line tl.i till about July I. win-n they “El . of the mail, thou ri-‘ . mud und lamilgtile out. ifru: to do so. limit-y begun to argue Ihi 11.... ”m, w... . not 3,. “up on a hup-lounmsur res ll itltutlltlu Ixrii the i urnt on pit! fnxt nit wlw In tln- I\v \l and It w l in}. t. but in lllil, the) till tunltt , [In Nillii'hl tin: remit-h ot 'Iiit: ~41 inu- h ll: ranks the withdrawal oi the Sixth L'urp~ for the piolecliuu of “tubing ton. Ti I‘tiu h'lfl." will. It u-r. -nt to hold that part of the hue Mien: r Lib; and on intivm llkd shirinhbdiin ' rum-«l “I‘ll lliln wupun Mn 1: llJflliltlulllI: ulr‘iu 11' to any ll-ll‘t'. ' 'llJIY irii vl here 1- days. It u a, [It'llmi nil in quit-i, but yr lot innimi~ trimii-dim-ni 'i'lu \mrln “birh they held hail b Ill my upnd by tlu- mmnd U’flm, I._..I betn lulu-n " l ielnLi-n. and the llt'ltl lull teaitd “illi ' m ii-nmnanun tllnt lin- giuuul rm, tb- Mnii) nl‘ .e tl'u'l lwrn so mad. lion'- Iy liulllf’l ti. ' lbr hi I. hull bro-ti Mull-«1 .mu} tiom :lt uni b1: mpnttl lulrillllizivf [Ht- dm.) in x. u... .~\t.|llI|-Iil xi” .. pl‘nlllt . tut .- .lli'l :t lllutix'iuil [Hr-'11: run sul' ' ll:i “phi-d in or “.H IJtii I}; .lu!) lln‘ lms \tn': tl. \mnndul Thrrt- \\.i- gt your! vbul ol mint-w. and llw‘ only \tuiblr-i i~ llml tlu-ru “31‘ not It)" - ('ol. llnri-iinlm- iI' tir-l July :0 and Iuiued mini-punt oi iln- ltmib. n: bud.- ‘ I.\' ll”. Til.” It 01’ 17. Th» 1. r “in: l: is ever Ill"! I.“ In the lii~loit of the \'¢-t it“ “A“! lbt » u'i-iliird on Aug 11!. \\..r. r-t.i In iuLe and hum tlu- \\e'. . ’l‘b.‘ nus donn- «m the iriii and hub, and uh uh- b’fllul-nt days the ll'lrt‘l‘ tuiuln: tlispriulr ellurt: to raw-net it. 'I be wumlul HlHl mm! ui‘ lliii nylon \t '3' mm nialdllilla :u.-i ih- ‘m-iuu-b ilitl Hunt in.-.inti.; of l in “M. (‘i :i'.‘ (ion ‘llt- tit-3i oi t ‘lll” in: Jrruudt l:l plaivlt Xuzitl. -d‘.~’ 'I'lziid I!i'2»,u'i ipi, \ Ill l.i 'nml nu. . n2: bit-tun l.. mile. (-01). Indy: “1M .. Cranium and cover this gap nitn s...i- : nilsliers. In this movement they started on the aller- ‘ took posihmi a mile or mm», to the i -‘ '. sGeu. Mahune with three brigades pit. ed “1- are not certain (mm the re- find from the r ll" while otiii-r troops (‘lllfljfl‘d lllfllit’l’s npa little by bill 'llllL! lll' unallv droppq-il by the boys that ' the num. ' wnitli tn .l lrtli Ill" l hill at ”m .1418 “1 pm. m. “,1,, alllll’l, ill‘l demandedatntego . or N :. nilh a tin-wing beard, and .«rit with lum-nrd , psiilunuti lpuitvlibi: reins upon a noble-looking “Ill! in ad and L'lll creel and 1H lint-t M. donut know that “In.“ , di-tt-ntli-d nostril-i, quivering in et't-ry limb e “humm- mu“ “”1 1 with (:Xl‘lll'lut‘lil, but not moving in his . . w . trunks. In reply to this abrupt demand the ‘7“;“(3 3 “hm-n; r ’33- ...u ., 1.1,- rlu- rump-“mi .4 : ridvr l’ltl‘c-ll his livztd proudly, and decidedly ‘ '3‘, .wnmngm.) 5 ‘- ansn’trvd ‘No 3' ” llugtiod then shot him Door. 1 2 through the body, and he fell from his horse. ll \. m,” “H“, m strong “”01“. and lii~ mt ii to make ’I hurried retreat. iv in uriiy, lit the brim pm: ”ii" 01 Jolt llm llwdi 1.3.1 ln-euiiiuu-d mu. um (WW l llIL'! fo: liztr rundltil-imof tilt: mild, and also the spirit >\l(l"\. 'mnbl bu t-tkeu from the llt'll the mpuin marked “nth gi:t\v<.- ‘ ‘ " liv some nii<tiniler~t1intllng he the llmth, “"LS (leig'yrrati'ly wounded, aiiillonnterinetits when) they took supper, the _ il.it-ut. Ila-tin I.. Stork was killed. .trrops vrrw l a small stream and tour up - :ivo.‘ :i<.'-i Ml in rnpnls- ' llll: road to lln'ltsfoi'd. (in the .‘ltrhurriii River. of the enemy near the This place “us hold by i considerable f0'ce tart-n ol' infuntry and art .lcr , but no “'1‘ rut l‘JiN‘ml was nutvlu against them. its the expedition it round. in ‘ their ilfinltllllllifl, This was the n time bud nnwut't‘lnllpllxltfil llll that. was intended. ‘lllt‘l'fullglll. from lJullllitl intnnu-inuvvnh‘. t-X< Ibii'iiii,r lhi-i night \tork ll mztn ot‘ thi- rcpt slum sliqiitt. (.‘npt. Iii unmi- “its in lieu-rm»; \vw (ought. llllllf‘l‘ the ' ctuniunnd. \\'.ls' merit the rebels, but on reaching the creek they found it. too deep for fol-ding, and the enemy in good ride-pits on the other bank, about 25 yards away. At first their fire was lively, but soon they become mtxled. and would scarcely risk their heads above the pits for o moment. Trees wen: rhoppod downso as to fall across the tin. and on those purl. of the men crossed lit-lure this miszuko could be (‘UTlL ted. (in Iberia: the I: ing :1. stubborn attnt hrough the gap and furiously nosailcd me- Yellow House, rind llilil a (dim (ltwpehtie (- ~ ul' l.n.ll 'uinn that “1' tln ‘ nit-vi iiiiil snow, drivmi by ; slum! wind, r-ii— .lrii-l the lt'tlioth lllitllu‘ :iliumt. lllll‘lltllll'ulilt‘. When the work Wm about: finished the rest of lbs I wed the stream in linear"- i-lnw of lllv: \\ :ir. l.iriii.—l'ul. l’lllll't“. though put! to ('ltlvllttlll the n v tin‘ Nilillul~ “1-10 .‘uiut gIill Sllnvllll! , nny p4 rind of tln- nur. ~ uln- nl‘ both the l'niun- d the (duly. and lint: “I‘ll ' ‘ II “as ill in; om: I IN «luau 1. iily lruin unripe. tum. plum: during this snuggle lUl' he Weldon “Mil. ‘ Illll~nl‘l-llilll and fell to the ground. “1-, was MI]!,il)~l'tl to bi: ltllll'll, buL pi . l": itnbbvl hri v to his I'm-I. and wr- tlziimcd, with ('V tul minpml for the night not. fur from tilivri: of II . rilciiiv in lurl'u. and about. U p. in. tbrv i-prnl part of the night on llll'll" out-I Warron mile «1 to the. right, “here \iiiivl lllilll‘ll. Humphrey‘s llflllt'xlbi‘l'll'lll't‘tlSOHIB llltl'tl ti;ht- '1 b4- “huh" now grew cddrr, and by i It l'L'Illllfl'll until Go. in. to reach the " l'v 7—, I votrsl ‘ Linu- ' morning the "l’lrllllll was frozen solid. The p out llt‘wl'ql'lll‘ll storm had (‘0le on and 1,] n“, ,,,m-..m..m on I]; l.l ",4 lion, ()i-t. ,llifi'll um» I footnote, and llivy hobblrd i‘ . the wt-utlierliad turned . they “t'l'c on tin llt'l‘l, but didnot ‘ y. , ‘H' rye-old, and the men got. neither rust. nor iine engaged, and sulfur l no lm ”L: Iliu Vicinity of l’oterdnirg. the ,. Nlt‘t'll. This “‘lh tin. or of the l’le‘illl'l lelw. . inrn ll nlt “'inti-r quart-H for the rwt'thllll ,' , lion, and the I tnll<}'l\‘:lllill soldiriu \ut-«l, “Him. and resumed the usual routine of usurp lol'tlt‘l"; to l In .SlllfillIXlI INt‘IllEV'l'i. ‘ unmissamu to thi- south m, and mlwul llll: men to thrmv down their arms. ‘ ~ lililnhtltdlt'ly about himulity-t-d. (ion. "ml, “ho tins on fool. it]!,'il'lr.t(‘llt:4l and v and that hi: yo bun-k . “mm. l “lllllll liln own line-i. trill": him that lit: mu ago did any ol‘ilie voting, llic i'l)lllllll|l|tl inti<t toward the r.~ln:l li;:lit. Sim-e the drsirtiv- have utimbcmd well beyond All!” at thistlate. 1 lion of tho \l'uldpn ru‘ul during the rnul of Winter quarters were now built, and “in | lJoiM-iiilier the rebels had brought supplies by was in rest 'vn with the First. The ground wusinustly covered with timber and thick brush. .tl r.:pl ' llullt‘y two; it man of line pros 141-, llmt flood | ngeye and E’ —i?iF‘ ul tin-n nmunted the horse and ordered Snub wu~ tli satiation of the Union troops Him-tire tire would ham been as o friend as to for, and no part 01' ot through, though many of them M'I‘l’t' iiilulu pnNMJPI’S. ’l'bis :iivldont trill serve to show the pecu- vt.lli “In-h the battle “as fought on both .‘ilrii twin- unpttiml, and before they lllt‘llii'lu“, \\l'ft' inntlo pi'lmiiris. lien. (flaw- fuid llllll If “its at out: tum.- III the llillltl'i (it and ustztpul by sonic: sut-li :uiii PRINCIPAL FLOOR PLAN OF THE UNITED STATES CAPITOL. The explosion took plm't: umlt-r Ibo Fupit-int: t‘otirt apartments. in the. sub-basement in the old part of the East trout. bays hoped for a quiet time. but in this tliny were misutlu-ii. On I)“: 7 the l’ifth started on the Weldon mid, ’l‘lm obj this was to ltttl‘ tip mim- inurr (if the \\'tvhlmi mud and lo t'rentendiwt on \\'lll"ll iniulil litvor ('Hi, lliillcr's expedition itgztuist \‘t'il- iniiigtoii. ‘1. (I. The Notawuy River was rt-ztvln-d in tho eteni g. During the night the corps (-iom-d the titer and prrsard on louzu‘d the \\'t:blnn road, l't' in}; it. not. far from “lll'l’l‘. it crosses the Noluwuy Riv '. TIM: \mrk ol and drum t'ioin theiirbl. and night I‘uuiidour ll:i~‘~ lli'nlly t'VlHlill‘lll‘tl. 'l'lu- prim ol'tliu 'tmllmt, tlp- Weldon mud. “(Ii llz'lll by the I'm-m tux. , and lllt‘ Utmfmlvtdlt‘i m-u- dr- pinmi u: ultulllt'r llllpol‘ltllll line of supplies. While this since \vns in progn‘ss some slanipcdrd enriilry run into Ayrts's lllll‘, throwing the 'l‘liiitl llrigzuln into (‘iiiil'tislt . . 'l‘ht-ilitisiun moved on “illitiut uniting for i this bri::idu to get rightctl up, and \"llt'll it [no ll on it lllllt: later it got in too far to lllt‘ lt ul became exi (mil to .1 think tire. It bob 1 sown. llll\\t'\'t‘l‘, for nearly two hours, ' and was Illt‘ll Withdrawn. The llesert‘os Tough!“ loud. and at Arulutl'l . lost nine wounded, and the total loss of tho Ilt-luw'llie confluence of lfult-lier's Run and brig do was 71. tinttolly lluit the stroziui is known as Ilmv- by the morning of the 7th the storm had :uity Creek. The road to Dinwiddiet-m ' rh-uml ntmy rind the ground was from-n. this (-ri-vk at Win. I'erkiiil’s. 'l'liv~ i-i'm H liming the intention the Ill-serves were was disputed by n snirtll lorevol' H'llt'l in- llll'lihll fut-ward II." a rut-oniio.. :unl wagon-trout llit-kstord to Pelt-ruining by way of tho lloydtou plank rend. Grant deter- ruinod to break up this line of supply. The rat. ry, IIndt-rb‘rotm. was to idly to l Inwiddio t‘ourtlintise. ' to hike pmitiuu linlf-tt'i ' between ( llatrlit‘r's Ilun; lluiup eye, with two dit ions of III. «fond Ulrllfi, was to trike iu tinii on latt ier's ltun tit. tho. l‘l‘t ’I.\ l'\ l..\' l‘lll~(l.‘~ Lib; !:.:< Itlltl' l.i-:.iu Ibo lit'w'rl’\1"l wow .tit l‘ sbiiinhhci“. 'l‘liey rrpiilv-vl .Hmm aim-1. tutlmut mm b Illlll- t'tllljt m l :unl Mlpplhcil Iliut all was well, but \.l:.l- I! It .ti: on um tliu~ t-nuziuud a, It‘lnl l'lit' n1 butih- vui rlmzu: in on lllt‘lrchilllll'lloll l)! toward evening, itnd ('(III’ nu. Pliny ml the ulll"ll\ and turn know‘tinurd during most. of the night Thou: nuiinn: oi Ill ~ until ul‘tll‘ll'tl in ‘Ill‘ll'llllel'. who “'llllt lthc night. work, lighted up by Nib. lime.” 'll~y'tl\l‘lt'll t..u situation, and lmnli sol~ ties, will not, boon for: lilo-stir- fiiiitry. 'l‘lu- corps marlin-d this plui-t- ulnul found that. the eiictiiy hud tellrutl \nlhin Mi mlul III I i-ln aptttte .\t':|ll_\' lint-r» ring in mg the "It‘ll whirled ll . ls.nnl 10 n. “L, niitlifound some rut'nlry skirmish- Iing “'llll tliemuemy, but 'uiiithlt: to drin: l tln-m away. The Thin! llriizude was ordered iin-aunl to :u-minplish thu task. The “curves. unlit-r rilllL‘l‘, Cllllll' tip ill a double-uni itud trlicn iiliuut opposili- tlii: l't‘lklll.‘ bu ":3; “rt-n: ot‘tlt'rvll to tilt- il:lil, unil thpluy iruiidit-rs. As they di-pluyctl lllL‘_ .tlw lsgnii to udt‘uiit-o, and by tho lllllt‘ the rcnrol‘ the cumin id had left the mud the others worn u ill-lust the lirltl tlit-ir lines, leaving only a thin skilllllrll- line. The l‘niun iiitrvncliments were now rx- tondtrd to Iliitrhr '5 Run at the or "int: of ilir \'.iug|u~n mud. The rot-null t'oi ‘lllt'ltl ”10 Mt oi llto line, and the l‘il'tli t, rp-i was nuts 'tl in lllc fl'tll' ot' Illt‘ lrt'i of the. 'tlillll. and p lirllhg the lrft. of the army, For llll‘ third lime this HULL-m“ the men built Winter quartets. 'l'lii: 1.271]: I‘it. tum added to (‘ol. Patton‘s tum ui‘ ll: n _\ mid \‘tt‘lt‘ turd:- lut’ l \‘n rd It) the )ilutilztlilp, IIII-tillt‘l'i, (1m.- uilit-ln and 'l , um- lililt‘l'l’ and IT men ll‘< .lti l .“rlll moi. “ch till»- we who “vie cuplutcd ill-l died attached tit-s oter from the road-ltd “llli Nlmut and ringing cheer, and lllt'tl wru-nelml the rails apart and lies from tlu: mils, and built great tires of tips. on \\lll(‘ll the ”II“ wore llt‘fllt‘ll and mined for l'ul Toward morning the work t nicn gut snt-li slot-p llllll re. {H tln-v with the (‘lllll night and their net | m _ Early in this morning the work Wth re- sumed uiiil coutinuvd all day. In the oveu~ t-uiild .‘Im noun-«:1- left from tbi' .,. it» .upul urn-1' . lilllwl Lit-iii, l'vzu-ot k and Adj'l .lu. oi ihv limb; t'upi. Norton mud himin all about 500 men. acted. together as a regimental unit. THE YISAL CAXPAIGN. corn! oroased llowanty Creek at Monk’s Neck Bridge. the scene of the sharp skirmishvvhioli the Reserves bud Feb. 5. Again tho Third llri tile had the atlvanee. The 210th I‘n. wusdi-ployed as Skirmislit‘r‘, while the Ite~ serves Wale put in line—of—hattle. This gave tho latter ocmsion to exercise the great American privilege of tinding fault. The boys watched the men of the 210th its they deployed their skirin’ dine with deliberate (-xnrtiwu, rind critit-i/etl every move and grumbled to their heart’s tontent. The t'nt'my did not dispute the crossing of the u -k 'bv line of mnrr'h was now the some as on Feb 5 but on rearhing the Quaker mail the Set-rind and Third Divi ns moved up it some distance unil formed line-of-battle facing: nest. 'l he First Illti~ioii passed up the road further toward the Roytlton plank road. and about 4 p. m. encountered the enemy and drove him back to where the mud crow llalt-her‘s Itiiii. When tln: Semnd Division formed line-of- lmlllc the :limh l‘u. was again deployed as nlilrllll<llt‘l'?‘, and after some tiring: sent back one pri~oner. This was the only Sign of I‘t’heln in this viv- iity on the. 29th. The Ke- rit'lHJS were deployed later, and remained on skirmish-line till inoming. The lelt of the army now extended to the llt'iydton plank road, the let} of Luriflin hold- ing; that road. his right joining the Second Corps near the (.‘row llonse, Crawford on the mud, thus covering the let: flunk, and Ayres in reserve. The object of subsequent move- ments was to extend our position further to the loft, and llziuk the rebel position on the White Oak road. The morning of the 30th, while Grifliu was putting his lines in proper shape along his front. Ayres was moved across the plank road to extend our lilies to the left. 'lhe Reserves were deployed as skirmislieis. and pressed for- ward until their line, joining the pickets of the First. Di ‘sion on tho right, and facing the rebel pos ion along the White Oak road at it distance. of from a half to n quarter of a mile, extended almost. to “'m. Dnbney's. llura tlir-y threw up skirmish'pits. At 4 p. in. \Vilcox’s (‘onfedemte division made an attack on (lrifiiu‘s front. but was easily repulsed. In front of the Reserves the rebel fire ittt'rcas'ed somewhat, but they did not advance. A heavy min storm began on the 29th, which routinued till the night of the 30th. rendering the roads nlinost. impsmble, and adding greatly to the discomfort ofnll. IN A TIUXIT PLACE. About It) a. m. on the fllst the Reserves wort- relieved b ' men of the Third Division. rind muted tow: d the left to rejoin the bri- gade. lleibrct swasnreoniplisht-d the flunk und I'I'Hl' attack be” it. (lol. I’nltee promptly grasped the situation. He halted his coni- maud and brought it to a front, thus facing toward the pirkctpits which his men had held the past in hours. The men who had relieved them were unable to Withstand the Millth then being made byn brigade from the rebel works. The Slll‘t‘tsi of this attack would render still more desperate the position of the two di 'isious now assailed on the left. think and "‘1". Waiting it fetv moments, whiln the bullets putlrrvtl like hail-stones and shells from the lulu-l artillery Sl'l't‘et‘llt‘l‘ and bellowed through the brush, l'illll‘l‘ ordered the men to (It-ploy. At the suiiit- time they mlt‘nut't‘ul and “PHI. to “ork, 'l‘ln‘y seized the pits :Ilt>ll;1|ltll'l l' tln- liut‘. and front these they t-nsily t'llt‘t' (I tlu- ntlvntt- t' of the. enemy, but on their lrft the piLs at once bet-(Irma use- less lwi-miw of the thl\1ILl|‘L' of the enemy on tho think and rear. r‘onn the rulin- line was llll'lll‘tl to the left lint-Lwnril :In‘ thry fut-ed the foe. They were finally form-d into the shnptl of an nxbuw, the einmv t‘ltln‘lllfl in on all sides exrepta ipniutnt-Iy n {'1 m \Iflu’ll ltr\\'.l|’tl the tour, This are w ~ to right angles with "III [inc they at lir>l . Through this tln-y linatlly‘ iiiiulo their vt but coiiziiiiicd the lonlest \\lll| rt-nrwul tlt‘ll‘rllllllllll n. '1']: ‘ ll now l‘t‘flt'llt‘tl in point “hire the rk‘lll'ls w n on ground it little higher tlinu Lust. blaster, 01 the lulst. Lieut. Steele, ol‘ ing, leaving everything but anus and ac- tou'nnl the enemy. Tin-y 'prctudto “rush” command in the latter part of March, giving that \\lIi('ll they occupied. Behind them The three frag- ments were never actually consolidated, but March Wliegan the final campaign. The building marble Win The east front rushed most a! the embol- lisliuient in the earlier construction of th- Cnpitol. The (ventral portit‘o is intended for the main entrance, and has 2:! ponderonl eul— man: of mndstoue, each mum of is single stone, and 301‘ch high. 0n the tympnnuin of the portion is a design drawn by John Quincy Adams and turret] by Persim. a dis- tinguished llomzin sculptor. It represents America, with a shield and spear. (in the shield are the letters " L'. S. A.," and rests on a low nlmr, demmiel with a wreath of oak leaves .1 date. "July 4. 1776.” At the for n Airn , -'i are a large l‘iffl" and tignres of Justice and Hope, fine statues of War and I'ence stand on either side of th- ninin Quinn '0 thnr is a basso- l relievo of crowned with I lnurol nreatn by I z I i'eztee. {mid some Sfl'p“ dunked by burn-em mound to tho portn'o. Un one of these but- tresies is u marble group representing the “ l)l.~(0\'t‘l’_v of _~\ttlel’l!' (in the opposite buttress is a marble group bv Horatio Green- ough, ”presuming “1 'iriliy on. ur the First Seitlemuiitut' Amt-rim,” 'lhe nininentruuco is closed by a superb bronze door 19 feet high and nine feet wide, (twinned by Rank dolpli Rogers. and ('UVert'Ll with panels repti- senting: St‘enth in the life ui‘t‘nlninhnv. On this portion stand the I'reaiilvnrs of the ['nited States when they take the oath oi oilice. The Senate and Home Wings have each line marble portieoes. embellished with stately columns, bronze doors. and line groups and reliefs, executed byemitient sculptors. Over all I'L-(‘s‘ the magnificent dome of the Capitol, whit'h has no equal in the world for ('1' .~ic heauiv. Eight years were required to build it, nearly 4,000 tons of iron. and it cost $1,250.1NJO. So carefully and thoroughly was the work done that it is not believed that it. will ever need n-pairs. The c - of temperature were carefully calculated and. the whole mass moves “ llkv) the folding and unfolding of a lily.” The dome is thickly covered with white taint every year, and it is believed that it will withstand the winds and rains for 1,000 yeah: Above the dam is a lantern. on feet high and 15 feet in diameter. It contains a huge reflecting lamp, which is lighted whenever Congress in in sesion. On top of the lantern stands a statue of Freedom, designed by Thos. Crawford. 19’ feet high, and weighing 14,985 pounds. ll rests upon a globe inscribed "E I‘Iuribus Unum,” and cost $4.000. The figure is that of 1) Goddess 0! Liberty, and its head is crowned with a helmet surrounded by n eirclet of stars, and topped With a hunt]: of plumes. The statue wns put in place Dec. 2, 1563. GREKNOUUH'S STATUE 0' WASHINGTON. Some distance in front of the main or trance, and out of reach of the camera which took our picture, stands Greennugb's cele brated statue ot \Vadiington, which Congres ordered in mu, intending to place it over a tomb of Washington to be constructed in the rotunda, lint the heirs of Washington de- clined to nllow his remains to be transferred front Mt. Vernon, and the statue was platted outside to help decorate the ninguttit'enh grounds These comprise 46 ants. and on us line a specimen of landscape gardening as can he found in the world. Beyond the eastern edge of the Capitol grounds stands the magnificent Congressional Library, over which every visitor goes into enthusizwtio ndutiiution. S’I'ATKTICS 0! 1n: cannon. The (‘apitol stands on ground rising 88 feet nbme the level ofrthc l’otuuia Thu writer-stone was laid Sept. 1*, , by George Washington, mth Masonic tiere- itiuiiies, The original Wings for the Sent“. and House were tinisliml in 1511, and mu- nt-t-ted with it Wooden pamrgzctvay, Aug. 2 . Isl-t, the Brit destroyed tilts and the interior of the Win by fire. The damage was immediately reputml, and the building t'niiipletetl m'cuullu: to the original designs in 15. . ' mutcii 1 used was sandstono l'mni tpizrrrim at Aquiu Clt‘rk, \':L July 4. 1-Sl, lllt: extrtmuu was lit-gun by it each t‘lltl for Lb. House: and Senate. and tKCfllilt'rl Jan. «I, 'li;iittlit~r “its given to rid the old llt-ll of the . xutntzics outdo tho present (Continued 1:; mound page.) The entire length n! the building from