-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1186.xml
2318 lines (2318 loc) · 139 KB
/
1186.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.stevens">beinecke.stevens</recordid>
<otherrecordid localtype="BIB">3132653</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Isaac Ingalls Stevens Papers
</titleproper>
<titleproper localtype="filing">Stevens (Isaac Ingalls) Papers</titleproper>
<author>by Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>1993</date>
<num>WA MSS 442-445</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">3132653</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-2, 3 (Broadside)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="12">12</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="307">307</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:14:31-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:14</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1186" level="collection">
<did>
<unittitle>Isaac Ingalls Stevens papers</unittitle>
<unitid>WA MSS 442-445</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes + 1 broadside folder.</physdesc>
<unitdatestructured altrender="1848-1859" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1848">1848</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_d27e126d4af25f18609bff9095babb47">The Stevens papers contain correspondence, reports, memoranda, and maps documenting the 1856 declaration of martial law in Washington Territory and Indian hostilities, relations with the Hudson's Bay Company and the Puget Sound Agricultural Company, and political events during Steven's administration (WA MSS 442-444). In 1857, Stevens prepared a map of the Washington and Nebraska territories for his report on the railroad survey with information on various Indian tribes, reservations, settlements, and military posts (WA MSS 445).</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Stevens, Isaac Ingalls, 1818-1862</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_ae066e787f71438b015be6a2ccea1ad7">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<acqinfo id="aspace_5945e9b9ba219009f70aecfb0c52ae1e">
<head>Immediate Source of Acquisition</head>
<p>From the Winlock W. Miller Collection.</p>
</acqinfo>
<arrangement id="aspace_448921715c2845b5b6e7718e526fee41">
<head>Arrangement</head>
<p>The collection consists of four groups previously cataloged separately as WA MSS 442, WA MSS 443, WA MSS 444, and WA MSS 445, and is organized into four series reflecting this previous arrangement.</p>
</arrangement>
<bioghist id="aspace_9d426abb33296a96772806857a2fe005">
<head>Biographical / Historical</head>
<p>General Isaac Ingalls Stevens graduated from West Point and served in the Engineer Corps of the Army until 1853. He resigned to become governor of Washington Territory and also served as superintendent of Indian affairs until 1857. Stevens was appointed director of the survey of a northern route for a Pacific railroad.</p>
</bioghist>
<prefercite id="aspace_7376540f60b0c15a97239f65fae0eddb">
<head>Preferred Citation</head>
<p>Isaac Ingalls Stevens Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_ac619eacec05289b83808fa033b79502">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This finding aid, created before the advent of computer-generated files, has been converted into a ASCII data file by means of scanning and Optical Character Recognition software. While attempts have been made to retain the complete information from the original document a number of format changes have been made to present the structure of this archive in accordance with current practice.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_da755251123755c83f7d1c54a7b33ed0">
<head>Scope and Contents</head>
<p>The Stevens papers contain correspondence, reports, memoranda, and maps documenting the 1856 declaration of martial law in Washington Territory and Indian hostilities, relations with the Hudson's Bay Company and the Puget Sound Agricultural Company, and political events during Steven's administration. In 1857, Stevens prepared a map of the Washington and Nebraska territories for his report on the railroad survey with information on various Indian tribes, reservations, settlements, and military posts.</p>
<p>The Isaac Ingalls Stevens Papers have been organized in four series. The first series (WA MSS 442) consists of correspondence and other papers relating to Governor Stevens' proclamation of martial law in Washington Territory. The letters from Stevens and Adjutant General James Tilton found in this section of the collection are the file copies in the writers' hands or are signed by them. (For additional material, see the Elwood Evans Papers [WA MSS 187], as well as WA MSS 509, a "Proclamation ending the Indian War of 1856 and repealing the rule of martial law in Washington Territory," May 24, 1856.) Also found in the first section of the papers is a document entitled "Proceedings of a General Court Martial or Military Commission convened at Camp Montgomery by virtue of an order from Isaac I. Stevens, Governor of the Territory of Washington, and Commander-in-Chief of the Volunteer Forces thereof," May 20-29, 1856. The document is a manuscript in the handwriting of Quincy A. Brooks, recorder. The military commission consisted of Lieutenant Colonel J. S. Hurd, Major H. J. G. Maxon, Captain C. W. Swindal, Captain W. W. DeLacy, Lieutenant A. Shepherd, Lieutenant S. B. Curtis, supernumerary, and Victor Monroe, Judge Advocate. The proceedings are signed at the end by the members of the court, and approved, May 29, 1856, by Governor Stevens. There are fifty-seven letters and papers (144 pp.) in the first section.</p>
<p>The second series of the collection (WA MSS 443) consists of correspondence of Isaac I. Stevens, Governor of Washington Territory, during the years 1848 to 1857. There are 206 letters and papers (541 pp.) in this section of the collection. The correspondence deals chiefly with the Indian hostilities of 1856 and relations with the U.S. Army. However, the political affairs of the Territory under Governor Stevens, the relations with the Hudson's Bay Company and Puget Sound Agricultural Company, Mullan's explorations in 1853-54, the murder of White and Northcraft, and the trial of Leschi are also matters dealt with in the correspondence. The majority of the letters to Stevens are the originals, while those from Stevens are in most cases copies or drafts preserved by the writer for his files.</p>
<p>The third series of the Isaac Ingalls Stevens Papers (WA MSS 444) consists of a letter (a single page) written by the Governor to M[?] F. Schmidt on March 18, 1859. The letter contains instructions as to the chapter headings in the "Geographical Memoir," which is part of Stevens' <title render="italic">
<part>Narrative and Final Report of Explorations for a Pacific Railroad</part>
</title>, Washington, 1860 (U.S. War Dept. Reports of Explorations and Surveys, 1860, Vols. XII-XIII).</p>
<p>The fourth series of the Isaac Ingalls Stevens Papers (WA MSS 445) consists of a map which is mounted on linen and folded. The map is entitled "Prepared in the Office of Explorations & Surveys, War Department, from a Map of the Indian Nations and Tribes of the Territorys of Washington and Nebraska west of the mouth of the Yellowstone. Made under the direction of Isaac I. Stevens, Gov. of Wash. Terrt. & Supt. of Ind. Affairs" [April, 1857]. The map consists of the engraved map of the region from the Rocky Mountains to Puget Sound, prepared by Governor Stevens for his report on the survey for a Pacific railroad, with information added in manuscript about the Indian tribes and reservations, settlements, and military posts. There is a manuscript extension east of the Rocky Mountains to the Yellowstone River to show the more eastern tribes, and, inserted in the lower left corner in place of the original caption and part of Oregon, two tabular statements of the Indians west and east of the Cascades, showing "tribes, population, parties to the several treaties, reservations provided in the treaties, and temporary encampments," as well as "Notes of the Indians of the Territory of Nebraska between the Rocky Mountains and the mouth of the Yellowstone."</p>
<p>A month before Governor Stevens was relieved as superintendent of Indian affairs by Colonel James W. Nesmith, he sent a letter and map of the Indian nations and tribes of the Territory of Washington and of the Territory of Nebraska, with tabular statements and notes, to George W. Manypenny, Commissioner of Indian Affairs, April 30, 1857. The region from the Cascades to Fort Benton has been printed on a reduced scale, with much less detail, in Hazard Stevens, <title render="italic">
<part>Life of Isaac Ingalls Stevens</part>
</title>, 1900, I, facing p. 16, and the "Tabular Statements" and "Notes" appear as the Appendix to Vol. I, pp. 503-505, from the original on file in the Indian Bureau. The Miller map is a copy made for the Secretary of War.</p>
</scopecontent>
<userestrict id="aspace_ad9c1ec0f90d596585b00a87436e9164">
<head>Conditions Governing Use</head>
<p>The Isaac Ingalls Stevens papers collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065455"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Idaho</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh89004118"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Northwest, Pacific</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065532"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Washington (State)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85096465"
source="lcsh">
<part localtype="topical">Pacific Coast Indians, Wars with, 1847-1865</part>
</subject>
<subject source="local">
<part localtype="topical">Railroads</part>
<part localtype="geographic">Washington (State)</part>
<part localtype="topical">History</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85114837"
source="lcsh">
<part localtype="topical">Rogue River Indian War, 1855-1856</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85116797"
source="lcsh">
<part localtype="topical">Salish Indians</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh86004049"
source="lcsh">
<part localtype="topical">Yakama Indians</part>
<part localtype="topical">Wars, 1855-1859</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85145373"
source="lcsh">
<part localtype="geographic">Washington Territory</part>
<part localtype="topical">Politics and government</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Maps</part>
<part localtype="geographic">United States</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Politicians</part>
<part localtype="geographic">Washington (State)</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Soldiers</part>
<part localtype="geographic">Washington (State)</part>
</occupation>
<persname>
<part localtype="agent_person">Casey, Silas, 1807-1882</part>
</persname>
<persname source="local">
<part localtype="agent_person">Chenoweth, Francis A., 1819-1899</part>
</persname>
<persname>
<part localtype="agent_person">Davis, Jefferson, 1808-1889</part>
</persname>
<persname>
<part localtype="agent_person">De Lacy, W. W. (Walter Washington), 1819-1892</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Douglas, James, 1803-1877</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Evans, Elwood, 1828-1898</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gibbs, George, 1815-1873</part>
</persname>
<persname>
<part localtype="agent_person">Miller, William Winlock, 1822-1876</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Mullan, John, 1830-1909</part>
</persname>
<persname>
<part localtype="agent_person">Pierce, Franklin, 1804-1869</part>
</persname>
<persname>
<part localtype="agent_person">Shaw, B. F. (Benjamin Franklin), 1829 or 1830-1908</part>
</persname>
<persname>
<part localtype="agent_person">Steptoe, Edward Jenner, 1815-1865</part>
</persname>
<persname>
<part localtype="agent_person">Stevens, Isaac Ingalls, 1818-1862</part>
</persname>
<persname>
<part localtype="agent_person">Wool, John Ellis, 1784-1869</part>
</persname>
<persname source="local">
<part localtype="agent_person">Wren, Charles</part>
</persname>
<persname>
<part localtype="agent_person">Wright, George, 1803-1865</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Hudson's Bay Company</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Puget Sound Agricultural Company</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">United States. Army. Washington Territory Volunteer Regiment, 2nd</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/433272"
id="ref10"
level="series">
<did>
<unittitle>Papers relating to martial law in the Washington Territory (WA MSS 442)</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>box</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_cb891801f56df3dbee58891d0c922386">
<head>Scope and Contents</head>
<p>The first series (WA MSS 442) consists of correspondence and other papers relating to Governor Stevens' proclamation of martial law in Washington Territory. The letters from Stevens and Adjutant General James Tilton found in this section of the collection are the file copies in the writers' hands or are signed by them. (For additional material, see the Elwood Evans Papers [WA MSS 187], as well as WA MSS 509, a "Proclamation ending the Indian War of 1856 and repealing the rule of martial law in Washington Territory," May 24, 1856.) Also found in the first section of the papers is a document entitled "Proceedings of a General Court Martial or Military Commission convened at Camp Montgomery by virtue of an order from Isaac I. Stevens, Governor of the Territory of Washington, and Commander-in-Chief of the Volunteer Forces thereof," May 20-29, 1856. The document is a manuscript in the handwriting of Quincy A. Brooks, recorder. The military commission consisted of Lieutenant Colonel J. S. Hurd, Major H. J. G. Maxon, Captain C. W. Swindal, Captain W. W. DeLacy, Lieutenant A. Shepherd, Lieutenant S. B. Curtis, supernumerary, and Victor Monroe, Judge Advocate. The proceedings are signed at the end by the members of the court, and approved, May 29, 1856, by Governor Stevens. There are fifty-seven letters and papers (144 pp.) in the first section.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/433273"
id="ref11"
level="file">
<did>
<unittitle>STEVENS, ISAAC INGALLS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433274"
id="ref12"
level="file">
<did>
<unittitle>Three letters to Colonel Casey. Mar 31-Apr 7, 1856. 4 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
<daoset altrender="/repositories/11/digital_objects/285175">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16697909"
identifier="oid:16697909"
linktitle="36 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16697910/full/!150,150/0/default.jpg"
identifier="oid:16697909"
linktitle="36 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16697909"
identifier="oid:16697909"
linktitle="36 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Three letters to Colonel Casey. Mar 31-Apr 7, 1856. 4 p.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433275"
id="ref14"
level="file">
<did>
<unittitle>Letter to Hon. F. A. Chenoweth. May 28, 1856. 2 p. Letter to Elwood Evans. Jun 3, 1856. 1 p. Letter to Lieutenant Colonel Lander. May 4, 1856. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433276"
id="ref16"
level="file">
<did>
<unittitle>Letter to Hon. Victor Monroe. May 28, 1856. 1 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433277"
id="ref17"
level="file">
<did>
<unittitle>Four letters to Lieutenant Colonel Shaw. May 4-22, 1856. Signed by Stevens. 5 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433278"
id="ref19"
level="file">
<did>
<unittitle>Copies of two letters to the President of the United States [Franklin Pierce]. May 23, Aug 18, 1856. 9 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433279"
id="ref21"
level="file">
<did>
<unittitle>Letter to William F. Tolmie. Mar 8, 1856. 1 p. Copy of a few lines of Governor Stevens' answer to alleged cause of complaint, in the case of the U.S. vs. Isaac I. Stevens [Jul? 1856]. In the handwriting of Judge Strong. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433280"
id="ref23"
level="file">
<did>
<unittitle>BROOKS, QUINCY ADAMS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433281"
id="ref24"
level="file">
<did>
<unittitle>Letter to Governor Stevens. May 27, 1856. 1 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433282"
id="ref25"
level="file">
<did>
<unittitle>CASEY, SILAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433283"
id="ref26"
level="file">
<did>
<unittitle>Two letters to Stevens. Mar 31, Apr 3, 1856. 2 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433284"
id="ref28"
level="file">
<did>
<unittitle>CHENOWETH, FRANCIS A.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433285"
id="ref29"
level="file">
<did>
<unittitle>Two letters to Stevens. May 29, Nov 15, 1856. 3 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433286"
id="ref31"
level="file">
<did>
<unittitle>Letter to Elwood Evans. May 30, 1856. 2 p. Two letters to Judge Lander. Apr 30 [copy in handwriting of W. W. Miller], May 29, 1856. 2 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433287"
id="ref33"
level="file">
<did>
<unittitle>Draft of the appointment of Elwood Evans to prosecute Charles Wren and others. May 29, 1856, in Judge Chenoweth's hand, and, on the same page, a copy of Elwood Evans' letter to Stevens notifying him of the fact, May 30, 1856. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433288"
id="ref35"
level="file">
<did>
<unittitle>Draft of a letter to Messrs. Ed[ito]rs [1856]. In Judge Chenoweth's hand. 4 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433289"
id="ref37"
level="file">
<did>
<unittitle>EVANS, ELWOOD</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433290"
id="ref38"
level="file">
<did>
<unittitle>Draft of a letter to the Hon. William Bigler. May 19, 1856. 3 p.
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433291"
id="ref40"
level="file">
<did>
<unittitle>Two letters to George Gibbs, about the posting of the proclamation abrogating martial law. May 26, 1856. 3 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">5</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433292"
id="ref42"
level="file">
<did>
<unittitle>GIBBS, GEORGE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433293"
id="ref43"
level="file">
<did>
<unittitle>Letter to Evans. Monday 12 [May 1856]. 2 p. Drafts of three letters from Gibbs and Goldsborough to the Secretary of State, William L. Marcy. May [11]-Jun [6] 1856. 22 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">6</container>
<daoset altrender="/repositories/11/digital_objects/285179">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17234238"
identifier="oid:17234238"
linktitle="47 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17234240/full/!150,150/0/default.jpg"
identifier="oid:17234238"
linktitle="47 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17234238"
identifier="oid:17234238"
linktitle="47 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Letter to Evans. Monday 12 [May 1856]. 2 p. Drafts of three letters from Gibbs and Goldsborough to the Secretary of State, William L. Marcy. May [11]-Jun [6] 1856. 22 p.</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433294"
id="ref45"
level="file">
<did>
<unittitle>Draft of his opinion on martial law. Undated. 5 p.</unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433295"
id="ref46"
level="file">
<did>
<unittitle>Drafts of two papers on martial law in Washington Territory, undated, the second written in answer to an article in a newspaper, probably the <title localtype="simple" render="italic">
<part>Pioneer and Democrat</part>
</title>. 10 p.
</unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433296"
id="ref48"
level="file">
<did>
<unittitle>Draft of a letter to the editor of the <title localtype="simple" render="italic">
<part>Oregonian</part>
</title> on martial law in Washington Territory. Unsigned. 8 p.
</unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">6</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433297"
id="ref50"
level="file">
<did>
<unittitle>KENDALL, BEZALEEL FREEMAN</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433298"
id="ref51"
level="file">
<did>
<unittitle>Letter to George Gibbs. May 10, 1856. 2 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433299"
id="ref52"
level="file">
<did>
<unittitle>LANDER, EDWARD</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433300"
id="ref53"
level="file">
<did>
<unittitle>Two letters to Stevens. May 4, 5, 1856, with a draft of the latter. 5 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433301"
id="ref55"
level="file">
<did>
<unittitle>Draft of a writ of <title localtype="simple" render="italic">
<part>habeas corpus</part>
</title> and a writ of attachment, Charles Wren, et al. [vs. I. I. Stevens]. May 15, 1856, Edward Lander, To the clerk of the Thurston U.S. District Court, Wm. W. Miller. 1 p.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433302"
id="ref57"
level="file">
<did>
<unittitle>MARCY, WILLIAM LEARNED, Secretary of State</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433303"
id="ref58"
level="file">
<did>
<unittitle>Letter to Stevens. Sep 12, 1856. Signature only. 3 p. </unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433304"
id="ref60"
level="file">
<did>
<unittitle>[MILLER, WILLIAM WINLOCK]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433305"
id="ref61"
level="file">
<did>
<unittitle>Summary in the handwriting of William W. Miller of the action taken against Governor Stevens. [n.d.] 3 p. </unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">10</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433306"
id="ref63"
level="file">
<did>
<unittitle>MONROE, VICTOR, Judge Advocate</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433307"
id="ref64"
level="file">
<did>
<unittitle>Letter to Colonel B. F. Shaw. May 2 [i.e., 22], 1856. Signature only. 1 p.
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433308"
id="ref66"
level="file">
<did>
<unittitle>Letter to Stevens. May 27, 1856, written by Quincy A. Brooks and signed also by Judge Monroe. 2 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">11</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433309"
id="ref68"
level="file">
<did>
<unittitle>SHAW, BENJAMIN F.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433310"
id="ref69"
level="file">
<did>
<unittitle>Letter to Stevens. May 5, 1856. 2 p.</unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">12</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433311"
id="ref70"
level="file">
<did>
<unittitle>TILTON, JAMES, Adjutant General, W.T.V.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433312"
id="ref71"
level="file">
<did>
<unittitle>Letter to the Commanding Officer at Fort Steilacoom, W.T. [Lt. Col. Casey]. Apr 2, 1856. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433313"
id="ref73"
level="file">
<did>
<unittitle>Copy of letter to President Pierce. Aug 18, 1856. 5 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433314"
id="ref75"
level="file">
<did>
<unittitle>Letter to Stevens. Aug 18, 1856. 3 p. Charges and specification of charges against Charles Wren. Certified copy signed by J. M. Bachelder, J.P. [1856.] 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">13</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433315"
id="ref77"
level="file">
<did>
<unittitle>WASHINGTON TERRITORY. GOVERNOR (Isaac I. Stevens)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433316"
id="ref78"
level="file">
<did>
<unittitle>Draft of the proclamation of martial law in Pierce County, W. T. [Apr 3, 1856]. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433317"
id="ref80"
level="file">
<did>
<unittitle>Proclamation of martial law in Thurston County, May 13, 1856. Signed by Isaac I. Stevens. 1 p.
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433318"
id="ref82"
level="file">
<did>
<unittitle>Copy of the proclamation abrogating martial law in Pierce and Thurston Counties, May 24, 1856, with a deposition regarding the proclamation, signed by Simpson P. Moses, May 26, 1856. 2 p.
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433319"
id="ref84"
level="file">
<did>
<unittitle>Draft of a respite issued by Governor Stevens to himself as defendant against the charge of con- tempt of court, in the handwriting of Judge Strong [Jul 10, 1856]. 1 p. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref84_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref84_c2" localtype="folder" parent="aspace_ref84_c1">14</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/433320"
id="ref86"
level="file">
<did>
<unittitle>WASHINGTON TERRITORY. MILITARY COMMISSION.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/433321"
id="ref87"
level="file">
<did>
<unittitle>Memorandum of the charges against the defendants, in the court martial [Lyon A. Smith, Charles Wren, and John McLeod], in the handwriting of Q. A. Brooks. 1 p. </unittitle>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref87_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref87_c2" localtype="folder" parent="aspace_ref87_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/433322"
id="ref89"
level="file">
<did>
<unittitle>"Proceedings of a General Court Martial or Military Commission convened at Camp Montgomery by virtue of an order from Isaac I. Stevens, Governor of the Territory of Washington, and Commander-in-Chief of the Volunteer Forces thereof," May 20-29, 1856. 16 p.
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856">1856</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/57895 /locations/4051"
containerid="39002094211688"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref89_c2" localtype="folder" parent="aspace_ref89_c1">15</container>