-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1173.xml
1802 lines (1802 loc) · 101 KB
/
1173.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.micro">beinecke.micro</recordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Women in the West: Microfilm Sets
</titleproper>
<titleproper localtype="filing">Women in the West: Microfilm Sets</titleproper>
<author>by Elizabeth Bolton</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>February 1995</date>
<num>WA MFM 1-6</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has MARC records in Yale's ILS with the following bib numbers: <num localtype="Orbis-bib">3840084</num> (WA MFM 1) <num localtype="Orbis-bib">3840280</num> (WA MFM 2) <num localtype="Orbis-bib">3840758</num> (WA MFM 3) <num localtype="Orbis-bib">3841010</num> (WA MFM 4) <num localtype="Orbis-bib">3841201</num> (WA MFM 5) <num localtype="Orbis-bib">3841321</num> (WA MFM 6).</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 2</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:04-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/1173" level="collection">
<did>
<unittitle>Women in the West: Microfilm Sets</unittitle>
<unitid>WA MFM 1-6</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdesc/>
<physdesc localtype="container_summary">6 microfilms</physdesc>
<unitdatestructured altrender="1753-1919, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1753">1753</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_cf07eefda6339c976364191940727ba4">Six microfilm sets: Frontier Women, Frontier Women II, Frontier Women III, Women in California, Women in California II, and Mormon Women.</abstract>
<physdesc id="aspace_bd3683899ffbff49916eb07c2b3124d0">Other Storage Formats: Microfilm [6 reels]</physdesc>
</did>
<acqinfo id="aspace_e000fb4a9a2b97ebc690e2fdb1436bac">
<head>Immediate Source of Acquisition</head>
<p>Original materials catalogued separately. For provenance information, consult the catalog record for each title.</p>
</acqinfo>
<userestrict id="aspace_f1a75bdfb92c09fd9e27f440b436ec5e">
<head>Conditions Governing Use</head>
<p>The Women of the West Microfilm Sets are 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>
<prefercite id="aspace_d695996d4cc4743f408ef002fd98cf40">
<head>Preferred Citation</head>
<p>Women of the West: Microfilm Sets. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_2292b41968eeac5fe858f833b5c4cc86">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<scopecontent id="aspace_5ad3fa3e2606bb4ed7d5bce1cfef7013">
<head>Scope and Contents</head>
<p>In 1979 an effort was made to microfilm women-related collections and items in the Western Americana collection. Six microfilm sets were created: Frontier Women, Frontier Women II, Frontier Women III, Women in California, Women in California II, and Mormon Women. A finding aid was created for the film and was included on each reel.</p>
<p>At the time that the materials were filmed, some items were cataloged but many others were not. Since that time, most of the material has been cataloged. A new guide was needed to reflect the cataloged status of the items on the film.</p>
<p>The following list is meant to serve as a guide to placement of items on the microfilm reels. The catalog number, main entry, title, and date information is given for each item or collection. For the full bibliographical descriptions of materials cited in this list, the researcher should consult the main catalog record.</p>
<p>Several of the items filmed are part of larger collections, some of which have not been filmed in their entirety. In such cases, a note gives the name of the collection in which the item[s] will be found and the catalog number of the larger collection.</p>
</scopecontent>
<dsc>
<c altrender="/repositories/11/archival_objects/432573"
id="ref8"
level="series">
<did>
<unittitle>Frontier women microfilm set</unittitle>
<unitid>WA MFM 1</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="materialtype">
<quantity>1</quantity>
<unittype>Reel</unittype>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1849">1849</fromdate>
<todate standarddate="1913">1913</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_6f86a1ad634f27ec94fa45d64ccc6c69">
<head>Scope and Contents</head>
<p>Women's diaries, correspondence, and related papers. Written by women who were early settlers in California, Colorado, Idaho, Oregon, and Washington. Includes accounts of the westward journey and of life on the frontier.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/432574"
id="ref9"
level="file">
<did>
<unittitle>Mary Burrell's book</unittitle>
<unitdatestructured altrender="1854" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1854">1854</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_dc12ad35d3dea5abd55ccc680bf590ca">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3100789">WA MSS 58</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432575"
id="ref10"
level="file">
<did>
<unittitle>Mary Rockwood Powers. The overland route, leaves from the journal of a California emigrant</unittitle>
<unitdatestructured altrender="1859" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1859">1859</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_6538c89353a18f4d8ad677d9582b455d">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3106588">WA MSS 387</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432576"
id="ref11"
level="file">
<did>
<unittitle>Celinda E. Hines. Overland journey from Hastings, Oswego County, New York, to Portland, Oregon</unittitle>
<unitdatestructured altrender="1853" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1853">1853</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_58f58af564330aa1bfcb53725c706b57">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3107240">WA MSS 424</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432577"
id="ref12"
level="file">
<did>
<unittitle>Sarah Green Davis. Diary of an overland journey to California</unittitle>
<unitdatestructured altrender="1849-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1849">1849</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_8d37cf1acff66d5ca0bee50e20da4769">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3509223">WA MSS S-1320</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432578"
id="ref13"
level="file">
<did>
<unittitle>Martha Missouri Bishop Moore. Journal of a trip to California</unittitle>
<unitdatestructured altrender="1860" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860">1860</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_f769639ed9b53db3c9f6e369f2be6f16">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3483021">WA MSS S-1438</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432579"
id="ref14"
level="file">
<did>
<unittitle>Louisa Cook Walters papers</unittitle>
<unitdatestructured altrender="1852-91" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1852">1852</fromdate>
<todate standarddate="1891">1891</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_8db828dfe005517071605bb71501250b">
<head>Scope and Contents</head>
<p>Incl: R.M. Fuller, Letters to Louisa Cook</p>
</scopecontent>
<originalsloc id="aspace_10f151f7df2993b9f063521b9c9aa3eb">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3759047">WA MSS S-1656</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432580"
id="ref16"
level="file">
<did>
<unittitle>Lucy H. Fosdick. Across the plains in 61</unittitle>
</did>
<originalsloc id="aspace_31451acdf806be7544a44f1cd86ee154">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3441508">WA MSS S-1410 F786</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432581"
id="ref17"
level="file">
<did>
<unittitle>Jennie T. Kimball. Diary of a trip to California</unittitle>
<unitdatestructured altrender="1876-77" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_73c35007f60e8a9523f9996bc26414f2">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3757817">WA MSS S-1683</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432582"
id="ref18"
level="file">
<did>
<unittitle>Lillie I. Wells. My journey to California</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<originalsloc id="aspace_0d97fce334aba48677c1d764e03a171b">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3756123">WA MSS S-1669 W4621</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432583"
id="ref19"
level="file">
<did>
<unittitle>Maria R. Hodgdon. Journal of a voyage from Boston to San Francisco in the ship Golden Rocket commanded by Capt. Charles Pendleton</unittitle>
<unitdatestructured altrender="1859-60" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1859">1859</fromdate>
<todate standarddate="1860">1860</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_5ef8ffbed51265dfa03a0b292b44bcd8">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3454880">WA MSS S-1425</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432584"
id="ref20"
level="file">
<did>
<unittitle>Julia R. Collins. Letters</unittitle>
<unitdatestructured altrender="1878-82" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878">1878</fromdate>
<todate standarddate="1882">1882</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_127c0e5f9beda0b7bfc0cddfc391ee74">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3145304">WA MSS S-1268</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432585"
id="ref21"
level="file">
<did>
<unittitle>Almira Markell papers</unittitle>
<unitdatestructured altrender="1881-1913" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881">1881</fromdate>
<todate standarddate="1913">1913</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_aedd7837b38c1a656b5230e6411c4c13">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3759170">WA MSS S-1660</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
</c>
<c altrender="/repositories/11/archival_objects/432586"
id="ref22"
level="series">
<did>
<unittitle>Frontier women II microfilm set</unittitle>
<unitid>WA MFM 2</unitid>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1821">1821</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2365f05c0701e741efc65a9c0a99db22">
<head>Scope and Contents</head>
<p>Women's letters and manuscripts. Written by early settlers of Alaska, Iowa, Kansas, Minnesota, Missouri, Oklahoma, Oregon, Utah, and Washington.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/432587"
id="ref23"
level="file">
<did>
<unittitle>Miscellaneous Missouri letters</unittitle>
<unitdatestructured altrender="1853-1902" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1902">1902</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_9141a030193f8330879451497d4c48c9">
<head>Scope and Contents</head>
<p>Note: partially filmed, see box listing for list of letters filmed</p>
</scopecontent>
<originalsloc id="aspace_05952e159fdb46d3170c299f2258c3c0">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3771518">WA MSS S-1661</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432588"
id="ref25"
level="file">
<did>
<unittitle>Caroline M. Moss. Letter to Captain O. P. Moss</unittitle>
<unitdatestructured altrender="1846 Nov 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-11-02">1846 Nov 2</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_0330f231640e8ece88fce2a74a4bf675">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3196968">WA MSS S-563 M855</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432589"
id="ref26"
level="file">
<did>
<unittitle>George H. Hall. Overland letters</unittitle>
<unitdatestructured altrender="1849-50" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1849">1849</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_31fb90aec647d48d28ca6803aff61739">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3116411">WA MSS S-288 H1422</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432590"
id="ref27"
level="file">
<did>
<unittitle>Noah Pease. Letters</unittitle>
<unitdatestructured altrender="1841-55" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1841">1841</fromdate>
<todate standarddate="1855">1855</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_d92b4731213e0f45b90f0f540210148a">
<head>Scope and Contents</head>
<p>Incl: Letters from Cyrus Russell, Flavia Pease, and Martin F. Pease</p>
</scopecontent>
<originalsloc id="aspace_f3d79063c735d41101b4a65212c61292">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3162505">WA MSS S-21 P321</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432591"
id="ref29"
level="file">
<did>
<unittitle>Sallie and J. Bowers. Letters</unittitle>
<unitdatestructured altrender="1870-71" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1871">1871</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_3705be8153d2ea96bc0a49a83d408c04">
<head>Scope and Contents</head>
<p>In: Harrison Lawrence Family Correspondence (WA MSS S-1670 L436)</p>
</scopecontent>
<originalsloc id="aspace_2435e5b1dee0daf9ae9944ad195971e9">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3727481">WA MSS S-1670 L436</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432592"
id="ref31"
level="file">
<did>
<unittitle>Sue Hill. Letters</unittitle>
<unitdatestructured altrender="1868-69" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868">1868</fromdate>
<todate standarddate="1869">1869</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_4157f5b05ce56f5b61449cf4a3c768bd">
<head>Existence and Location of Originals</head>
<p>Request the original materials from the <ref href="http://hdl.handle.net/10079/bibid/3100789">Malick Family Papers</ref> (WA MSS-1298).</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432593"
id="ref33"
level="file">
<did>
<unittitle>Mary Ann Scott. Letter: Worthington, Ohio, to Mrs. Emily Piatt, Hartford, Indiana</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<originalsloc id="aspace_643253785199fa10f053cb084a24cf6e">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3727824">WA MSS S-1650 Sco85</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432594"
id="ref34"
level="file">
<did>
<unittitle>William Shively. Letter: Zwingle, Iowa, to Joseph Lenhart</unittitle>
<unitdatestructured altrender="1865 Jul 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865-07-09">1865 Jul 9</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_6c6e8b5cca53b11c01cd3a255d2c2e64">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3741461">WA MSS S-1651 Sh69</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432595"
id="ref35"
level="file">
<did>
<unittitle>Tabitha Lowe Stennett. Untitled account of growing up in Iowa</unittitle>
<unitdatestructured altrender="1905 Jan 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1905-01-10">1905 Jan 10</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_833f301b02e510b87bf512992f7b7ada">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3756259">WA MSS S-1653 St42</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432596"
id="ref36"
level="file">
<did>
<unittitle>John Brown family letters: Kansas</unittitle>
<unitdatestructured altrender="1855-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1855">1855</fromdate>
<todate standarddate="1856">1856</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_2f5ed67e75e980ad52f4cb36230c13ad">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3763340">WA MSS S-1671 B8131</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432597"
id="ref37"
level="file">
<did>
<unittitle>Lettie E. Garrison. Letter: to my dear sister</unittitle>
<unitdatestructured altrender="1862 Sep 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-09-27">1862 Sep 27</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_ffb71a3a275470240c2dd2f372fd3734">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3199009">WA MSS S-1199 G193</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432598"
id="ref38"
level="file">
<did>
<unittitle>Mary Rice. Letter: to her sister, Hannah Rice</unittitle>
<unitdatestructured altrender="1835[?] Nov 15"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1835-11-15">1835[?] Nov 15</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_22f33f3a79c2733f77feacf77f295efe">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3206997">WA MSS S-1096 R365</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432599"
id="ref39"
level="file">
<did>
<unittitle>Harriet Woolley. Letterbook</unittitle>
<unitdatestructured altrender="1821-34" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1821">1821</fromdate>
<todate standarddate="1834">1834</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_6e44036cd27ebfb3e47f185754064b62">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3756705">WA MSS S-1682</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432600"
id="ref40"
level="file">
<did>
<unittitle>Mary C. Denver. Letter: to J. W. Denver</unittitle>
<unitdatestructured altrender="1847 Oct 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1847-10-06">1847 Oct 6</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_7e33f0276d5307fd41aedc1787e8d91e">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3199237">WA MSS S-528 D439</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432601"
id="ref41"
level="file">
<did>
<unittitle>Louise C. Denver. Mexican War Pension</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<originalsloc id="aspace_faf39e3b0e1b88ea1398d00ec79fbda8">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3190073">WA MSS S-587 D4375</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432602"
id="ref42"
level="file">
<did>
<unittitle>Abigail Raymond Smith. Missionary letters</unittitle>
<unitdatestructured altrender="1836-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1836">1836</fromdate>
<todate standarddate="1856">1856</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_1bd1066f4cfbe67e0c251abd00d5ec32">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3135335">WA MSS S-1284 Sm5</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432603"
id="ref43"
level="file">
<did>
<unittitle>Eliza Hart Spalding. Note</unittitle>
<unitdatestructured altrender="1843 Aug 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1843-08-08">1843 Aug 8</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_fa3c600b401fa85f0dc97be7397c1e10">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3168639">WA MSS 434</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432604"
id="ref44"
level="file">
<did>
<unittitle>Mary Hayden. Letter: to Harry M. Boutelle</unittitle>
<unitdatestructured altrender="1887 May 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1887-05-08">1887 May 8</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_d7e1de36aff1c29e6dcfceb38b21bc4f">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3174011">WA MSS S-280 H324</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432605"
id="ref45"
level="file">
<did>
<unittitle>Sarah McAllister Hartman. Reminiscences</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<originalsloc id="aspace_615568db86c137fa685a000addfd67c5">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3156424">WA MSS 247</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432606"
id="ref46"
level="file">
<did>
<unittitle>Frances Fuller Victor: Letters to Elwood Evans</unittitle>
<unitdatestructured altrender="1865-86" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1865">1865</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2963e59d24ea229927ee8dd971e8315d">
<head>Scope and Contents</head>
<p>In: Elwood Evans Papers (WA MSS 172)</p>
</scopecontent>
<originalsloc id="aspace_4152b9366485793d32dae77c5c2ec7a8">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3122895">WA MSS 172</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432607"
id="ref48"
level="file">
<did>
<unittitle>Paulina Cohen. Letter: to R. E. Coontz</unittitle>
<unitdatestructured altrender="1892 Mar 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1892-03-03">1892 Mar 3</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_4759518355bfc8daf127ef9f1e2d5874">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3173901">WA MSS S-359 C66</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432608"
id="ref49"
level="file">
<did>
<unittitle>Mattie Pajoman. Letter: Afognak, Alaska, to Miss Saunders</unittitle>
<unitdatestructured altrender="1912 Jul 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912-07-05">1912 Jul 5</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_68df6a4b28fadd482dc81e79eb824fb9">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3727921">WA MSS S-1649 P168</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432609"
id="ref50"
level="file">
<did>
<unittitle>Elizabeth Hukill Fickes. Diary</unittitle>
<unitdatestructured altrender="1856-57" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1856">1856</fromdate>
<todate standarddate="1857">1857</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_fbe45d9fdbe84b4eb3b80ff1f1faccf0">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3728110">WA MSS S-1684 F446</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432610"
id="ref51"
level="file">
<did>
<unittitle>Anne Ellis. Letters</unittitle>
<unitdatestructured altrender="1851-97" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1851">1851</fromdate>
<todate standarddate="1897">1897</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_ad456834c6b4979678c7fd8e301c659c">
<head>Scope and Contents</head>
<p>In: William Ellis. Letters to his Wife Cornelia (WA MSS S-41)</p>
</scopecontent>
<originalsloc id="aspace_af16e90f9c03cb0100a91606d8f7e345">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3116277">WA MSS S-41</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432611"
id="ref53"
level="file">
<did>
<unittitle>Catherine Hutton. Account of a visit by George Catlin</unittitle>
<unitdatestructured altrender="1844[?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1844">1844[?]</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_cc648be541d9017d5588da90921885a4">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3769690">WA MSS S-1646 H979</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432612"
id="ref54"
level="file">
<did>
<unittitle>George Sand. Letter: to Edouard Thomas Charton</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<originalsloc id="aspace_69e361e8b177bc81341a85752887a92f">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3180535">WA MSS S-461 Sa56</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432613"
id="ref55"
level="file">
<did>
<unittitle>Mary Benjamin Kirkpatrick. Letters: to her husband Charlie</unittitle>
<unitdatestructured altrender="1864-65" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1864">1864</fromdate>
<todate standarddate="1865">1865</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_7f7036399da221ad3b548954503ff9b2">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3145297">WA MSS S-1255 K636</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432614"
id="ref56"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letter: to Mr. Thomas A. Warburton</unittitle>
<unitdatestructured altrender="1905 Mar 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1905-03-16">1905 Mar 16</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_62d47c7932280b6a4deb9228ec2a37cd">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3156240">WA MSS 127</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432615"
id="ref57"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letters: to Mrs. Kingsley</unittitle>
<unitdatestructured altrender="1886-89" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1886">1886</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_f7fb12eb149b74ed93be90c14423d273">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3169295">WA MSS S-93 C966</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432616"
id="ref58"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letter: to Mr. Bagby</unittitle>
<unitdatestructured altrender="1889 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1889-02-06">1889 Feb 6</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_ce17d2d426addc66764d72c92b010685">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3196160">WA MSS S-393 C966</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432617"
id="ref59"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letter: to Miss Watson</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<scopecontent id="aspace_41982ed14730a71ad979785b1bfd06f9">
<head>Scope and Contents</head>
<p>In: George Armstrong Custer Papers (WA MSS S-1643)</p>
</scopecontent>
<originalsloc id="aspace_dc50a41fff8586985badc2094794e2ac">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3757499">WA MSS S-1643</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432618"
id="ref61"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letter: to [Frederick Samuel] Dellenbaugh</unittitle>
<unitdatestructured altrender="1919 Mar 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1919-03-26">1919 Mar 26</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_dce7cb28ba14fcdb1b311422c6638e5c">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3757573">WA MSS S-1641 C966</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432619"
id="ref62"
level="file">
<did>
<unittitle>Elizabeth Bacon Custer. Letter: to General Wright</unittitle>
<unitdatestructured altrender="1888 May 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1888-05-20">1888 May 20</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_ee54e6e67c447466ac5b91db508567d1">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3757644">WA MSS S-1642 C966</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432620"
id="ref63"
level="file">
<did>
<unittitle>Jessie Benton Frémont. Letter: St. Louis, to Mr. Claiborne</unittitle>
<unitdatestructured altrender="1843 Oct 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1843-10-30">1843 Oct 30</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_24ebd2fcf464602f58253bfcbf2b9666">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3727698">WA MSS S-1668 F8861</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
</c>
<c altrender="/repositories/11/archival_objects/432621"
id="ref64"
level="series">
<did>
<unittitle> Frontier women III microfilm set</unittitle>
<unitid>WA MFM 3</unitid>
<unitdatestructured altrender="circa 1823-1894"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1823">1823</fromdate>
<todate standarddate="1894">1894</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_8141e0a3f77daf7e536494dd4c732806">
<head>Scope and Contents</head>
<p>Women's letters, manuscripts, and other papers. Writers include early settlers of Arkansas, Kansas, Oregon, and Washington.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/432622"
id="ref65"
level="file">
<did>
<unittitle>Blaine family letters</unittitle>
<unitdatestructured altrender="1853-58" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1858">1858</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_8b04f8abe0af741de05b07c656d9a611">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3155557">WA MSS 34</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432623"
id="ref66"
level="file">
<did>
<unittitle>Sophronia Sumner Hitchcock. Dwight Mission map</unittitle>
<unitdatestructured altrender="[1823?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1823">[1823?]</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_cbb2493feaaa25f7f9488b7b8a30ed9b">
<head>Scope and Contents</head>
<p>Map of the Dwight Mission, Pope County, Arkansas</p>
</scopecontent>
<originalsloc id="aspace_76797da3a1de26f48ed1159c251220dd">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3162011">WA MSS 257</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432624"
id="ref68"
level="file">
<did>
<unittitle>Valentine McGillycuddy. Army expedition notebook</unittitle>
<unitdatestructured altrender="1876-77" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1876">1876</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
</did>
<originalsloc id="aspace_a2cc823ac928ae478fcf01bd3a8f59cb">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3133079">WA MSS S-5</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432625"
id="ref69"
level="file">
<did>
<unittitle>Ella C. Granger: Letter to Col. Manning</unittitle>
<unitdatestructured altrender="1879 Jul 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1879-07-25">1879 Jul 25</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_d3f3373adc2359043bd5c26bd9087a59">
<head>Scope and Contents</head>
<p>In: George A. Manning Letters (WA MSS 326)</p>
</scopecontent>
<originalsloc id="aspace_c1478fd2f35dfa3b6647bb50eedab715">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3164163">WA MSS 326</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432626"
id="ref71"
level="file">
<did>
<unittitle>Mrs. L. Sperry. Letter: to her son Anson Sperry</unittitle>
<unitdatestructured altrender="1849 Sep 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849-09-19">1849 Sep 19</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_7a3dd288e8877ead438125e9765ae645">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3168654">WA MSS 438</ref>, through Orbis, the library's online catalog.</p>
</originalsloc>
</c>
<c altrender="/repositories/11/archival_objects/432627"
id="ref72"
level="file">
<did>
<unittitle>Fort life on the frontier</unittitle>
<unitdatestructured altrender="1868[?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868">1868[?]</datesingle>
</unitdatestructured>
</did>
<originalsloc id="aspace_f19d3eeef1633812b0c33538cefac1d3">
<head>Existence and Location of Originals</head>
<p>Request this item, <ref href="http://hdl.handle.net/10079/bibid/3762392">WA MSS S-1645 F7751</ref>, through Orbis, the library's online catalog.</p>