-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11208.xml
5013 lines (5013 loc) · 293 KB
/
11208.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/med.ms.0062">med.ms.0062</recordid>
<otherrecordid localtype="BIB">13850772</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>James H. Etheridge and family collection </titleproper>
<titleproper localtype="filing">Etheridge (James H.) and family collection</titleproper>
<author>Toby A. Appel</author>
</titlestmt>
<publicationstmt>
<publisher>Medical Historical Library, Cushing/Whitney Medical Library</publisher>
<address>
<addressline>Yale University</addressline>
<addressline>333 Cedar St.</addressline>
<addressline>New Haven, CT 06520-8014</addressline>
<addressline localtype="telephone">203-737-1192 </addressline>
<addressline localtype="fax">203-785-5636</addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://historical.medicine.yale.edu/"
linktitle="http://historical.medicine.yale.edu/"
show="new">http://historical.medicine.yale.edu/</ref>
</addressline>
</address>
<date>2018</date>
<num>Ms Coll 62</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1-11</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-M</agencycode>
<agencyname>Medical Historical Library, Cushing/Whitney Medical 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>2024-11-27T22:05:20-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday November 27, 2024 at 22:05</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/10/resources/11208" level="collection">
<did>
<unittitle>James H. Etheridge and family collection</unittitle>
<unitid>Ms Coll 62</unitid>
<repository>
<corpname>
<part>Medical Historical Library, Cushing/Whitney Medical Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>Materials are in English except for some diplomas in Latin.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7.75</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes</physdesc>
<unitdatestructured altrender="1827-1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1827">1827</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_47c98848c950ef6db04d6de8445f4459">James H. Etheridge was a gynecologist who became Professor of Obstetrics and Gynecology at Rush Medical College. The collection contains biographical materials, correspondence of Etheridge, correspondence of Etheridge's wife's family (including the correspondence of Heman G. Powers, a Chicago businessman), Etheridge's writings, his patient records, ephemera from medical societies, photographs, and certificates and diplomas.</abstract>
</did>
<bioghist id="aspace_d047e378ebb0e44ef00346b9a1310b34">
<head>Biographical / Historical</head>
<p>James Henry Etheridge, gynecologist, was born in St. Johnsville, New York, March 20, 1844. His physician father, Francis B. Etheridge, taught J. H. Etheridge medicine before the latter entered Rush Medical College, Chicago, in 1866. After graduation in 1869, Etheridge began a general practice in Evanston, Illinois. In 1870, he married Harriet Elizabeth Powers, of Evanston, daughter of wealthy businessman Heman G. Powers and Sarah Throop Powers. They traveled abroad and and he visited hospitals in London. On his return in 1871, he set up practice in Chicago and became part of the teaching faculty of Rush Medical College. At first, he was a successful general practitioner, and then he specialized in gynecology. In 1889, he became Professor of Gynecology at Rush Medical College, and in 1892, Professor of Obstetrics and Gynecology. He was active in medical organizations and served as President of the Chicago Medical Society and the Chicago Gynecological Society.
At the height of his career, he died suddenly on February 9, 1899. He was known as a man of good nature and wit, and as a skillful and rapid operator.</p>
<p>Heman George Powers, wealthy Chicago businessman and father-in-law to James H. Etheridge, was born in Keeseville, New York in 1820. He married Sarah Throop in 1843 in Vergenne, Vermont. About 1857, he moved to Chicago and built up a large wholesale grocery business under the name Durand Bros. and Powers. The business was destroyed in the Chicago fire of 1871. Powers then entered the banking business and became president of a bank in Chicago. In retirement, he lived in Evanston, Illinois, and spent time at a farm he owned in Wisconsin.</p>
</bioghist>
<scopecontent id="aspace_0d737521167dfa9c0fb791e7d0b04450">
<head>Scope and Contents</head>
<p>The papers contain correspondence of J. H. Etheridge from 1894 until his death in 1899, correspondence of the Powers and Throop families back to the 1850s, medical case records and payment ledgers, talks and published articles, Rush Medical College ephemera, medical society ephemera, diplomas and certificates including some awarded to Etheridge's father, photographs, and the many obituaries written on Etheridge.</p>
</scopecontent>
<userestrict id="aspace_aa37cd666d07c7255ead8c161f4397c9">
<head>Conditions Governing Use</head>
<p>Collection is open for research.</p>
</userestrict>
<arrangement id="aspace_8c0ac9103c48f1898fad4a36e326cd3d">
<head>Arrangement</head>
<p>Organized into 8 series: 1. Biographical information /Obituaries. 2. Correspondence of James H. Etheridge. 3. Powers/Throop family correspondence. 4. J. H. Etheridge writings. 5. Organizations and societies. 6. Medical practice. 7. Oversize box: Additional patient records, correspondence, and miscellany. 8. Flat box: Large photographs, certificates, and diplomas.</p>
</arrangement>
<acqinfo id="aspace_e28a2deeaeef70470369df7df6463164">
<head>Immediate Source of Acquisition</head>
<p>Donated by a descendant, James Grant Young, from the estate of Margaret Grant Young, 2017 and 2023.</p>
</acqinfo>
<relatedmaterial id="aspace_d217327ed76a3b5aa1ff381c54ce8048">
<head>Related Materials</head>
<p>Additional materials related to James H. Etheridge were donated by James Grant Young, from the estate of Margaret Grant Young, to the Rush University Medical Center Archives.</p>
</relatedmaterial>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85130766"
source="lcsh">
<part localtype="topical">Surgery</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85093768"
source="lcsh">
<part localtype="topical">Obstetrics</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85083153"
source="lcsh">
<part localtype="topical">Medicine, Military</part>
</subject>
<subject source="local">
<part localtype="topical">Societies, Medical</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85082916"
source="lcsh">
<part localtype="topical">Medical education</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/names/n50055239"
source="lcsh">
<part localtype="topical">Gynecology</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010008974"
source="lcsh">
<part localtype="topical">Cervix uteri--Cancer--Surgery</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008124157"
source="lcsh">
<part localtype="topical">Iron industry and trade</part>
<part localtype="geographic">United States</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300027483" source="aat">
<part localtype="genre_form">Account books</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026841" source="aat">
<part localtype="genre_form">Certificates</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026877" source="aat">
<part localtype="genre_form">Correspondence </part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027112" source="aat">
<part localtype="genre_form">Diaries</part>
</genreform>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85058088"
source="lcsh">
<part localtype="occupation">Gynecologists</part>
<part localtype="geographic">Illinois</part>
<part localtype="geographic">Chicago</part>
</occupation>
<occupation identifier=" " source="lcsh">
<part localtype="occupation">Businessmen</part>
<part localtype="geographic">Illinois</part>
<part localtype="geographic">Chicago</part>
</occupation>
<genreform identifier="http://id.loc.gov/authorities/subjects/sh85083010"
source="lcsh">
<part localtype="genre_form">Medical records</part>
</genreform>
<persname rules="aacr">
<part localtype="agent_person">Ingals, E. Fletcher (Ephraim Fletcher), 1848-1918</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Park, Roswell, 1852-1914</part>
</persname>
<persname rules="aacr" source="local_medical">
<part localtype="agent_person">Etheridge, James Henry, 1844-1899</part>
</persname>
<persname rules="aacr" source="local_medical">
<part localtype="agent_person">Powers, Heman George, 1820-1892</part>
</persname>
<persname rules="aacr" source="local_medical">
<part localtype="agent_person">Powers, Sarah E. Throop, 1825-1902</part>
</persname>
<persname>
<part localtype="agent_person">Harper, William Rainey, 1856-1906</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Henrotin, Fernand, 1847-1906</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Hyde, James Nevins, 1840-1910</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Illinois. National Guard</part>
</corpname>
<persname rules="aacr">
<part localtype="agent_person">Pryor, William R., 1857-1904</part>
</persname>
<corpname rules="aacr" source="local_medical">
<part localtype="agent_corporate_entity">J. & J. Rogers Iron Company</part>
</corpname>
<famname rules="aacr">
<part localtype="agent_family">Powers family</part>
</famname>
<famname rules="aacr" source="local_medical">
<part localtype="agent_family">Throop family</part>
</famname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Lea Brothers & Company</part>
</corpname>
<corpname rules="aacr" source="local_medical">
<part localtype="agent_corporate_entity">Moline Malleable Iron Co.</part>
</corpname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Rush Medical College</part>
</corpname>
<persname rules="aacr" source="local_medical">
<part localtype="agent_person">Etheridge, Harriet Elizabeth Powers</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/10/archival_objects/2860971"
id="aspace_e2cfb93dece0a7a86f34e19ef6b0853a"
level="series">
<did>
<unittitle>Biographical information /Obituaries</unittitle>
<unitid>Series 1</unitid>
</did>
<c altrender="/repositories/10/archival_objects/2861058"
id="aspace_0032d4980f387a2620e67bf91e719634"
level="file">
<did>
<unittitle>Correspondence of Etheridge Grant on the disposal of J.H. Etheridge's Personal effects</unittitle>
<unitdatestructured altrender="1937" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_0032d4980f387a2620e67bf91e719634_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0032d4980f387a2620e67bf91e719634_c2"
localtype="folder"
parent="aspace_0032d4980f387a2620e67bf91e719634_c1">1</container>
</did>
<bioghist id="aspace_5338c36436ada4081392c21c19fd01bb">
<head>Biographical / Historical</head>
<p>Etheridge Grant was a descendent of J.H. and Harriet (Hattie) Etheridge. Their daughter Fanny married John MacGregor Grant.</p>
</bioghist>
</c>
<c altrender="/repositories/10/archival_objects/2861059"
id="aspace_7bfeb9650d1522ce7f370a9eea7deb33"
level="file">
<did>
<unittitle>Handwritten obituary on Rush Medical College stationary</unittitle>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_7bfeb9650d1522ce7f370a9eea7deb33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_7bfeb9650d1522ce7f370a9eea7deb33_c2"
localtype="folder"
parent="aspace_7bfeb9650d1522ce7f370a9eea7deb33_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2861060"
id="aspace_b0040fb61dff85bf02ba91424d9e6221"
level="file">
<did>
<unittitle>Resolutions of the Senior Class of Rush Medical college on the death of Prof. Etheridge</unittitle>
<unitdatestructured altrender="1899" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899">1899</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_b0040fb61dff85bf02ba91424d9e6221_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b0040fb61dff85bf02ba91424d9e6221_c2"
localtype="folder"
parent="aspace_b0040fb61dff85bf02ba91424d9e6221_c1">3</container>
</did>
<scopecontent id="aspace_cc7d8155f0d79b70b672ea0b01578d89">
<head>Scope and Contents</head>
<p>Folder contains the handwritten Resolutions as sent to Etheridge's family and an issue <title>
<part>The Corpuscle</part>
</title> (April 1899), the alumni journal of Rush Medical College, with the printed resolution.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2861061"
id="aspace_ae837baedc27e787e4a2586bf1d171bb"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>The American Gynaecological and Obstetrical Journal</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 November"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-11">1899 November</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_ae837baedc27e787e4a2586bf1d171bb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ae837baedc27e787e4a2586bf1d171bb_c2"
localtype="folder"
parent="aspace_ae837baedc27e787e4a2586bf1d171bb_c1">4</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2861062"
id="aspace_9d304d632934681ad1fa82e618db6f8d"
level="file">
<did>
<unittitle>Obituary: Issue of the <title>
<part>Chicago Medical Recorder</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02">1899 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_9d304d632934681ad1fa82e618db6f8d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9d304d632934681ad1fa82e618db6f8d_c2"
localtype="folder"
parent="aspace_9d304d632934681ad1fa82e618db6f8d_c1">5</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862553"
id="aspace_8a906aad8e6ccb31338e24a61ec2e364"
level="file">
<did>
<unittitle>Obituary: issue of <title>
<part>The Corpuscle</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 March" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1899-03">1899 March</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_8a906aad8e6ccb31338e24a61ec2e364_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8a906aad8e6ccb31338e24a61ec2e364_c2"
localtype="folder"
parent="aspace_8a906aad8e6ccb31338e24a61ec2e364_c1">6</container>
</did>
<scopecontent id="aspace_04590f4937726c218b724752c666ab56">
<head>Scope and Contents</head>
<p>
<title>
<part>The Corpuscle</part>
</title> was the "Official Organ of the Alumni Association of Rush Medical College, Chicago, Ill." The article, "James Henry Etheridge, A.M., M.D.: In Memoriam" (volume 8, pp. 273-276 and portrait) was presented to the faculty by Prof. James B. Herrick.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2861063"
id="aspace_d93882517503d14927e0b9049ecce053"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>Journal of the American Medical Association</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February 18
"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02-18">1899 February 18
</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_d93882517503d14927e0b9049ecce053_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d93882517503d14927e0b9049ecce053_c2"
localtype="folder"
parent="aspace_d93882517503d14927e0b9049ecce053_c1">7</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862595"
id="aspace_5385083526326659f8b653a8a4e064da"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>Journal of Scientific Medicine</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02">1899 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_5385083526326659f8b653a8a4e064da_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5385083526326659f8b653a8a4e064da_c2"
localtype="folder"
parent="aspace_5385083526326659f8b653a8a4e064da_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862561"
id="aspace_a9fd04d61482495e3e49bd17fafc3e73"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>The Medical Dial</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 May" label="publication" unitdatetype="inclusive">
<datesingle standarddate="1899-05">1899 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_a9fd04d61482495e3e49bd17fafc3e73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a9fd04d61482495e3e49bd17fafc3e73_c2"
localtype="folder"
parent="aspace_a9fd04d61482495e3e49bd17fafc3e73_c1">9</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2861064"
id="aspace_7bf8673a442297ef47fe3674c8e63317"
level="file">
<did>
<unittitle>Obituary: Issue of the <title>
<part>Revue de gynecologie et de chirurgie abdominale</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 August 10"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-08-10">1899 August 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_7bf8673a442297ef47fe3674c8e63317_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_7bf8673a442297ef47fe3674c8e63317_c2"
localtype="folder"
parent="aspace_7bf8673a442297ef47fe3674c8e63317_c1">10</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862507"
id="aspace_bd1106324ba08b5d256c3b3aa4050e5a"
level="file">
<did>
<unittitle>Obituary: Issue of the <title>
<part>Tri-State Medical Journal and Practitioner</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02">1899 February</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_bd1106324ba08b5d256c3b3aa4050e5a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_bd1106324ba08b5d256c3b3aa4050e5a_c2"
localtype="folder"
parent="aspace_bd1106324ba08b5d256c3b3aa4050e5a_c1">11</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862597"
id="aspace_4d7bf4f1672f7de12cf1f83ee658b3fc"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>The Chicago Daily Tribune</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February 10"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02-10">1899 February 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_4d7bf4f1672f7de12cf1f83ee658b3fc_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4d7bf4f1672f7de12cf1f83ee658b3fc_c2"
localtype="folder"
parent="aspace_4d7bf4f1672f7de12cf1f83ee658b3fc_c1">12</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862514"
id="aspace_f802253d77f220a898ac3aadfe8ae039"
level="file">
<did>
<unittitle>Obituary: Issue of the <title>
<part>Chicago Evening Post</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February 10"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1899-02-10">1899 February 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_f802253d77f220a898ac3aadfe8ae039_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f802253d77f220a898ac3aadfe8ae039_c2"
localtype="folder"
parent="aspace_f802253d77f220a898ac3aadfe8ae039_c1">13</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2862596"
id="aspace_369488f16b1a51bedc88fa0610353712"
level="file">
<did>
<unittitle>Obituary: Issue of <title>
<part>The Chicago Times-Herald</part>
</title>
</unittitle>
<unitdatestructured altrender="1899 February 10"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1899-02-10">1899 February 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_369488f16b1a51bedc88fa0610353712_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_369488f16b1a51bedc88fa0610353712_c2"
localtype="folder"
parent="aspace_369488f16b1a51bedc88fa0610353712_c1">14</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2904900"
id="aspace_77ae147adaefe5b4610d4a85680db50f"
level="file">
<did>
<unittitle>Other obituaries</unittitle>
<unitdatestructured altrender="1899" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899">1899</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_77ae147adaefe5b4610d4a85680db50f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_77ae147adaefe5b4610d4a85680db50f_c2"
localtype="folder"
parent="aspace_77ae147adaefe5b4610d4a85680db50f_c1">15</container>
</did>
<scopecontent id="aspace_deb8bd4190c8716441e606c986df18d6">
<head>Scope and Contents</head>
<p>Newspaper clippings and printed report, "Monthly Meetings of the Alumnae Association of the Illinois Training School for Nurses," February 2, 1899 [sic], containing an obituary of Etheridge on page 8. For ten years Etheridge had been lecturer and physician to the School.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905240"
id="aspace_2a70e09143e21f02ed03512c84fc5c84"
level="file">
<did>
<unittitle>Caricature of Etheridge and poem on minced pie, by C.J.P.U.</unittitle>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_2a70e09143e21f02ed03512c84fc5c84_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2a70e09143e21f02ed03512c84fc5c84_c2"
localtype="folder"
parent="aspace_2a70e09143e21f02ed03512c84fc5c84_c1">16</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2905241"
id="aspace_2aebc3cf1babedd131bddd841acee0ab"
level="file">
<did>
<unittitle>Other publications that mention Etheridge</unittitle>
<unitdatestructured altrender="1896-1929" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1896">1896</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_2aebc3cf1babedd131bddd841acee0ab_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2aebc3cf1babedd131bddd841acee0ab_c2"
localtype="folder"
parent="aspace_2aebc3cf1babedd131bddd841acee0ab_c1">17</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2905238"
id="aspace_53984cb8682f6bd647ce4b6bc8ce80aa"
level="file">
<did>
<unittitle>The Presbyterian Hospital of the City of Chicago, <title>
<part>Bulletin</part>
</title>
</unittitle>
<unitdatestructured altrender="1929 October" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929-10">1929 October</datesingle>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_53984cb8682f6bd647ce4b6bc8ce80aa_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_53984cb8682f6bd647ce4b6bc8ce80aa_c2"
localtype="folder"
parent="aspace_53984cb8682f6bd647ce4b6bc8ce80aa_c1">18</container>
</did>
<scopecontent id="aspace_999e52d7b89b87b1ca0bc809f5742fab">
<head>Scope and Contents</head>
<p>Contains a history of the hospital that mentions J. H. Etheridge.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2905242"
id="aspace_f1a6e23b20440cffe0a546c799e511b2"
level="file">
<did>
<unittitle>James H. Etheridge - photographs</unittitle>
<container altrender="/repositories/10/top_containers/343717"
containerid="39002010858792"
encodinganalog="archive letter"
id="aspace_f1a6e23b20440cffe0a546c799e511b2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f1a6e23b20440cffe0a546c799e511b2_c2"
localtype="folder"
parent="aspace_f1a6e23b20440cffe0a546c799e511b2_c1">19</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/3708764"
id="aspace_6e416f5f435d90a7b8e5794ba944c6b9"
level="file">
<did>
<unittitle>James H. Etheridge photographs, portraits wearing academic robe</unittitle>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_6e416f5f435d90a7b8e5794ba944c6b9_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_6e416f5f435d90a7b8e5794ba944c6b9_c2"
localtype="folder"
parent="aspace_6e416f5f435d90a7b8e5794ba944c6b9_c1">1</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/3708765"
id="aspace_d995939acc51b6f248e639a07e034992"
level="file">
<did>
<unittitle>Photograph of Rush Medical College class of 1892</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892">1892</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_d995939acc51b6f248e639a07e034992_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_d995939acc51b6f248e639a07e034992_c2"
localtype="folder"
parent="aspace_d995939acc51b6f248e639a07e034992_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/3708775"
id="aspace_b88e671cd0b5f2b183eef594520dcdf5"
level="file">
<did>
<unittitle>Newspaper clippings that mention Etheridge</unittitle>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_b88e671cd0b5f2b183eef594520dcdf5_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_b88e671cd0b5f2b183eef594520dcdf5_c2"
localtype="folder"
parent="aspace_b88e671cd0b5f2b183eef594520dcdf5_c1">3</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/3708776"
id="aspace_24d0a211d8b8a9a25ae4e170782f13e7"
level="file">
<did>
<unittitle>"Assignment 45," typed profile of Etheridge</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_24d0a211d8b8a9a25ae4e170782f13e7_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_24d0a211d8b8a9a25ae4e170782f13e7_c2"
localtype="folder"
parent="aspace_24d0a211d8b8a9a25ae4e170782f13e7_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/10/archival_objects/2854844"
id="aspace_4d9f0ce066674808130fad9c56223d78"
level="series">
<did>
<unittitle>Correspondence of James H. Etheridge</unittitle>
<unitid>Series 2</unitid>
<unitdatestructured altrender="1894-1899" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894">1894</fromdate>
<todate standarddate="1899">1899</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_947056f93ca7503c2d74c873e2c6bee5">
<head>Scope and Contents</head>
<p>The collection contains only correspondence from 1894 to 1899. The alphabetical files contain mainly letters received, although there is an occasional draft of a letter by Etheridge. Among his correspondents were women patients. Etheridge asked patients to write to him on the anniversary of their operations.</p>
<p>The incoming correspondence was housed in two boxes of Amberg's Popular Letter File sold by Amberg File & Index Co., Chicago. Many of the letters were not accurately filed under the proper letter in the index.</p>
<p>Someone, likely Mrs. Etheridge, who lived into the 1920s, annotated a number of the letters.</p>
<p>In Box 4 there are carbons of typed correspondence by date sent by Dr. Etheridge from September 1897 to his death in February 1899.</p>
</scopecontent>
<c altrender="/repositories/10/archival_objects/3708747"
id="aspace_537ddcbc61424965e1e66e884975fadf"
level="file">
<did>
<unittitle>Correspondence: Aitchison, W. M.</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894">1894</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_537ddcbc61424965e1e66e884975fadf_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_537ddcbc61424965e1e66e884975fadf_c2"
localtype="folder"
parent="aspace_537ddcbc61424965e1e66e884975fadf_c1">5</container>
</did>
<scopecontent id="aspace_bf16573da93045951acef258f7a60b17">
<head>Scope and Contents</head>
<p>Letters regarding the death of W. M. Aitchison's wife after a surgery performed by James H. Etheridge.</p>
</scopecontent>
</c>
<c altrender="/repositories/10/archival_objects/2854845"
id="aspace_b5fe47e961156b82a5427c3a2058b919"
level="file">
<did>
<unittitle>Correspondence, A</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_b5fe47e961156b82a5427c3a2058b919_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_b5fe47e961156b82a5427c3a2058b919_c2"
localtype="folder"
parent="aspace_b5fe47e961156b82a5427c3a2058b919_c1">1</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2863401"
id="aspace_54fa198b5f9043d1a2ca25d3d25f12f8"
level="file">
<did>
<unittitle>Correspondence: "Barkee" and "Bar and Kee" (a relative)</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_54fa198b5f9043d1a2ca25d3d25f12f8_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_54fa198b5f9043d1a2ca25d3d25f12f8_c2"
localtype="folder"
parent="aspace_54fa198b5f9043d1a2ca25d3d25f12f8_c1">2</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854846"
id="aspace_160bc07c7c92c0e157caceb927cc81f1"
level="file">
<did>
<unittitle>Correspondence, B</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_160bc07c7c92c0e157caceb927cc81f1_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_160bc07c7c92c0e157caceb927cc81f1_c2"
localtype="folder"
parent="aspace_160bc07c7c92c0e157caceb927cc81f1_c1">3</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2903390"
id="aspace_d8037b171f186c7bd8f40a8199e2cdcc"
level="file">
<did>
<unittitle>Correspondence, C</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_d8037b171f186c7bd8f40a8199e2cdcc_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d8037b171f186c7bd8f40a8199e2cdcc_c2"
localtype="folder"
parent="aspace_d8037b171f186c7bd8f40a8199e2cdcc_c1">4</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854847"
id="aspace_eb0b35a3d237351fd5e38034afa6c065"
level="file">
<did>
<unittitle>Correspondence, D</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_eb0b35a3d237351fd5e38034afa6c065_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_eb0b35a3d237351fd5e38034afa6c065_c2"
localtype="folder"
parent="aspace_eb0b35a3d237351fd5e38034afa6c065_c1">5</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2903391"
id="aspace_7510073dd0aef39e5054737f4cb88aeb"
level="file">
<did>
<unittitle>Correspondence: Etheridge, Annie and Locke (sister-in-law? and brother)</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_7510073dd0aef39e5054737f4cb88aeb_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_7510073dd0aef39e5054737f4cb88aeb_c2"
localtype="folder"
parent="aspace_7510073dd0aef39e5054737f4cb88aeb_c1">6</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/3708749"
id="aspace_97305a346758fbc257bc73535367d1fb"
level="file">
<did>
<unittitle>Correspondence: Etheridge, Billy (Fanny), daughter</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892">1892</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/10/top_containers/402215"
containerid="39002086891307"
encodinganalog="archive letter"
id="aspace_97305a346758fbc257bc73535367d1fb_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_97305a346758fbc257bc73535367d1fb_c2"
localtype="folder"
parent="aspace_97305a346758fbc257bc73535367d1fb_c1">6</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854848"
id="aspace_a0237eb822184c500a8403879cf73c90"
level="file">
<did>
<unittitle>Correspondence: Etheridge, Francis (Frank), brother</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_a0237eb822184c500a8403879cf73c90_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a0237eb822184c500a8403879cf73c90_c2"
localtype="folder"
parent="aspace_a0237eb822184c500a8403879cf73c90_c1">7</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854849"
id="aspace_5c556f1faf6d53fc3575887f33f807c8"
level="file">
<did>
<unittitle>Correspondence, E</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_5c556f1faf6d53fc3575887f33f807c8_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_5c556f1faf6d53fc3575887f33f807c8_c2"
localtype="folder"
parent="aspace_5c556f1faf6d53fc3575887f33f807c8_c1">8</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854850"
id="aspace_a6744db9be6f83ddaa4212d8b5a1a452"
level="file">
<did>
<unittitle>Correspondence, F</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_a6744db9be6f83ddaa4212d8b5a1a452_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a6744db9be6f83ddaa4212d8b5a1a452_c2"
localtype="folder"
parent="aspace_a6744db9be6f83ddaa4212d8b5a1a452_c1">9</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854851"
id="aspace_e3755201764b3b1c2d35820353a5e3c9"
level="file">
<did>
<unittitle>Correspondence, G</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_e3755201764b3b1c2d35820353a5e3c9_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e3755201764b3b1c2d35820353a5e3c9_c2"
localtype="folder"
parent="aspace_e3755201764b3b1c2d35820353a5e3c9_c1">10</container>
</did>
</c>
<c altrender="/repositories/10/archival_objects/2854852"
id="aspace_9e12b774409ca69172e4932f0cfb90fa"
level="file">
<did>
<unittitle>Correspondence: Harper, William R., President of University of Chicago</unittitle>
<container altrender="/repositories/10/top_containers/343676"
containerid="39002010858646"
encodinganalog="archive letter"
id="aspace_9e12b774409ca69172e4932f0cfb90fa_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_9e12b774409ca69172e4932f0cfb90fa_c2"
localtype="folder"
parent="aspace_9e12b774409ca69172e4932f0cfb90fa_c1">11</container>
</did>