-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1432.xml
2716 lines (2716 loc) · 148 KB
/
1432.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.salsbury">beinecke.salsbury</recordid>
<otherrecordid localtype="BIB">3251305</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Nathan Salsbury Papers
</titleproper>
<titleproper localtype="filing">Salsbury (Nathan) Papers</titleproper>
<author>by Bruce P. Stark</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>November 1986</date>
<num>YCAL MSS 17</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">3251305</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-6</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="30">30</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="788">788</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-09T01:01:05-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 01:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1432" level="collection">
<did>
<unittitle>Nathan Salsbury papers</unittitle>
<unitid>YCAL MSS 17</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>4.96</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1965">1965</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1866">1866</fromdate>
<todate standarddate="1903">1903</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_9b4f5b0165d5b73fee4999c02644649f">The papers contain correspondence, memorabilia, printed material, writings and photographs on the life and career of Nate Salsbury.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Salsbury, Nathan, 1846-1902</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_cac399c0d30fd52b696a7df10289b710">
<head>Immediate Source of Acquisition</head>
<p>Gift of Rebecca Salsbury James and Rachel Salsbury Schloss, 1964-67.</p>
</acqinfo>
<userestrict id="aspace_dd97aab269644a586ac86d931c41da67">
<head>Conditions Governing Use</head>
<p>The Nathan Salsbury Papers 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_5cfcc57b184376019d79d1d4c013ad4d">
<head>Preferred Citation</head>
<p>Nathan Salsbury Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_ebe4308c7ffaf5ff1cb84b4ff02fa1fd">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 6: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<relatedmaterial id="aspace_e348e013c25f11fa454ef185dfb9878b">
<head>Associated Materials</head>
<p>Nathan Salsbury, Objects Associated with Buffalo Bill (WA MSS S-3019), Beinecke Rare Book and Manuscript Library.</p>
</relatedmaterial>
<bioghist id="aspace_c3891d3db84d830f19017537654a62fe">
<head>NATHAN SALSBURY (1846-1902)</head>
<p>Nathan Salsbury, son of Nathan and Rebecca Welch Salsbury, was born in Freeport, Illinois. Left an orphan, he lived with his stepfather, Jedutha Fuller. On the outbreak of the Civil War, he enlisted in the ranks of the Union Army. He served in the 89th and 59th Illinois regiments in the Army of the Cumberland and was wounded three times. After discharge Salsbury became an actor and wrote several plays, including "Patchwork" and "On the Trail, or, Money and Misery." In 1875 he organized Salsbury's Troubadours, a successful acting company, and in 1884 joined Buffalo Bill as co-owner of Buffalo Bill's Wild West Show. Eleven years later he established "Black America," an acting, singing, and tumbling extravaganza with a cast of 600 African Americans.</p>
<p>Salsbury married Rachel Samuels, a young actress, in 1887. The couple had four children, one of whom was Rebecca Salsbury James. Nate Salsbury died on December 24, 1902 in Long Branch, New Jersey.</p>
<p>For additional biographical information, see <title localtype="simple" render="italic">
<part>The National Cyclopaedia</part>
</title>
<title localtype="simple" render="italic">
<part>of American Biography</part>
</title>, Vol. VIII, page 166, and his "Reminiscences" (Box 2, folders 62-63).</p>
<p>SALSBURY FAMILY</p>
<p>Nathan Salsbury (1780- ) m. Lemira Clark (1788- )</p>
<p>Nathan Salsbury ( -1847?) m. Rebecca Welch* ( -1854?)</p>
<p>Nathan Salsbury (1846-1902) m. 1887 Rachel Samuels (1856- )</p>
<p>Nathan Salsbury (1888-1963)</p>
<p>Milton S. Salsbury (1890-</p>
<p>Rachel Salsbury (1891- ) m. William H. Schloss</p>
<p>Rebecca Salsbury (1891-1968) m. 1 Paul Strand (1890-1976) m. 2 William H. James (1899-1962)</p>
<p>Martha Salsbury m. Jedutha Fuller (1812?-</p>
<p>Washington C. Salsbury m. Celestina Rawson</p>
<p>Nathan Rawson Salsbury (1856- ) m 1881 Frances A Gibbs (1866- )</p>
<p>Mattie Salsbury m. Akeley</p>
<p>Lemira Salsbury m. 1847 Jessie C. Wells</p>
<p>Note: The first Nathan Salsbury had four other children. *Rebecca Welch later married Jedutha Fuller and after her death Fuller married Martha Salsbury.</p>
</bioghist>
<scopecontent id="aspace_ed2bc4d308eaa4235ad6d86294a0f625">
<head>Scope and Contents</head>
<p>The Nathan Salsbury Papers contain correspondence, personal papers, photographs, a scrapbook, and memorabilia documenting the life and career of Nate Salsbury, nineteenth-century actor and co-owner of Buffalo Bill's Wild West Show. The papers span the dates 1860-1965, but the bulk of the material covers the years 1866-1903.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, consist of eighteen folders of chronologically arranged correspondence. The two earliest letters were written by Nate Salsbury in 1860-61. In them he alludes to running away from his stepfather and to his interest in joining the circus. These are followed by nine letters from Harriet C. Fuller, Nate's teen-age half-sister, written between 1866-70. Also included in the correspondence are letters from Salsbury relatives and friends which mention his acting career. Some useful information concerning Nate's long association with William F. Cody and the Buffalo Bill Wild West Show can also be found. The collection contains nine letters from Buffalo Bill and additional letters from J. A. Bailey, John M. Burke, Jack Crawford, Jules Keen, and Steele MacKaye concerning the Show. In his reminiscences (Box 2, folder 63), Salsbury stated that when he wrote his famous book, its title was going to be "Sixteen Years in Hell with Buffalo Bill." Cody, was in his opinion, a dishonest drunkard whose only loyalty was to his incompetent cronies. Buffalo Bill's drinking problem is discussed several times throughout the papers. In Cody's first letter to Salsbury, probably written in 1884, he vowed "that after this you will never see me under the influence of liquor," although he added, "I may have to take two or three drinks to day to brace up." In a 1907 letter to Rachel Salsbury, Jack Crawford asserted that Buffalo Bill was "not a Square dealer" and that "Ned Buntline created the most selfish and brutal faker . . . ever perpetrated on the American People." The collection also includes invitations and requests for tickets, most dating from the time of the Wild West Show's tours of Great Britain in 1887 and 1892.</p>
<p>For the period between 1891 and Salsbury's death in December 1902, there is a small series of letters between Salsbury and his wife, Rachel, and sons, Nate, Jr. and Milton. Other correspondents include David J. Burrell, Kate Field, General Nelson A. Miles, Milton E. Milner, Frederic Remington, and Bram Stoker. Correspondence dating from after Salsbury's death discusses the sale of Salsbury's stock in the Buffalo Bill Show, other estate matters, the disposition of artifacts he collected, and reminiscences about Nate Salsbury and Buffalo Bill. In a 1924 letter, for example, Frank Butler, husband of Annie Oakley, refers to Salsbury "as one of the whitest men" he had ever known.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref30">Series II, <title localtype="simple" render="italic">
<part>Personal Papers</part>
</title>
</ref>, are found in Boxes 1-2, folders 19-64. Included are biographical information, memorabilia on Buffalo Bill's Wild West, invitations and programs, printed works, papers on Salsbury's Troubadours, and writings of Nate Salsbury. The Buffalo Bill folders contain copies of the 1887 articles of incorporation, invitations, programs, and schedules. The printed works section offers some useful information on Salsbury's Troubadours and the Wild West Show. A great deal of additional Wild West Show material is found in the scrapbook (Box 5, folder 106). Writings include the original manuscript for an 1871 play, "On the Trail; or, Money and Misery" together with a number of poems, perhaps used in stage performances; an 1865 poem written by Salsbury; and a series of reminiscences written in 1901 or 1902. The reminiscences contain anecdotes and stories of his Civil War experiences, Salsbury's Troubadours, the founding of the Wild West Show, and pungent observations on Buffalo Bill. One Civil War anecdote featuring General William T. Sherman is particularly interesting. Other personal papers include Civil War discharge papers; poetic tributes to Salsbury and Buffalo Bill; recitations dating from Salsbury's acting days; a brochure for "The Reservation," cottages in Long Branch, New Jersey owned and rented by Salsbury; and a posthumous tribute by David J. Burrell.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref87">Series III, <title localtype="simple" render="italic">
<part>Photographs</part>
</title>
</ref>, predominately family and friends are housed in Boxes 2-3, folders 65-89. Many of the pictures of Nate Salsbury and Rachel Samuels Salsbury date from the period when both were on the stage. In addition, the photographs contain thirty stereoscopic views of the Wild West Show (Box 4, folders 90-97) sold by Underwood & Underwood. A small <title localtype="simple" render="italic">
<part>Memorabilia</part>
</title> series includes three jubilee coins of Great Britain, two medals, and a paperweight.</p>
<p>The collection concludes with one box of <ref actuate="onrequest" show="replace" target="ref110">Oversize</ref>papers. The most significant item in the section is a large scrapbook which houses letters, invitations, menus, tickets, Wild West Show memorabilia, newspaper clippings, programs, broadsides, and other like papers. Much of the material found elsewhere in the Salsbury Papers was removed from the scrapbook. The letters include such items as a dinner invitation from Frederic Remington, a short August 1888 letter from Albert Bierstadt, a June 6, 1888 letter from Steele MacKaye congratulating Salsbury on the birth of a son, and an 1888 letter from Henry Watterson on the stationery of the "Headquarters National Democratic Committee." Other items of interest include a May 22, 1873 special order of Abraham Lincoln Post 11 GAR appointing Salsbury one of six company commanders; German, Spanish, and Italian programs for the Wild West Show; publicity for Salsbury's Troubadours; and a December 29, 1865 open letter from Brevet Brigadier General P. Sidney Post to the soldiers of the 59th Regiment of the Illinois Volunteer Infantry congratulating them for their outstanding war service.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85089018"
source="lcsh">
<part localtype="topical">Musicals</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85103395"
source="lcsh">
<part localtype="topical">Playwriting</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh89002763"
source="lcsh">
<part localtype="topical">Revues</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85146691"
source="lcsh">
<part localtype="topical">Wild west shows</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140210"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">Civil War, 1861-1865</part>
<part localtype="genre_form">Anecdotes</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026479" source="aat">
<part localtype="genre_form">Reminiscences</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Stereographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Tintypes (prints)</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Actors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Theatrical managers</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname>
<part localtype="agent_person">Buffalo Bill, 1846-1917</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Fuller, Hattie C.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Salsbury, Nathan, 1846-1902</part>
</persname>
<persname source="local">
<part localtype="agent_person">Salsbury, Rachel Samuels</part>
</persname>
<famname>
<part localtype="agent_family">Salisbury family</part>
</famname>
<corpname>
<part localtype="agent_corporate_entity">Buffalo Bill's Wild West Company</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Salsbury's Troubadours</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/542177"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1860-66" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1866">1866</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/542178"
id="ref13"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1860-66" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1866">1866</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
<daoset altrender="/repositories/11/digital_objects/187256">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060000"
identifier="oid:17060000"
linktitle="21 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060112/full/!150,150/0/default.jpg"
identifier="oid:17060000"
linktitle="21 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060000"
identifier="oid:17060000"
linktitle="21 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542179"
id="ref14"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1868-69" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1868">1868</fromdate>
<todate standarddate="1869">1869</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
<daoset altrender="/repositories/11/digital_objects/187253">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060001"
identifier="oid:17060001"
linktitle="26 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060133/full/!150,150/0/default.jpg"
identifier="oid:17060001"
linktitle="26 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060001"
identifier="oid:17060001"
linktitle="26 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542180"
id="ref15"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1870-78" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
<daoset altrender="/repositories/11/digital_objects/187252">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060002"
identifier="oid:17060002"
linktitle="18 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060159/full/!150,150/0/default.jpg"
identifier="oid:17060002"
linktitle="18 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060002"
identifier="oid:17060002"
linktitle="18 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542181"
id="ref16"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1883-86" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1883">1883</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">4</container>
<daoset altrender="/repositories/11/digital_objects/187251">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060003"
identifier="oid:17060003"
linktitle="34 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060177/full/!150,150/0/default.jpg"
identifier="oid:17060003"
linktitle="34 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060003"
identifier="oid:17060003"
linktitle="34 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542182"
id="ref17"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1887" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1887">1887</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">5</container>
<daoset altrender="/repositories/11/digital_objects/187244">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060004"
identifier="oid:17060004"
linktitle="26 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060211/full/!150,150/0/default.jpg"
identifier="oid:17060004"
linktitle="26 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060004"
identifier="oid:17060004"
linktitle="26 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542183"
id="ref18"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1888-89" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1888">1888</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">6</container>
<daoset altrender="/repositories/11/digital_objects/187246">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060005"
identifier="oid:17060005"
linktitle="10 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060237/full/!150,150/0/default.jpg"
identifier="oid:17060005"
linktitle="10 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060005"
identifier="oid:17060005"
linktitle="10 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542184"
id="ref19"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1890-93" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890">1890</fromdate>
<todate standarddate="1893">1893</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">7</container>
<daoset altrender="/repositories/11/digital_objects/187245">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060006"
identifier="oid:17060006"
linktitle="26 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060247/full/!150,150/0/default.jpg"
identifier="oid:17060006"
linktitle="26 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060006"
identifier="oid:17060006"
linktitle="26 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542185"
id="ref20"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1894-95" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894">1894</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">8</container>
<daoset altrender="/repositories/11/digital_objects/187243">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060007"
identifier="oid:17060007"
linktitle="18 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060273/full/!150,150/0/default.jpg"
identifier="oid:17060007"
linktitle="18 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060007"
identifier="oid:17060007"
linktitle="18 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542186"
id="ref21"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1896" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1896">1896</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">9</container>
<daoset altrender="/repositories/11/digital_objects/187247">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060008"
identifier="oid:17060008"
linktitle="16 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060291/full/!150,150/0/default.jpg"
identifier="oid:17060008"
linktitle="16 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060008"
identifier="oid:17060008"
linktitle="16 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542187"
id="ref22"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1897-98" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1898">1898</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">10</container>
<daoset altrender="/repositories/11/digital_objects/187248">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060009"
identifier="oid:17060009"
linktitle="19 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060307/full/!150,150/0/default.jpg"
identifier="oid:17060009"
linktitle="19 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060009"
identifier="oid:17060009"
linktitle="19 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542188"
id="ref23"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1899" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899">1899</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">11</container>
<daoset altrender="/repositories/11/digital_objects/187250">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060010"
identifier="oid:17060010"
linktitle="16 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060326/full/!150,150/0/default.jpg"
identifier="oid:17060010"
linktitle="16 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060010"
identifier="oid:17060010"
linktitle="16 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542189"
id="ref24"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1901" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1901">1901</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542190"
id="ref25"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1902-03</unitdate>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">13</container>
<daoset altrender="/repositories/11/digital_objects/187249">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060011"
identifier="oid:17060011"
linktitle="17 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060342/full/!150,150/0/default.jpg"
identifier="oid:17060011"
linktitle="17 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060011"
identifier="oid:17060011"
linktitle="17 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542191"
id="ref26"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1904-13" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1904">1904</fromdate>
<todate standarddate="1913">1913</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">14</container>
<daoset altrender="/repositories/11/digital_objects/187242">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060012"
identifier="oid:17060012"
linktitle="31 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060359/full/!150,150/0/default.jpg"
identifier="oid:17060012"
linktitle="31 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060012"
identifier="oid:17060012"
linktitle="31 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542192"
id="ref27"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1921-22" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1921">1921</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">15</container>
<daoset altrender="/repositories/11/digital_objects/187241">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17060013"
identifier="oid:17060013"
linktitle="8 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17060390/full/!150,150/0/default.jpg"
identifier="oid:17060013"
linktitle="8 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060013"
identifier="oid:17060013"
linktitle="8 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542193"
id="ref28"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1924-65" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1965">1965</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">16</container>
<daoset altrender="/repositories/11/digital_objects/187240">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:17060014"
linktitle="20 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17060014"
identifier="oid:17060014"
linktitle="20 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/542194"
id="ref29"
level="file">
<did>
<unittitle>C-S, unidentified</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/68030 /locations/4051"
containerid="39002091430943"
id="aspace_ref29_c1"