-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbuumu_0038.xml
3363 lines (3363 loc) · 130 KB
/
nbuumu_0038.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
<ead xmlns="urn:isbn:1-931666-22-9" xsi="xsi=&quot;http://www.w3.org/2001/XMLSchema-instance" xlink="http://www.w3.org/1999/xlink" schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd">
<eadheader audience="external" langencoding="iso639-2b" scriptencoding="iso15924" relatedencoding="dc" repositoryencoding="iso15511" countryencoding="iso3166-1" dateencoding="iso8601">
<eadid countrycode="US" mainagencycode="nbuumu" publicid="-//State University of New York at Buffalo::Music Library//TEXT (US::NBuU-Mu::Mus. Arc. 38::Irene Haupt Photographs of June in Buffalo 2007)//EN" encodinganalog="identifier">nbuumu_0038</eadid>
<filedesc>
<titlestmt>
<titleproper encodinganalog="title">Finding Aid for the Irene Haupt
Photographs of June in Buffalo,
<date encodinganalog="date" era="ce" calendar="gregorian" type="inclusive" normal="2007-06">2007</date> </titleproper>
<titleproper type="filing" altrender="nodisplay"> Haupt (Irene)
Photographs of June in Buffalo 2007 </titleproper>
<author encodinganalog="contributor">Finding aid prepared by John
Bewley.</author>
</titlestmt>
<publicationstmt>
<publisher encodinganalog="publisher">State University of New York at Buffalo. Music Library</publisher>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
<p>&#xA9;
<date encodinganalog="date" type="publication">2009</date>. State
University of New York at Buffalo. All rights reserved.</p>
</publicationstmt>
</filedesc>
<profiledesc>
<creation>Finding aid encoded in EAD by John Bewley, March
2009.</creation>
<langusage>Finding aid is in
<language encodinganalog="language" langcode="eng">English.</language>
</langusage>
<descrules>Finding aid prepared using DACS (
<title render="italic">Describing Archives: A Content Standard
</title>). </descrules>
</profiledesc>
</eadheader>
<archdesc level="collection" type="inventory" relatedencoding="marc21">
<did>
<head>Collection Overview</head>
<unittitle label="Title" encodinganalog="245$a"> Irene Haupt Photographs
of June in Buffalo,
<unitdate encodinganalog="245$f" normal="2007-06" type="inclusive" datechar="creation"> 2007</unitdate>
</unittitle>
<unitid encodinganalog="099" countrycode="US" repositorycode="NBuU-Mu" label="Collection Number">Mus. Arc. 38</unitid>
<origination label="Creator">
<persname encodinganalog="100" role="creator" source="lcnaf"> Haupt,
Irene </persname>
</origination>
<physdesc label="Extent">
<extent unit="CD-ROMS" encodinganalog="300$a">11 CD-ROMS</extent>
<extent unit="image-files" encodinganalog="300$a"> (248
digital images) </extent>
</physdesc>
<langmaterial label="Language of Material" encodinganalog="546">No
textual content in the collection.</langmaterial>
<repository label="Repository" encodinganalog="852">
<corpname>State University of New York at Buffalo. Music Library</corpname>
<address>
<addressline>112 Baird Hall</addressline>
<addressline>Buffalo, New York 14260-4750</addressline>
<addressline>United States</addressline>
<addressline>Phone: 716 645-2924</addressline>
<addressline>Fax: 716 645-3906</addressline>
<addressline/>
<addressline/>
</address>
</repository>
<abstract label="Abstract" encodinganalog="520$a"> Contains 248 digital
images (tiff files) of musicians who participated in the June in Buffalo
Festival 2007 at the University at Buffalo. </abstract>
<unitdate type="inclusive" normal="2007-06"> 2007</unitdate>
</did>
<descgrp type="admininfo">
<head>Administrative Information</head>
<prefercite encodinganalog="524">
<head>Preferred Citation</head>
<p>[Specified item], Irene Haupt Photographs of June in Buffalo, 2007,
Music Library, The State University of New York at Buffalo.</p>
</prefercite>
<accessrestrict encodinganalog="506">
<head>Terms of Access</head>
<p>Materials can be examined by qualified researchers in the Music
Library during hours of operation during which Music Librarians are present. In
order to insure access, researchers are advised to contact the Music Library in
advance of visits. </p>
</accessrestrict>
<userestrict encodinganalog="540">
<head>Copyright</head>
<p>Copyright for the materials in the collection does not reside with
the Music Library. Therefore, patrons wishing to publish any item, or part of
an item from this collection for any purpose, are responsible for securing
requisite permissions. </p>
</userestrict>
<acqinfo encodinganalog="541">
<head>Acquisition Information</head>
<p>Purchased from Irene Haupt, 2007.</p>
</acqinfo>
<accruals encodinganalog="584">
<head>Accruals and Additions</head>
<p>No further accruals are expected to this collection. </p>
</accruals>
<altformavail encodinganalog="530">
<head>Alternate Forms</head>
<p>130 images from the June in Buffalo 2007 collection are included in the
<extref href="http://digital.lib.buffalo.edu/cdm/landingpage/collection/LIB-MUS009" show="new" actuate="onrequest">University at Buffalo Libraries Digital
Collections</extref>.</p>
</altformavail>
<processinfo encodinganalog="583">
<head>Processing Information</head>
<p>Processed by John Bewley.</p>
</processinfo>
</descgrp>
<bioghist encodinganalog="545">
<head>Biographical Note</head>
<p>Irene Haupt, a graduate of the State University of New York at
Buffalo, has been documenting the Buffalo arts scene through her photography
since 1976. During that time she has worked for, or with, some of the most
notable institutions in Buffalo, including the Irish Classical Theatre, Studio
Arena Theater, the Kavinoky Theatre, the Buffalo Philharmonic Orchestra, the
Theatre of Youth, the Albright-Knox Art Gallery, and the State University of
New York at Buffalo. In addition to her specialty of theater photography, Irene
Haupt has also devoted much of her career to the photography of musicians and
musical events. Most notable is her documentation of the contemporary music
scene in Buffalo, including coverage of the University at Buffalo's June in
Buffalo festival of new music, 1982-1987, and 2000 to the present. Over the
course of those years, she has created a visual record that contains images of
some of the most significant composers and performers of the last quarter
century. The list of names is impressive: Aaron Copland, Morton Feldman, Leo
Smit, Virgil Thomson, Steve Reich, Ralph Shapey, Henry Brant, Earle Brown,
Ursula Oppens, Jan Williams, Lukas Foss, Philip Glass, Otto Luening, Conlon
Nancarrow, Ernst Krenek, Larry Austin, Lejaren Hiller, Elliott Carter, Milton
Babbitt, John Cage, Charles Wuorinen, Jacob Druckman, and Yvar Mikhashoff,
among others. </p>
<p>The June in Buffalo festival of contemporary music was begun at the
University at Buffalo in 1975 by composer Morton Feldman. He directed the
festival 1975-1978 and in 1980. The festival was dormant from 1981 through
1985. David Felder revived the festival in 1986 and has been its director since
that time.</p>
</bioghist>
<scopecontent encodinganalog="520">
<head>Scope and Content Note</head>
<p>The collection of Irene Haupt Photographs of June in Buffalo 2007
contains 248 images of participants in the festival for 2007. The list of
musicians includes David Felder, Roger Reynolds, Steve Reich, John Harbison,
Charles Wuorinen, Arditti String Quartet, Harold Rosenbaum, Lucy Shelton,
Curtis Macomber, Red Fish Blue Fish Percussion Ensemble, Steve Schick, Alan
Feinberg, Nicholas Isherwood, and Tony Arnold.</p>
</scopecontent>
<arrangement encodinganalog="351">
<head>Arrangement</head>
<p>Eleven series, one for each CD-ROM. Series titles are transcriptions
of markings on the CD-ROMS.</p>
<list type="simple">
<item>
<ref target="series1" show="replace" actuate="onrequest">I. CD-ROM
1.</ref> June in Buffalo 07</item>
<item>
<ref target="series2" show="replace" actuate="onrequest">II. CD-ROM
2.</ref> June in Buffalo 2</item>
<item>
<ref target="series3" show="replace" actuate="onrequest">III. CD-ROM
3.</ref> JIB 2007-3</item>
<item>
<ref target="series4" show="replace" actuate="onrequest">IV. CD-ROM
4.</ref> JIB-07</item>
<item>
<ref target="series5" show="replace" actuate="onrequest">V. CD-ROM
5.</ref> Steve Reich rehearsal</item>
<item>
<ref target="series6" show="replace" actuate="onrequest">VI. CD-ROM
6.</ref> Reich &amp; Reynolds, RFBF</item>
<item>
<ref target="series7" show="replace" actuate="onrequest">VII. CD-ROM
7.</ref> RFBR [sic]</item>
<item>
<ref target="series8" show="replace" actuate="onrequest">VIII. CD-ROM
8.</ref> Reynolds masterclass '07</item>
<item>
<ref target="series9" show="replace" actuate="onrequest">IX. CD-ROM
9.</ref> Lucy Shelton</item>
<item>
<ref target="series10" show="replace" actuate="onrequest">X. CD-ROM
10.</ref> Harbison masterclass</item>
<item>
<ref target="series11" show="replace" actuate="onrequest">XI. CD-ROM
11.</ref> Felder Chasmal, Reynolds The Palace, JIB '07</item>
</list>
</arrangement>
<dsc type="in-depth">
<head>Container List</head>
<c level="series" id="c_5ccc8a1db1d55">
<did>
<unitid id="series1">I.</unitid>
<unittitle>June in Buffalo 07,
<unitdate type="inclusive" normal="2007-06">June 2007</unitdate>
</unittitle>
<physdesc>
<extent>1 CD-ROM </extent>
<extent>(12 image files in TIFF
format)</extent>
</physdesc>
</did>
<arrangement>
<p>Files are numerically arranged by intermediate, assigned file
names. Original file names are included for reference. </p>
</arrangement>
<c level="item" id="c_5ccc8a1db1d74">
<did>
<container type="image-file">cd01_01</container>
<unittitle>Arditti Quartet violinist Ashkot Sarkissian with student
composer Bert Van Herck</unittitle>
<note>
<p>Original file name: -Arditti workshop-
-------.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1d80">
<did>
<container type="image-file">cd01_02</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) on stage in Baird Recital Hall with student composer
Dominique Schafer</unittitle>
<note>
<p>Original file name: ARDITTI WORKSHOP
07.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1d8a">
<did>
<container type="image-file">cd01_03</container>
<unittitle>Arditti Quartet violinists Irvine Arditti and Ashkot
Sarkissian with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: Arditti
workshop----.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1d93">
<did>
<container type="image-file">cd01_04</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: Arditti
workshop_---------.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1d9d">
<did>
<container type="image-file">cd01_05</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: JIB 07 workshop
Arditti.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1da6">
<did>
<container type="image-file">cd01_06</container>
<unittitle>Irvine Arditti with student composer Dominique
Schafer</unittitle>
<note>
<p>Original file name: o7 Arditti
Workshop.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1db0">
<did>
<container type="image-file">cd01_07</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) on stage in Baird Recital Hall with student composer
Dominique Schafer</unittitle>
<note>
<p>Original file name: stud.composer Arditti
workshop.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1dbc">
<did>
<container type="image-file">cd01_08</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) on stage in Baird Recital Hall with student composer
Dominique Schafer</unittitle>
<note>
<p>Original file name: Workshop Arditti
-x.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1dc6">
<did>
<container type="image-file">cd01_09</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: Workshop Arditti Quartet
--.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1dd0">
<did>
<container type="image-file">cd01_10</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: Workshop Arditti Quartet
-.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ddb">
<did>
<container type="image-file">cd01_11</container>
<unittitle>Arditti Quartet violist Ralf Ehlers and violoncellist
Lucas Fels with student composer Bert Van Herck</unittitle>
<note>
<p>Original file name: workshop Arditti-.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1de6">
<did>
<container type="image-file">cd01_12</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) on stage in Baird Recital Hall with student composer
Dominique Schafer</unittitle>
<note>
<p>Original file name: x Arditti
workshop.tif</p>
</note>
</did>
</c>
</c>
<c level="series" id="c_5ccc8a1db1df1">
<did>
<unitid id="series2">II.</unitid>
<unittitle>June in Buffalo 2,
<unitdate type="inclusive" normal="2007-06">June 2007</unitdate>
</unittitle>
<physdesc>
<extent>1 CD-ROM </extent>
<extent>(53 image files in TIFF
format)</extent>
</physdesc>
</did>
<arrangement>
<p>Files are numerically arranged by intermediate, assigned file
names. Original file names are included for reference. </p>
</arrangement>
<c level="item" id="c_5ccc8a1db1dfd">
<did>
<container type="image-file">cd02_01</container>
<unittitle>Red Fish Blue Fish percussionist Johannes Fischer
playing bass drum</unittitle>
<note>
<p>Original file name: - Johannes
Fischer.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e09">
<did>
<container type="image-file">cd02_02</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble, with director
Steve Schick, composer Lee Weisert, Justin DeHart?, and Matthew Jenkins,
rehearsing Weisert's composition Rockaby</unittitle>
<note>
<p>Original file name: ---..RFBF--.tif</p>
<p>Converted file name: JIB2007-052</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e16">
<did>
<container type="image-file">cd02_03</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Ross
Karre, Robert Esler, Steve Schick, and Fabio Oliveira rehearsing Charles
Wuorinen's Percussion Quartet</unittitle>
<note>
<p>Original file name: --RFBF--.tif</p>
<p>Converted file name: JIB2007-056</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e23">
<did>
<container type="image-file">cd02_04</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Justin
DeHart, Matthew Jenkins, and Fabio Oliveira rehearsing Ya-Ting Lee's
composition, Ritual</unittitle>
<note>
<p>Original file name: --RFBF.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e30">
<did>
<container type="image-file">cd02_05</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Justin
DeHart, Matthew Jenkins, Johannes Fischer, and Fabio Oliveira rehearsing
Ya-Ting Lee's composition, Ritual</unittitle>
<note>
<p>Original file name: -.tif</p>
<p>Converted file name: JIB2007-054</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e3d">
<did>
<container type="image-file">cd02_06</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: -Steve Schick.tif</p>
<p>Converted file name: JIB2007-104</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e4a">
<did>
<container type="image-file">cd02_07</container>
<unittitle>Red Fish Blue Fish percussionist Johannes Fischer
playing bass drum</unittitle>
<note>
<p>Original file name: ...Johannes
Fischer.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e58">
<did>
<container type="image-file">cd02_08</container>
<unittitle>Red Fish Blue Fish percussionist Fabio Oliveira playing
bass drum</unittitle>
<note>
<p>Original file name: ...tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e66">
<did>
<container type="image-file">cd02_09</container>
<unittitle>Johannes Fischer playing the bass drum</unittitle>
<note>
<p>Original file name: ..Johannes
Fischer....tif</p>
<p>Converted file name: JIB2007-018</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e75">
<did>
<container type="image-file">cd02_10</container>
<unittitle>Red Fish Blue Fish percussionist Johannes Fischer
playing bass drum</unittitle>
<note>
<p>Original file name: ..Johannes
Fischer.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e84">
<did>
<container type="image-file">cd02_11</container>
<unittitle>Student composers Aaron Helgesen and Fusun Koksal with
Arditti Quartet violoncellist Lucas Fels and violist Ralf Ehlers</unittitle>
<note>
<p>Original file name: Aaron Helgeson=Fusun Koksal in
ARDITTI workshop.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1e93">
<did>
<container type="image-file">cd02_12</container>
<unittitle>Arditti String Quartet with workshop participants,
Dominique Schafer, Trevor Bjorklund, Carmel Raz, Aaron Helgeson, Fusun Koksal,
and Bert Van Herck</unittitle>
<note>
<p>Original file name: ARDITTI QUARTET and student
composers.tif</p>
<p>Converted file name: JIB2007-004</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ea2">
<did>
<container type="image-file">cd02_13</container>
<unittitle>Arditti String Quartet in rehearsal</unittitle>
<note>
<p>Original file name: ARDITTI quartet
workshop.tif</p>
<p>Converted file name: JIB2007-001</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1eb2">
<did>
<container type="image-file">cd02_14</container>
<unittitle>Arditti Quartet (Irvine Arditti, Ashkot Sarkissian, Ralf
Ehlers, Lucas Fels) on stage</unittitle>
<note>
<p>Original file name: ARDITTI quartet.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ec2">
<did>
<container type="image-file">cd02_15</container>
<unittitle>Student composers Aaron Helgesen and Fusun Koksal with
Arditti Quartet violinist Irvine Arditti</unittitle>
<note>
<p>Original file name: Arditti workshop Aaron
Helgeson Fusun Koksal.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ed2">
<did>
<container type="image-file">cd02_16</container>
<unittitle>Student composer Aaron Helgesen with Arditti Quartet
violinist Ashkot Sarkissian and violoncellist Lucas Fels</unittitle>
<note>
<p>Original file name: Arditti workshop Aaron
Helgeson.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ee2">
<did>
<container type="image-file">cd02_17</container>
<unittitle>Arditti Quartet violist Ralf Ehlers with student
composer Fusun Koksal</unittitle>
<note>
<p>Original file name: ARDITTI workshop Fusun
Koksal.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ef2">
<did>
<container type="image-file">cd02_18</container>
<unittitle>Arditti Quartet violinist Irvine Arditti with student
composer Trevor Bjorklund</unittitle>
<note>
<p>Original file name: Arditti
workshop....tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f04">
<did>
<container type="image-file">cd02_19</container>
<unittitle>Audience at Arditti Quartet workshop in Baird Recital
Hall, including John Harbison</unittitle>
<note>
<p>Original file name: ARDITTI workshop.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f15">
<did>
<container type="image-file">cd02_20</container>
<unittitle>David Felder gesturing during masterclass</unittitle>
<note>
<p>Original file name: DAVID FELDER.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f27">
<did>
<container type="image-file">cd02_21</container>
<unittitle>David Felder gesturing during masterclass</unittitle>
<note>
<p>Original file name: FELDER
masterclass-x.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f38">
<did>
<container type="image-file">cd02_22</container>
<unittitle>David Felder gesturing during masterclass</unittitle>
<note>
<p>Original file name: FELDER
masterclass--.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f4a">
<did>
<container type="image-file">cd02_23</container>
<unittitle>Student composers at David Felder
masterclass</unittitle>
<note>
<p>Original file name: Felder
masterclass.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f5b">
<did>
<container type="image-file">cd02_24</container>
<unittitle>Composer Fusun Koksal with violist Ralf
Ehlers</unittitle>
<note>
<p>Original file name: Fusun Koksal in ARDITTI
workshop.tif</p>
<p>Converted file name: JIB2007-041</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f6d">
<did>
<container type="image-file">cd02_25</container>
<unittitle>Student composers Aaron Helgesen and Fusun Koksal with
Arditti Quartet violoncellist Lucas Fels and violist Ralf Ehlers</unittitle>
<note>
<p>Original file name: Fusun Koksal-Aaron
Helgeson=ARDITTI QUARTET.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f80">
<did>
<container type="image-file">cd02_26</container>
<unittitle>Red Fish Blue Fish percussionist Johannes Fischer
playing bass drum</unittitle>
<note>
<p>Original file name: Johannes Fischer.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1f93">
<did>
<container type="image-file">cd02_27</container>
<unittitle>Student composer Lee Weisart with Red Fish Blue Fish
percussionists Steve Schick and Justin Dehart(?)</unittitle>
<note>
<p>Original file name: Lee Weisert and
RFBF.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1fa6">
<did>
<container type="image-file">cd02_28</container>
<unittitle>Student composer Lee Weisart with Red Fish Blue Fish
percussionists Steve Schick, Justin Dehart(?), and Matthew Jenkins</unittitle>
<note>
<p>Original file name: Lee Weisert and
RFBF.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1fb9">
<did>
<container type="image-file">cd02_29</container>
<unittitle>Tony Arnold, vocalist, and Christian Baldini, conductor,
rehearsing Paolo Cavallone's Scendero a patti with ensemble of Sabatino Scirri,
flute, Rin Ozaki, percussion, Will Chapin, guitar, and Jonathan Golove,
violoncello</unittitle>
<note>
<p>Original file name: Paolo Cavallone SCENDERO A
PATTI.tif</p>
<p>Converted file name: JIB2007-007</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1fcc">
<did>
<container type="image-file">cd02_30</container>
<unittitle>Tony Arnold, vocalist, and Christian Baldini, conductor,
rehearsing Paolo Cavallone's Scendero a patti with ensemble of Sabatino Scirri,
flute, Rin Ozaki, percussion, Will Chapin, guitar, and Jonathan Golove,
violoncello</unittitle>
<note>
<p>Original file name: Paolo Cavallone.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1fe0">
<did>
<container type="image-file">cd02_31</container>
<unittitle>Percussionist Steven Schick with composer Lee Weisert,
rehearsing Weisert's composition, Rockaby</unittitle>
<note>
<p>Original file name: RFBF -Lee Weisert
stud.composer.tif</p>
<p>Converted file name: JIB2007-105</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db1ff4">
<did>
<container type="image-file">cd02_32</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Justin
DeHart and Fabio Oliveira rehearsing Ya-Ting Lee's composition,
Ritual</unittitle>
<note>
<p>Original file name: RFBF---.tif</p>
<p>Converted file name: JIB2007-055</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2008">
<did>
<container type="image-file">cd02_33</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Justin
DeHart, Matthew Jenkins, Fabio Oliveira, and Johannes Fischer rehearsing
Ya-Ting Lee's composition, Ritual</unittitle>
<note>
<p>Original file name: RFBF--.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db201c">
<did>
<container type="image-file">cd02_34</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble members Ross
Karre, Robert Esler, Steve Schick, and Fabio Oliveira</unittitle>
<note>
<p>Original file name: RFBF.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2033">
<did>
<container type="image-file">cd02_35</container>
<unittitle>Rin Ozaki bowing a gong</unittitle>
<note>
<p>Original file name: Rin Ozaki---.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2048">
<did>
<container type="image-file">cd02_36</container>
<unittitle>Rin Ozaki bowing a gong</unittitle>
<note>
<p>Original file name: Rin Ozaki.tif</p>
<p>Converted file name: JIB2007-050</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db205d">
<did>
<container type="image-file">cd02_37</container>
<unittitle>Red Fish Blue Fish percussionists Justin DeHart and
Fabio Oliveira rehearse Ya-Ting Lee's Ritual</unittitle>
<note>
<p>Original file name: RITUAL by Ya-Ting
Lee.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2072">
<did>
<container type="image-file">cd02_38</container>
<unittitle>Composer Roger Reynolds onstage with the Arditti String
Quartet after a performance of Reynolds's composition, Ariadne's
thread</unittitle>
<note>
<p>Original file name: Roger Reynolds and
Arditti.tif</p>
<p>Converted file name: JIB2007-090</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2088">
<did>
<container type="image-file">cd02_39</container>
<unittitle>Stage setup for percussion used in Roger Reynolds's
composition, Sanctuary</unittitle>
<note>
<p>Original file name: Roger Reynolds SANCTUARY
stage.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db209e">
<did>
<container type="image-file">cd02_40</container>
<unittitle>Stage setup for percussion used in Roger Reynolds's
composition, Sanctuary</unittitle>
<note>
<p>Original file name: Stage SANCTUARY.tif</p>
<p>Converted file name: JIB2007-112</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db20b5">
<did>
<container type="image-file">cd02_41</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: Steve Schick in
SANCTUARY....tif</p>
<p>Converted file name: JIB2007-101</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db20cc">
<did>
<container type="image-file">cd02_42</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: Steve Schick in
SANCTUARY...tif</p>
<p>Converted file name: JIB2007-102</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db20e5">
<did>
<container type="image-file">cd02_43</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: Steve Schick in
SANCTUARY.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db20fc">
<did>
<container type="image-file">cd02_44</container>
<unittitle>Composer Roger Reynolds adjusting microphone for
percussionist Steven Schick during rehearsal of Reynolds's composition,
Sanctuary</unittitle>
<note>
<p>Original file name: Steve Schick- Roger
Reynolds.tif</p>
<p>Converted file name: JIB2007-085</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2114">
<did>
<container type="image-file">cd02_45</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: Steve Schick-.tif</p>
<p>Converted file name: JIB2007-100</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db212d">
<did>
<container type="image-file">cd02_46</container>
<unittitle>Percussionist Steven Schick rehearsing solo sections of
Part I of Roger Reynolds's composition, Sanctuary</unittitle>
<note>
<p>Original file name: STEVE SCHICK.tif</p>
<p>Converted file name: JIB2007-103</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2145">
<did>
<container type="image-file">cd02_47</container>
<unittitle>Composer Fusun Koksal with violinist Irvine Arditti and
violoncellist Lucas Fels</unittitle>
<note>
<p>Original file name: stud.composer Fusun Koksal
-Arditti.tif</p>
<p>Converted file name: JIB2007-040</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db215e">
<did>
<container type="image-file">cd02_48</container>
<unittitle>Jonathan Golove performing on violoncello while composer
Jane Stanley watches (rehearsal of her work, Deep turn)</unittitle>
<note>
<p>Original file name: stud.composer Jane Stanley
DEEP RUN.tif</p>
<p>Converted file name: JIB2007-020</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2177">
<did>
<container type="image-file">cd02_49</container>
<unittitle>Arditti String Quartet with workshop participants,
Dominique Schafer, Trevor Bjorklund, Carmel Raz, Aaron Helgeson, Fusun Koksal,
and Bert Van Herck</unittitle>
<note>
<p>Original file name: student composers and ARDITTI
QUARTET.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2190">
<did>
<container type="image-file">cd02_50</container>
<unittitle>Johannes Fischer performing with bass drum</unittitle>
<note>
<p>Original file name: x-Johannes Fischer RITUAL by
Ya-Ting Lee.tif</p>
<p>Converted file name: JIB2007-019</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db21ac">
<did>
<container type="image-file">cd02_51</container>
<unittitle>Student composer Ya-Ting Lee at rehearsal with Red Fish
Blue Fish percussion group</unittitle>
<note>
<p>Original file name: YA-Ting Lee at
rehearsal....tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db21c7">
<did>
<container type="image-file">cd02_52</container>
<unittitle>Student composer Ya-Ting Lee at rehearsal with Red Fish
Blue Fish percussion group</unittitle>
<note>
<p>Original file name: YA-Ting Lee at
rehearsal.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db21e2">
<did>
<container type="image-file">cd02_53</container>
<unittitle>Composer Ya-Ting Lee</unittitle>
<note>
<p>Original file name: Ya-Ting Lee student
composer.tif</p>
<p>Converted file name: JIB2007-042</p>
</note>
</did>
</c>
</c>
<c level="series" id="c_5ccc8a1db21fd">
<did>
<unitid id="series3">III.</unitid>
<unittitle>JIB 2007-3,
<unitdate type="inclusive" normal="2007-06">June 2007</unitdate>
</unittitle>
<physdesc>
<extent>1 CD-ROM </extent>
<extent>(12 image files in TIFF
format)</extent>
</physdesc>
</did>
<arrangement>
<p>Files are numerically arranged by intermediate, assigned file
names. Original file names are included for reference. </p>
</arrangement>
<c level="item" id="c_5ccc8a1db2218">
<did>
<container type="image-file">cd03_01</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble, with director
Steve Schick (lower left), Ross Karre, Johannes Fischer, Justin DeHart, Robert
Esler, Fabio Oliveira, Ian Sexton, and Matthew Jenkins, with the Waterphone
used in Roger Reynolds's composition Sanctuary</unittitle>
<note>
<p>Original file name: ORACLE with RFBF
07.tif</p>
<p>Converted file name: JIB2007-051</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2234">
<did>
<container type="image-file">cd03_02</container>
<unittitle>Steve Schick and members of Red Fish Blue Fish in
discussion with audience after concert</unittitle>
<note>
<p>Original file name: RFBF talk with audience after
concert.tif</p>
</note>
</did>
</c>
<c level="item" id="c_5ccc8a1db2250">
<did>
<container type="image-file">cd03_03</container>
<unittitle>Red Fish Blue Fish Percussion Ensemble, with director