-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path807.xml
2940 lines (2940 loc) · 169 KB
/
807.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.starr">beinecke.starr</recordid>
<otherrecordid localtype="BIB">9079396</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Cecile Starr Papers Relating to Mary Ellen Bute
</titleproper>
<titleproper localtype="filing">Starr (Cecile) Papers Relating to Mary Ellen Bute</titleproper>
<author>by Lisa Conathan</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>2009</date>
<num>GEN MSS 679</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">9079396</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-8, 10-12</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="28">28</num> published digital objects.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:39:56-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:39</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/807" level="collection">
<did>
<unittitle>Cecile Starr papers relating to Mary Ellen Bute</unittitle>
<unitid>GEN MSS 679</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>5.07</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes</physdesc>
<unitdatestructured altrender="1935-2009" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1935">1935</fromdate>
<todate standarddate="2009">2009</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_2ff5ff96fb3de2cac47adf467c4e3278">The Cecile Starr Papers Relating to Mary Ellen Bute consist of Starr's research files on the filmmaker Mary Ellen Bute and audiovisual recordings of and about Bute. The papers document Starr's research and fundraising to produce a documentary film about Bute (never completed) as well as Starr's work to publicize and distribute Bute's films, especially after Bute's death.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Starr, Cecile</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_cc81d6e75c3cd5c5a407638e09f1f2fd">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Cecile Starr on the Edith and Richard French Fund, 2009.</p>
</acqinfo>
<accessrestrict id="aspace_3c9a05a2d5e5154d066e7b5b86ffe38e">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Boxes 7, 10-11 (audiovisual formats): Restricted fragile material. Reference copies may be requested. Consult Access Services for further information.</p>
</accessrestrict>
<userestrict id="aspace_aec4ed0eec9223862afb3e6ca81d7c29">
<head>Conditions Governing Use</head>
<p>The Cecile Starr Papers Relating to Mary Ellen Bute is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_207f6327cbfb09b4f0a96859b7bb4457">
<head>Preferred Citation</head>
<p>Cecile Starr Papers Relating to Mary Ellen Bute. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<bioghist id="aspace_c1a6ab9b3f54c59b2a8b622c127e453e">
<head>Cecile Starr (1921-2014)</head>
<p>Filmmaker, critic, and producer Cecile Starr was born July 14, 1921 in Nashville, Tennessee. She studied film at Columbia University, where she taught from 1955-1961. She worked as a consultant and educational coordinator for the Lincoln Center, the New School for Social Research, Hunter College, the Metropolitan Museum of Art, and the United Nations World Health Organization. She married film producer Aram Boyajian in 1957. Starr died in 2014.</p>
</bioghist>
<bioghist id="aspace_21c8f9c4538aca3e21391ce465b1c05a">
<head>Mary Ellen Bute, 1906-1983</head>
<p>Mary Ellen Bute was a film animator, director and producer. She was a pioneer in adopting electronic techniques for film animation. Early in her career she made animated films in the "visual music" style that synchronized abstract images and music. Her later films were live action and included adaptations of works by James Joyce and Thornton Wilder.</p>
<p>Bute was born in Houston, Texas in 1906. She studied painting at the Pennsylvania Academy of Fine Arts in Philadephia and lighting design at Yale University. Her early influences included Leon Theremin and Gerald Warburg and she collaborated with Theremin to produce a paper titled "Light as an art material and its possible synchronization with sound" (1932). Most of Bute's films were produced by Ted Nemeth Studios or Expanding Cinema Studios and her collaborators included Norman McLaren and Melville Webber. Later in life Bute was a founding member of the Women's Independent Film Exchange.</p>
<p>Bute's films include: "Synchromy" (1932 or 1933), "Rhythm in Light" (1934), "Synchromy No. 2" (1935), "Dada" (1936), "Parabola" (1937), "Escape" (1937), "Spook Sport" (1939), "Tarantella" (1940), "Polka Graph" (1947), "Color Rhapsody" (1948), "Imagination" (1948), "New Sensations in Sound" (1949), "Pastorale" (1950), "Abstronic" (1952), "Mood Contrasts" (1953), "The Boy Who Saw Through" (1956, producer), "Passages from James Joyce's Finnegan's Wake" (1965-1967), and "Out of the Cradle Endlessly Rocking" (1977-1980, unfinished). Bute's projects also include two adaptations of plays: "Lazarus Laughed" by Eugene O'Neill and "Skin of Our Teeth" by Thornton Wilder (both unfinished).</p>
<p>In 1940 Bute married camera operator and painter Theodore (Ted) Nemeth and they collaborated on many of her projects. Ted Nemeth Studios focused on commercial films and Nemeth also handled the distribution of Bute's films. Bute and Nemeth had two sons: Theodore Jr. and James.</p>
</bioghist>
<scopecontent id="aspace_c2590be4f02c8858d0c93353d2fbbcac">
<head>Scope and Contents</head>
<p>The Cecile Starr Papers Relating to Mary Ellen Bute consist of Starr's research files on the filmmaker Mary Ellen Bute and audiovisual recordings of and about Bute. The papers document Starr's research and fundraising to produce a documentary film about Bute (never completed) as well as Starr's work to publicize and distribute Bute's films, especially after Bute's death.</p>
</scopecontent>
<arrangement id="aspace_1a3bb62189a20d70a950e5d59b0db2ab">
<head>Arrangement</head>
<p>Organized into four series: I. Research Files, 1935-2008. II. Audio Recordings, 1976-2006. III. Video Recordings, 1977-1999. IV. Printed Material, 2008-2009.</p>
</arrangement>
<processinfo id="aspace_6893179e25ec95b2aefa28e4cc8ff74c">
<head>Processing Information</head>
<p>Box 9, folders 102-116 are unused. Original audiocassettes are contained in box 7, folders 74-88.</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85026013"
source="lcsh">
<part localtype="topical">Cinematographers</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088067"
source="lcsh">
<part localtype="topical">Motion picture producers and directors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh96009547"
source="lcsh">
<part localtype="topical">Independent filmmakers</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85088084"
source="lcsh">
<part localtype="topical">Motion pictures</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147651"
source="lcsh">
<part localtype="topical">Women motion picture producers and directors</part>
</subject>
<occupation source="local">
<part localtype="occupation">Filmmakers</part>
</occupation>
<persname>
<part localtype="agent_person">Starr, Cecile</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Bute, Mary Ellen</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/264093"
id="ref71"
level="series">
<did>
<unittitle>Audio Recordings</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1976-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1976">1976</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_256eb0331a7d10b1d6f2eda25ed5c8ec">
<head>Arrangement</head>
<p>Series II is arranged as received by the Beinecke Library.</p>
</arrangement>
<accessrestrict id="aspace_2fb11ecda7f8a6d9eefda1bb676b6d21"
localtype="RestrictedFragileSpecColl">
<head>Conditions Governing Access</head>
<p>Box 7 (audiocassettes): Restricted fragile. Use copies may be requested. Please consult with Access Services for more information.</p>
</accessrestrict>
<scopecontent id="aspace_0330d21b8e41202170784889a6709a4c">
<head>Scope and Contents</head>
<p>Series II consists of 1/8-inch audio cassette recordings of interviews and events relating to Mary Ellen Bute. Folder descriptions are based on information on the cassettes and cases.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/264037"
id="ref13"
level="file">
<did>
<unittitle>Bute, Mary Ellen</unittitle>
<unitdatestructured altrender="1952-1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1952">1952</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264038"
id="ref14"
level="file">
<did>
<unittitle>Nemeth, Ted</unittitle>
<unitdatestructured altrender="1945-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1945">1945</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264039"
id="ref15"
level="file">
<did>
<unittitle>Boyd, Rutherford</unittitle>
<unitdatestructured altrender="1935, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1935">1935, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264040"
id="ref16"
level="file">
<did>
<unittitle>Bruguière, Francis, <title localtype="simple" render="italic">
<part>Light Rhythm</part>
</title>
</unittitle>
<unitdatestructured altrender="1977-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264041"
id="ref17"
level="file">
<did>
<unittitle>Dockum, Charles</unittitle>
<unitdatestructured altrender="2004-2007, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2004">2004</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264042"
id="ref18"
level="file">
<did>
<unittitle>Gengaro, Christine Lee</unittitle>
<unitdatestructured altrender="2006" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2006">2006</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264043"
id="ref19"
level="file">
<did>
<unittitle>Production of documentary on Bute</unittitle>
<unitdatestructured altrender="1996-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264044"
id="ref20"
level="file">
<did>
<unittitle>Fundraising for documentary on Bute</unittitle>
<unitdatestructured altrender="1987-1997, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="1997">1997</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264045"
id="ref21"
level="file">
<did>
<unittitle>Hollander, David</unittitle>
<unitdatestructured altrender="2000-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2000">2000</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264046"
id="ref22"
level="file">
<did>
<unittitle>Hall, Wendy Jackson</unittitle>
<unitdatestructured altrender="1994-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264047"
id="ref23"
level="file">
<did>
<unittitle>Kudláček, Martina</unittitle>
<unitdatestructured altrender="2003-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2003">2003</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264048"
id="ref24"
level="file">
<did>
<unittitle>Leger, Jackie</unittitle>
<unitdatestructured altrender="1990-2000" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2000">2000</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264049"
id="ref25"
level="file">
<did>
<unittitle>Muskat, Lisa</unittitle>
<unitdatestructured altrender="1997-1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264050"
id="ref26"
level="file">
<did>
<unittitle>Shamash, Jessica</unittitle>
<unitdatestructured altrender="1999-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1999">1999</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264051"
id="ref27"
level="file">
<did>
<unittitle>Other possible filmmakers</unittitle>
<unitdatestructured altrender="1997-1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1997">1997</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23138 /locations/9"
containerid="39002091658337"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264052"
id="ref28"
level="file">
<did>
<unittitle>Naumann, Sandra</unittitle>
<unitdatestructured altrender="2005-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2005">2005</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">16-17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264053"
id="ref29"
level="file">
<did>
<unittitle>University of Minnesota</unittitle>
<unitdatestructured altrender="1996-1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264054"
id="ref30"
level="file">
<did>
<unittitle>University of Wisconsin</unittitle>
<unitdatestructured altrender="1992-2007" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264055"
id="ref31"
level="file">
<did>
<unittitle>Interviews with Bute and with others about Bute</unittitle>
<unitdatestructured altrender="1984-2002, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1984">1984</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264056"
id="ref32"
level="file">
<did>
<unittitle>Lion, Margo</unittitle>
<unitdatestructured altrender="1990-2007" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264057"
id="ref33"
level="file">
<did>
<unittitle>Moritz, William</unittitle>
<unitdatestructured altrender="1996-2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264058"
id="ref34"
level="file">
<did>
<unittitle>Posner, Bruce</unittitle>
<unitdatestructured altrender="1995-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1995">1995</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264059"
id="ref35"
level="file">
<did>
<unittitle>Schoonmaker, Thelma</unittitle>
<unitdatestructured altrender="1996-2007" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264060"
id="ref36"
level="file">
<did>
<unittitle>Basquin, Kit</unittitle>
<unitdatestructured altrender="1994-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1994">1994</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23139 /locations/9"
containerid="39002091658345"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">25-26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264061"
id="ref37"
level="file">
<did>
<unittitle>Basquin, Kit (continued)</unittitle>
<unitdatestructured altrender="1984-1999" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1984">1984</fromdate>
<todate standarddate="1999">1999</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">27-28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264062"
id="ref38"
level="file">
<did>
<unittitle>Mollot, Larry</unittitle>
<unitdatestructured altrender="1987-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264063"
id="ref39"
level="file">
<did>
<unittitle>
<title localtype="simple" render="italic">
<part>Mary Ellen Bute: Expanding Cinema</part>
</title> (planned documentary on Bute), script, draft and notes (copy)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">30-32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264064"
id="ref40"
level="file">
<did>
<unittitle>Note cards</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264065"
id="ref41"
level="file">
<did>
<unittitle>Essay for Notable American Women, drafts, correspondence and notes</unittitle>
<unitdatestructured altrender="2002-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2002">2002</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264066"
id="ref42"
level="file">
<did>
<unittitle>Women's Film Preservation Fund</unittitle>
<unitdatestructured altrender="1998-2007" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23140 /locations/9"
containerid="39002091658352"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264067"
id="ref43"
level="file">
<did>
<unittitle>Bute prints and preservation</unittitle>
<unitdatestructured altrender="1998-2007" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1998">1998</fromdate>
<todate standarddate="2007">2007</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264068"
id="ref44"
level="file">
<did>
<unittitle>Bute holdings</unittitle>
<unitdatestructured altrender="1995-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1995">1995</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264069"
id="ref45"
level="file">
<did>
<unittitle>Pike, Angeline. Creative Film Society</unittitle>
<unitdatestructured altrender="1992-2006" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1992">1992</fromdate>
<todate standarddate="2006">2006</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264070"
id="ref46"
level="file">
<did>
<unittitle>Yale University</unittitle>
<unitdatestructured altrender="1987-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1987">1987</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">39-40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264071"
id="ref47"
level="file">
<did>
<unittitle>Bute film copyrights</unittitle>
<unitdatestructured altrender="1990-1998" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1990">1990</fromdate>
<todate standarddate="1998">1998</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264072"
id="ref48"
level="file">
<did>
<unittitle>Finnegans Wake</unittitle>
<unitdatestructured altrender="1999-2008, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1999">1999</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264073"
id="ref49"
level="file">
<did>
<unittitle>Finnegans Wake. U.S. rentals</unittitle>
<unitdatestructured altrender="1982-2002" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1982">1982</fromdate>
<todate standarddate="2002">2002</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264074"
id="ref50"
level="file">
<did>
<unittitle>Finnegans Wake. Foreign rentals</unittitle>
<unitdatestructured altrender="1996-2001" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1996">1996</fromdate>
<todate standarddate="2001">2001</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264075"
id="ref51"
level="file">
<did>
<unittitle>Finnegans Wake. Gerry Fialka</unittitle>
<unitdatestructured altrender="2004-2008" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="2004">2004</fromdate>
<todate standarddate="2008">2008</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264076"
id="ref52"
level="file">
<did>
<unittitle>Bute in films of others</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">46</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264077"
id="ref53"
level="file">
<did>
<unittitle>Bute in magazines and newspapers</unittitle>
<unitdatestructured altrender="1981-2003" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
<todate standarddate="2003">2003</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">47</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/264078"
id="ref54"
level="file">
<did>
<unittitle>Bute in books</unittitle>
<unitdatestructured altrender="2005, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="2005">2005, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/23141 /locations/9"
containerid="39002091658360"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">48</container>