-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1728.xml
2116 lines (2116 loc) · 114 KB
/
1728.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.nichols">beinecke.nichols</recordid>
<otherrecordid localtype="BIB">3830626</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Dudley Nichols Papers
</titleproper>
<titleproper localtype="filing">Nichols (Dudley) 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>December 2012</date>
<num>YCAL MSS 671</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">3830626</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-7</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="9">9</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="625">625</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:36:40-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:36</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1728" level="collection">
<did>
<unittitle>Dudley Nichols papers</unittitle>
<unitid>YCAL MSS 671</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.92</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1903-1969" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1903">1903</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_c484e7602e7e74c1f84320c14e1705de">The Dudley Nichols papers contain correspondence, writings, and personal papers documenting the life and work of American screenwriter and director Dudley Nichols. Correspondence with family, friends, authors, critics, actors, and directors includes a number of authors who, like Nichols, served in the Armed Forces during World War I or resided or worked at least briefly in California and Hollywood. There are letters from Edward Dahlberg, William Faulkner, Gene Fowler, Aldous Huxley, William Marsh, Christopher Morley, Henry Miller, Ernst Toller, and Thornton Wilder, as well as Charlie Chaplin and Jean Renoir. Work by Nichols dating from 1920 to the late 1950s includes several scripts for cinematic and theatrical productions and shorter works, including poetry, reviews, and essays. Personal papers feature Nichols's military records dating from his service in the U.S. Navy and photographs.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Nichols, Dudley, 1895-1960</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_e6b4cc2a974b5114376e457973761adf">
<head>Immediate Source of Acquisition</head>
<p>Acquired by gift from various sources, 1949-1987.</p>
<p>The bulk of the collection, including incoming letters, outgoing letters to family, most writings, and all personal papers, was received by gift from Dudley Nichols, 1949-1960, and his widow, Esta Nichols, 1961-1966. Additional materials, including outgoing letters to others and some writings, were acquired by gift from other sources, 1960-1987.</p>
<p>For more information consult the appropriate curator.</p>
</acqinfo>
<accessrestrict id="aspace_a4cb4f9e5bec454c96ebe4af898c6a6e">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_13084ebaced1c2c590a5067aab7ee0a6">
<head>Conditions Governing Use</head>
<p>The Dudley Nichols 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_8c88fa9127f5135076593e406534d67b">
<head>Preferred Citation</head>
<p>Dudley Nichols Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_895e381d1c4d1baf7f98cc94ed34ea2d">
<head>Processing Information</head>
<p>This collection received a basic level of processing, including rehousing and in some instances minimal organization upon receipt by the library. Incoming and outgoing correspondence, for example, were arranged into separate alpabetical runs by name of correspondent. During re-processing of the collection in 2012, series were formally established for I. Correspondence, II. Writings, and III. Personal Papers, and the writings and other materials were arranged alphabetically by title and material type in the Writings and Personal Papers series respectively.</p>
<p>Former call numbers: Uncat Za Nichols and Uncat Za Ms 34.</p>
</processinfo>
<relatedmaterial id="aspace_6016ea084689bfd979e781a633341760">
<head>Associated Materials</head>
<p>Dudley Nichols Correspondence Regarding the Screen Adaptation of Eugene O'Neill's Mourning Becomes Electra. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</relatedmaterial>
<bioghist id="aspace_8c20da6a8ff4f717b00a34ac48e9a342">
<head>Dudley Nichols (1895-1960)</head>
<p>Dudley Nichols, a screenwriter and director, was born in Wapakoneta, Ohio to Grant Byron Nichols and Mary Means. Nichols developed a fascination with electricity and worked on a crew that repaired high-tension power lines and as a ship's radio operator on the Great Lakes. In 1915 he entered the University of Michigan, where he studied electrical engineering and was employed as a student assistant in charge of the radio laboratory. At the outbreak of World War I, Nichols enlisted in the Navy and set up a school for radio operators. Later, he was part of the North Sea Mine Laying Force.</p>
<p>After the armistice Nichols volunteered for minesweeping duty and invented a method of electrical protection for minesweepers for which he received the Distinguished Service Medal in 1920. Following the war Nichols worked as a reporter for ten years for the Philadelphia <title localtype="simple" render="italic">
<part>Evening Public Ledger</part>
</title>, then the <title localtype="simple" render="italic">
<part>New York Evening Post</part>
</title>, and finally the New York <title localtype="simple" render="italic">
<part>World</part>
</title>. During this period he also studied at New York University and sailed again as a radio operator.</p>
<p>In 1929 Nichols was persuaded by Winfield Sheehan, head of Fox Studios, to become a screenwriter. His first film, <title localtype="simple" render="italic">
<part>Men Without Women</part>
</title> (1930), directed by John Ford, led to a collaboration with Ford that lasted until 1947 and resulted in fourteen films, including <title localtype="simple" render="italic">
<part>The Lost Patrol</part>
</title> (1934), <title localtype="simple" render="italic">
<part>The Informer</part>
</title> (1935), <title localtype="simple" render="italic">
<part>Stagecoach</part>
</title> (1939), <title localtype="simple" render="italic">
<part>The Long Voyage Home</part>
</title> (1940), and <title localtype="simple" render="italic">
<part>The Fugitive</part>
</title> (1947). During the 1940's Nichols also worked with Fritz Lang, Jean Renoir, Howard Hawks, Leo McCarey, René Clair, and Elia Kazan. He wrote the final script of Ernest Hemingway's <title localtype="simple" render="italic">
<part>For Whom the Bell Tolls</part>
</title> (1943) and produced and directed two films based on his own scripts, <title localtype="simple" render="italic">
<part>Sister Kenny</part>
</title> (1946) and an adaptation of Eugene O'Neill's <title localtype="simple" render="italic">
<part>Mourning Becomes Electra</part>
</title> (1947).</p>
<p>Biographical information taken from "Dudley Nichols." <title localtype="simple" render="italic">
<part>Dictionary of American Biography</part>
</title>. New York: Charles Scribner's Sons, 1980. <title localtype="simple" render="italic">
<part>Gale Biography In Context</part>
</title>. Web. 13 Dec. 2012.</p>
</bioghist>
<scopecontent id="aspace_e2861cafded12ce5685718790deaa93b">
<head>Scope and Contents</head>
<p>The Dudley Nichols papers contain correspondence, writings, and personal papers documenting the life and work of American screenwriter and director Dudley Nichols. Correspondence with family, friends, authors, critics, actors, and film directors includes a number of authors who, like Nichols, served in the Armed Forces during World War I or resided or worked at least briefly in California and Hollywood. There are letters from Edward Dahlberg, William Faulkner, Gene Fowler, Aldus Huxley, William Marsh, Christopher Morley, Henry Miller, Ernst Toller, and Thornton Wilder, as well as Charlie Chaplin and Jean Renoir. Work by Nichols dating from 1920 to the late 1950s includes several scripts for cinematic and theatrical productions and shorter work, including poetry, reviews, and essays. Personal papers feature Nichols's military records dating from his service in the the U.S. Navy and photographs.</p>
</scopecontent>
<arrangement id="aspace_744d88afff8f966b27d3a56243de3b17">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, 1915-1960. II. Writings, 1920-1958. III. Personal Papers, 1903-1969.</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/sh87006130"
source="lcsh">
<part localtype="topical">Motion picture producers and directors</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Screenwriters</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Film scripts</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Motion picture producers and directors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85118942"
source="local">
<part localtype="occupation">Screenwriters</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Chaplin, Charlie, 1889-1977</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Dahlberg, Edward, 1900-1977</part>
</persname>
<persname>
<part localtype="agent_person">Faulkner, William, 1897-1962</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Fowler, Gene, 1890-1960</part>
</persname>
<persname>
<part localtype="agent_person">Huxley, Aldous, 1894-1963</part>
</persname>
<persname>
<part localtype="agent_person">Marsh, W. Lockwood (William Lockwood), 1886-1963</part>
</persname>
<persname>
<part localtype="agent_person">Morley, Christopher, 1890-1957</part>
</persname>
<persname>
<part localtype="agent_person">Nichols, Dudley, 1895-1960</part>
</persname>
<persname>
<part localtype="agent_person">Renoir, Jean, 1894-1979</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Toller, Ernst, 1893-1939</part>
</persname>
<persname>
<part localtype="agent_person">Wilder, Thornton, 1897-1975</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/692174"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1915-1960" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1915">1915</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_457ca3042434fdca1fd01d600ea60235">
<head>Arrangement</head>
<p>Organized into three subseries for Incoming, Outgoing, and Third-Party correspondence. Arranged alphabetically within subseries by last name of correspondent.</p>
</arrangement>
<scopecontent id="aspace_294d3be725c684859071ded8031bf326">
<head>Scope and Contents</head>
<p>Series I. contains correspondence with family, friends, authors, critics, actors, and film directors. Correspondents include a number of authors who also served in the Armed Forces during World War I or resided or worked at least briefly in California and Hollywood. There are letters from Edward Dahlberg, William Faulkner, Gene Fowler, Aldus Huxley, William Marsh, Christopher Morley, Henry Miller, Ernst Toller, and Thornton Wilder. There is also correspondence with film figures Charlie Chaplin and Jean Renoir.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/692175"
id="ref14"
level="subseries">
<did>
<unittitle>Incoming</unittitle>
</did>
<acqinfo id="aspace_54d2b74b87aa62bbbbc7cdd6c6efad8d">
<head>Immediate Source of Acquisition</head>
<p>Gift of Dudley Nichols, 1949-1960.</p>
</acqinfo>
<c altrender="/repositories/11/archival_objects/692176"
id="ref15"
level="file">
<did>
<unittitle>Atkinson, Brooks</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692177"
id="ref16"
level="file">
<did>
<unittitle>Behrman, S. N. (Samuel Nathaniel)</unittitle>
<unitdatestructured altrender="1953" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_b05310937fe8fe03ce836c4de48e2f0b">
<head>Scope and Contents</head>
<p>Includes letter from Berhman to "Irving"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/692178"
id="ref18"
level="file">
<did>
<unittitle>Belasco, David</unittitle>
<unitdatestructured altrender="1928 March" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1928-03">1928 March</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692179"
id="ref19"
level="file">
<did>
<unittitle>Benoit-Lévy, Jean</unittitle>
<unitdatestructured altrender="1954-1955" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692180"
id="ref20"
level="file">
<did>
<unittitle>Brooks, Van Wyke</unittitle>
<unitdatestructured altrender="1953-1956" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1953">1953</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692181"
id="ref21"
level="file">
<did>
<unittitle>Chaplin, Charlie</unittitle>
<unitdatestructured altrender="1947 May 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1947-05-27">1947 May 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692182"
id="ref22"
level="file">
<did>
<unittitle>Cinémathèque française</unittitle>
<unitdatestructured altrender="1955 March 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955-03-08">1955 March 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692183"
id="ref23"
level="file">
<did>
<unittitle>Commins, Saxe</unittitle>
<unitdatestructured altrender="1957 April 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1957-04-11">1957 April 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692184"
id="ref24"
level="file">
<did>
<unittitle>Crowther, Bosley</unittitle>
<unitdatestructured altrender="1957 September 4"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1957-09-04">1957 September 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692185"
id="ref25"
level="file">
<did>
<unittitle>Dahlberg, Edward</unittitle>
<unitdatestructured altrender="1952-1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692186"
id="ref26"
level="file">
<did>
<unittitle>Daniels, Guy</unittitle>
<unitdatestructured altrender="1957-1958" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692187"
id="ref27"
level="file">
<did>
<unittitle>Effinger, John</unittitle>
<unitdatestructured altrender="1921 June 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-06-07">1921 June 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692188"
id="ref28"
level="file">
<did>
<unittitle>Ernst, Morris L.</unittitle>
<unitdatestructured altrender="1955-1956" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692189"
id="ref29"
level="file">
<did>
<unittitle>Faulkner, William</unittitle>
<unitdatestructured altrender="1956-1957" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1956">1956</fromdate>
<todate standarddate="1957">1957</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692190"
id="ref30"
level="file">
<did>
<unittitle>Feuchtwanger, Lion</unittitle>
<unitdatestructured altrender="1952" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952">1952</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1956" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1956">1956</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692191"
id="ref31"
level="file">
<did>
<unittitle>Fowler, Gene</unittitle>
<unitdatestructured altrender="1954-1958, undatedf"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692192"
id="ref32"
level="file">
<did>
<unittitle>Gassner, John</unittitle>
<unitdatestructured altrender="1945-1954" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1945">1945</fromdate>
<todate standarddate="1954">1954</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692193"
id="ref33"
level="file">
<did>
<unittitle>Huxley, Aldous</unittitle>
<unitdatestructured altrender="1944 November 27"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1944-11-27">1944 November 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/185853">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32246048"
identifier="oid:32246048"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32246049/full/!150,150/0/default.jpg"
identifier="oid:32246048"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32246048"
identifier="oid:32246048"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Huxley, Aldous</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692194"
id="ref34"
level="file">
<did>
<unittitle>Kenny, Elizabeth</unittitle>
<unitdatestructured altrender="1944 May 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944-05-01">1944 May 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692195"
id="ref35"
level="file">
<did>
<unittitle>Lardner, Ring</unittitle>
<unitdatestructured altrender="1925 October 28"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1925-10-28">1925 October 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692196"
id="ref36"
level="file">
<did>
<unittitle>Lefevre, Edwin</unittitle>
<unitdatestructured altrender="1926 December 6"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1926-12-06">1926 December 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692197"
id="ref37"
level="file">
<did>
<unittitle>March, William</unittitle>
<unitdatestructured altrender="1952" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952">1952</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692198"
id="ref38"
level="file">
<did>
<unittitle>Masters, Dexter</unittitle>
<unitdatestructured altrender="1956-1957" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1956">1956</fromdate>
<todate standarddate="1957">1957</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692199"
id="ref39"
level="file">
<did>
<unittitle>Masters, Edgar Lee</unittitle>
<unitdatestructured altrender="1939-1945, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939">1939</fromdate>
<todate standarddate="1945">1945</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_6a8cb01bac65b4e7053140d106a068ac">
<head>Scope and Contents</head>
<p>Includes drafts of writings by Masters and letter from Alice Davis</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/692200"
id="ref41"
level="file">
<did>
<unittitle>Miller, Henry</unittitle>
<unitdatestructured altrender="1943, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1943">1943, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692201"
id="ref42"
level="file">
<did>
<unittitle>Morley, Christopher</unittitle>
<unitdatestructured altrender="1924-1949, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1924">1924</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_bea858f2fb3cdd2ee9137f7c35b7ef9f">
<head>Scope and Contents</head>
<p>Includes letter from Rollo Ogden to Morley and printed ephemera</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/692202"
id="ref44"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>The Nation</part>
</title>
</unittitle>
<unitdatestructured altrender="1927 January 24"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1927-01-24">1927 January 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692203"
id="ref45"
level="file">
<did>
<unittitle>Nichols, Grant B. (father)</unittitle>
<unitdatestructured altrender="1933-1935, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/185858">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32246053"
identifier="oid:32246053"
linktitle="27 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32246054/full/!150,150/0/default.jpg"
identifier="oid:32246053"
linktitle="27 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32246053"
identifier="oid:32246053"
linktitle="27 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Nichols, Grant B. (father)</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692204"
id="ref46"
level="file">
<did>
<unittitle>Nichols, Kitty (mother)</unittitle>
<unitdatestructured altrender="1935, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/185866">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32246081"
identifier="oid:32246081"
linktitle="15 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32246082/full/!150,150/0/default.jpg"
identifier="oid:32246081"
linktitle="15 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/32246081"
identifier="oid:32246081"
linktitle="15 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Nichols, Kitty (mother)</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692205"
id="ref47"
level="file">
<did>
<unittitle>Paulson, Arvid</unittitle>
<unitdatestructured altrender="1952-1960" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81443 /locations/9"
containerid="39002104673471"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692206"
id="ref48"
level="file">
<did>
<unittitle>Philip, Sister Mary</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1945-1960, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1945">1945</fromdate>
<todate standarddate="1960">1960</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81444 /locations/9"
containerid="39002104673489"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_f47a435d13f90425d30bfcb8640e648f">
<head>Scope and Contents</head>
<p>Includes drafts of writings</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/692207"
id="ref51"
level="file">
<did>
<unittitle>Stokowski, Leopold</unittitle>
<unitdatestructured altrender="1944" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1944">1944</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81444 /locations/9"
containerid="39002104673489"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/692208"
id="ref52"
level="file">
<did>
<unittitle>Swope, Herbert Bayard</unittitle>
<unitdatestructured altrender="1925-1955" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1955">1955</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81444 /locations/9"
containerid="39002104673489"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
<scopecontent id="aspace_f81d51c9c2a403355c1341357695f091">
<head>Scope and Contents</head>
<p>Includes letters to Swope from others</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/692209"
id="ref54"
level="file">
<did>
<unittitle>Tesla, N[ikola?]</unittitle>
<unitdatestructured altrender="1921 July 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-07-11">1921 July 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81444 /locations/9"
containerid="39002104673489"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">2</container>
<daoset altrender="/repositories/11/digital_objects/185868">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/32246097"
identifier="oid:32246097"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/32246098/full/!150,150/0/default.jpg"
identifier="oid:32246097"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>