-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11427.xml
1353 lines (1353 loc) · 79.5 KB
/
11427.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.rbprice">beinecke.rbprice</recordid>
<otherrecordid localtype="BIB">14067555</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Robert Beverly Price Papers </titleproper>
<titleproper localtype="filing">Price (Robert Beverly) Papers</titleproper>
<author>Sarah Lerner</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>April 2019</date>
<num>WA MSS S-3643</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with theYale EAD Best Practice Guidelines, Version 1.0, has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">14067555</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-2, 4</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 3</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>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:31:58-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:31</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11427" level="collection">
<did>
<unittitle>Robert Beverly Price papers</unittitle>
<unitid>WA MSS S-3643</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>2.83</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1853-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_8f43cd1736be8f788771aeab6b0fe0e9">Correspondence, photographs, printed materials, drawings, and other papers, by or relating to Missouri banker, Robert Beverly Price. Includes 60 autograph and typescript letters, signed, 1860-1922, undated. Letters concern either the Boone County National Bank of Columbia or the Price family, with most letters being from Robert Beverly Price to his wife, Evaline Hockaday Price, or granddaughter, Emily Blair Henrotin. There are also newspaper articles (loose and in a scrapbook) regarding Price and the Boone County National Bank of Columbia, 1914-1964, undated. Present are an ambrotype of Price, salt print honeymoon portrait of Price and Evaline, tintype and 7 cartes-de-visite of the Price family, 2 ambrotypes of Florence Price, and 7 other photographs of Price and his family, with individuals identified, circa 1850-1925. Also in the collection is typescript correspondence, signed, from Mrs. Lawrence B. Cummings concerning the gift of painted portraits of Price family members to the College of William and Mary, 1942; 4 framed reproduction prints of the portraits, undated; the Price family coat of arms, undated; and 3 typescript works on the history of the Price family, 1910-1928. Also included are 17 pencil drawings, signed, made by Price while a draftsman, circa 1853-1858, with a copy of The first and second annual reports of the geological survey of Missouri (Jefferson City [Mo.]: James Lusk, public printer, 1855). In addition to depicting geographical features and landscapes of the state, Price's sketches show views of Palmyra, Quincy, Hannibal, and Parkville, Missouri. Accompanied by a Missouri broadsheet concerning the 1885 mayoral election, 1885 March.</abstract>
<origination label="Source">
<corpname relator="bsl" rules="local" source="local">
<part localtype="agent_corporate_entity">William Reese Co.</part>
</corpname>
</origination>
<origination label="Creator">
<persname relator="aut">
<part localtype="agent_person">Price, Robert Beverly, 1832-1924</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_97f50772d23e0a9413d2c2da6f0273cb">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_c7b6a187a52f0724ddbab13e88f9f184">
<head>Immediate Source of Acquisition</head>
<p>Purchased from William Reese Co. on the Frederick W. and Carrie S. Beinecke Fund for Western Americana, 2017.</p>
</acqinfo>
<arrangement id="aspace_abff5025fd0b533149acdc8f7294a33b">
<head>Arrangement</head>
<p>Organized into five series: I. Correspondence, 1860-1953, undated. II. Geological Survey Work, 1853-1858. III. Newspaper Articles, 1912-1964, undated. IV. Price Family Papers, 1840-1942, undated. V. Other Papers, 1885-1953.</p>
</arrangement>
<bioghist id="aspace_1533a9accda1c278ad960fc86c2eb7ea">
<head>Robert Beverly Price</head>
<p>Robert Beverly Price (1832-1924) of Charlotte County, Virginia, studied engineering and geology at the University of Missouri. Following his graduation, he worked for 4 years as a draftsman for the State Geological Survey of Missouri. His father-in-law, Moss Prewitt, encouraged him to enter banking and as a result, Price opened the Boone County National Bank of Columbia, the first bank under the national system in Missouri, in 1857. Price had 2 children with his first wife, Emma B. Prewitt (1837-1859), and 1 child, Florence Price (1861-1935), with his second wife, Evaline Hockaday (1833-1922).</p>
</bioghist>
<prefercite id="aspace_2fe6dd9ca231029fcc1213c9f8c3ea0c">
<head>Preferred Citation</head>
<p>Robert Beverly Price Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_4e94a479896eacc49a54129f40195d0a">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>These materials have been arranged and described according to national and local standards. For more information, please refer to the Beinecke Manuscript Unit Processing Manual.</p>
</processinfo>
<scopecontent id="aspace_83cfc200760d856f2e9eecd77a6d7710">
<head>Scope and Contents</head>
<p>Correspondence, photographs, printed materials, drawings, and other papers, by or relating to Missouri banker, Robert Beverly Price. Includes 60 autograph and typescript letters, signed, concerning either the Boone County National Bank of Colombia or the Price family, 1860-1922, undated. Also present are newspaper articles, clippings, and a scrapbook regarding Price and the Boone County National Bank of Colombia, 1914-1964, undated. There are also 17 pencil drawings, signed, made by Price while a draughtsman, circa 1853-1858, with a copy of The first and second annual reports of the geological survey of Missouri (Jefferson City [Mo.]: James Lusk, public printer, 1855). Price's sketches are preliminary views for the report and depict geographical features and landscapes of the state as well as Palmyra, Quincy, Hannibal, and Parkville, Missouri. Photographs in the collection include an ambrotype of Price; a salt print honeymoon portrait of Price and his second wife, Evaline Price; a tintype and 7 cartes-de-visite of the Prime family; 2 ambrotypes of Price's daughtere, Florence Augustus Price; and 7 other photographic prints of Price and his family, with individuals identified. Additionally, there are papers pertaining to the Price family, specifically typescript correspondence, signed, from Mrs. Lawrence B. Cummings concerning the gift of painted portraits of Price family members to the College of William and Mary in 1942, the Price family coat of arms, and 3 typescript works on the history of the Price family created between 1910 and 1928. Accompanied by a Missouri broadsheet concerning the 1885 mayoral election, 1885 March.</p>
</scopecontent>
<userestrict id="aspace_3bc840723295109998833eae0c719794">
<head>Conditions Governing Use</head>
<p>The Robert Beverly Price 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>
<controlaccess>
<occupation source="lcsh">
<part localtype="occupation">Bankers</part>
<part localtype="geographic">Missouri</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="lcsh">
<part localtype="occupation">Drafters</part>
<part localtype="geographic">Missouri</part>
<part localtype="temporal">19th century</part>
</occupation>
<geogname source="lcsh">
<part localtype="geographic">Boone County (Mo.)</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Missouri</part>
<part localtype="genre_form">Surveys</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300127186" source="aat">
<part localtype="genre_form">Ambrotypes (photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127141" source="aat">
<part localtype="genre_form">Cartes-de-visite (card photographs)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027015" source="aat">
<part localtype="genre_form">Genealogies (histories)</part>
</genreform>
<genreform source="aat">
<part localtype="genre_form">Family histories</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300015637" source="aat">
<part localtype="genre_form">Portraits</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127149" source="aat">
<part localtype="genre_form">Salted paper prints</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Scrapbooks</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300015617" source="aat">
<part localtype="genre_form">Sketches</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/page/aat/300223022" source="aat">
<part localtype="genre_form">Studio portraits</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300134759" source="aat">
<part localtype="genre_form">Tintypes (prints)</part>
</genreform>
<occupation source="lcsh">
<part localtype="occupation">Bankers</part>
<part localtype="geographic">Missouri</part>
<part localtype="temporal">20th Century</part>
</occupation>
<geogname source="local_beinecke">
<part localtype="geographic">Missouri</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Hannibal (Mo.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Palmyra (Mo.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Parkville (Mo.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="lcsh">
<part localtype="geographic">Quincy (Mo.)</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<persname source="local">
<part localtype="agent_person">Blair, Florence Price, 1861-1935</part>
</persname>
<persname source="local">
<part localtype="agent_person">Price, Emma B., 1837-1859</part>
</persname>
<persname source="local">
<part localtype="agent_person">Price, Evaline, 1833-1922</part>
</persname>
<famname source="naf">
<part localtype="agent_family">Price family</part>
</famname>
<corpname>
<part localtype="agent_corporate_entity">Boone County National Bank</part>
</corpname>
<persname source="local">
<part localtype="agent_person">Henrotin, Emily Blair, 1883-1965</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">College of William and Mary</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2979308"
id="aspace_005571fd41c74872f263229aa65a2bb8"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1860-1953, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
</did>
<arrangement id="aspace_e2aeaad0ef63aebca363fdcd12a48c80">
<head>Arrangement</head>
<p>Series I is arranged chronologically.</p>
</arrangement>
<scopecontent id="aspace_d928dfa3a7f917a1476f59b03d3ac0e8">
<head>Scope and Contents</head>
<p>Series I contains 60 autograph and typescript letters, signed, concerning either the Boone County National Bank of Colombia or the Price family, with Robert Beverly Price as the principal recipient of business letters. There are also letters from Price to his wife, Evaline Hockaday Price, and his granddaughter, Emily Blair Henrotin. Later letters are from Robert Beverly Price, II, to Henrotin, his wife.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2979315"
id="aspace_a90a2a52195bcfde6de952097c30df3a"
level="file">
<did>
<unitdatestructured altrender="1860-1870" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1870">1870</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_a90a2a52195bcfde6de952097c30df3a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a90a2a52195bcfde6de952097c30df3a_c2"
localtype="folder"
parent="aspace_a90a2a52195bcfde6de952097c30df3a_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979316"
id="aspace_be759e0b3994912facbb3c7d134d13b5"
level="file">
<did>
<unitdatestructured altrender="1874-1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1874">1874</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_be759e0b3994912facbb3c7d134d13b5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_be759e0b3994912facbb3c7d134d13b5_c2"
localtype="folder"
parent="aspace_be759e0b3994912facbb3c7d134d13b5_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979317"
id="aspace_5ed28be9dbbf026b9b8d6ac30919438b"
level="file">
<did>
<unitdatestructured altrender="1896-1897" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1896">1896</fromdate>
<todate standarddate="1897">1897</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_5ed28be9dbbf026b9b8d6ac30919438b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5ed28be9dbbf026b9b8d6ac30919438b_c2"
localtype="folder"
parent="aspace_5ed28be9dbbf026b9b8d6ac30919438b_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979318"
id="aspace_8605e412907da506d3ea4eba71c413e5"
level="file">
<did>
<unitdatestructured altrender="1898-1901" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1898">1898</fromdate>
<todate standarddate="1901">1901</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_8605e412907da506d3ea4eba71c413e5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8605e412907da506d3ea4eba71c413e5_c2"
localtype="folder"
parent="aspace_8605e412907da506d3ea4eba71c413e5_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979319"
id="aspace_980426e6cbc7eed5c2f3b3549702fce5"
level="file">
<did>
<unitdatestructured altrender="1904-1910" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1904">1904</fromdate>
<todate standarddate="1910">1910</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_980426e6cbc7eed5c2f3b3549702fce5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_980426e6cbc7eed5c2f3b3549702fce5_c2"
localtype="folder"
parent="aspace_980426e6cbc7eed5c2f3b3549702fce5_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979320"
id="aspace_c08112950cb8c64e2e81c0b9269f4617"
level="file">
<did>
<unitdatestructured altrender="1911-1912" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1911">1911</fromdate>
<todate standarddate="1912">1912</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_c08112950cb8c64e2e81c0b9269f4617_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c08112950cb8c64e2e81c0b9269f4617_c2"
localtype="folder"
parent="aspace_c08112950cb8c64e2e81c0b9269f4617_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979321"
id="aspace_8c23c80315c5f2843b3da7cd65ae6e32"
level="file">
<did>
<unitdatestructured altrender="1913-1918" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1918">1918</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_8c23c80315c5f2843b3da7cd65ae6e32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8c23c80315c5f2843b3da7cd65ae6e32_c2"
localtype="folder"
parent="aspace_8c23c80315c5f2843b3da7cd65ae6e32_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979322"
id="aspace_57ecae889ad719fbb9d13ae95c4d4ad8"
level="file">
<did>
<unitdatestructured altrender="1920-1953, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_57ecae889ad719fbb9d13ae95c4d4ad8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_57ecae889ad719fbb9d13ae95c4d4ad8_c2"
localtype="folder"
parent="aspace_57ecae889ad719fbb9d13ae95c4d4ad8_c1">8</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2979311"
id="aspace_9951f39a2daade7c66494174e3aeb218"
level="series">
<did>
<unittitle>Geological Survey Work</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="circa 1853-1858"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1858">1858</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
</did>
<arrangement id="aspace_2f848c29f724e4f001c1109b9b5e355f">
<head>Arrangement</head>
<p>Series II is arranged chronologically.</p>
</arrangement>
<scopecontent id="aspace_3e7cc0bae7f4c468021be1ece7e4efc1">
<head>Scope and Contents</head>
<p>Series II contains 17 pencil drawings, signed, made by Robert Beverly Price while a draftsman for the State Geological Survey of Missouri. In addition to depicting geographical features and landscapes of the state, Price's sketches show views of Palmyra, Quincy, Hannibal, and Parkville, Missouri. There is also a copy of The first and second annual reports of the geological survey of Missouri (Jefferson City [Mo.]: James Lusk, public printer, 1855).</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2979314"
id="aspace_89b062fbb332503f2b4bdd6744378270"
level="file">
<did>
<unittitle>Drawings</unittitle>
<unitdatestructured altrender="circa 1853-1858"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1858">1858</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350801 /locations/9"
containerid="39002099200546"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_89b062fbb332503f2b4bdd6744378270_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_89b062fbb332503f2b4bdd6744378270_c2"
localtype="folder"
parent="aspace_89b062fbb332503f2b4bdd6744378270_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979313"
id="aspace_58afbf13b93e2c0d1b1e7e1257170d7d"
level="file">
<did>
<unittitle>The first and second annual reports of the geological survey of Missouri (Jefferson City [Mo.]: James Lusk, public printer, 1855)</unittitle>
<unitdatestructured altrender="1855" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1855">1855</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_58afbf13b93e2c0d1b1e7e1257170d7d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_58afbf13b93e2c0d1b1e7e1257170d7d_c2"
localtype="folder"
parent="aspace_58afbf13b93e2c0d1b1e7e1257170d7d_c1">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2979310"
id="aspace_82a04a32e058eac8b55fb0c3dbe88e97"
level="series">
<did>
<unittitle>Newspaper Articles</unittitle>
<unitid>Series III</unitid>
<unitdatestructured altrender="1912-1964, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
</did>
<arrangement id="aspace_d3ec0cfb7aa8faefb24827b32c87e2a7">
<head>Arrangement</head>
<p>Series III is arranged chronologically.</p>
</arrangement>
<scopecontent id="aspace_07679eeedde2a3c060e30d413f04025b">
<head>Scope and Contents</head>
<p>Series III contains newspaper articles, clippings, and a scrapbook concerning Robert Beverly Price and the Boone County National Bank of Colombia. Some articles pertain to the Price family.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2979324"
id="aspace_62f512a3544d8c6f6b3d409cbddf14ed"
level="file">
<did>
<unittitle>Scrapbook</unittitle>
<unitdatestructured altrender="1912, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912">1912, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_62f512a3544d8c6f6b3d409cbddf14ed_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_62f512a3544d8c6f6b3d409cbddf14ed_c2"
localtype="folder"
parent="aspace_62f512a3544d8c6f6b3d409cbddf14ed_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979325"
id="aspace_91774a80b95a2ad173dcdd6b040294f7"
level="file">
<did>
<unittitle>Newspaper articles</unittitle>
<unitdatestructured altrender="1914-1915" label="publication" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1914">1914</fromdate>
<todate standarddate="1915">1915</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350801 /locations/9"
containerid="39002099200546"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_91774a80b95a2ad173dcdd6b040294f7_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_91774a80b95a2ad173dcdd6b040294f7_c2"
localtype="folder"
parent="aspace_91774a80b95a2ad173dcdd6b040294f7_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979326"
id="aspace_6c926183083ac0dd4c02bcb5e2a2c6fc"
level="file">
<did>
<unittitle>Newspaper articles</unittitle>
<unitdatestructured altrender="1916" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1916">1916</datesingle>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350801 /locations/9"
containerid="39002099200546"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_6c926183083ac0dd4c02bcb5e2a2c6fc_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_6c926183083ac0dd4c02bcb5e2a2c6fc_c2"
localtype="folder"
parent="aspace_6c926183083ac0dd4c02bcb5e2a2c6fc_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979327"
id="aspace_47b617745e6d9c05a1cace102b33b66f"
level="file">
<did>
<unittitle>Newspaper articles</unittitle>
<unitdatestructured altrender="1917" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1917">1917</datesingle>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350801 /locations/9"
containerid="39002099200546"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_47b617745e6d9c05a1cace102b33b66f_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_47b617745e6d9c05a1cace102b33b66f_c2"
localtype="folder"
parent="aspace_47b617745e6d9c05a1cace102b33b66f_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979323"
id="aspace_5402209229c9fab88420d90078d941ed"
level="file">
<did>
<unittitle>Newspaper clippings</unittitle>
<unitdatestructured altrender="1922-1961, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1961">1961</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350800 /locations/9"
containerid="39002092865162"
encodinganalog="archive legal"
id="aspace_5402209229c9fab88420d90078d941ed_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5402209229c9fab88420d90078d941ed_c2"
localtype="folder"
parent="aspace_5402209229c9fab88420d90078d941ed_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979328"
id="aspace_1f297f266853b8023508be8922ba9403"
level="file">
<did>
<unittitle>Newspaper articles</unittitle>
<unitdatestructured altrender="1953-1964, undated"
label="publication"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
<todate standarddate="1964">1964</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/350801 /locations/9"
containerid="39002099200546"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_1f297f266853b8023508be8922ba9403_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_1f297f266853b8023508be8922ba9403_c2"
localtype="folder"
parent="aspace_1f297f266853b8023508be8922ba9403_c1">43</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2979312"
id="aspace_25a868151ce094f7d1b25cd2d3640958"
level="series">
<did>
<unittitle>Price Family Papers</unittitle>
<unitid>Series IV</unitid>
<unitdatestructured altrender="1840-1942, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
</did>
<arrangement id="aspace_ae0b7ab4c7c657425a94d80694e903db">
<head>Arrangement</head>
<p>Series IV is arranged alphabetically.</p>
</arrangement>
<scopecontent id="aspace_d8578dc535ed4a9d9cf47a4b30cd1886">
<head>Scope and Contents</head>
<p>Series IV contains family histories, photographs, and other papers relating to the Price family. Correspondence pertains to the donation of 4 painted portraits of Price family members to the College of William and Mary in 1942 and is accompanied by miniature, framed reproductions. Present are an ambrotype and photographic prints of Robert Beverly Price; Price and his wife, Evaline Price; and Price and his great grandson, Preston Blair Henrotin.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2979332"
id="aspace_8474ae312b4ed3a7a2244ce9558fb81e"
level="subseries">
<did>
<unittitle>Family History</unittitle>
<unitid>Subseries 1</unitid>
<unitdatestructured altrender="1910-1942, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1910">1910</fromdate>
<todate standarddate="1942-09-10">1942 September 10</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
</did>
<arrangement id="aspace_9c5cb3ccd0eec816a63e0d7ce76ef286">
<head>Arrangement</head>
<p>Sub-series is arranged chronologically.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2979339"
id="aspace_df14a33039d9d5973ac49a88ad4120a9"
level="file">
<did>
<unittitle>Coat of arms</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_df14a33039d9d5973ac49a88ad4120a9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_df14a33039d9d5973ac49a88ad4120a9_c2"
localtype="folder"
parent="aspace_df14a33039d9d5973ac49a88ad4120a9_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979334"
id="aspace_d62bf8247ca2629ba76aa9b83ac39912"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1942 July 11-September 10"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1942-07-11">1942 July 11</fromdate>
<todate standarddate="1942-09-10">1942 September 10</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_d62bf8247ca2629ba76aa9b83ac39912_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d62bf8247ca2629ba76aa9b83ac39912_c2"
localtype="folder"
parent="aspace_d62bf8247ca2629ba76aa9b83ac39912_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979335"
id="aspace_78ba2ee94b870e8b063e93b2aca95021"
level="file">
<did>
<unittitle>Framed reproduction of painting of Edwin Price</unittitle>
<unitdate label="other" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/350804 /locations/4051"
containerid="39002099200728"
encodinganalog="archive legal"
id="aspace_78ba2ee94b870e8b063e93b2aca95021_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_78ba2ee94b870e8b063e93b2aca95021_c2"
localtype="folder"
parent="aspace_78ba2ee94b870e8b063e93b2aca95021_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979336"
id="aspace_ced1870ce7540c4c0cea8800ba1fd026"
level="file">
<did>
<unittitle>Framed reproduction of painting of Pugh Williamson Price</unittitle>
<unitdate label="other" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/350804 /locations/4051"
containerid="39002099200728"
encodinganalog="archive legal"
id="aspace_ced1870ce7540c4c0cea8800ba1fd026_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ced1870ce7540c4c0cea8800ba1fd026_c2"
localtype="folder"
parent="aspace_ced1870ce7540c4c0cea8800ba1fd026_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979337"
id="aspace_544a4dcb0bce9fec29800d44d6b36774"
level="file">
<did>
<unittitle>Framed reproduction of painting of Susan Scott</unittitle>
<unitdate label="other" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/350804 /locations/4051"
containerid="39002099200728"
encodinganalog="archive legal"
id="aspace_544a4dcb0bce9fec29800d44d6b36774_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_544a4dcb0bce9fec29800d44d6b36774_c2"
localtype="folder"
parent="aspace_544a4dcb0bce9fec29800d44d6b36774_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979338"
id="aspace_7a229beb71c07bb915eee80098a610ad"
level="file">
<did>
<unittitle>Framed reproduction of painting of Elizabeth Williamson</unittitle>
<unitdate label="other" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/350804 /locations/4051"
containerid="39002099200728"
encodinganalog="archive legal"
id="aspace_7a229beb71c07bb915eee80098a610ad_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_7a229beb71c07bb915eee80098a610ad_c2"
localtype="folder"
parent="aspace_7a229beb71c07bb915eee80098a610ad_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979340"
id="aspace_cd32f82daba75e97fefb3a580b1e4bbc"
level="file">
<did>
<unittitle>John Price the emigrant by Reverend Benjamin Luther Price</unittitle>
<unitdatestructured altrender="1910" label="publication" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1910">1910</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_cd32f82daba75e97fefb3a580b1e4bbc_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_cd32f82daba75e97fefb3a580b1e4bbc_c2"
localtype="folder"
parent="aspace_cd32f82daba75e97fefb3a580b1e4bbc_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979341"
id="aspace_a8c63c742d1cc41555c1ff70de13f5d4"
level="file">
<did>
<unittitle>Price</unittitle>
<unitdatestructured altrender="1928 December 4"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1928-12-04">1928 December 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_a8c63c742d1cc41555c1ff70de13f5d4_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a8c63c742d1cc41555c1ff70de13f5d4_c2"
localtype="folder"
parent="aspace_a8c63c742d1cc41555c1ff70de13f5d4_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979342"
id="aspace_d19ecab436a2a3c0f095557a04315a2e"
level="file">
<did>
<unittitle>Price family in Virginia by Margaret Scruggs-Caruth</unittitle>
<unitdatestructured altrender="1921" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921">1921</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_d19ecab436a2a3c0f095557a04315a2e_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d19ecab436a2a3c0f095557a04315a2e_c2"
localtype="folder"
parent="aspace_d19ecab436a2a3c0f095557a04315a2e_c1">16</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2979333"
id="aspace_6d5909fe291651ca168fe2ec098a0c50"
level="subseries">
<did>
<unittitle>Photographs</unittitle>
<unitid>Subseries 2</unitid>
<unitdatestructured altrender="circa 1840-1919, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_7976a14275641a472650c8a96fc85a5e">
<head>Arrangement</head>
<p>Sub-series is arranged alphabetically.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2979344"
id="aspace_40d42287b68edb4b5496f8dc65436be9"
level="file">
<did>
<unittitle>Edwin Price</unittitle>
<unitdatestructured altrender="circa 1840" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1840">circa 1840</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_40d42287b68edb4b5496f8dc65436be9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_40d42287b68edb4b5496f8dc65436be9_c2"
localtype="folder"
parent="aspace_40d42287b68edb4b5496f8dc65436be9_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979363"
id="aspace_acb1eec8b1133150d8803864b528bdd7"
level="file">
<did>
<unittitle>Emma B. Price (carte-de-visite)</unittitle>
<unitdatestructured altrender="circa 1855" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855">circa 1855</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"
id="aspace_acb1eec8b1133150d8803864b528bdd7_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_acb1eec8b1133150d8803864b528bdd7_c2"
localtype="folder"
parent="aspace_acb1eec8b1133150d8803864b528bdd7_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2979361"
id="aspace_d86f995543bd5a6faf7e816ca953fbcb"
level="file">
<did>
<unittitle>Evaline Hockaday Price (cartes-de-visite)</unittitle>
<unitdatestructured altrender="circa 1865" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865">circa 1865</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/350802 /locations/9"
containerid="39002092865188"
encodinganalog="archive legal"