-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1665.xml
5432 lines (5432 loc) · 284 KB
/
1665.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.clarkbh">beinecke.clarkbh</recordid>
<otherrecordid localtype="BIB">10462032</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Barrett H. Clark Papers
</titleproper>
<titleproper localtype="filing">Clark (Barrett H.) Papers</titleproper>
<author>by Beinecke Staff</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>2012</date>
<num>YCAL MSS 569</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">10462032</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-32</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="411">411</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>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-09T01:31:13-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:31</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1665" level="collection">
<did>
<unittitle>Barrett H. Clark papers</unittitle>
<unitid>YCAL MSS 569</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>12.09</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">32 boxes</physdesc>
<unitdatestructured altrender="1905-1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1905">1905</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_5e9088a3e5b7941646519a66fd5623ec">The Barrett H. Clark Papers document the work of American writer, editor, translator, and drama scholar, Barrett H. Clark, spanning the dates 1905 to 1953. The papers contain correspondence, writings, personal papers, photographs, and printed material providing insight into Clark's scholarship on drama. Correspondents include: Maksim Gorky, Paul Green, Eugene O'Neill, and Betty Smith.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Clark, Barrett H. (Barrett Harper), 1890-1953</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_171fa813969365d3e8ba47303f801b28">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Cecile Smith Clark on the Eugene O'Neill Fund, 1971.</p>
</acqinfo>
<accessrestrict id="aspace_c1d7d592df0c01e0ced928d184395492">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_887dbf6493ce0ccb5c5754c53521d904">
<head>Conditions Governing Use</head>
<p>The Barrett H. Clark 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_63da0026361cdc813003b9383a63775d">
<head>Preferred Citation</head>
<p>Barrett H. Clark Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_3f792e326ff00c1eb8c1602b88e003ae">
<head>Processing Information</head>
<p>This collection received a basic level of processing, including rehousing and minimal organization, in 2012.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during basic processing.</p>
<p>This collection includes materials previously identified by the following call numbers: Za Clark, Uncat Ms Vault 814, Za C546 +1, Za C546 +2, Za C546 +3, and Za C546 +S1.</p>
</processinfo>
<bioghist id="aspace_976a5c1e6698fa1b6ba1edb746fb1f97">
<head>Barrett Harper Clark (1890-1953)</head>
<p>Writer, editor, and actor, Barrett Harper Clark was born on August 26, 1890 in Toronto, Ontario, Canada to S. Henry and Anna M. Fralick Clark. Clark studied at the University of Chicago (1908-1912), spending two years in Paris, but did not complete his degree. While still a student Clark began teaching drama at Chautauqua, New York (1909-1917), an educational summer camp for adults. He also taught at Columbia University and Bryn Mawr (1928-1931).</p>
<p>Following graduation Clark worked as an actor and assistant stage manager in a company run by Minnie Maddern Fiske (1912-1913). Clark then worked as a literary editor for Samuel French, a company specializing in publishing drama, in New York (1918-1936). During this period Clark also served as the dramatic editor of <title localtype="simple" render="italic">
<part>Drama Magazine</part>
</title> (1924-1931) and as a member of the board of directors for the Drama League America (1915-1926). When the U.S. entered WWI Clark served as the dramatic director at Camp Humphreys, Virginia, a U.S. military training camp. In 1936 Clark left Samuel French to become the executive director of the Dramatists Play Service.</p>
<p>In 1916 Clark married Cecile Matilda Smith, with whom he had three children: Nancy, Molly, and Barrett.</p>
<p>Throughout his life Clark sustained a writing career. Early in his career he translated into English a number of plays by French authors: Hervieu's <title localtype="simple" render="italic">
<part>The Labyrinth</part>
</title> (1913), <title localtype="simple" render="italic">
<part>Three Modern Plays from the French</part>
</title> (1914), <title localtype="simple" render="italic">
<part>Four Plays of the Free Theater</part>
</title> (1914), <title localtype="simple" render="italic">
<part>Four Plays of Emile Augier</part>
</title> (1915), <title localtype="simple" render="italic">
<part>Three Plays of Donnay</part>
</title> (1916), Sardou's <title localtype="simple" render="italic">
<part>Patrie!</part>
</title> (1915), Hyacinthe-Loyson's <title localtype="simple" render="italic">
<part>Apostle</part>
</title> (1916), Curel's <title localtype="simple" render="italic">
<part>False Saint</part>
</title> (1916), and Brieux's <title localtype="simple" render="italic">
<part>Artists' Families</part>
</title> (1918), among others.</p>
<p>He wrote a number of books about drama, including: <title localtype="simple" render="italic">
<part>The Continental Drama of Today</part>
</title> (1914), <title localtype="simple" render="italic">
<part>British and American Drama of Today</part>
</title> (1915), <title localtype="simple" render="italic">
<part>Contemporary French Dramatists</part>
</title> (1915), <title localtype="simple" render="italic">
<part>Study of the Modern Drama</part>
</title> (1925), and <title localtype="simple" render="italic">
<part>An Hour of American Drama</part>
</title> (1930). Clark also wrote a practical manual, <title localtype="simple" render="italic">
<part>How to Produce Amateur Plays</part>
</title> (1917-25), which provided guidance for laypeople producing plays. In his chapbook, <title localtype="simple" render="italic">
<part>Speak the Speech</part>
</title> (1930), Clark considers "standard English" and its impact on theatre. In <title localtype="simple" render="italic">
<part>Oedipus or Pollyanna</part>
</title> (1927) Clark argues against censorship, re-visiting an issue he had earlier explored in <title localtype="simple" render="italic">
<part>Jurgen and the Censor</part>
</title> (1919). Clark published an article about Eugene O'Neill in the <title localtype="simple" render="italic">
<part>New York Sun</part>
</title> (May 18, 1919), and after this initial acquaintance, he went on to write a biography <title localtype="simple" render="italic">
<part>Eugene O'Neill</part>
</title> (1926) and <title localtype="simple" render="italic">
<part>Eugene O'Neill Bibliography</part>
</title> (with R. Sanborn) (1931). In 1928 Clark published <title localtype="simple" render="italic">
<part>Professor Clark, a Memoir</part>
</title>.</p>
<p>Clark also edited the fifty-eight volume <title localtype="simple" render="italic">
<part>World's Best Plays</part>
</title> (1915-1926) and was the first editor of <title localtype="simple" render="italic">
<part>America's Lost Plays</part>
</title> (1940-1965), a twenty volume series that brought attention to obscure plays by American dramatists from the eighteenth and nineteenth centuries. Clark edited and co-edited a number of other works pertaining to theatre, including: Walter Prichard Eaton's <title localtype="simple" render="italic">
<part>Plays and Players</part>
</title> (1916), <title localtype="simple" render="italic">
<part>Masterpieces of Modern Spanish Drama</part>
</title> (1917), <title localtype="simple" render="italic">
<part>European Theories of the Drama</part>
</title> (1918), <title localtype="simple" render="italic">
<part>Representative One Act Plays by British and Irish Authors</part>
</title> (1921), <title localtype="simple" render="italic">
<part>One-Act Plays</part>
</title> (1929), <title localtype="simple" render="italic">
<part>Favorite American Plays of the 19th Century</part>
</title> (1943), and <title localtype="simple" render="italic">
<part>Nine Modern American Plays</part>
</title> (1951).</p>
<p>Clark died on August 5, 1953 in Briarcliff, New York.</p>
</bioghist>
<scopecontent id="aspace_bce7528137ee62a38db19a3de8c7f40e">
<head>Scope and Contents</head>
<p>The Barrett H. Clark Papers document the work of American writer, editor, and translator, Barrett H. Clark, spanning the dates 1905 to 1953. The papers contain correspondence, writings, personal papers, photographs, and printed material providing insight into Clark's scholarship on drama.</p>
<p>Clark's intellectual circle, creative life, and work for the Samuel French company are reflected in his correspondence and writings. The Correspondence series provides insight into Clark's relationships with a number of playwrights and other authors, including Sherwood Anderson, Philip Barry, Stephen Vincent Benet, Rachel Field, Dorothy and DuBose Heyward, Sinclair Lewis, George Bernard Shaw, Upton Sinclair, Betty Smith, and Thornton Wilder. In addition, Clark's correspondence reflects his work with prominent figures in theatre, from producers and directors to actors, including Theresa Helburn, Robert Edmond Jones, Lawrence Langner, J. H. Benrimo, and William Gillette. Clark's interest in European drama is reflected in his correspondence with French and German playwrights Romain Rolland, Ernst Toller, and Fritz von Unruh. In the early 1920s Clark wrote an article about Maksim Gorki, as his correspondence with Marie Budberg, on behalf of Gorki, and related photographs illustrate.</p>
<p>Most notably, a number of documents trace Clark's relationship with Eugene O'Neill. In addition to his correspondence with O'Neill, the papers also include letters from O'Neill's wives Agnes Boulton O'Neill and Carlotta Monterey O'Neill. The Papers also contains Clark's drafts of his biography <title localtype="simple" render="italic">
<part>Eugene O'Neill</part>
</title>, including proofs with corrections by O'Neill. The Printed Material series also includes documents relating to O'Neill, such as photographs, clippings, and pamphlets.</p>
<p>The Writings series is comprised of notes and drafts documenting Clark's writing as well as the writings of others. Drafts and proofs of Clark's <title localtype="simple" render="italic">
<part>Eugene O'Neill</part>
</title>, memoir <title localtype="simple" render="italic">
<part>Professor Clark</part>
</title> , and other works are included in the Writings series. A number of Clark's translations are also part of the Writings series, such as Jules Renard's <title localtype="simple" render="italic">
<part>Goodbye!</part>
</title> and Pierre Wolff's <title localtype="simple" render="italic">
<part>Unhoodwinkable</part>
</title>. Shorter publications by Clark are located in the Printed Material series. The Writings series also contains some correspondence relating to specific publications. In addition to Clark's writings the series also contains several works by Paul Green, Edgar Lee Masters, George Moore, and Lynn Riggs.</p>
<p>The Printed Material series contains publications on court cases (largely pertaining to copyright and plagiarism), scrapbooks of clippings and loose clippings relating to Clark and his writings, and various authors' published plays and short stories.</p>
</scopecontent>
<arrangement id="aspace_14535b35bd572956dbd47b6222f7016a">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, 1905-1952. II. Writings, 1911-1953. III. Printed Material, 1915-1953.</p>
</arrangement>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008102392"
source="lcsh">
<part localtype="topical">Drama</part>
<part localtype="temporal">19th century</part>
<part localtype="topical">History and criticism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85039322"
source="lcsh">
<part localtype="topical">Drama</part>
<part localtype="temporal">20th Century</part>
<part localtype="topical">History and criticism</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2005003059"
source="lcsh">
<part localtype="topical">Editors</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85051884"
source="lcsh">
<part localtype="topical">French literature</part>
<part localtype="genre_form">Translations into English</part>
</subject>
<subject source="local">
<part localtype="topical">Translators, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<occupation source="local">
<part localtype="occupation">Editors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Translators</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Clark, Barrett H. (Barrett Harper), 1890-1953</part>
</persname>
<persname>
<part localtype="agent_person">Gorky, Maksim, 1868-1936</part>
</persname>
<persname>
<part localtype="agent_person">Green, Paul, 1894-1981</part>
</persname>
<persname>
<part localtype="agent_person">O'Neill, Eugene, 1888-1953</part>
</persname>
<persname>
<part localtype="agent_person">Smith, Betty, 1896-1972</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Samuel French & Son</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/670120"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1905-1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1905">1905</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_1b13de147efc3aabd3358852716f5de8">2.5 linear feet (6 boxes)</physdesc>
</did>
<arrangement id="aspace_1195cc2efa605f33db19f90fd775eedd">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent.</p>
</arrangement>
<scopecontent id="aspace_6dde442a1db6f5658f06ff80a15ce900">
<head>Scope and Contents</head>
<p>This series contains correspondence dating from 1905 to 1952 that document the personal and professional life of Barrett H. Clark.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/670121"
id="ref402"
level="file">
<did>
<unittitle>Angell, Ernest</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1930">1930</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79097 /locations/9"
containerid="39002092862482"
id="aspace_ref402_c1"
label="Mixed Materials"
localtype="box">31</container>
</did>
<scopecontent id="aspace_53c1111dc71f6fed60fa701812f7fda8">
<head>Scope and Contents</head>
<p>Letters concern legal case Alexander vs. Theatre Guild and Sidney Howard regarding "They Knew What They Wanted."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/670122"
id="ref13"
level="file">
<did>
<unittitle>Author's League</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670123"
id="ref14"
level="file">
<did>
<unittitle>Autograph Letters</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670124"
id="ref15"
level="file">
<did>
<unittitle>Autograph Collection</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670125"
id="ref16"
level="file">
<did>
<unittitle>"A" general</unittitle>
<unitdatestructured altrender="1920-1941" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1941">1941</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670126"
id="ref17"
level="file">
<did>
<unittitle>Anderson, John</unittitle>
<unitdatestructured altrender="1929-1939" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670127"
id="ref18"
level="file">
<did>
<unittitle>Anderson, Maxwell</unittitle>
<unitdatestructured altrender="1925-1946" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1946">1946</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670128"
id="ref19"
level="file">
<did>
<unittitle>Anderson, Sherwood</unittitle>
<unitdatestructured altrender="1926-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670129"
id="ref20"
level="file">
<did>
<unittitle>Atkinson, Brooks</unittitle>
<unitdatestructured altrender="1927-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670130"
id="ref21"
level="file">
<did>
<unittitle>"B" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670131"
id="ref22"
level="file">
<did>
<unittitle>Bab, Julius</unittitle>
<unitdatestructured altrender="1931-1952" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1952">1952</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670132"
id="ref23"
level="file">
<did>
<unittitle>Barry, Philip</unittitle>
<unitdatestructured altrender="1926-1935" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_d7849cee636136e4a82874fae200878f">
<head>Scope and Contents</head>
<p>With misc. leaves and typescript of a speech</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/670133"
id="ref25"
level="file">
<did>
<unittitle>Basshe, Em Jo</unittitle>
<unitdatestructured altrender="1928-1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670134"
id="ref26"
level="file">
<did>
<unittitle>Beach, Lewis</unittitle>
<unitdatestructured altrender="1932-1939" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670135"
id="ref27"
level="file">
<did>
<unittitle>Bein, Albert</unittitle>
<unitdatestructured altrender="1931-1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670136"
id="ref28"
level="file">
<did>
<unittitle>Benet, Stephen Vincent</unittitle>
<unitdatestructured altrender="1937-1941" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937">1937</fromdate>
<todate standarddate="1941">1941</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670137"
id="ref29"
level="file">
<did>
<unittitle>Benrimo, J. H.</unittitle>
<unitdatestructured altrender="1936-1937" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936">1936</fromdate>
<todate standarddate="1937">1937</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79098 /locations/9"
containerid="39002104838017"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670138"
id="ref30"
level="file">
<did>
<unittitle>Blankfort, Michael</unittitle>
<unitdatestructured altrender="1936-1951" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1936">1936</fromdate>
<todate standarddate="1951">1951</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670139"
id="ref31"
level="file">
<did>
<unittitle>Bordeaux, Henry</unittitle>
<unitdatestructured altrender="1922" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922">1922</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670140"
id="ref32"
level="file">
<did>
<unittitle>Bradford, Gamaliel</unittitle>
<unitdatestructured altrender="1926-1931" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1931">1931</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670141"
id="ref33"
level="file">
<did>
<unittitle>Brown, John Mason</unittitle>
<unitdatestructured altrender="1926-1947" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1926">1926</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670142"
id="ref34"
level="file">
<did>
<unittitle>"C" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670143"
id="ref35"
level="file">
<did>
<unittitle>Cabell, James Branch</unittitle>
<unitdatestructured altrender="1927-1929" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670144"
id="ref36"
level="file">
<did>
<unittitle>Conkle, E.P.</unittitle>
<unitdatestructured altrender="1920-1939" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670145"
id="ref37"
level="file">
<did>
<unittitle>Connelly, Marc</unittitle>
<unitdatestructured altrender="1930-1947" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670146"
id="ref38"
level="file">
<did>
<unittitle>Conrad, Joseph</unittitle>
<unitdatestructured altrender="1918 May 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1918-05-04">1918 May 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670147"
id="ref39"
level="file">
<did>
<unittitle>Craig, Edward Gordon</unittitle>
<unitdatestructured altrender="1913-1934" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670148"
id="ref40"
level="file">
<did>
<unittitle>Crothers, Rachel</unittitle>
<unitdatestructured altrender="1933-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670149"
id="ref41"
level="file">
<did>
<unittitle>"D" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670150"
id="ref42"
level="file">
<did>
<unittitle>Day, Clarence</unittitle>
<unitdatestructured altrender="1923-1934" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670151"
id="ref43"
level="file">
<did>
<unittitle>Dreiser, Theodore</unittitle>
<unitdatestructured altrender="1929-1932" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670152"
id="ref44"
level="file">
<did>
<unittitle>Dunning, Phillip</unittitle>
<unitdatestructured altrender="1928-1929" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670153"
id="ref45"
level="file">
<did>
<unittitle>De Koven, Reginald</unittitle>
<unitdatestructured altrender="1913-1914" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1913">1913</fromdate>
<todate standarddate="1914">1914</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670154"
id="ref46"
level="file">
<did>
<unittitle>"E" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670155"
id="ref47"
level="file">
<did>
<unittitle>Elser, Frank</unittitle>
<unitdatestructured altrender="1929-1934" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1929">1929</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670156"
id="ref48"
level="file">
<did>
<unittitle>"F" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670157"
id="ref49"
level="file">
<did>
<unittitle>Faragoh, F. E.</unittitle>
<unitdatestructured altrender="1933-1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670158"
id="ref50"
level="file">
<did>
<unittitle>Ferber, Edna</unittitle>
<unitdatestructured altrender="1940-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/670159"
id="ref51"
level="file">
<did>
<unittitle>Field, Rachel</unittitle>
<unitdatestructured altrender="1927-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_04488791de13670e0434e34a1720d1d3">
<head>Scope and Contents</head>
<p>With 3 sketches</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/670160"
id="ref53"
level="file">
<did>
<unittitle>Finch, Robert</unittitle>
<unitdatestructured altrender="1939-1940" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939">1939</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/79099 /locations/9"
containerid="39002104838025"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>