-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path836.xml
3272 lines (3272 loc) · 178 KB
/
836.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.bagnold">beinecke.bagnold</recordid>
<otherrecordid localtype="BIB">3435330</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Enid Bagnold Papers
</titleproper>
<titleproper localtype="filing">Bagnold (Enid) Papers</titleproper>
<author>by Susie R. Bock</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>February 1987</date>
<num>GEN MSS 78</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">3435330</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-2, 3 (Oversize), 4 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="7">7</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:42:09-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:42</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/836" level="collection">
<did>
<unittitle>Enid Bagnold papers</unittitle>
<unitid>GEN MSS 78</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1</quantity>
<unittype>Linear Foot</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1912">1912</fromdate>
<todate standarddate="1971">1971</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_306f94a3106560495120833da67a5851">The papers contain personal and professional correspondence and other papers, including a scrapbook, which document Bagnold's personal life and writing career.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Bagnold, Enid</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_41ccc372d1819a989c6ba1491ecf03dd">
<head>Immediate Source of Acquisition</head>
<p>The papers were purchased by The Beinecke Rare Book and Manuscript Library in April 1982 from the George S. MacManus Company with income from the Herman W. Liebert Book Fund.</p>
</acqinfo>
<userestrict id="aspace_abfc5c66a998829ce9adfc957ae0988a">
<head>Conditions Governing Use</head>
<p>The Enid Bagnold Papers are 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_db81478de82084a69d9d68fd7d30079b">
<head>Preferred Citation</head>
<p>Enid Bagnold Papers. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_924201493bc8805c45c018e5d945a04b">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 4: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<bioghist id="aspace_f9594a2ad905dbecc92191722a826cd6">
<head>ENID BAGNOLD, LADY JONES (1889-1981)</head>
<p>Enid Bagnold, a twentieth-century British author, is best known for her novel <title localtype="simple" render="italic">
<part>National Velvet</part>
</title> (1935) and her play "The Chalk Garden" (1955). Born in Rochester, England she spent much of her early life abroad. As a child Bagnold lived in Jamaica where her father was stationed with the Royal Engineers. She was educated in Germany and France.</p>
<p>During World War I, Bagnold served in an English hospital and drove an ambulance for the French army. Drawing on these experiences, she wrote her first novels, <title localtype="simple" render="italic">
<part>Diary without Dates</part>
</title> (1918) and <title localtype="simple" render="italic">
<part>The Happy Foreigner</part>
</title> (1920). Bagnold married Sir Roderick Jones in 1920, settled in London, traveled in high society and literary circles, and for the next three decades continued writing fiction. In 1924, she published <title localtype="simple" render="italic">
<part>Serena Blandish</part>
</title> and in 1938 <title localtype="simple" render="italic">
<part>The Squire</part>
</title> (published under the title <title localtype="simple" render="italic">
<part>The Door of Life</part>
</title> in the United States). After losing her first chance to be on stage, Bagnold turned to playwriting. A friend suggested she use her experience as the plot of a play: "Lottie Dundass" (1941) was the result. She became devoted to the theater and wrote "Poor Judas" (1951), "Gertie" (1952), "The Last Joke" (1960), and "The Chinese Prime Minister" (1964). Her plays were produced in both England and America.</p>
<p>After her husband died in 1962, Bagnold remained active, built new friendships, and continued to write. In 1967 she began her autobiography, which was published in 1969. Although many of her plays were unsuccessful, her enthusiasm for the theater never waned. She flew to Philadelphia in 1977 to attend her play "A Matter of Gravity" starring Katherine Hepburn. Bagnold died in 1981.</p>
</bioghist>
<scopecontent id="aspace_3425953029c53b233b150172fb10948f">
<head>Scope and Contents</head>
<p>The Enid Bagnold Papers contain personal and professional correspondence and other papers which document the life and career of the author of <title localtype="simple" render="italic">
<part>National Velvet</part>
</title> and "The Chalk Garden." The papers span the years 1912-71.</p>
<p>The Bagnold Papers are divided into two series: Personal Papers and Correspondence. The bulk of the collection consists of letters written to Bagnold, although there are also letters by Bagnold and a small quantity of third party correspondence.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Personal Papers</part>
</title>
</ref>, is divided into three sections: copies of letters from Bagnold where no other correspondence exists, correspondence with booksellers regarding <title localtype="simple" render="italic">
<part>The Door of Life</part>
</title>, and a scrapbook. Bagnold's letters are arranged chronologically, with the notes, drafts, and miscellaneous material following. <title localtype="simple" render="italic">
<part>The Door of Life</part>
</title> correspondence consists of chronologically arranged postcards distributed by the William Morrow & Company, publisher, for comments from book vendors, replies to those postcards, and unsolicited reviews. The scrapbook has been photocopied and the original letters placed in the correspondence series. Original material that did not fit in correspondence has been placed in a separate folder.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref19">Series II, <title localtype="simple" render="italic">
<part>General Correspondence</part>
</title>
</ref>, is arranged alphabetically by correspondent, and unidentified correspondence has been placed at the end of the series. Most third person correspondence has been placed in Series I.</p>
<p>Series II does not contain a significant quantity of correspondence from any single individual. There are several groups of ten of more letters, but most individuals wrote just a few letters. The letters are predominantly personal in content, but they also include some discussion of Bagnold's work. The collection contains a handful of business letters.</p>
<p>Almost all the correspondence dating from 1918-19 comments on her first novel <title localtype="simple" render="italic">
<part>Diary without Dates</part>
</title>. The production of "Lottie Dundass" is discussed in the Charles Cochran correspondence, while Thornton Wilder's letters critique the play. Probably the best documented work is her play "The Chalk Garden." Letters from Christopher Busney give some hint as to the genesis of the play, while Bagnold's correspondence with Sir James Cassels demonstrates how she acquired legal facts for her plot. Finally some information on the New York and London productions of "The Chalk Garden" can be found in the Irene Selznick and the Brandt & Brandt Dramatic Department correspondence.</p>
<p>Bagnold's correspondence with Arthur Calder-Marshall and William Heineman Limited demonstrates her business manner. There is a rich correspondence with Alfred Lunt and Lynn Fontanne, a friendship that arose when Bagnold offered them the leading roles in "The Chinese Prime Minister." Another interesting correspondent is Hugo Rumbold, who wrote to Bagnold using the name "Marie." Known in the theater world as "Binkie," Hugh Beaumont, corresponded with Bagnold and is often mentioned in other correspondence.</p>
<p>The collection also contains letters from such prominent political and literary figures as Irene Selznick, Stanley Baldwin, William Somerset Maugham, J. B. Priestley, Thornton Wilder, and Katherine Mansfield.</p>
<p>The fragile papers in Box 4 consist of originals for which preservation photocopies have been made.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85010068"
source="lcsh">
<part localtype="topical">Autographs</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85043345"
source="lcsh">
<part localtype="topical">English drama</part>
<part localtype="temporal">20th Century</part>
</subject>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85009793"
source="lcsh">
<part localtype="occupation">Authors</part>
</occupation>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85039342"
source="lcsh">
<part localtype="topical">Dramatists</part>
</subject>
<persname rules="aacr" source="local">
<part localtype="agent_person">Alfonso, Beatriz</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Alfonso, Maria Francisco Antonio Diego</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Bagnold, Enid</part>
</persname>
<persname>
<part localtype="agent_person">Bedford, Sybille, 1911-2006</part>
</persname>
<persname>
<part localtype="agent_person">Behrman, S. N. (Samuel Nathaniel), 1893-1973</part>
</persname>
<persname>
<part localtype="agent_person">Calder-Marshall, Arthur, 1908-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Cochran, C. B. (Charles Blake), 1872-1951</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Fontanne, Lynn, 1887-1983</part>
</persname>
<persname>
<part localtype="agent_person">Lunt, Alfred, 1892-1977</part>
</persname>
<persname>
<part localtype="agent_person">Morand, Paul, 1888-1976</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Selznick, Irene Mayer, 1907-1990</part>
</persname>
<persname>
<part localtype="agent_person">Smyth, Ethel, 1858-1944</part>
</persname>
<persname>
<part localtype="agent_person">Wilder, Thornton, 1897-1975</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/275124"
id="ref11"
level="series">
<did>
<unittitle>Personal papers</unittitle>
<unitid>Series I</unitid>
</did>
<scopecontent id="aspace_8e63dcfeec6d270c7cb75a890c8661a9">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Personal Papers</part>
</title>, Folder 1 contains copies of letters by Bagnold arranged chronologically. Notes and other material follow the letters. The correspondence with booksellers is also arranged chronologically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/275125"
id="ref12"
level="file">
<did>
<unittitle>Correspondence and notes</unittitle>
<unitdatestructured altrender="1962-63" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275126"
id="ref13"
level="file">
<did>
<unittitle>Correspondence with booksellers re: <title localtype="simple" render="italic">
<part>The Door of Life</part>
</title>:</unittitle>
<unitdatestructured altrender="1938" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1938">1938</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275127"
id="ref14"
level="file">
<did>
<unittitle>Scrapbook</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/275128"
id="ref15"
level="file">
<did>
<unittitle>Photocopy of scrapbook</unittitle>
</did>
<relatedmaterial id="aspace_6b9fc3774d3c61132ee16974de40dddb">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref201">See: Oversize, Box 3, folder 63</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275129"
id="ref17"
level="file">
<did>
<unittitle>Material from scrapbook</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/275130"
id="ref19"
level="series">
<did>
<unittitle>General correspondence</unittitle>
<unitid>Series II</unitid>
</did>
<scopecontent id="aspace_07c5d59d1929e329acba227d5a92c6bf">
<head>Scope and Contents</head>
<p>Series II, <title localtype="simple" render="italic">
<part>General Correspondence</part>
</title>, Within the series, letters are arranged alphabetically. For each individual, correspondence is in chronological order, with undated letters at the end.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/275131"
id="ref20"
level="file">
<did>
<unittitle>Alfonso, Maria Francisco Antonio Diego and Alfonso, Beatriz</unittitle>
<unitdatestructured altrender="1925-68" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275132"
id="ref21"
level="file">
<did>
<unittitle>Arlen, Michael</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">5</container>
<daoset altrender="/repositories/11/digital_objects/127600">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:16440538"
linktitle="7 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16440538"
identifier="oid:16440538"
linktitle="7 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Arlen, Michael</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275133"
id="ref22"
level="file">
<did>
<unittitle>Asquith, Emma Alice Margaret, Countess of Oxford and Asquith</unittitle>
<unitdatestructured altrender="1919" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1919">1919</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1942" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1942">1942</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275134"
id="ref23"
level="file">
<did>
<unittitle>Asquith, Violet, Baroness of Yarnsbury and Bonham Carter, Maurice, Sir</unittitle>
<unitdatestructured altrender="1918-49" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1918">1918</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275135"
id="ref24"
level="file">
<did>
<unittitle>Asselin, Maurice</unittitle>
<unitdatestructured altrender="1916, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1916">1916, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275136"
id="ref25"
level="file">
<did>
<unittitle>Bagnold, Alexander</unittitle>
<unitdatestructured altrender="ca. 1918" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1918">ca. 1918</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275137"
id="ref26"
level="file">
<did>
<unittitle>Baker, Sylvia</unittitle>
<unitdatestructured altrender="1934 Jan 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1934-01-08">1934 Jan 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275138"
id="ref27"
level="file">
<did>
<unittitle>Baldwin, Stanley</unittitle>
<unitdatestructured altrender="1931" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1931">1931</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275139"
id="ref28"
level="file">
<did>
<unittitle>Balfour, W. J.</unittitle>
<unitdatestructured altrender="1935 Apr 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935-04-24">1935 Apr 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275140"
id="ref29"
level="file">
<did>
<unittitle>Barker, Lee</unittitle>
</did>
<relatedmaterial id="aspace_772307a46224907b1ba1d9051a5c4f31">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref79">See: Doubleday & Co., Box 1, folder 27</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275141"
id="ref31"
level="file">
<did>
<unittitle>Beaton, Cecil</unittitle>
<unitdatestructured altrender="1943, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1943">1943, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275142"
id="ref32"
level="file">
<did>
<unittitle>Beauchamp, Kathleen</unittitle>
</did>
<relatedmaterial id="aspace_3cac91e60401cf9e49bed5c226ff60ad">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref119">See: Mansfield, Katherine, Box 1 folder 36</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275143"
id="ref34"
level="file">
<did>
<unittitle>Beaumont, Hugh</unittitle>
<unitdatestructured altrender="1955" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1955">1955</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275144"
id="ref35"
level="file">
<did>
<unittitle>Beaverbrook, William Maxwell Aitken, 1st Baron</unittitle>
<unitdatestructured altrender="1962, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962">1962, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275145"
id="ref36"
level="file">
<did>
<unittitle>Bedford, Sibylle, Lady Cunard</unittitle>
<unitdatestructured altrender="1925-71" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1925">1925</fromdate>
<todate standarddate="1971">1971</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275146"
id="ref37"
level="file">
<did>
<unittitle>Beer-Hoffmann, Gabriel</unittitle>
<unitdatestructured altrender="1936 Feb 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1936-02-15">1936 Feb 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275147"
id="ref38"
level="file">
<did>
<unittitle>Behrman, S. N.</unittitle>
<unitdatestructured altrender="1928-67" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1928">1928</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275148"
id="ref39"
level="file">
<did>
<unittitle>Bell, Arthur Clive Howard</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275149"
id="ref40"
level="file">
<did>
<unittitle>Bell, Quentin</unittitle>
<unitdatestructured altrender="1970 Nov 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1970-11-07">1970 Nov 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275150"
id="ref41"
level="file">
<did>
<unittitle>Bellingham-Smith, Hugh</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275151"
id="ref42"
level="file">
<did>
<unittitle>Belloc, Hilaire</unittitle>
<unitdatestructured altrender="1939 Aug 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1939-08-07">1939 Aug 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275152"
id="ref43"
level="file">
<did>
<unittitle>Beresford, John Davys</unittitle>
<unitdatestructured altrender="1920 Mar 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-03-06">1920 Mar 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275153"
id="ref44"
level="file">
<did>
<unittitle>Besant, Annie</unittitle>
<unitdatestructured altrender="1912 Aug 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912-08-15">1912 Aug 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275154"
id="ref45"
level="file">
<did>
<unittitle>Birkenhead, Frederick Edwin Smith, 1st Earl</unittitle>
<unitdatestructured altrender="1950, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1950">1950, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275155"
id="ref46"
level="file">
<did>
<unittitle>Birrell, Augustine</unittitle>
<unitdatestructured altrender="1918-32" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1918">1918</fromdate>
<todate standarddate="1932">1932</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275156"
id="ref47"
level="file">
<did>
<unittitle>Blackwood, Basil, Sir</unittitle>
<unitdatestructured altrender="1916" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1916">1916</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275157"
id="ref48"
level="file">
<did>
<unittitle>Blumenfeld, Ralph D.</unittitle>
<unitdatestructured altrender="1935 Apr 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935-04-11">1935 Apr 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275158"
id="ref49"
level="file">
<did>
<unittitle>Bonham-Carter, Maurice, Sir</unittitle>
</did>
<relatedmaterial id="aspace_1e9c144dec815a16a5e6393787977284">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref23">See: Asquith, Violet, Baroness of Yarnsbury, Box 1 folder 6</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275159"
id="ref51"
level="file">
<did>
<unittitle>Bonham-Carter, Violet</unittitle>
</did>
<relatedmaterial id="aspace_b0f71d4425e80c1ef0e79b66f85d9082">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref23">See: Asquith, Violet, Baroness of Yarnsbury, Box 1 folder 6</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275160"
id="ref53"
level="file">
<did>
<unittitle>Brandt & Brandt Dramatic Dept.</unittitle>
<unitdatestructured altrender="1952-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275161"
id="ref54"
level="file">
<did>
<unittitle>Brandt, Carol</unittitle>
</did>
<relatedmaterial id="aspace_dafa9de4e872c6fa5155b0fcb620cb6c">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref53">See: Brandt & Brandt Dramatic Dept., Box 1 folder 16</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/275162"
id="ref56"
level="file">
<did>
<unittitle>Buckingham, Gwen, Lady</unittitle>
<unitdatestructured altrender="ca. 1962" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1962">ca. 1962</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275163"
id="ref57"
level="file">
<did>
<unittitle>Burroway, Janet</unittitle>
<unitdatestructured altrender="1971 Nov 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1971-11-23">1971 Nov 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275164"
id="ref58"
level="file">
<did>
<unittitle>Busney, Christopher</unittitle>
<unitdatestructured altrender="1971" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1971">1971</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275165"
id="ref59"
level="file">
<did>
<unittitle>Calder-Marshall, Arthur</unittitle>
<unitdatestructured altrender="[1953]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">[1953]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275166"
id="ref60"
level="file">
<did>
<unittitle>Camrose, Mollie Patricia, Viscountess</unittitle>
<unitdatestructured altrender="[1956?] Jan 15"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1956-01-15">[1956?] Jan 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275167"
id="ref61"
level="file">
<did>
<unittitle>Cassels, James Dale, Sir</unittitle>
<unitdatestructured altrender="1952" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1952">1952</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275168"
id="ref62"
level="file">
<did>
<unittitle>Cecil, David, Lord</unittitle>
<unitdatestructured altrender="1948 Nov 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1948-11-09">1948 Nov 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275169"
id="ref63"
level="file">
<did>
<unittitle>Chamberlain, Anne, Lady</unittitle>
<unitdatestructured altrender="1938-39" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1938">1938</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/275170"
id="ref64"
level="file">
<did>
<unittitle>Churchill, Clementine Oglivy Spencer, Baroness</unittitle>
<unitdatestructured altrender="1945-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1945">1945</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/24674 /locations/4051"
containerid="39002099350242"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>