-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path753.xml
3335 lines (3335 loc) · 194 KB
/
753.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.gorczyns">beinecke.gorczyns</recordid>
<otherrecordid localtype="BIB">7105241</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Renata Gorczynski Papers Relating to Czeslaw Milosz
</titleproper>
<titleproper localtype="filing">Gorczynski (Renata) Papers Relating to Czeslaw Milosz</titleproper>
<author>by Michael Forstrom and Olga Lopusiewicz</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>October 2005</date>
<num>GEN MSS 528</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">7105241</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-6</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="7">7</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="308">308</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>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:34:48-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:34</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/753" level="collection">
<did>
<unittitle>Renata Gorczynski papers relating to Czesław Miłosz</unittitle>
<unitid>GEN MSS 528</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="pol">Polish</language>
<language langcode="pol">Polish</language>
<languageset>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<languageset>
<language langcode="fre">French</language>
<script scriptcode="Latn">Latin</script>
</languageset>
<descriptivenote>
<p>Chiefly in Polish; some materials in English and French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.09</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured altrender="1934-1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1934">1934</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_282e4a06ceac6a32c3df7a79653bd560">The collection consists of correspondence, manuscripts, and other material documenting the personal and professional relationship between Gorczynski and Czesław Miłosz.<lb/>Series I, Correspondence, is organized into subseries for Miłosz, Gorczynski and Third-Party correspondence. The Miłosz correspondence contains several folders of correspondence with Gorczynski, dating from 1979-1991, as well as holograph drafts of outgoing letters and single incoming letters with other writers, friends, publishers, and institutions. Other correspondents include Lars Gyllensten, Östen Sjöstrand, Wacław Korabiewicz, Jadwiga Stańczakowa, and André de Vincenz. The Gorczynski correspondence consists of incoming letters from Stanisław Barańczak, Maria Janion, Piotr Kłoczowski, Ryszard Przybylski, and Tomas Venclova.<lb/>Series II, Writings, is organized into subseries for the writings of Miłosz, Gorczynski, and others. The Miłosz writings include essays and lectures, poetry, translations, and other writings. There are holograph drafts of essays and lectures, including drafts in English and Polish for the Charles Eliot Norton lectures delivered in 1981-82, and numerous corrected copies of poems. The Gorczynski writings contain corrected typescript drafts of books edited by Gorczynski and several interviews with Miłosz.<lb/>Series III, Other Material, contains audio recordings, photographs, and other papers.</abstract>
<physdesc id="aspace_e35a93cf2d52cee67ec61a06622f65e1">Other Storage Formats: Audio Recordings</physdesc>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Gorczynski, Renata</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_154477238c531998339a181b92974b2c">
<head>Immediate Source of Acquisition</head>
<p>The Renata Gorczynski Papers Relating to Czeslaw Milosz were acquired through gifts from Renata Gorczynski between 1991-1999.</p>
</acqinfo>
<userestrict id="aspace_d47f79e0de7142cee27fda2f658bc5e5">
<head>Conditions Governing Use</head>
<p>The Renata Gorczynski Papers Relating to Czeslaw Milosz 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_cf52c37569887ea2e747377765875e90">
<head>Preferred Citation</head>
<p>Renata Gorczynski Papers Relating to Czeslaw Milosz. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_0d474e72122ebc3c795e592458cb9504">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 6: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<processinfo id="aspace_b5e5f3b5145427a91584b2baa7886242">
<head>Processing Information</head>
<p>This material was formerly classed as Uncat MS Vault 692, Uncat MS Vault 709, and Uncat MS Vault 861.</p>
</processinfo>
<scopecontent id="aspace_7c00d2a8e938bb5bb0d2a5530698bd73">
<head>Scope and Contents</head>
<p>The Renata Gorczynski Papers Relating to Czeslaw Milosz consist of letters, manuscripts, and personal papers documenting the personal and professional relationship between Gorcznyski and Czeslaw Milosz. The collection spans the years 1934-1991, with the bulk of the papers dating from the 1980s.</p>
<p>The collection is housed in 6 boxes and organized into three series: <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, <title localtype="simple" render="italic">
<part>Writings</part>
</title>, and <title localtype="simple" render="italic">
<part>Other Material</part>
</title>. Box 6 contains <title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is organized into three subseries: Czeslaw Milosz Correspondence, Renata Gorczynski Correspondence, and Third-Party Correspondence.</p>
<p>The Milosz correspondence, housed in box 1, includes correspondence with writers, friends, publishers, and institutions. The correspondence, which dates predominantly from the early 1980s, provides some evidence of how the author's life was effected by his reception of the Nobel Prize for Literature in 1980. Most folders consist of a single holograph draft of a letter from Milosz or a single incoming letter. There are outgoing drafts of letters to American President Jimmy Carter, Lars Gyllensten, Bill Moyers, and Östen Sjöstrand, and incoming letters from Waclaw Korabiewicz, Jadwiga Stanczakowa, and Andre de Vincenz, as well as American and Polish institutions. In addition, there are several folders of correspondence between Milosz and Gorczynski.</p>
<p>The Renata Gorczynski correspondence, housed in box 2, dates from 1986-87, and consists of incoming letters from Stanislaw Baranczak, Maria Janion, Piotr Kloczowski, Ryszard Przybylski, and Tomas Venclova. Third-Party Correspondence, also housed in box 2, includes copies of letters from Lech Walesa.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref77">Series II, <title localtype="simple" render="italic">
<part>Writings</part>
</title>
</ref>, housed in boxes 3-5, is organized into three subseries: Writings of Czeslaw Milosz, Writings of Renata Gorczynski, and Writings of Others. The writings of Czeslaw Milosz are subdivided for essays and lectures, poetry, translations, and other writings. The materials include numerous holograph drafts of essays and lectures, including drafts in English and Polish for the Charles Eliot Norton lectures, delivered at Harvard in 1981-82 and published as <title localtype="simple" render="italic">
<part>The Witness of Poetry</part>
</title> (1983). The Writings include individual poems and three poetry collections: <title localtype="simple" render="italic">
<part>Dalsze okolice</part>
</title>, <title localtype="simple" render="italic">
<part>Trzy zimy</part>
</title>, and "Wiersze, noty, epigraphy." <title localtype="simple" render="italic">
<part>Trzy zimy</part>
</title> (1987) is a re-edition of Milosz's second collection, with essays by Polish literary critics. "Wiersze, noty, epigraphy" is a collection of poems and translations. Individual poems and collections are present chiefly in the form of corrected copies.</p>
<p>Writings of Renata Gorczynski includes drafts for two books edited by Gorczynski, <title localtype="simple" render="italic">
<part>Conversations with Czeslaw Milosz</part>
</title> (1987) and <title localtype="simple" render="italic">
<part>Listy do Czeslawa Milosza, 1952-1979</part>
</title> (1992). The latter is a collection of letters to Milosz from Zygmunt Hertz. These drafts are followed by materials for interviews with Milosz, as well as typescripts of actual conversations with the poet.</p>
<p>Writings of Others consists chiefly of photocopies of poems.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref220">Series III, <title localtype="simple" render="italic">
<part>Other Material</part>
</title>
</ref>, housed in box 5, is organized into subseries for Material Relating to Czeslaw Milosz and Miscellaneous Material. Material Relating to Czeslaw Milosz consists of personal papers, such as addresses, itineraries, lists, and notes, as well as several snapshots and a commercial audio recording of Milosz reading both from his own work and the work of Mickiewicz. Miscellaneous Material consists of a commercial audio recording of readings from Mickiewicz's <title localtype="simple" render="italic">
<part>Pan Tadeusz</part>
</title> and photographs of Zbigniew Herbert's apartment.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref239">
<title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title>
</ref> are housed in box 6.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, Polish</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85045835"
source="lcsh">
<part localtype="topical">European literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85104308"
source="lcsh">
<part localtype="topical">Polish literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/names/n79131071"
source="lcsh">
<part localtype="geographic">Poland</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<occupation identifier="http://id.loc.gov/authorities/subjects/sh85009793"
source="lcsh">
<part localtype="occupation">Authors</part>
</occupation>
<persname>
<part localtype="agent_person">Barańczak, Stanisław, 1946-2014</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gorczynski, Renata</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Gyllensten, Lars, 1921-2006</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Janion, Maria, 1926-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kłoczowski, Piotr</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Korabiewicz, Wacław</part>
</persname>
<persname>
<part localtype="agent_person">Miłosz, Czesław, 1911-2004</part>
</persname>
<persname>
<part localtype="agent_person">Przybylski, Ryszard, 1928-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sjöstrand, Östen, 1925-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Stańczakowa, Jadwiga</part>
</persname>
<persname>
<part localtype="agent_person">Venclova, Tomas, 1937-</part>
</persname>
<persname>
<part localtype="agent_person">Vincenz, André de</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/236721"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1952-1991" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1991">1991</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_8ca06e40bb666e87f77191ebd059c060">
<head>Scope and Contents</head>
<p>Series I, Correspondence, is organized into three subseries: Czeslaw Milosz Correspondence, Renata Gorczynski Correspondence, and Third Party Correspondence.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/236722"
id="ref13"
level="subseries">
<did>
<unittitle>CZESLAW MILOSZ CORRESPONDENCE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/236723"
id="ref14"
level="file">
<did>
<unittitle>Bromberg, Adam</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236724"
id="ref15"
level="file">
<did>
<unittitle>Carter, Jimmy, 1924-</unittitle>
<unitdatestructured altrender="1980 Oct 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980-10-20">1980 Oct 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236725"
id="ref16"
level="file">
<did>
<unittitle>Dartmouth College</unittitle>
<unitdatestructured altrender="1983 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-05-06">1983 May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236726"
id="ref17"
level="file">
<did>
<unittitle>Duckworth, ----</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236727"
id="ref18"
level="file">
<did>
<unittitle>Ethics and Public Policy Center (Washington, D.C.)</unittitle>
<unitdatestructured altrender="1983" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236728"
id="ref19"
level="file">
<did>
<unittitle>"F" General</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236729"
id="ref20"
level="file">
<did>
<unittitle>Fältheim, Ake</unittitle>
<unitdatestructured altrender="1980 Dec" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980-12">1980 Dec</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">7</container>
</did>
<scopecontent id="aspace_2838b18b79790137b8a497256575d03f">
<head>Scope and Contents</head>
<p>Copies of letters</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236730"
id="ref22"
level="file">
<did>
<unittitle>Fédération nationale d'achats des cadres (France)</unittitle>
<unitdatestructured altrender="1983 Oct 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-10-24">1983 Oct 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236731"
id="ref23"
level="file">
<did>
<unittitle>"G" General</unittitle>
<unitdatestructured altrender="1983, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236732"
id="ref24"
level="file">
<did>
<unittitle>Giedroyc, Jerzy</unittitle>
<unitdatestructured altrender="1983 Jul 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-07-23">1983 Jul 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236733"
id="ref25"
level="file">
<did>
<unittitle>Gorczynski, Renata</unittitle>
<unitdatestructured altrender="1979-91, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
<todate standarddate="1991">1991</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">11-17</container>
<daoset altrender="/repositories/11/digital_objects/132660">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:2065323"
linktitle="245 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2065323"
identifier="oid:2065323"
linktitle="245 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Gorczynski, Renata</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_1c35909080dc3cac11b17707326189ce">
<head>Scope and Contents</head>
<p>Includes enclosures and empty envelopes</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236734"
id="ref27"
level="file">
<did>
<unittitle>Grygiel, Stanislaw</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236735"
id="ref28"
level="file">
<did>
<unittitle>Gyllensten, Lars</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236736"
id="ref29"
level="file">
<did>
<unittitle>[Hughes, Robert?]</unittitle>
<unitdatestructured altrender="1982 Jun 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982-06-24">1982 Jun 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">20</container>
<daoset altrender="/repositories/11/digital_objects/250585">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:17341153"
linktitle="6 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17341153"
identifier="oid:17341153"
linktitle="6 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>[Hughes, Robert?]</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_7486bd798b01abe7b75de42cadd0003a">
<head>Scope and Contents</head>
<p>Copy of letter from Milosz to Hughes</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236737"
id="ref31"
level="file">
<did>
<unittitle>"J" General</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236738"
id="ref32"
level="file">
<did>
<unittitle>Jankowski, K.</unittitle>
<unitdatestructured altrender="1982 Apr" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1982-04">1982 Apr</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">22</container>
</did>
<scopecontent id="aspace_4172f29826ac65e8475d567352a838ce">
<head>Scope and Contents</head>
<p>Includes poems</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236739"
id="ref34"
level="file">
<did>
<unittitle>"K" General</unittitle>
<unitdatestructured altrender="1983, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236740"
id="ref35"
level="file">
<did>
<unittitle>Korabiewicz, Waclaw</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236741"
id="ref36"
level="file">
<did>
<unittitle>"M" General</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236742"
id="ref37"
level="file">
<did>
<unittitle>Macmillan Publishing Company</unittitle>
<unitdatestructured altrender="1980 Dec 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1980-12-09">1980 Dec 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236743"
id="ref38"
level="file">
<did>
<unittitle>Moyers, [Bill D.?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236744"
id="ref39"
level="file">
<did>
<unittitle>Polish Institute of Arts and Sciences in America</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236745"
id="ref40"
level="file">
<did>
<unittitle>Polska Akademia Nauk. Zaklad Narodowy imienia Ossolinskich</unittitle>
<unitdatestructured altrender="1983 Dec 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-12-12">1983 Dec 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236746"
id="ref41"
level="file">
<did>
<unittitle>"R" General</unittitle>
<unitdatestructured altrender="1983" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983">1983</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236747"
id="ref42"
level="file">
<did>
<unittitle>Rosenthal, ----</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236748"
id="ref43"
level="file">
<did>
<unittitle>"S" General</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">32</container>
<daoset altrender="/repositories/11/digital_objects/250587">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:17341154"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17341154"
identifier="oid:17341154"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>"S" General</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236749"
id="ref44"
level="file">
<did>
<unittitle>Sauzey, Francois</unittitle>
<unitdatestructured altrender="1983 Sep 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-09-05">1983 Sep 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">33</container>
</did>
<scopecontent id="aspace_6e788f5c805274e8f0ba5dfb857cc229">
<head>Scope and Contents</head>
<p>Includes copy of "A Nation" by Milosz</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236750"
id="ref46"
level="file">
<did>
<unittitle>[Sjöstrand?], Osten</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236751"
id="ref47"
level="file">
<did>
<unittitle>Stanczakowa, Jadwiga</unittitle>
<unitdatestructured altrender="1983 Nov 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-11-05">1983 Nov 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236752"
id="ref48"
level="file">
<did>
<unittitle>Szmunes, Helena</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236753"
id="ref49"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Temenos</part>
</title>
</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236754"
id="ref50"
level="file">
<did>
<unittitle>Trilateral Commission</unittitle>
<unitdatestructured altrender="1983 Jul 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-07-20">1983 Jul 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236755"
id="ref51"
level="file">
<did>
<unittitle>[University of California, Berkeley. Press?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236756"
id="ref52"
level="file">
<did>
<unittitle>Vincenz, Andre de</unittitle>
<unitdatestructured altrender="1984 Feb 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1984-02-25">1984 Feb 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236757"
id="ref53"
level="file">
<did>
<unittitle>"W" General</unittitle>
<unitdatestructured altrender="1983 Apr 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-04-08">1983 Apr 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236758"
id="ref54"
level="file">
<did>
<unittitle>Walesa, Lech</unittitle>
<unitdatestructured altrender="1983 Oct, n.d."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1983-10">1983 Oct, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">42</container>
</did>
<scopecontent id="aspace_5252fd3b88a7548948386291fd37a260">
<head>Scope and Contents</head>
<p>Includes draft of petition to President of Polish Council of State</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236759"
id="ref56"
level="file">
<did>
<unittitle>Wankowicz, Melchior</unittitle>
<unitdatestructured altrender="1952-56, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1956">1956</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">43</container>
<daoset altrender="/repositories/11/digital_objects/250588">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/images/placeholder_restricted.png"
identifier="oid:17341155"
linktitle="16 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17341155"
identifier="oid:17341155"
linktitle="16 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Wankowicz, Melchior</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_25244591daeb358b6d067e9add5ea7a6">
<head>Scope and Contents</head>
<p>Copies of letters from Wankowicz</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/236760"
id="ref58"
level="file">
<did>
<unittitle>Weinfeld, David</unittitle>
<unitdatestructured altrender="1981 Jan 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1981-01-17">1981 Jan 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20672 /locations/9"
containerid="39002099453558"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/236761"
id="ref59"
level="file">
<did>
<unittitle>Woodrow Wilson International Center for Scholars</unittitle>
<unitdatestructured altrender="1983 Jun 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1983-06-02">1983 Jun 2</datesingle>