-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11815.xml
1912 lines (1912 loc) · 108 KB
/
11815.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.smedley">beinecke.smedley</recordid>
<otherrecordid localtype="BIB">16374334</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Betty Dunn Smedley Papers </titleproper>
<titleproper localtype="filing">Smedley (Betty Dunn) Papers</titleproper>
</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>
<num>WA MSS S-4526</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-5</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:33:44-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:33</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11815" level="collection">
<did>
<unittitle>Betty Dunn Smedley papers</unittitle>
<unitid>WA MSS S-4526</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>4.92</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1907-1984" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_2262ddb9830d96cd32fc9c258999a86f">The collection consists of correspondence, financial and business records, printed material, and a small amount of personal papers documenting the career and life of Austin, Texas rare bookseller Betty Dunn Smedley.</abstract>
<origination label="Creator">
<persname relator="aut" rules="rda" source="local_beinecke">
<part localtype="agent_person">Smedley, Betty Dunn</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_5495cfad40993423b30840200c7218f9">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_840516cc5333aab54697a7ff1746a5a6">
<head>Immediate Source of Acquisition</head>
<p>Gift of Michael Vinson, 2018.</p>
</acqinfo>
<arrangement id="aspace_e0096c0fcfd17e5c27f9fb8795e45eb1">
<head>Arrangement</head>
<p>Organized into two series: I. Correspondence and Financial Records, 1907–1984. II. Printed Material, 1930–1982.</p>
</arrangement>
<bioghist id="aspace_2cfe6745d369f6f0a5c9b0757f6845f7">
<head>Betty Dunn Smedley (1888-1985)</head>
<p>Betty Dunn Smedley was an American rare bookseller of Western Americana, particularly the work of printer Carl Hertzog and historian J. Evetts Haley. Born Betty Dunn on December 8, 1888 in Mississippi, she married oil and gas attorney Graham Smedley in Dallas, Texas in 1907. For most of their marriage the couple lived in Austin, Texas, where Graham Smedley served on the Supreme Court of Texas for almost 20 years. After her husband's death in 1954, Betty Smedley was briefly curator of the Hoblitzelle Theater Collection (now Albert Davis Collection of Theater Artifacts) at the University of Texas at Austin. Smedley also sold real estate until she began her career in rare bookselling. She established Betty Smedley Rare Books and operated out of her home in Austin from about 1967 to 1985. Smedley published at least eleven catalogs of rare books, including <title>
<part>A Carl Hertzog Hope Chest</part>
</title> (1972), <title>
<part>The J. Evetts Haley Roundup</part>
</title> (1974), which was designed by Hertzog, and <title>
<part>Ranges of Grass and the Men on Horseback</part>
</title> (1976), which featured the introductory essay "Betty and Her Books" by Haley.</p>
</bioghist>
<prefercite id="aspace_ce7026c0334cdc23c3d3c35f94713f0c">
<head>Preferred Citation</head>
<p>Betty Dunn Smedley Papers. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_5cdcde1d491ad8a499d218514d09d3d2">
<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>This collection received a basic level of processing, including rehousing and minimal organization. Various acquisitions associated with the collection have been merged and organized as a whole.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_ad62aa6acaf4b54fae6499bc97baa67a">
<head>Scope and Contents</head>
<p>The collection consists of correspondence, financial and business records, printed material, and a small amount of personal papers documenting the career and life of Austin, Texas rare bookseller Betty Dunn Smedley. Included are files related to other Texas book dealers, historians, libraries, publishers and fine press printers, artists, and collectors of Western Americana, such as José Cisneros, Dudley Dobie, J. Evetts Haley, Carl Hertzog, David Holman of Wind River Press, Hobart Huson, Alfred A. Knopf, Al Lowman, Willis Lutz, W. M. Morrison, Ray S. Walton, and William Witliff of Encino Press. The collection contains numerous catalogs printed by Smedley, among them <title>
<part>A Carl Hertzog Hope Chest</part>
</title> and <title>
<part>Ranges of Grass and the Men on Horseback</part>
</title>. Also present is correspondence with J. L. Allhands, an author of railroad history, and research files he gave to Smedley on three of his books: <title>
<part>Gringo Builders</part>
</title> (1931); <title>
<part>Boll Weevil</part>
</title> (1946); and <title>
<part>Uriah Lott</part>
</title> (1949). In the early 1930s, Smedley researched the Red River and trader Holland Coffee for an unpublished book, and the collection contains correspondence, photographs, and printed material related to the topic, including letters from White Eagle, an Indigenous writer living in Houston who grew up near the North Fork of the river; historian Joseph Bradfield Thoburn; and librarian Ernest Winkler. The collection also contains correspondence with New York Public Library curator George Freedley and University of Texas librarian Fannie Ratchford related to the Hoblitzelle Theater Collection, which Smedley curated in the late 1950s.</p>
</scopecontent>
<userestrict id="aspace_bc6a66f30acaf695a216df4c0de62945">
<head>Conditions Governing Use</head>
<p>The Betty Dunn Smedley 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>
<controlaccess>
<subject source="local">
<part localtype="topical">Antiquarian booksellers</part>
<part localtype="genre_form">Catalogs</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85015626"
source="lcsh">
<part localtype="topical">Book industries and trade</part>
<part localtype="geographic">United States</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Booksellers' catalogues</part>
</genreform>
<subject source="local_beinecke">
<part localtype="topical">Booksellers and bookselling</part>
<part localtype="geographic">Texas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2007102100"
source="lcsh">
<part localtype="topical">Booksellers and bookselling</part>
<part localtype="geographic">United States</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Antiquarian booksellers</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Book collectors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Historians</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Librarians</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<subject source="local">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Small presses</part>
<part localtype="geographic">United States</part>
</subject>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="genre_form">Bibliography</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85134261"
source="lcsh">
<part localtype="geographic">Texas</part>
<part localtype="topical">History</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Bibliography</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85146151"
source="lcsh">
<part localtype="geographic">West (U.S.)</part>
<part localtype="topical">History</part>
</geogname>
<geogname source="local">
<part localtype="geographic">West (U.S.)</part>
<part localtype="genre_form">Imprints</part>
</geogname>
<persname>
<part localtype="agent_person">Allhands, J. L. (James Lewellyn), 1879-1978</part>
</persname>
<persname>
<part localtype="agent_person">Cisneros, José, 1910-2009</part>
</persname>
<persname>
<part localtype="agent_person">Dobie, Dudley, 1904-1982</part>
</persname>
<persname>
<part localtype="agent_person">Freedley, George, 1904-1967</part>
</persname>
<persname>
<part localtype="agent_person">Haley, J. Evetts (James Evetts), 1901-1995</part>
</persname>
<persname>
<part localtype="agent_person">Hertzog, Carl</part>
</persname>
<persname>
<part localtype="agent_person">Holman, David</part>
</persname>
<persname>
<part localtype="agent_person">Huson, Hobart, 1893-1983</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Knopf, Alfred A., 1892-1984</part>
</persname>
<persname>
<part localtype="agent_person">Lowman, Al</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Lutz, Willis J.</part>
</persname>
<persname>
<part localtype="agent_person">Morrison, W. M. (William Melvin), 1914-</part>
</persname>
<persname>
<part localtype="agent_person">Ratchford, Fannie Elizabeth, 1887-1974</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Smedley, Betty Dunn</part>
</persname>
<persname>
<part localtype="agent_person">Thoburn, Joseph B. (Joseph Bradfield), 1866-1941</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">White Eagle, active 1930</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Winkler, Ernest William, 1875-1960</part>
</persname>
<persname>
<part localtype="agent_person">Wittliff, William D.</part>
</persname>
<corpname rules="rda" source="local_beinecke">
<part localtype="agent_corporate_entity">Betty Smedley (Firm)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">Ray S. Walton (Firm)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3503949"
id="aspace_3feddddd75571a7ddf7953be62477ce9"
level="series">
<did>
<unittitle>Correspondence and Financial Records</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1907–1984" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_48249fdcf04ed75a9bc9a90ed72c370a">
<head>Scope and Contents</head>
<p>This series primarily contains correspondence, invoices, purchase orders, and other records of Betty Dunn Smedley's rare book business. Also included are correspondence, notes, ephemera, clippings, and photographs related to her early research on the Red River and Texas and Colorado history, and her work as curator of the Hoblitzelle Theater Collection at the University of Texas at Austin. Correspondents include historians J. L. Allhands and J. Evetts Haley, printers and publishers such as Carl Hertzog, Alfred A. Knopf, William Witliff, and Ray S. Walton, artist José Cisneros, New York Public Library curator George Freedley, and University of Texas librarian Fannie Ratchford. The series also contains a small amount of personal papers and letters of Smedley and her husband, George Smedley.</p>
</scopecontent>
<arrangement id="aspace_ac6d00270889fe8c9ec926f20bd34df2">
<head>Arrangement</head>
<p>Arranged alphabetically by folder title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3504306"
id="aspace_a7ccec2945eacf60fbe334f5f569f522"
level="file">
<did>
<unittitle>Account book</unittitle>
<unitdatestructured altrender="1972" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1972">1972</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_a7ccec2945eacf60fbe334f5f569f522_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a7ccec2945eacf60fbe334f5f569f522_c2"
localtype="folder"
parent="aspace_a7ccec2945eacf60fbe334f5f569f522_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3504016"
id="aspace_a317cc3235fbaf0399be17de703cadd0"
level="file">
<did>
<unittitle>Aldredge Bookstore [Wright Howes]</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
</daterange>
</unitdatestructured>
<unitdatestructured altrender="1974–1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1974">1974</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_a317cc3235fbaf0399be17de703cadd0_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_a317cc3235fbaf0399be17de703cadd0_c2"
localtype="folder"
parent="aspace_a317cc3235fbaf0399be17de703cadd0_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503952"
id="aspace_aff814148f18050374b80972fb91bde4"
level="file">
<did>
<unittitle>Aleksandr Solzhenitsyn symposium</unittitle>
<unitdatestructured altrender="1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1977">1977</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_aff814148f18050374b80972fb91bde4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_aff814148f18050374b80972fb91bde4_c2"
localtype="folder"
parent="aspace_aff814148f18050374b80972fb91bde4_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503953"
id="aspace_3b1cec76fc059cf649d52b8bbdb4375d"
level="file">
<did>
<unittitle>Allhands, J. L.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3504017"
id="aspace_f3cc1997e8a34853c9c5ac95b12a7f3d"
level="item">
<did>
<unittitle>Correspondence and papers</unittitle>
<unitdatestructured altrender="1930–1978" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1930">1930</fromdate>
<todate standarddate="1978">1978</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_f3cc1997e8a34853c9c5ac95b12a7f3d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f3cc1997e8a34853c9c5ac95b12a7f3d_c2"
localtype="folder"
parent="aspace_f3cc1997e8a34853c9c5ac95b12a7f3d_c1">4-7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3504018"
id="aspace_3aabd08b0bf0f6af5c6d818bd6bebaab"
level="item">
<did>
<unittitle>Papers related to <title>
<part>Uriah Lott</part>
</title>
</unittitle>
<unitdatestructured altrender="1940–1974" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1940">1940</fromdate>
<todate standarddate="1974">1974</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_3aabd08b0bf0f6af5c6d818bd6bebaab_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3aabd08b0bf0f6af5c6d818bd6bebaab_c2"
localtype="folder"
parent="aspace_3aabd08b0bf0f6af5c6d818bd6bebaab_c1">8-9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3504019"
id="aspace_b0e5d7d1e570e95fd17e9805f2c2106a"
level="item">
<did>
<unittitle>Papers related to <title>
<part>Gringo Builders</part>
</title>
</unittitle>
<unitdatestructured altrender="1931–1974" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931">1931</fromdate>
<todate standarddate="1974">1974</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_b0e5d7d1e570e95fd17e9805f2c2106a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b0e5d7d1e570e95fd17e9805f2c2106a_c2"
localtype="folder"
parent="aspace_b0e5d7d1e570e95fd17e9805f2c2106a_c1">10-11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3504020"
id="aspace_3225c78bc64f9fa450397be8368a315c"
level="item">
<did>
<unittitle>Papers related to <title>
<part>Boll Weevil</part>
</title>
</unittitle>
<unitdatestructured altrender="1939–1947" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1939">1939</fromdate>
<todate standarddate="1947">1947</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_3225c78bc64f9fa450397be8368a315c_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3225c78bc64f9fa450397be8368a315c_c2"
localtype="folder"
parent="aspace_3225c78bc64f9fa450397be8368a315c_c1">12-13</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3503954"
id="aspace_754cb334ab6c796255e26fd9a62152bd"
level="file">
<did>
<unittitle>Anderson, Leon</unittitle>
<unitdatestructured altrender="1972–1974" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1974">1974</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_754cb334ab6c796255e26fd9a62152bd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_754cb334ab6c796255e26fd9a62152bd_c2"
localtype="folder"
parent="aspace_754cb334ab6c796255e26fd9a62152bd_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503956"
id="aspace_1b786ae5e4a2592ea208d0ff129c804f"
level="file">
<did>
<unittitle>"Banks etc. pd. bills"</unittitle>
<unitdatestructured altrender="1972" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_1b786ae5e4a2592ea208d0ff129c804f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_1b786ae5e4a2592ea208d0ff129c804f_c2"
localtype="folder"
parent="aspace_1b786ae5e4a2592ea208d0ff129c804f_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503957"
id="aspace_4c2dfcef67ab8467530a705146a1f4b6"
level="file">
<did>
<unittitle>Buckingham, Lewis</unittitle>
<unitdatestructured altrender="1978–1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1978">1978</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_4c2dfcef67ab8467530a705146a1f4b6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4c2dfcef67ab8467530a705146a1f4b6_c2"
localtype="folder"
parent="aspace_4c2dfcef67ab8467530a705146a1f4b6_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503958"
id="aspace_5fd0f7e2e9e0ec15b90cd23ba326afe6"
level="file">
<did>
<unittitle>Cisneros, José</unittitle>
<unitdatestructured altrender="1972–1977" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1977">1977</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_5fd0f7e2e9e0ec15b90cd23ba326afe6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5fd0f7e2e9e0ec15b90cd23ba326afe6_c2"
localtype="folder"
parent="aspace_5fd0f7e2e9e0ec15b90cd23ba326afe6_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503959"
id="aspace_2158aaf56d5b24951fa08ee191fb695b"
level="file">
<did>
<unittitle>"Corr."</unittitle>
<unitdatestructured altrender="1981" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1981">1981</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_2158aaf56d5b24951fa08ee191fb695b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2158aaf56d5b24951fa08ee191fb695b_c2"
localtype="folder"
parent="aspace_2158aaf56d5b24951fa08ee191fb695b_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503960"
id="aspace_f57d41ddfe874a30edc95fae841e1276"
level="file">
<did>
<unittitle>Correspondence and ephemera</unittitle>
<unitdatestructured altrender="1927–1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1927">1927</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_f57d41ddfe874a30edc95fae841e1276_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f57d41ddfe874a30edc95fae841e1276_c2"
localtype="folder"
parent="aspace_f57d41ddfe874a30edc95fae841e1276_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503955"
id="aspace_dc8dee83cf98c17d069d6c3eade9ad1f"
level="file">
<did>
<unittitle>Correspondence and ephemera</unittitle>
<unitdatestructured altrender="1951–1981" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1951">1951</fromdate>
<todate standarddate="1981">1981</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_dc8dee83cf98c17d069d6c3eade9ad1f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_dc8dee83cf98c17d069d6c3eade9ad1f_c2"
localtype="folder"
parent="aspace_dc8dee83cf98c17d069d6c3eade9ad1f_c1">20-23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503961"
id="aspace_d6dc8dbac8fb6445da1745378a988e53"
level="file">
<did>
<unittitle>Correspondence and printed material</unittitle>
<unitdatestructured altrender="1937–1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1937">1937</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_d6dc8dbac8fb6445da1745378a988e53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d6dc8dbac8fb6445da1745378a988e53_c2"
localtype="folder"
parent="aspace_d6dc8dbac8fb6445da1745378a988e53_c1">24-25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503962"
id="aspace_3a226dc2bb2f6f8135df93ab8e1a9c6a"
level="file">
<did>
<unittitle>Dobie, Dudley</unittitle>
<unitdatestructured altrender="1969–1980" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1980">1980</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_3a226dc2bb2f6f8135df93ab8e1a9c6a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3a226dc2bb2f6f8135df93ab8e1a9c6a_c2"
localtype="folder"
parent="aspace_3a226dc2bb2f6f8135df93ab8e1a9c6a_c1">26-27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503963"
id="aspace_b709aa1f00b06b69ce5eb473909d1c01"
level="file">
<did>
<unittitle>Eakin Publications</unittitle>
<unitdatestructured altrender="1982–1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1982">1982</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_b709aa1f00b06b69ce5eb473909d1c01_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b709aa1f00b06b69ce5eb473909d1c01_c2"
localtype="folder"
parent="aspace_b709aa1f00b06b69ce5eb473909d1c01_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503964"
id="aspace_93437a1428127fea04a3b9cde4fd6e80"
level="file">
<did>
<unittitle>Encino Press/William Witliff</unittitle>
<unitdatestructured altrender="1972–1983" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1972">1972</fromdate>
<todate standarddate="1983">1983</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_93437a1428127fea04a3b9cde4fd6e80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_93437a1428127fea04a3b9cde4fd6e80_c2"
localtype="folder"
parent="aspace_93437a1428127fea04a3b9cde4fd6e80_c1">29-30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503965"
id="aspace_6a3850e348faee6bf0c93c123217b6f6"
level="file">
<did>
<unittitle>Ephemera and clippings</unittitle>
<unitdatestructured altrender="1958–1976" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1958">1958</fromdate>
<todate standarddate="1976">1976</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_6a3850e348faee6bf0c93c123217b6f6_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_6a3850e348faee6bf0c93c123217b6f6_c2"
localtype="folder"
parent="aspace_6a3850e348faee6bf0c93c123217b6f6_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503966"
id="aspace_12763027f0fab4afd0f0e4f479dfc548"
level="file">
<did>
<unittitle>Freedley, George (New York Public Library Theatre Collection)</unittitle>
<unitdatestructured altrender="1956–1959" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1956">1956</fromdate>
<todate standarddate="1959">1959</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_12763027f0fab4afd0f0e4f479dfc548_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_12763027f0fab4afd0f0e4f479dfc548_c2"
localtype="folder"
parent="aspace_12763027f0fab4afd0f0e4f479dfc548_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503967"
id="aspace_ee533ccf50e8caff7e1eedfe829a88b7"
level="file">
<did>
<unittitle>Fannie Ratchford clippings</unittitle>
<unitdatestructured altrender="1932" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_ee533ccf50e8caff7e1eedfe829a88b7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ee533ccf50e8caff7e1eedfe829a88b7_c2"
localtype="folder"
parent="aspace_ee533ccf50e8caff7e1eedfe829a88b7_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503968"
id="aspace_271bcf06e977ece3f2a1b7d6c223d4f9"
level="file">
<did>
<unittitle>"Fannie Ratchford in England and Irvington, N.Y. 1937"</unittitle>
<unitdatestructured altrender="1932–1958" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1932">1932</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_271bcf06e977ece3f2a1b7d6c223d4f9_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_271bcf06e977ece3f2a1b7d6c223d4f9_c2"
localtype="folder"
parent="aspace_271bcf06e977ece3f2a1b7d6c223d4f9_c1">34-35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503969"
id="aspace_afa07fd6cb4345d945296e5b2a756f0e"
level="file">
<did>
<unittitle>"Golden File" [clippings, ephemera, notes, business records]</unittitle>
<unitdatestructured altrender="1962–1982" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1962">1962</fromdate>
<todate standarddate="1982">1982</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389237 /locations/9"
containerid="39002140878548"
encodinganalog="Paige 15"
id="aspace_afa07fd6cb4345d945296e5b2a756f0e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_afa07fd6cb4345d945296e5b2a756f0e_c2"
localtype="folder"
parent="aspace_afa07fd6cb4345d945296e5b2a756f0e_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503970"
id="aspace_abd0b842e1e6360b633ad3333569439b"
level="file">
<did>
<unittitle>Haley, J. Evetts and Donald Ornduff</unittitle>
<unitdatestructured altrender="1955–1984" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1955">1955</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_abd0b842e1e6360b633ad3333569439b_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_abd0b842e1e6360b633ad3333569439b_c2"
localtype="folder"
parent="aspace_abd0b842e1e6360b633ad3333569439b_c1">37-38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503971"
id="aspace_da89b2cde31bd0a2512bf563ec578f30"
level="file">
<did>
<unittitle>Haley, J. Evetts, "Diary of Michael Erskine"</unittitle>
<unitdatestructured altrender="1979" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1979">1979</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_da89b2cde31bd0a2512bf563ec578f30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_da89b2cde31bd0a2512bf563ec578f30_c2"
localtype="folder"
parent="aspace_da89b2cde31bd0a2512bf563ec578f30_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503972"
id="aspace_d91a9ef35ca545accbf4a9ab11b46fda"
level="file">
<did>
<unittitle>Hedgpeth, Don</unittitle>
<unitdatestructured altrender="1975–1976" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1975">1975</fromdate>
<todate standarddate="1976">1976</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_d91a9ef35ca545accbf4a9ab11b46fda_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_d91a9ef35ca545accbf4a9ab11b46fda_c2"
localtype="folder"
parent="aspace_d91a9ef35ca545accbf4a9ab11b46fda_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503973"
id="aspace_2e7b11867776bc0d185c6ac2e912d52f"
level="file">
<did>
<unittitle>Hertzog, Carl</unittitle>
<unitdatestructured altrender="1969–1984" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1984">1984</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_2e7b11867776bc0d185c6ac2e912d52f_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_2e7b11867776bc0d185c6ac2e912d52f_c2"
localtype="folder"
parent="aspace_2e7b11867776bc0d185c6ac2e912d52f_c1">41-42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503974"
id="aspace_a8590e18314e1f0f1f43dc39f96f3572"
level="file">
<did>
<unittitle>Holman, David/Wind River Press</unittitle>
<unitdatestructured altrender="1974–1981" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1974">1974</fromdate>
<todate standarddate="1981">1981</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_a8590e18314e1f0f1f43dc39f96f3572_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_a8590e18314e1f0f1f43dc39f96f3572_c2"
localtype="folder"
parent="aspace_a8590e18314e1f0f1f43dc39f96f3572_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503975"
id="aspace_0688928af914097f347d84d3fc7ef85a"
level="file">
<did>
<unittitle>Huson, Hobart</unittitle>
<unitdatestructured altrender="1969–1975" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1975">1975</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_0688928af914097f347d84d3fc7ef85a_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_0688928af914097f347d84d3fc7ef85a_c2"
localtype="folder"
parent="aspace_0688928af914097f347d84d3fc7ef85a_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3503976"
id="aspace_9e8ad49913e01bc53b45fdd0f925e478"
level="file">
<did>
<unittitle>"Important letters, etc."</unittitle>
<unitdatestructured altrender="1969–1981" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1969">1969</fromdate>
<todate standarddate="1981">1981</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389238 /locations/9"
containerid="39002140878555"
encodinganalog="Paige 15"
id="aspace_9e8ad49913e01bc53b45fdd0f925e478_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_9e8ad49913e01bc53b45fdd0f925e478_c2"
localtype="folder"
parent="aspace_9e8ad49913e01bc53b45fdd0f925e478_c1">45</container>
</did>