-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path12262.xml
13812 lines (13812 loc) · 770 KB
/
12262.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.cadmus">beinecke.cadmus</recordid>
<otherrecordid localtype="BIB">16228680</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Paul Cadmus Papers </titleproper>
<titleproper localtype="filing">Cadmus (Paul) Papers</titleproper>
<author>by Rosemary K. J. Davis, Jessica Tai, and Timothy G. Young</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>June 2022</date>
<num>GEN MSS 1977</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-96, 100-139, 141-154, 156-159</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 97 (Oversize), 98-99 (Art), 140, 155, 160</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="36">36</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="1766">1,766</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>
<localcontrol localtype="findaidstatus">
<term>in_progress</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:23:39-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:23</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/12262" level="collection">
<did>
<unittitle>Paul Cadmus papers</unittitle>
<unitid>GEN MSS 1977</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>94.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">160 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1812">1812</fromdate>
<todate standarddate="2019">2019</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_5c9b54e265046798f24dfbcf9fd33fd9">The Paul Cadmus papers, which span from 1812-2019, contain personal papers and files, correspondence, photographs, artwork, papers of others, artwork, address books, printed matter, and other materials that document the life and work of Paul Cadmus.</abstract>
<origination label="Creator">
<persname relator="aut">
<part localtype="agent_person">Cadmus, Paul, 1904-1999</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_c52aba22a2861b92e343e3c84ba8fe72">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
<p>Box 95 (audiovisual material): Restricted fragile material. Consult Access Services for further information.</p>
</accessrestrict>
<acqinfo id="aspace_270a2cf5fa06563dcfec4aaaf92f1b5d">
<head>Immediate Source of Acquisition</head>
<p>Bequest of Jon Anderson, 2021.</p>
</acqinfo>
<arrangement id="aspace_6051276f27a4a22cab34d1c70b8d4a6c">
<head>Arrangement</head>
<p>The collection is organized into seven series: I: Correspondence, 1920-2009. II: Personal papers, 1812-2018. III: Paul Cadmus files, 1930-2012. IV: Photographs, 1850-2010. V: Papers of others, 1890-2019. VI: Printed matter, 1930-2009. VII: Artwork, undated.</p>
</arrangement>
<bioghist id="aspace_04550b066bb8bbaacc9c9d44ac69e948">
<head>Paul Cadmus</head>
<p>Paul Cadmus was born on December 17, 1904, to artist parents Egbert Cadmus and Maria Latasa. His sister, Fidelma, was born December 11, 1906.</p>
<p>Paul Cadmus studied drawing and printmaking at the National Academy of Design from 1919 to 1926. While employed as a commercial layout artist in the late 1920s, Cadmus enrolled in classes at the Art Students League where he met fellow student Jared French (1905-1988). The two became romantically involved and began to focus on careers in fine art.</p>
<p>In 1934, Cadmus began working with the Public Works of Art Project, which sponsored a traveling exhibition featuring his painting The Fleet's In! a work that generated a great amount of response from viewers and raised Cadmus's public profile. His work in the late 1930s expanded to murals, solo exhibitions, and designs for ballets.</p>
<p>Jared French married the painter Margaret Hoenig (1906-1998) in 1937. French continued his relationship with Paul Cadmus and the three worked and lived in proximity for many years. Their photographic work, focused on images taken at the Hoenig family property in Saltaire, Fire Island, NY was attributed to PaJaMa, a portmanteau formed from PAul, JAred, and MArgaret.</p>
<p>Over the following decades, the lives of the three painters diverged, with Jared French moving semi-permanently to Italy and Margaret French splitting her time between Europe and the United States. Paul Cadmus lived in New York City for much of this period, before moving to Weston, CT in the 1970s in a house built on the property of his brother-in-law, Lincoln Kirstein. (Kirstein and Fidelma Cadmus having married in 1941.) In 1965, Cadmus met Jon F. Anderson, an actor and cabaret artist, who became his life partner and muse for the next 34 years.</p>
<p>The 1980s and 1990s saw a resurgence for Paul Cadmus through monographs dedicated to his work, exhibitions, personal appearances in advertising campaigns, and a documentary feature.</p>
<p>Paul Cadmus died on December 12, 1999. Jon F. Anderson, who had later married Philis Raskind, passed away on October 21, 2018. Jared French died January 8, 1988. Margaret French died November 18, 1998.</p>
</bioghist>
<prefercite id="aspace_4cf72d930bc5c73fed3cbaed84d84694">
<head>Preferred Citation</head>
<p>Paul Cadmus Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_ae965983c639500abea03a477964047c">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections as they are acquired, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing, including rehousing and minimal organization.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and 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 initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_5f2e34fd6df4e2bcafe8f6e44d290073">
<head>Content Description</head>
<p>This collection contains correspondence, writings, artwork, printed material, photographs, and other papers created by or related to the life and work of Paul Cadmus. The papers document Cadmus's lengthy career; his art practice creating paintings, drawings, murals, and prints; as well as his personal life and relationships with many notable artists and writers of the 20th century.</p>
<p>The lives and work of many friends, family, and associates are also documented in the papers. Of note are Fidelma Cadmus (Paul's sister) Lincoln Kirstein (his brother-in-law) artist and partner Jared French, artist and friend Margaret French, and Paul Cadmus's long-time partner, Jon F. Anderson.</p>
</scopecontent>
<userestrict id="aspace_0b2ca620c09f281d33025f74e4d432b4">
<head>Conditions Governing Use</head>
<p>The Paul Cadmus Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the auhors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject source="local">
<part localtype="topical">LGBTQ resource</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85101269"
source="lcsh">
<part localtype="topical">Photography, Artistic</part>
</subject>
<subject source="local">
<part localtype="topical">Photography</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Artists, American</part>
</subject>
<subject source="local">
<part localtype="topical">Artists, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Artists, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Artists, American</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85007815"
source="lcsh">
<part localtype="topical">Art, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Cadmus, Paul, 1904-1999</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Cadmus, Paul, 1904-1999--Exhibitions</part>
</subject>
<subject source="lcsh">
<part localtype="topical">Etching, American</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Forster, E. M. (Edward Morgan), 1879-1970</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">French, Margaret</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">French, Jared, 1905-1988</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Kirstein, Fidelma Cadmus</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Kirstein, Lincoln, 1907-1996</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85077598"
source="lcsh">
<part localtype="topical">Lithography</part>
</subject>
<subject source="lcsh">
<part localtype="topical">Lithography, American</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Lynes, George Platt, 1907-1955</part>
</subject>
<subject source="lcsh">
<part localtype="topical">Magic realism (Art)</part>
</subject>
<subject source="lcnaf">
<part localtype="topical">Midtown Galleries (New York, N.Y.)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85101269"
source="lcsh">
<part localtype="topical">Photography, Artistic</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh88005628"
source="lcsh">
<part localtype="topical">Printmakers</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85106829"
source="lcsh">
<part localtype="topical">Printmakers</part>
</subject>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3399378"
id="aspace_3b49e2343aeb18e0efd7c70c1f29b147"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>14.08</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">28 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1920">1920</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_1948f40b43336ac821bb6ddc5e0dc80e">
<head>Arrangement</head>
<p>A majority of materials in this series have been arranged to highlight long-term and key correspondents by name (in separate folders or in alphabetic groups). Remaining correspondence was sorted into broad topical or chronological groupings. Additional letters by named correspondents may be found in other groupings, as item-level sorting was not done within this series.</p>
<p>Correspondence can also be found in Series III and Series V.</p>
</arrangement>
<scopecontent id="aspace_23a41c03af1952ecae05c20180065087">
<head>Scope and Contents</head>
<p>This series contains correspondence to and from Paul Cadmus's friends, family members, collaborators, researchers, museums, galleries, and a wide variety of individuals and organizations.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3400674"
id="aspace_87bc940ede30835ff361c2667c24a4af"
level="file">
<did>
<unittitle>Correspondence--Ackerley, J. R.</unittitle>
<unitdatestructured altrender="circa 1960s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_87bc940ede30835ff361c2667c24a4af_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400676"
id="aspace_913e22133dd93cccae239a2c66271dd7"
level="file">
<did>
<unittitle>Correspondence--Aitkin, Webster</unittitle>
<unitdatestructured altrender="circa 1940s-1970s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_913e22133dd93cccae239a2c66271dd7_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400677"
id="aspace_9af5e5d1f6deeac9538cbfa6da6c9eb6"
level="file">
<did>
<unittitle>Correspondence--Bachardy, Don</unittitle>
<unitdatestructured altrender="circa 1990" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1990">circa 1990</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_9af5e5d1f6deeac9538cbfa6da6c9eb6_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400678"
id="aspace_820cc68432f2aea7dc5ca11d1a6a01fa"
level="file">
<did>
<unittitle>Correspondence--Barker, James</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1970">1970</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_820cc68432f2aea7dc5ca11d1a6a01fa_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400679"
id="aspace_50ec7b220b7dcd749d31c76646878637"
level="file">
<did>
<unittitle>Correspondence--Bergt, Michael</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1986">1986</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_50ec7b220b7dcd749d31c76646878637_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400680"
id="aspace_b51d64cebc8da39da6056fb4d361bb43"
level="file">
<did>
<unittitle>Correspondence--Bischoff, Ilse</unittitle>
<unitdatestructured altrender="circa 1949-1970s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1949">1949</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_b51d64cebc8da39da6056fb4d361bb43_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400681"
id="aspace_de4fca671a52d8499a12a017c0d0331b"
level="file">
<did>
<unittitle>Correspondence--Bishop, Isabel</unittitle>
<unitdatestructured altrender="circa 1972-1980"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_de4fca671a52d8499a12a017c0d0331b_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400682"
id="aspace_107b96f4215c7c1deaa3a8683e5cbbf9"
level="file">
<did>
<unittitle>Correspondence--Braybrooke, Noelle</unittitle>
<unitdatestructured altrender="circa 1971-1975"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1971">1971</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_107b96f4215c7c1deaa3a8683e5cbbf9_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400683"
id="aspace_27c10063a17d1997f268c0e1174f276d"
level="file">
<did>
<unittitle>Correspondence--Brown, Stanley</unittitle>
<unitdatestructured altrender="circa 1964-1966"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1964">1964</fromdate>
<todate standarddate="1966">1966</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_27c10063a17d1997f268c0e1174f276d_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400684"
id="aspace_fe766aa9362f937467b7e27d853cc693"
level="file">
<did>
<unittitle>Correspondence--Buckingham, Bob and May</unittitle>
<unitdatestructured altrender="circa 1987-1989"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_fe766aa9362f937467b7e27d853cc693_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400693"
id="aspace_0c58205cea3e89578a1ba6583637f818"
level="file">
<did>
<unittitle>Correspondence--Chisholm, Bridget</unittitle>
<unitdatestructured altrender="circa 1944-1997"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1944">1944</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_0c58205cea3e89578a1ba6583637f818_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400695"
id="aspace_492e25b471585f922596366a08f04763"
level="file">
<did>
<unittitle>Correspondence--Collar, Rick</unittitle>
<unitdatestructured altrender="circa 1972-1997"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_492e25b471585f922596366a08f04763_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3400696"
id="aspace_b58d3d582f5296d43b0cd4b4c75d71d8"
level="file">
<did>
<unittitle>Correspondence--Curtiss, Mina</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/382277 /locations/9"
containerid="39002099197080"
encodinganalog="archive legal"
id="aspace_b58d3d582f5296d43b0cd4b4c75d71d8_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401414"
id="aspace_27d8df6b0961227d716e79f2dc13d124"
level="file">
<did>
<unittitle>Correspondence--Davenport, Guy</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1956">1956</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_27d8df6b0961227d716e79f2dc13d124_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401427"
id="aspace_8322d7182597a7a091af8c939a9e67e1"
level="file">
<did>
<unittitle>Correspondence--Dawkins, Richard</unittitle>
<unitdatestructured altrender="circa 1950s-1960s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1950">1950</fromdate>
<todate standarddate="1969">1969</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_8322d7182597a7a091af8c939a9e67e1_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401428"
id="aspace_4abffd2e2b1e92cd4037464cc1798da1"
level="file">
<did>
<unittitle>Correspondence--Deiss, David</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_4abffd2e2b1e92cd4037464cc1798da1_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401429"
id="aspace_d1beec2786c8a7bd6aab99f8bb6deb37"
level="file">
<did>
<unittitle>Correspondence--Diamond, David</unittitle>
<unitdatestructured altrender="circa 1940-1995"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_d1beec2786c8a7bd6aab99f8bb6deb37_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401430"
id="aspace_b2683a300fdc9138e3acccd6b2cd0320"
level="file">
<did>
<unittitle>Correspondence--Dunphy, Jack and Truman Capote</unittitle>
<unitdatestructured altrender="circa 1968-1988"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1968">1968</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_b2683a300fdc9138e3acccd6b2cd0320_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401431"
id="aspace_f0b747c70d3e7dbc2f9e5941de48abd0"
level="file">
<did>
<unittitle>Correspondence--Dunphy, Jack</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="circa 1961-1988"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1988">1988</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_f0b747c70d3e7dbc2f9e5941de48abd0_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401432"
id="aspace_29f128dae928df5a716f165502c263d1"
level="file">
<did>
<unittitle>Correspondence--A, B, C, D</unittitle>
<unitdatestructured altrender="circa 1946-1999"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1946">1946</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_29f128dae928df5a716f165502c263d1_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401433"
id="aspace_312527b5380873cdcf34fad43a9809d7"
level="file">
<did>
<unittitle>Correspondence--Ebony, David</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
<todate standarddate="1991">1991</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_312527b5380873cdcf34fad43a9809d7_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401434"
id="aspace_b35aeb696c1be8b87403389106edfafd"
level="file">
<did>
<unittitle>Correspondence--Eliasoph, Philip</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1974">1974</datesingle>
</unitdatestructured>
<langmaterial>
<language langcode="alt">Southern Altai</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_b35aeb696c1be8b87403389106edfafd_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401435"
id="aspace_816d5f94015eaf3c873ca31cade7dabb"
level="file">
<did>
<unittitle>Correspondence--Franklin, Paul B. </unittitle>
<unitdatestructured altrender="circa 1992-1993"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="1993">1993</todate>
</daterange>
</unitdatestructured>
<langmaterial>
<language langcode="alt">Southern Altai</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_816d5f94015eaf3c873ca31cade7dabb_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401436"
id="aspace_7bc03e49347beb9b7b6653bf3b681166"
level="file">
<did>
<unittitle>Correspondence--Furbach, P. N. </unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1978">1978</datesingle>
</unitdatestructured>
<langmaterial>
<language langcode="alt">Southern Altai</language>
</langmaterial>
<container altrender="/repositories/11/top_containers/382301 /locations/9"
containerid="39002099197098"
encodinganalog="archive legal"
id="aspace_7bc03e49347beb9b7b6653bf3b681166_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401448"
id="aspace_88d313155810d16ebf938d3cc12bb700"
level="file">
<did>
<unittitle>Correspondence--Gaddis, Eugene</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1996">1996</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_88d313155810d16ebf938d3cc12bb700_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401450"
id="aspace_e7b3693fa59de0e0c6550f06cddade33"
level="file">
<did>
<unittitle>Correspondence--Godward, Bruce</unittitle>
<unitdatestructured altrender="circa 1947" label="other" unitdatetype="inclusive">
<datesingle standarddate="1947">circa 1947</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_e7b3693fa59de0e0c6550f06cddade33_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401451"
id="aspace_815eaece7dd2326190b0074fee5abe4a"
level="file">
<did>
<unittitle>Correspondence--Goff, Lloyd</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1943">1943</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_815eaece7dd2326190b0074fee5abe4a_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401452"
id="aspace_d46a381c155978853ee8a5bb29e7ca9f"
level="file">
<did>
<unittitle>Correspondence--Gottwald, Harry</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1961">1961</fromdate>
<todate standarddate="1967">1967</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_d46a381c155978853ee8a5bb29e7ca9f_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401453"
id="aspace_2521920fe5f25a40c76ea89284d3d312"
level="file">
<did>
<unittitle>Correspondence--Greene, Steve</unittitle>
<unitdatestructured altrender="circa 1940s" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1949">1949</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_2521920fe5f25a40c76ea89284d3d312_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401454"
id="aspace_ea5f9210671db7fcb44bb34eb9312db9"
level="file">
<did>
<unittitle>Correspondence--Haller, Gary</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_ea5f9210671db7fcb44bb34eb9312db9_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401455"
id="aspace_ad430b1d5cf511f720a53189f483d9a9"
level="file">
<did>
<unittitle>Correspondence--Hassmen, Warren</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1957">1957</fromdate>
<todate standarddate="1968">1968</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_ad430b1d5cf511f720a53189f483d9a9_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401456"
id="aspace_633183974fa7bea303635bb3aaffd9de"
level="file">
<did>
<unittitle>Correspondence--Henderson, Josh</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1964">1964</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_633183974fa7bea303635bb3aaffd9de_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401457"
id="aspace_dc5dec16bf6d631b2785d44c3606bcfd"
level="file">
<did>
<unittitle>Correspondence--Hill, Don</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1980">1980</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_dc5dec16bf6d631b2785d44c3606bcfd_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401458"
id="aspace_5f94f21564d7e5825165ad700f97275c"
level="file">
<did>
<unittitle>Correspondence--Holman-Black, James</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1934">1934</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_5f94f21564d7e5825165ad700f97275c_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3401459"
id="aspace_7e6d5d2f477d75da3086e1e10fc57291"
level="file">
<did>
<unittitle>Correspondence--Isherwood, Christopher</unittitle>
<unitdatestructured altrender="circa 1941-1947" label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1941">1941</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_7e6d5d2f477d75da3086e1e10fc57291_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3402162"
id="aspace_b23dd901e80268e538764e053d174673"
level="file">
<did>
<unittitle>Correspondence--Johnson, Ray</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1986">1986</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_b23dd901e80268e538764e053d174673_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3402163"
id="aspace_afc6d3140da80d267e13dcee1f7ee727"
level="file">
<did>
<unittitle>Correspondence--Johnson, Samuel</unittitle>
<unitdatestructured altrender="circa 1960s-1980s"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="1989">1989</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/382303 /locations/9"
containerid="39002099197106"
encodinganalog="archive legal"
id="aspace_afc6d3140da80d267e13dcee1f7ee727_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3402164"
id="aspace_60133adbe20e8861fb2ee1621f37f435"
level="file">
<did>
<unittitle>Correspondence--Jones, Grace</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1933">1933</fromdate>
<todate standarddate="1934">1934</todate>