-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11373.xml
2238 lines (2238 loc) · 134 KB
/
11373.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.wesleybrown">beinecke.wesleybrown</recordid>
<otherrecordid localtype="BIB">15717746</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Wesley Brown Papers </titleproper>
<titleproper localtype="filing">Brown (Wesley) Papers</titleproper>
<author>by Beinecke staff</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>March 2021</date>
<num>JWJ MSS 229</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-7</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 8-10</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>2024-11-27T23:53:31-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday November 27, 2024 at 23:53</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11373" level="collection">
<did>
<unittitle>Wesley Brown papers</unittitle>
<unitid>JWJ MSS 229</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>3</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1967">1967</fromdate>
<todate standarddate="2017">2017</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Brown, Wesley, 1945-</part>
</persname>
</origination>
</did>
<userestrict id="aspace_8f5af3d8de036565a0912952c4633b9c">
<head>Conditions Governing Use</head>
<p>The Wesley Brown papers 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>
<bioghist id="aspace_fffea6c2279fcefc73c1281072b00a41">
<head>Biographical / Historical</head>
<p>Wesley Brown, born 1945, received his M.A. in Literature and Creative Writing at The City College of the City University of New York and his B.A. in History and Political Science at State University of New York, Oswego. Wesley Brown is a novelist, playwright, and teacher. He worked with the Mississippi Freedom Democratic Party in 1965 and became a member of the Black Panther Party in 1968. In 1972, he was sentenced to three years in prison for refusing induction into the armed services and spent 18 months in Lewisburg Federal Penitentiary. Brown was a professor at Rutgers University (1979-2005). He has taught literature at Bard College at Simon's Rock since 2007.</p>
</bioghist>
<acqinfo id="aspace_fdeec1dbfce47eb9ab44e60204ed2338">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Ken Lopez Bookseller on the Edwin J. Beinecke Book Fund, 2018.</p>
</acqinfo>
<processinfo id="aspace_d14d2e9990efe21264ae5b6b2540d9fc">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>These materials have been arranged and described according to national and local standards. For more information, please refer to the Beinecke Manuscript Unit Processing Manual.</p>
</processinfo>
<arrangement id="aspace_ee402767c6af66c78ca04fe73d40861b">
<head>Arrangement</head>
<p>Organized into three series: I. Writings, 1960-2010. II. Legal Documents, 1970-1973. III. Guest Books, 2004-2005.</p>
</arrangement>
<scopecontent id="aspace_3f9e570f0ca80f3b475750e9d5f10439">
<head>Scope and Contents</head>
<p>The Wesley Brown papers consists of original and photocopied material related to the writer Wesley Brown. The papers primarily contain the creative writing of Wesley Brown, including novels, plays, poems, short stories, film scripts, correspondence, and reviews related to these writings. The papers also include legal documents related to Wesley Brown's refusal to be inducted into the armed services in 1972.</p>
</scopecontent>
<accessrestrict id="aspace_efda26d812e25e82575ec0b63038b9d3">
<head>Conditions Governing Access</head>
<p>This material is open for research.</p>
</accessrestrict>
<prefercite id="aspace_58593172611130298ee1dfbaf38ab171">
<head>Preferred Citation</head>
<p>Wesley Brown Papers. James Weldon Johnson Memorial Collection in the Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001798"
source="lcsh">
<part localtype="topical">African American authors</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh87003937"
source="lcsh">
<part localtype="topical">African American dramatists</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh99004225"
source="lcsh">
<part localtype="topical">African American educators</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85001883"
source="lcsh">
<part localtype="topical">African American poets</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Vietnam War, 1961-1975</part>
<part localtype="topical">Draft resisters. </part>
</subject>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2946310"
id="aspace_c9ee32a49c5b6de96f12dcf15b25e317"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.5</quantity>
<unittype>Linear Feet</unittype>
<physfacet>(6 boxes)</physfacet>
</physdescstructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1960">1960</fromdate>
<todate standarddate="2017">2017</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_73656cb1882eb26e5673405ef03559bf">
<head>Arrangement</head>
<p>Series I is organized into seven subseries: Essays, Novels, Diaries, Plays, Poetry, Short Stories, Film Scripts, and Reviews</p>
</arrangement>
<scopecontent id="aspace_d6d8a4dc7ca0274e4f9e4e4a6c888986">
<head>Scope and Contents</head>
<p>Series I contains the creative writings of Wesley Brown, including novels, plays, poems, short stories, film scripts, correspondence, and reviews related to these writings.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2946379"
id="aspace_d18c7c11da3486572d7a48a279928e5e"
level="subseries">
<did>
<unittitle>Essays</unittitle>
</did>
<arrangement id="aspace_56da669dffe4340b6fd606b32a23f488">
<head>Arrangement</head>
<p>Materials roughly maintain order found at time of acquisition.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2946382"
id="aspace_9c3856238d4bc1717251b365f0c96a89"
level="file">
<did>
<unittitle>"Jes' Grew: Newsletter of the National Association of Third World Writers"</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1982">1982</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_9c3856238d4bc1717251b365f0c96a89_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9c3856238d4bc1717251b365f0c96a89_c2"
localtype="folder"
parent="aspace_9c3856238d4bc1717251b365f0c96a89_c1">1</container>
</did>
<scopecontent id="aspace_4afb8b4afd140c1aa318cd1e4bfcb4d2">
<head>Scope and Contents</head>
<p>This file contains two issues of the Jes' Grew Newsletter from Fall/Winter 1982 and March 1982.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946383"
id="aspace_f3c2530693b4f62a119fb5b9b907e54d"
level="item">
<did>
<unittitle>"Which Sound Are You On?" </unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_f3c2530693b4f62a119fb5b9b907e54d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f3c2530693b4f62a119fb5b9b907e54d_c2"
localtype="folder"
parent="aspace_f3c2530693b4f62a119fb5b9b907e54d_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2946385"
id="aspace_54b5e714f8c94ab4c26f0c38ed0d94c8"
level="file">
<did>
<unittitle>"The Mojo and the Sayso: Myth and Ritual in the work of Larry Neal"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_54b5e714f8c94ab4c26f0c38ed0d94c8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_54b5e714f8c94ab4c26f0c38ed0d94c8_c2"
localtype="folder"
parent="aspace_54b5e714f8c94ab4c26f0c38ed0d94c8_c1">2</container>
</did>
<scopecontent id="aspace_2845f346736c43365229bac2ea6a09d3">
<head>Scope and Contents</head>
<p>This file contains 2 typescripts and a photocopy of the essay "The Mojo and the Sayso". The file also contains the first volume of The Journal, in which "The Mojo and the Sayso" was initially published.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946386"
id="aspace_b3046a9237a7cba2db54d5a036af68af"
level="item">
<did>
<unittitle>Imagining America: Stories from the Promised Land, printed version</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_b3046a9237a7cba2db54d5a036af68af_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b3046a9237a7cba2db54d5a036af68af_c2"
localtype="folder"
parent="aspace_b3046a9237a7cba2db54d5a036af68af_c1">3</container>
</did>
<scopecontent id="aspace_bbca625915e507216e4f100986643812">
<head>Scope and Contents</head>
<p>Imagining America: Stories from the Promised Land is a multicultural anthology of American fiction from 1900 to 1991. It was edited by Wesley Brown and Amy Ling.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946387"
id="aspace_70aae943e95ffe63bb2b07c5bb91b63c"
level="file">
<did>
<unittitle>Why magazine</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1970">1970</fromdate>
<todate standarddate="1971">1971</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_70aae943e95ffe63bb2b07c5bb91b63c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_70aae943e95ffe63bb2b07c5bb91b63c_c2"
localtype="folder"
parent="aspace_70aae943e95ffe63bb2b07c5bb91b63c_c1">4</container>
</did>
<scopecontent id="aspace_2cd0db073090fcd16e6d23c8fe58e34b">
<head>Scope and Contents</head>
<p>This file contains 7 issues of Why magazine from March 1970 to November 1971</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946400"
id="aspace_55415c0f967d5a52b34c0051e1a9b364"
level="item">
<did>
<unittitle>"Famous People in Negro History, 1960 Calendar"</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1960">1960</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_55415c0f967d5a52b34c0051e1a9b364_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_55415c0f967d5a52b34c0051e1a9b364_c2"
localtype="folder"
parent="aspace_55415c0f967d5a52b34c0051e1a9b364_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2946401"
id="aspace_85a64a5193a34b9fe4505cbaf1945ea0"
level="file">
<did>
<unittitle>"Vietnam Journal" and related writings</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1998">1998</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_85a64a5193a34b9fe4505cbaf1945ea0_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_85a64a5193a34b9fe4505cbaf1945ea0_c2"
localtype="folder"
parent="aspace_85a64a5193a34b9fe4505cbaf1945ea0_c1">5</container>
</did>
<scopecontent id="aspace_b276207368888e66c575475ed69a93b1">
<head>Scope and Contents</head>
<p>This file contains 4 edited typescripts of "Vietnam Journal", a manuscript essay titled "What do Black People know about Vietnam?" and the article "Reflections on Vietnam" published in Essence in 1998</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946402"
id="aspace_a56a47887ec89ff5a68ecb92f9517054"
level="file">
<did>
<unittitle>"A Visit to Buchenwald"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_a56a47887ec89ff5a68ecb92f9517054_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a56a47887ec89ff5a68ecb92f9517054_c2"
localtype="folder"
parent="aspace_a56a47887ec89ff5a68ecb92f9517054_c1">5</container>
</did>
<scopecontent id="aspace_25c060438e58c218f17633eb007ff05c">
<head>Scope and Contents</head>
<p>This file contains 4 edited typscripts of "A Visit to Buchenwald" and related correspondence.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946403"
id="aspace_424c528f3f350857ef0432996331e2d9"
level="item">
<did>
<unittitle>"Handwritten Essay re: Dick" (transcribed)</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="2017">2017</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_424c528f3f350857ef0432996331e2d9_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_424c528f3f350857ef0432996331e2d9_c2"
localtype="folder"
parent="aspace_424c528f3f350857ef0432996331e2d9_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2946404"
id="aspace_0285d49f16ce7a07e79cae60114d934f"
level="file">
<did>
<unittitle>Essays and interviews regarding adoptive son, Anthony</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1982">1982</fromdate>
<todate standarddate="1993">1993</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_0285d49f16ce7a07e79cae60114d934f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0285d49f16ce7a07e79cae60114d934f_c2"
localtype="folder"
parent="aspace_0285d49f16ce7a07e79cae60114d934f_c1">6</container>
</did>
<scopecontent id="aspace_b22e5ee70d73159ac3a35a5e31ba7e29">
<head>Scope and Contents</head>
<p>This file contains a typescript essay, an interview with Wesley Brown regarding adopting a child as a single parent, and a photocopy of the essay "Say Brother".</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2946405"
id="aspace_96c2a3913fa0b891a69f2e0b94067e4e"
level="item">
<did>
<unittitle>Teachers & Writers magazine, printed version, Volume 7 Issue 2</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1976">1976</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_96c2a3913fa0b891a69f2e0b94067e4e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_96c2a3913fa0b891a69f2e0b94067e4e_c2"
localtype="folder"
parent="aspace_96c2a3913fa0b891a69f2e0b94067e4e_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2946478"
id="aspace_c7b3479ca888e860dc3597817f3ff010"
level="item">
<did>
<unittitle>"A Profile of Adam Clayton Powell"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_c7b3479ca888e860dc3597817f3ff010_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c7b3479ca888e860dc3597817f3ff010_c2"
localtype="folder"
parent="aspace_c7b3479ca888e860dc3597817f3ff010_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3149854"
id="aspace_da1e5bb41a11b85d7050767c88f88039"
level="item">
<did>
<unittitle>"Some Notes on Love and Theft"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_da1e5bb41a11b85d7050767c88f88039_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_da1e5bb41a11b85d7050767c88f88039_c2"
localtype="folder"
parent="aspace_da1e5bb41a11b85d7050767c88f88039_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150089"
id="aspace_38b1557409c27ee329d7f21c5b0cf13e"
level="item">
<did>
<unittitle>Craft Talk: The Art of Not Knowing</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_38b1557409c27ee329d7f21c5b0cf13e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_38b1557409c27ee329d7f21c5b0cf13e_c2"
localtype="folder"
parent="aspace_38b1557409c27ee329d7f21c5b0cf13e_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150090"
id="aspace_b36c21de8bca1c5e628ca15c3d0b74c2"
level="item">
<did>
<unittitle>"The Film Fails…By Settling for Less"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_b36c21de8bca1c5e628ca15c3d0b74c2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b36c21de8bca1c5e628ca15c3d0b74c2_c2"
localtype="folder"
parent="aspace_b36c21de8bca1c5e628ca15c3d0b74c2_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150091"
id="aspace_3b3aef236e1c21efc01e8cfb12fb2826"
level="item">
<did>
<unittitle>"Don't Just Sit There, Create!"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_3b3aef236e1c21efc01e8cfb12fb2826_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3b3aef236e1c21efc01e8cfb12fb2826_c2"
localtype="folder"
parent="aspace_3b3aef236e1c21efc01e8cfb12fb2826_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150092"
id="aspace_4b6c28bf50fbdee48d97677fe7d7eb2a"
level="item">
<did>
<unittitle>"Victims of the Latest Dance Craze"</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_4b6c28bf50fbdee48d97677fe7d7eb2a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4b6c28bf50fbdee48d97677fe7d7eb2a_c2"
localtype="folder"
parent="aspace_4b6c28bf50fbdee48d97677fe7d7eb2a_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150093"
id="aspace_a662a77590c1bc772a079c4366aeb60f"
level="item">
<did>
<unittitle>Introduction to Paule Marshall and Toni Morrison reading</unittitle>
<unitdatestructured label="other" unitdatetype="inclusive">
<datesingle standarddate="1978">1978</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_a662a77590c1bc772a079c4366aeb60f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a662a77590c1bc772a079c4366aeb60f_c2"
localtype="folder"
parent="aspace_a662a77590c1bc772a079c4366aeb60f_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150094"
id="aspace_ba3f7013a44e04f1e433eb77fd4a55bb"
level="item">
<did>
<unittitle>Literature and the Social Consciousness</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_ba3f7013a44e04f1e433eb77fd4a55bb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ba3f7013a44e04f1e433eb77fd4a55bb_c2"
localtype="folder"
parent="aspace_ba3f7013a44e04f1e433eb77fd4a55bb_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150095"
id="aspace_cc305112eae6dd5d32c17f0b36bed651"
level="item">
<did>
<unittitle>The Mojo and the Sayso: Myth and Ritual in the Work of Larry Neale</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_cc305112eae6dd5d32c17f0b36bed651_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_cc305112eae6dd5d32c17f0b36bed651_c2"
localtype="folder"
parent="aspace_cc305112eae6dd5d32c17f0b36bed651_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150096"
id="aspace_666d8f4b05b041fcb585746c6792e387"
level="item">
<did>
<unittitle>You Talk Like You Got Books in Your Jaws</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_666d8f4b05b041fcb585746c6792e387_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_666d8f4b05b041fcb585746c6792e387_c2"
localtype="folder"
parent="aspace_666d8f4b05b041fcb585746c6792e387_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150097"
id="aspace_d44b072c4c06747b76e672902fe109c2"
level="item">
<did>
<unittitle>The Art of Getting to the Point</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_d44b072c4c06747b76e672902fe109c2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d44b072c4c06747b76e672902fe109c2_c2"
localtype="folder"
parent="aspace_d44b072c4c06747b76e672902fe109c2_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150098"
id="aspace_c3eaceba5af506e02ffa1d4a3d46edbc"
level="item">
<did>
<unittitle>Who to Blame</unittitle>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_c3eaceba5af506e02ffa1d4a3d46edbc_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c3eaceba5af506e02ffa1d4a3d46edbc_c2"
localtype="folder"
parent="aspace_c3eaceba5af506e02ffa1d4a3d46edbc_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150099"
id="aspace_3508a74d4f41f9d2748735acf80006ce"
level="item">
<did>
<unittitle>"I'm Coming out of a Black Thing"</unittitle>
<unitdatestructured altrender="1967 September 29"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1967">1967 September 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_3508a74d4f41f9d2748735acf80006ce_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3508a74d4f41f9d2748735acf80006ce_c2"
localtype="folder"
parent="aspace_3508a74d4f41f9d2748735acf80006ce_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150104"
id="aspace_1152defba6dbd4aae080dc4ac8340990"
level="item">
<did>
<unittitle>"Where is Che Guevara"</unittitle>
<unitdatestructured altrender="1968 February 2"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1968">1968 February 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_1152defba6dbd4aae080dc4ac8340990_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1152defba6dbd4aae080dc4ac8340990_c2"
localtype="folder"
parent="aspace_1152defba6dbd4aae080dc4ac8340990_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150105"
id="aspace_ba500d3d61a69ed72770143933b413bd"
level="item">
<did>
<unittitle>"We are at the Lip of the Grave"</unittitle>
<unitdatestructured altrender="1968 April 12"
label="publication"
unitdatetype="inclusive">
<datesingle standarddate="1968">1968 April 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_ba500d3d61a69ed72770143933b413bd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ba500d3d61a69ed72770143933b413bd_c2"
localtype="folder"
parent="aspace_ba500d3d61a69ed72770143933b413bd_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150106"
id="aspace_0e05492114a15433273f71ac38d72efb"
level="item">
<did>
<unittitle>Blue Orpheus, book review </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_0e05492114a15433273f71ac38d72efb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0e05492114a15433273f71ac38d72efb_c2"
localtype="folder"
parent="aspace_0e05492114a15433273f71ac38d72efb_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150107"
id="aspace_5df598bc7644687bc37166666a406ad0"
level="item">
<did>
<unittitle>Remembering Will Burgess, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_5df598bc7644687bc37166666a406ad0_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5df598bc7644687bc37166666a406ad0_c2"
localtype="folder"
parent="aspace_5df598bc7644687bc37166666a406ad0_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150108"
id="aspace_ce650dcf0be00212fd60284a9ae06b20"
level="item">
<did>
<unittitle>Interview with historian Nell Irvin Painter, typescript</unittitle>
<unitdatestructured altrender="2006 November 5"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="2006">2006 November 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_ce650dcf0be00212fd60284a9ae06b20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ce650dcf0be00212fd60284a9ae06b20_c2"
localtype="folder"
parent="aspace_ce650dcf0be00212fd60284a9ae06b20_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150109"
id="aspace_9947de75b0bf0779d06a1ed559c15fb2"
level="item">
<did>
<unittitle>The Machiaveillian Impulse in Shakespeare's "The Tempest", typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_9947de75b0bf0779d06a1ed559c15fb2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9947de75b0bf0779d06a1ed559c15fb2_c2"
localtype="folder"
parent="aspace_9947de75b0bf0779d06a1ed559c15fb2_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150110"
id="aspace_8064e71ede712e1e61fe765c7c894106"
level="item">
<did>
<unittitle>The Influence of Jazz on the 20th Century American Literature, edited typescripts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_8064e71ede712e1e61fe765c7c894106_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8064e71ede712e1e61fe765c7c894106_c2"
localtype="folder"
parent="aspace_8064e71ede712e1e61fe765c7c894106_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150111"
id="aspace_b919362c441b1043da2d35c11808274e"
level="item">
<did>
<unittitle>Lecture: "Self Invention as Deception in Frederick Douglass' Narrative"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_b919362c441b1043da2d35c11808274e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b919362c441b1043da2d35c11808274e_c2"
localtype="folder"
parent="aspace_b919362c441b1043da2d35c11808274e_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150112"
id="aspace_0a530ede4f0f5b4a422b841689bfcbdc"
level="item">
<did>
<unittitle>Hamlet's 7 Soliloquies of the Story of a Man Who Couldn't Make Up His Mind</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_0a530ede4f0f5b4a422b841689bfcbdc_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0a530ede4f0f5b4a422b841689bfcbdc_c2"
localtype="folder"
parent="aspace_0a530ede4f0f5b4a422b841689bfcbdc_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150113"
id="aspace_ab335b011888e5eea593dc7967600bd7"
level="item">
<did>
<unittitle>Presentation of the 50th Anniversary of the Selma to Montgomery Marth and the passage of the 1965 Voting Rights Act, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_ab335b011888e5eea593dc7967600bd7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ab335b011888e5eea593dc7967600bd7_c2"
localtype="folder"
parent="aspace_ab335b011888e5eea593dc7967600bd7_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150114"
id="aspace_0a2c05a00171b8ed2a1cbda9e1dd293b"
level="item">
<did>
<unittitle>Black Consciousness: the forms and structures developed in the sixties, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_0a2c05a00171b8ed2a1cbda9e1dd293b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_0a2c05a00171b8ed2a1cbda9e1dd293b_c2"
localtype="folder"
parent="aspace_0a2c05a00171b8ed2a1cbda9e1dd293b_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150115"
id="aspace_de29d5a6febaf1cf5f3a0a94ed08af25"
level="item">
<did>
<unittitle>The Art of the Craft Talk: The Value of Not-Knowing, typescript </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_de29d5a6febaf1cf5f3a0a94ed08af25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_de29d5a6febaf1cf5f3a0a94ed08af25_c2"
localtype="folder"
parent="aspace_de29d5a6febaf1cf5f3a0a94ed08af25_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150116"
id="aspace_b7c40c035a7df3b7227728a7613592b7"
level="item">
<did>
<unittitle>The Poetry and Legacy of America Baraka</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_b7c40c035a7df3b7227728a7613592b7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b7c40c035a7df3b7227728a7613592b7_c2"
localtype="folder"
parent="aspace_b7c40c035a7df3b7227728a7613592b7_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150117"
id="aspace_434b59d891da5998aa36af9e9ad601da"
level="item">
<did>
<unittitle>Blurb for Mervyn Taylor, the Waving Gallery, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_434b59d891da5998aa36af9e9ad601da_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_434b59d891da5998aa36af9e9ad601da_c2"
localtype="folder"
parent="aspace_434b59d891da5998aa36af9e9ad601da_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150118"
id="aspace_e6b593afa84759601c097d1a9fc617e2"
level="item">
<did>
<unittitle>Martin Luther King Jr. – The Man, not the Monument</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_e6b593afa84759601c097d1a9fc617e2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e6b593afa84759601c097d1a9fc617e2_c2"
localtype="folder"
parent="aspace_e6b593afa84759601c097d1a9fc617e2_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150119"
id="aspace_2e0fb4d27a1d495b6f8aa6b8848c08e1"
level="item">
<did>
<unittitle>Keetje Kuipers Introduction, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_2e0fb4d27a1d495b6f8aa6b8848c08e1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2e0fb4d27a1d495b6f8aa6b8848c08e1_c2"
localtype="folder"
parent="aspace_2e0fb4d27a1d495b6f8aa6b8848c08e1_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150120"
id="aspace_28e559f2ef31323dfa1b26aa2b86f8cf"
level="item">
<did>
<unittitle>Telling Stories that Should Not be Passed On, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_28e559f2ef31323dfa1b26aa2b86f8cf_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_28e559f2ef31323dfa1b26aa2b86f8cf_c2"
localtype="folder"
parent="aspace_28e559f2ef31323dfa1b26aa2b86f8cf_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150121"
id="aspace_597bc6dc8586d0845d6e572b2f5bc989"
level="item">
<did>
<unittitle>Introduction to Mervyn's Reading, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_597bc6dc8586d0845d6e572b2f5bc989_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_597bc6dc8586d0845d6e572b2f5bc989_c2"
localtype="folder"
parent="aspace_597bc6dc8586d0845d6e572b2f5bc989_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150122"
id="aspace_13ab376070614cfbe09e802f84bde3c1"
level="item">
<did>
<unittitle>Blurb for Dexter Calling: The Life and Legacy of Dexter Gordon, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_13ab376070614cfbe09e802f84bde3c1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_13ab376070614cfbe09e802f84bde3c1_c2"
localtype="folder"
parent="aspace_13ab376070614cfbe09e802f84bde3c1_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3150123"
id="aspace_e9c68c6bd63734c81d9edef805321c82"
level="item">
<did>
<unittitle>The Art of Getting to the Point, typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/347902 /locations/9"
containerid="39002137228418"
encodinganalog="archive legal"
id="aspace_e9c68c6bd63734c81d9edef805321c82_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_e9c68c6bd63734c81d9edef805321c82_c2"
localtype="folder"
parent="aspace_e9c68c6bd63734c81d9edef805321c82_c1">10</container>
</did>