-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1304.xml
2014 lines (2014 loc) · 113 KB
/
1304.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.dequille">beinecke.dequille</recordid>
<otherrecordid localtype="BIB">9923113</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Dan De Quille Papers
</titleproper>
<titleproper localtype="filing">De Quille (Dan) Papers</titleproper>
<author>by Matthew Daniel Mason</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>May 2011</date>
<num>WA MSS S-2667</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">9923113</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-3</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 4 Oversize</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:25:00-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:25</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1304" level="collection">
<did>
<unittitle>Dan De Quille papers</unittitle>
<unitid>WA MSS S-2667</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>1</quantity>
<unittype>Linear Foot</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="circa 1860-circa 1956"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1885">1885</fromdate>
<todate standarddate="1898">1898</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_28dd0b6ce9ad500a09a4f8eaff3491c6">This collection consists chiefly of papers created and collected by Dan De Quille that document a portion of his writing career, circa 1860-1898, as well as a small quantity of material accumulated by his family from 1936 to circa 1956. The papers consist of correspondence, writings, photographs, and ephemera, as well as newspaper clippings collected by De Quille on a variety of subjects.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">De Quille, Dan, 1829-1898</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_81537d56f9b3168258feea7a4c0b639b">
<head>Immediate Source of Acquisition</head>
<p>Purchased from the William Reese Company on William Robertson Coe Fund No. 3, 2010.</p>
</acqinfo>
<accessrestrict id="aspace_3a3c838e82a6df8682590ac579952fd1">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_eddf03621db5cc1a541e34ce14bf4493">
<head>Conditions Governing Use</head>
<p>The Dan De Quille Papers 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>
<prefercite id="aspace_ca70ed885e66f1787b374cd145a8f80f">
<head>Preferred Citation</head>
<p>Dan De Quille Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_54dc17d7b5143b0c7038e19bb5523a1b">
<head>Processing Information</head>
<p>The description for the collection derives chiefly from a list provided by the dealer, which the processing archivist compared to the collection contents and augmented when appropriate. The material was removed from three-ring binders and rehoused in archival folders and boxes.</p>
</processinfo>
<bioghist id="aspace_4bca3e38c7366709aa34d2c6606292c3">
<head>Dan De Quille (1829-1898)</head>
<p>William Wright (1829-1898), better known by the pen name Dan De Quille, was an American author, journalist, and humorist. He was born in Knox County, Ohio, the oldest of nine children. In 1849, he moved west with his family to West Liberty, Iowa, where he married Caroline Coleman (1829-1912) in 1853. They had five children, two of whom died in infancy. Their surviving children wereMell Wright Evans (1855-1906), Lura "Lou" Gertrude Wright (1856-1928), and Paxson George Wright (1858-1929).</p>
<p>In 1857, Wright traveled alone to California and prospected for gold in the foothills of the Sierra Nevada Mountains and in the Mono Lake region. In 1859, he moved to the silver mining town of Virginia City, Nevada, which extracted its mineral wealth from the Comstock Lode, the first major discovery of silver ore in the United States. In 1862, Wright began writing for the <title localtype="simple" render="italic">
<part>Daily Territorial Enterprise</part>
</title> newspaper in Virginia City and adopted the pen name Dan De Quille. He remained on the staff of the newspaper for over thirty years and wrote extensively about the people, events, and mining operations in the region. From August 1863 to May 1864, he supervised the work of Samuel Langhorne Clemens (1835-1910), who adopted the pen name Mark Twain while writing for the newspaper.</p>
<p>In 1874, a group of mine operators in Virginia City approached De Quille to write a history of the Comstock Lode. Working in Hartford, Connecticut, under the editorship of Mark Twain, he wrote <title localtype="simple" render="italic">
<part>A History of the Big Bonanza</part>
</title> (American Publishing Company, 1876).</p>
<p>Near the end of his life, De Quille returned to West Liberty, Iowa.</p>
</bioghist>
<scopecontent id="aspace_9ab9101cb073d40b30b861a9ac354de8">
<head>Scope and Contents</head>
<p>This collection consists chiefly of papers created and collected by Dan De Quille that document a portion of his writing career, circa 1860-1898, as well as a small quantity of material accumulated by his family from 1936 to circa 1956. The papers consist of correspondence, writings, photographs, and ephemera, as well as newspaper clippings collected by De Quille on a variety of subjects.</p>
<p>The correspondence in the collection encompasses letters from editors and publishers to De Quille about his writing, as well as a small quantity of letters written by De Quille to his daughter Mell Wright Evans and sister Louisa G. Wright Stevens. There is also a small group of correspondence about De Quille between his granddaughter Irma Evans Morris and Nevada historian Effie Mona Mack in 1936.</p>
<p>Writings by De Quille include a notebook with outlines, drafts, and notes for stories and articles. Other writings include draft manuscripts for articles about Virginia City and California, as well as about Peru, and tales based in the Middle East.</p>
<p>Photographs in the collection include portraits of De Quille and views of his gravesite. Ephemera in the collection includes scrapbook sheets with illustrations that De Quille clipped from magazines and newspapers to present to his granddaughter.</p>
</scopecontent>
<arrangement id="aspace_8f37da5d68a02e0b0ea5b07c813ac733">
<head>Arrangement</head>
<p>Organized into four series: I. Correspondence, circa 1860-1953. II. Writings, 1876-circa 1956. III. Photographs, circa 1885-circa 1930. IV. Other Papers, 1875-1898.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">1885-1898</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008104176"
source="lcsh">
<part localtype="topical">Frontier and pioneer life</part>
<part localtype="geographic">California</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008121294"
source="lcsh">
<part localtype="topical">Frontier and pioneer life</part>
<part localtype="geographic">Nevada</part>
</subject>
<subject source="local">
<part localtype="topical">Frontier and pioneer life</part>
<part localtype="geographic">Sierra Nevada Region (Calif. and Nev.)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85070788"
source="lcsh">
<part localtype="topical">Journalists</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85085625"
source="lcsh">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Nevada</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh90003323"
source="lcsh">
<part localtype="topical">Newspaper editors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85122639"
source="lcsh">
<part localtype="topical">Silver mines and mining</part>
<part localtype="geographic">Nevada</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85018870"
source="lcsh">
<part localtype="geographic">California</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85029579"
source="lcsh">
<part localtype="geographic">Comstock Lode (Nev.)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n79072716"
source="lcsh">
<part localtype="geographic">Nevada</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n79055130"
source="lcsh">
<part localtype="geographic">Peru</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85122367"
source="lcsh">
<part localtype="geographic">Sierra Nevada (Calif. and Nev.)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n79089770"
source="lcsh">
<part localtype="geographic">Virginia City (Nev.)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008113454"
source="lcsh">
<part localtype="geographic">West (U.S.)</part>
<part localtype="topical">Social life and customs</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Scrapbooks</part>
</genreform>
<persname rules="aacr">
<part localtype="agent_person">De Quille, Dan, 1829-1898</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">De Quille, Dan, 1829-1898</part>
<part localtype="genre_form">Pictorial works</part>
</persname>
<persname source="local">
<part localtype="agent_person">Evans, Mell Wright, 1855-1906</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Mack, Effie Mona</part>
</persname>
<persname source="local">
<part localtype="agent_person">Morris, Irma Evans</part>
</persname>
<persname source="local">
<part localtype="agent_person">Stevens, Louisa G. Wright, b. 1843</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/483964"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1863-1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1863">1863</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_db522ed147d0662485a96d7f7c73f1f6">
<head>Arrangement</head>
<p>Series I is organized into three subseries: Correspondence from De Quille, Correspondence to De Quille, and Third-Party Correspondence.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/483965"
id="ref13"
level="subseries">
<did>
<unittitle>Outgoing</unittitle>
</did>
<arrangement id="aspace_1152a935be8dcf41658f245851b04037">
<head>Arrangement</head>
<p>Arranged alphabetically by the recepient.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/483966"
id="ref14"
level="file">
<did>
<unittitle>Authors' Alliance</unittitle>
<unitdatestructured altrender="1892 July 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1892-07-18">1892 July 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
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/483967"
id="ref15"
level="file">
<did>
<unittitle>Evans, Mell Wright</unittitle>
<unitdatestructured altrender="1888 November 26-1893 January 24, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1888-11-26">1888 November 26</fromdate>
<todate standarddate="1893-01-24">1893 January 24</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2-11</container>
</did>
<bioghist id="aspace_8f4ba6fa700ee9a9812c81047d2489fb">
<head>Biographical/Historical note</head>
<p>Mell Wright Evans (1855-1906) was a daughter of De Quille. She was married to Frank Algerman Evans (born 1852).</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/483968"
id="ref17"
level="file">
<did>
<unittitle>Stevens, Louisa G. Wright</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">12</container>
</did>
<bioghist id="aspace_a78f61fb99f74df9bdaa0ba23788b4f0">
<head>Biographical/Historical note</head>
<p>Louisa G. Wright Stevens (born 1843) was a younger sister of De Quille. She was married to Frank W. Stevens.</p>
</bioghist>
</c>
</c>
<c altrender="/repositories/11/archival_objects/483969"
id="ref20"
level="subseries">
<did>
<unittitle>Incoming</unittitle>
</did>
<arrangement id="aspace_d94952f720fffbd24f39d481fd8513f1">
<head>Arrangement</head>
<p>Arranged alphabetically by the author.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/483970"
id="ref21"
level="file">
<did>
<unittitle>American Press Association</unittitle>
<unitdatestructured altrender="1891 October 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1891-10-13">1891 October 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483971"
id="ref22"
level="file">
<did>
<unittitle>Applegate, Josiah H.</unittitle>
<unitdatestructured altrender="1863 November 2"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1863-11-02">1863 November 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483972"
id="ref23"
level="file">
<did>
<unittitle>Bacheller & Johnson Newspaper Syndicate</unittitle>
<unitdatestructured altrender="1891 June 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1891-06-01">1891 June 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483973"
id="ref24"
level="file">
<did>
<unittitle>Barnes, E. D.</unittitle>
<unitdatestructured altrender="1875 January 13"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1875-01-13">1875 January 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">16</container>
</did>
<scopecontent id="aspace_e8213397bff2029e93dd225de54bbe27">
<head>Scope and Contents</head>
<p>Includes clippings from the <title localtype="simple" render="italic">
<part>San Francisco Chronicle</part>
</title> related to mining engineer Philip Deidesheimer (1832-1916).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/483974"
id="ref26"
level="file">
<did>
<unittitle>Browne, J. Ross</unittitle>
<unitdatestructured altrender="1875 May 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1875-05-17">1875 May 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">17</container>
</did>
<scopecontent id="aspace_935950f13e801ad4536562d335ca9cf8">
<head>Scope and Contents</head>
<p>Letter of introduction for De Quille to Harper & Brothers publishers.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/483975"
id="ref28"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>California Illustrated Magazine</part>
</title>
</unittitle>
<unitdatestructured altrender="1893 August 23-November 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-08-23">1893 August 23</fromdate>
<todate standarddate="1893-11-24">1893 November 24</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483976"
id="ref29"
level="file">
<did>
<unittitle>Clare, Ada</unittitle>
<unitdatestructured altrender="circa 1860-1866"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1866">1866</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483977"
id="ref30"
level="file">
<did>
<unittitle>Clark, Hiram C.</unittitle>
<unitdatestructured altrender="1862 November 22"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1862-11-22">1862 November 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483978"
id="ref31"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Cosmopolitan Magazine</part>
</title>
</unittitle>
<unitdatestructured altrender="1895 May 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1895-05-21">1895 May 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483979"
id="ref32"
level="file">
<did>
<unittitle>Crawford, James</unittitle>
<unitdatestructured altrender="1875 July 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1875-07-07">1875 July 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483980"
id="ref33"
level="file">
<did>
<unittitle>Cummings, Amos Jay</unittitle>
<unitdatestructured altrender="1891 April 6-October 22"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1891-04-06">1891 April 6</fromdate>
<todate standarddate="1891-10-22">1891 October 22</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483981"
id="ref34"
level="file">
<did>
<unittitle>D. Appleton & Company</unittitle>
<unitdatestructured altrender="1895 August 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1895-08-02">1895 August 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483982"
id="ref35"
level="file">
<did>
<unittitle>Daggett, Rollin Mallory</unittitle>
<unitdatestructured altrender="1875 September 9"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1875-09-09">1875 September 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">25</container>
</did>
<bioghist id="aspace_9b1c01a1b9afd3d3d40db21d6a718ede">
<head>Biographical/Historical note</head>
<p>Unsigned letter, based on its contents, it is possibly by Rollin Mallory Daggett (1831-1901), editor-in-chief of the <title localtype="simple" render="italic">
<part>Territorial Enterprise</part>
</title> newspaper in Virginia City, Nevada, 1873-1878.</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/483983"
id="ref37"
level="file">
<did>
<unittitle>Driscoll, Dennis</unittitle>
<unitdatestructured altrender="1863 February 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1863-02-27">1863 February 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483984"
id="ref38"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Engineering and Mining Journal</part>
</title>
</unittitle>
<unitdatestructured altrender="1891 September 14-1897 February 10"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1891-09-14">1891 September 14</fromdate>
<todate standarddate="1897-02-10">1897 February 10</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483985"
id="ref39"
level="file">
<did>
<unittitle>Fair, James Graham</unittitle>
<unitdatestructured altrender="1885 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1885-05-06">1885 May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483986"
id="ref40"
level="file">
<did>
<unittitle>Goodman, Joseph T.</unittitle>
<unitdatestructured altrender="1863 September 26"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1863-09-26">1863 September 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483987"
id="ref41"
level="file">
<did>
<unittitle>Hardy, Arthur Sherburne</unittitle>
<unitdatestructured altrender="circa 1893-1895"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893">1893</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483988"
id="ref42"
level="file">
<did>
<unittitle>Hodgson, Richard</unittitle>
<unitdatestructured altrender="1893 August 22"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1893-08-22">1893 August 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483989"
id="ref43"
level="file">
<did>
<unittitle>Lawrence, Joseph E.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1863 September 23-circa 1865</unitdate>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">32-34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483990"
id="ref44"
level="file">
<did>
<unittitle>Lester, Lirle?</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483991"
id="ref45"
level="file">
<did>
<unittitle>Lorborn Publishing Company</unittitle>
<unitdatestructured altrender="1887 December 5-1888 April 12"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1887-12-05">1887 December 5</fromdate>
<todate standarddate="1888-04-12">1888 April 12</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483992"
id="ref46"
level="file">
<did>
<unittitle>Marshall, G. M.</unittitle>
<unitdatestructured altrender="1864 June 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864-06-30">1864 June 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483993"
id="ref47"
level="file">
<did>
<unittitle>McClure, Samuel Sidney</unittitle>
<unitdatestructured altrender="1891 March 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1891-03-05">1891 March 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483994"
id="ref48"
level="file">
<did>
<unittitle>Mining and Scientific Press</unittitle>
<unitdatestructured altrender="1895 December 30-1896 February 7"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1895-12-30">1895 December 30</fromdate>
<todate standarddate="1896-02-07">1896 February 7</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483995"
id="ref49"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>New York Herald</part>
</title>
</unittitle>
<unitdatestructured altrender="1895 May 18-1896 March 5"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1895-05-18">1895 May 18</fromdate>
<todate standarddate="1896-03-05">1896 March 5</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483996"
id="ref50"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Once a Week</part>
</title>
</unittitle>
<unitdatestructured altrender="1892 December 27-1893 February 15"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-12-27">1892 December 27</fromdate>
<todate standarddate="1893-02-15">1893 February 15</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483997"
id="ref51"
level="file">
<did>
<unittitle>Preston, Laura</unittitle>
<unitdatestructured altrender="1865 May 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865-05-16">1865 May 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483998"
id="ref52"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Rocky Mountain News</part>
</title>
</unittitle>
<unitdatestructured altrender="1895 December 25"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1895-12-25">1895 December 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/483999"
id="ref53"
level="file">
<did>
<unittitle>Romance Publishing Company</unittitle>
<unitdatestructured altrender="circa 1890" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1890">circa 1890</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/484000"
id="ref54"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>San Francisco Call</part>
</title>
</unittitle>
<unitdatestructured altrender="1895 June 11-1896 February 4"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1895-06-11">1895 June 11</fromdate>
<todate standarddate="1896-02-04">1896 February 4</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/484001"
id="ref55"
level="file">
<did>
<unittitle>Scribner, Elizabeth Emmeline Brewster</unittitle>
<unitdatestructured altrender="1875 October 21"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1875-10-21">1875 October 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">46</container>
</did>
<bioghist id="aspace_ee64d3b0bb132e60af00aff9be22f706">
<head>Biographical/Historical note</head>
<p>Elizabeth Emmeline Brewster Scribner (born 1837) was the wife of Eben Scribner (circa 1840-1894), a mining amalgamator in Dayton, Nevada.</p>
</bioghist>
</c>
<c altrender="/repositories/11/archival_objects/484002"
id="ref57"
level="file">
<did>
<unittitle>Sharon, William</unittitle>
<unitdatestructured altrender="1875 May 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1875-05-10">1875 May 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62553 /locations/9"
containerid="39002094486082"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">47</container>
</did>
</c>