-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path921.xml
3825 lines (3825 loc) · 228 KB
/
921.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.sala">beinecke.sala</recordid>
<otherrecordid localtype="BIB">11400586</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the George Augustus Sala Collection
</titleproper>
<titleproper localtype="filing">Sala (George Augustus) Collection</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>June 2013</date>
<num>GEN MSS 952</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">11400586</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-25, 26 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="4">4</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="96">96</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:48:30-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:48</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/921" level="collection">
<did>
<unittitle>George Augustus Sala collection</unittitle>
<unitid>GEN MSS 952</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>10.51</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">26 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1828">1828</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_13e982d6540c92fa0febc6e4454be1d6">The George Augustus Sala Collection consists of papers accumulated by Ralph Straus in writing his biography of Sala; and autograph manuscript correspondence and writings by Sala acquired from other sources. Papers of Straus consist of autograph letters, signed, to and from Sala, members of his family, and others; autograph manuscript writings and notes by Sala; clippings of articles by and about Sala; photographs, engraved portraits, and printed caricatures of Sala; and autograph manuscript notes and correspondence of Straus.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Sala, George Augustus, 1828-1895</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Straus, Ralph, 1882-1950</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_dedc8c5ca561d9a5c6a8e01e3e0e7961">
<head>Immediate Source of Acquisition</head>
<p>Ralph Straus Papers Relating to George Augustus Sala: purchased from Pickering and Chatto on the Plain Fund, 1946.</p>
<p>Materials from Other Sources: acquired from various sources, 1937-2005. For more information, see the finding aid container list.</p>
</acqinfo>
<accessrestrict id="aspace_a63471afc67f479ef6e3203f63785466">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_efe9c2b72eb2e33996f9cdd6acf63d46">
<head>Conditions Governing Use</head>
<p>The George Augustus Sala Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_1a285794f320ba46a897dbdf57ea80c7">
<head>Preferred Citation</head>
<p>George Augustus Sala Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_3bc32ec78544809e6099ea185c8c1fe1">
<head>Processing Information</head>
<p>This collection consists of materials formerly classed as MS Vault Shelves Sala, Ms Vault Sala, Uncat MS Vault 801, and Uncat Ms Vault File. In 2013, the collection received a baseline level of processing, including partial rehousing and minimal organization. The collection was reclassed under one call number, materials were organized by acquisition, and containers were renumbered in a single sequence. Most folder titles and folder notes were adapted from card catalog descriptions; some were assigned by Library staff. Chronological arrangement within groups of correspondence was retained, and card catalog see references from names of correspondents were adapted as subseries notes. Some names of correspondents were updated to conform to Library of Congress name authorities. Folder titles were not verified against contents.</p>
</processinfo>
<relatedmaterial id="aspace_d8342e49a8287bb7ab25ac58dc8c3e47">
<head>Associated Materials</head>
<p>Sala, George Augustus. Contributions to periodicals (Ip Sa31 C1 and Ip Sa31 +C1).</p>
<p>Sala, George Augustus. Pamphlets by and about George Augustus Henry Sala (Ip Sa31 1).</p>
<p>Other books owned by Sala may be found in the online catalog by searching "Sala, George Augustus" as a special collections subject or "Ip Sa31" as a local call number.</p>
<p>Drawings owned by Sala were transferred to theYale University Art Gallery in 1953.</p>
</relatedmaterial>
<bioghist id="aspace_9daef145567e279246c81a5f8b78c374">
<head>George Augustus Sala (1828-1895)</head>
<p>English journalist; contributed to the <title localtype="simple" render="italic">
<part>Daily Telegraph</part>
</title> and other serials; and published collections of his articles. Sala was a son of singer and actress Henrietta Catherina Florentina Simon Sala (1789?-1860). He married Harriet Elizabeth Hollingsworth Sala (died 1885) in 1859, and he married Bessie Stannard Sala in 1890.</p>
</bioghist>
<bioghist id="aspace_6f74dc548c961a0339046578701f7c58">
<head>Ralph Straus (1882-1950)</head>
<p>English author and journalist. Author of <title localtype="simple" render="italic">
<part>Sala: the Portrait of an Eminent Victorian</part>
</title> (London: Constable, [1942]).</p>
</bioghist>
<scopecontent id="aspace_f3fdb26d4a10ba57e710a6bf8909a08e">
<head>Scope and Contents</head>
<p>The George Augustus Sala Collection consists of papers accumulated by Ralph Straus in writing his biography of Sala; and autograph manuscript correspondence and writings by Sala acquired by the Library from other sources. Papers of Straus consist of autograph letters, signed, to and from Sala, members of his family, and others; autograph manuscript writings and notes by Sala; clippings of articles by and about Sala; photographs, engraved portraits, and printed caricatures of Sala; and autograph manuscript notes and correspondence of Straus.</p>
</scopecontent>
<arrangement id="aspace_b8b3d63ce1090061b5bcccbb9fd6282c">
<head>Arrangement</head>
<p>Organized into two series: I. Ralph Straus Papers Relating to George Augustus Sala, 1828-1942. II. Materials from Other Sources, 1855-1899.</p>
</arrangement>
<controlaccess>
<title identifier="http://id.loc.gov/authorities/names/n80067090"
source="lcsh">
<part localtype="uniform_title">Daily telegraph (London, England)</part>
</title>
<subject source="local">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">19th century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject source="local">
<part localtype="topical">Journalism</part>
<part localtype="geographic">England</part>
</subject>
<subject source="local">
<part localtype="topical">Journalists</part>
<part localtype="geographic">England</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Engravings (prints)</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">England</part>
<part localtype="temporal">20th Century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Journalists</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname source="local">
<part localtype="agent_person">Sala, Bessie Stannard</part>
</persname>
<persname>
<part localtype="agent_person">Sala, George Augustus, 1828-1895</part>
</persname>
<persname source="local">
<part localtype="agent_person">Sala, Harriet Elizabeth Hollingsworth, -1885</part>
</persname>
<persname source="local">
<part localtype="agent_person">Sala, Henrietta Catherina Florentina Simon, 1789?-1860</part>
</persname>
<famname>
<part localtype="agent_family">Sala family</part>
</famname>
<persname rules="aacr">
<part localtype="agent_person">Straus, Ralph, 1882-1950</part>
</persname>
<persname source="local">
<part localtype="agent_person">Straus, Ralph, 1882-1950 (Sala)</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/300237"
id="ref13"
level="series">
<did>
<unittitle>Ralph Straus Papers Relating to George Augustus Sala</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>10.09</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">15 boxes</physdesc>
<unitdatestructured altrender="1841-1942" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1841">1841</fromdate>
<todate standarddate="1942">1942</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_b9f0defeb7ecd1654512bb691883b122">
<head>Arrangement</head>
<p>Organized into four subseries: Correspondence, arranged by names of Sala and his family, and subarranged chronologically within each name; Writings by George Augustus Sala, arranged alphabetically by work title; Other Papers of George Augustus Sala, arranged alphabetically by folder title; and Other Papers of Ralph Straus, arranged alphabetically by folder title.</p>
</arrangement>
<scopecontent id="aspace_315bb35de23db018ccc11d753ae6c09e">
<head>Scope and Contents</head>
<p>Correspondence consists of autograph letters, signed, from and to George Augustus Sala; Harriet Elizabeth Hollingsworth Sala; and Bessie Stannard Sala; and to Henrietta Catherina Florentina Simon Sala. Also present are typed transcripts of letters from George Augustus Sala, and third-party autograph letters, signed, concerning Sala. Writings of George Augustus Sala contains autograph manuscript drafts and clippings of articles and stories; autograph manuscript notes and fragments; and a disbound copy of Sala's autobiography, <title localtype="simple" render="italic">
<part>The Life and Adventures of George Augustus Sala</part>
</title> (London: Cassell, 1895). Other Papers of George Augustus Sala contain additional writings fragments, family papers, and ephemera. Other Papers of Ralph Straus contains autograph manuscript notes, correspondence, and research materials. Original folders have been retained; additional fragments of notes by Straus, apparently concerning Sala, are affixed to some.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/300238"
id="ref15"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/300239"
id="ref16"
level="file">
<did>
<unittitle>Sala, George Augustus</unittitle>
</did>
<scopecontent id="aspace_41fbae85167a55588693184c6162edf4">
<head>Scope and Contents</head>
<p>Outgoing letters to:</p>
<p>Allen, William, 1865; Appleton, G. Webb (George Webb), 1887; Archibald, E. M. (Edward Mortimer), 1864; Arnold [Edwin?], 1886; [Ashely, Sarah?], [1857]; Baccani, A., 1874-1882; Bennett, W. C. (William Cox), 1875; Beresford Hope, A. J. B. (Alexander James Beresford), 1862-1883; Berlyn, Peter, 1872; Birtles, J., 1871; Blackburn, Henry, 1871; Boehm, [Joseph Edgar, Sir?], 1881; Boehm, Louise Frances, 1881; Boshell, Mary, 1878; Boutcher, William, 1878; Bradley, Edward, Reverend, 1880; Bridgman, John, 1862; Bright, John, 1878; Brooks, Shirley, [1858?]-[1869?]; Brooks, Shirley, 1874; Buckstone, John Baldwin, 1868; Buckstone, [Isabella Copeland?], 1879, envelope only; Burnand, F. C. (Francis Cowley), 1894; Burrows, John Cordy, Sir, 1873;</p>
<p>Caley, T. Law, 1865; Caralampi, Madam, 1888; Cassell, Petter & Galpin, 1869; Chambers, J., 1874; Chapman, Frederic, [1859?]-1873; Chatto, Andrew, 1880; Christie, John, 1861; Clarke, Hyde, 1881; Clayton, Benjamin, 1853-1857; Colborne, Hon. Major, 1873; Cole, Henry, [1874?]-1881; Collins, Mortimer, 1870, envelope only; Collins, Wilkie, [1879]; Cooper, Thompson, 1882; <title localtype="simple" render="italic">
<part>Cornhill Magazine</part>
</title>, 1860; Crowdy, James, 1882; Cruikshank, George, 1860-1877; Cruikshank, Eliza Widdison, 1876; Curzon, Frank, 1860;</p>
<p>Dallas, E. S. (Eneas Sweetland), 1877; Dalziel Brothers, 1878; Delaford, F. T., 1883; Dickens, Charles (1837-1896), 1869; Dicks, John, 1886; Dixon, William Hepworth, [1861?]-[1867]; Downing, Stuart, 1881; Draper, Edward, 1865; Edlin, Peter, Sir, 1891; Evans, W. R., 1872; Faithfull, Emily, 1878-1882; Finlay, Frank, 1877; Ford, Lieutenant Colonel, 1870; Gilbert, John, Sir, 1872; Gilbertson, E., 1879; Godwin, George, 1879; Gower, Ronald Sutherland, Lord, 1882;</p>
<p>Hallé, Charles, 1886; Hamilton, Walter, 1874-1882; Hancock, Laurence, 1890; Harrison, Ralph, [1888?]; Hay, Miss, 1882; Henty, G. A. (George Alfred), 1868; Hitchman, Master, 1891; Holdsworth, Edmund William Hunt, 1883; Hollingshead, John, 1879; Hood, Tom, 1871; Hooper, G. F., 1886; Hunt, Thornton Leigh [1872?]; Ingram, William, Sir, [1877]; Irving, Henry, Sir, 1880-1882; James, Daniel, 1884; Jennings, Louis J. (Louis John), 1879; Jopling, Mrs., 1886; Kenney, Charles Lamb, [1858]-1879; Kent, Charles, 1873-1882; Kerr, Edith, 1884; Kitton, Frederic George, 1884;</p>
<p>Lane, C. H., 1860; Latey, John, [1874?]-[1884]; Leland, Charles Godfrey, 1872-1887; Leslie, W., 1882; Levien, J., [1872?]; Lewis, Arthur, 1875, envelope only; Lindsay, Lady, 1879-1881; Lindsay, [Effie?], 1887; Loftus, Captain, [1885]; Loveday, H. J. (Henry J.), 1887; Lowe, Miss, 1882; Lowe, James, 1862; Lucas, Samuel, 1859; McMichael, T. C., 1881; Marshall, Julian, 1891; Mayhew, Mrs., [1869?]; Mayhew, Augustus, [1858]; Mayhew, Horace, 1859-1870; Melhuish, Frank H., 1893-1894; Menzies, Florence, 1886-1891; Mott, Mr., 1873; Murphy, J. Stormont, 1879-1884; Murray, T. Douglas, 1878; Newhall, Mrs., [1880?]; Nolan, W. M., 1883;</p>
<p>Palmer, C. S., 1882; Parry, [John?] W., Mrs., 1881; Payn, James, 1882; Payne, J. Bertand (James Bertrand), [1868?]; Pollock, Walter Herries, 1883-1890; Pollonnais, Gaston, 1860; Pond, Christopher, 1871; Pond, R[ichard?] R., 1856-[1862]; Pym, Horace N., 1878-[1879?], 1881, envelope only; Ravenscroft, Francis, 1874, envelope only; Redway, George, 1884; Reeves & Turner, 1881; Richardson, Benjamin Ward, 1877-1888; Roach, Reverend T., 1881; Robson, John, 1875, envelope only; Robson printingworks, [1877?]-1879, [1879?], 2 enveloped only; Rosenblatt, Julian, 1880; Ross, W. S. Joy, 1889; Russell, George William Erskine, 1884; Russell, William Howard, Sir, 1874-[1893?];</p>
<p>
<title localtype="simple" render="italic">
<part>Saturday Review</part>
</title>, 1888; Scott, Clement, [1873]; Sharpe, Sutton, [1868?]; Sieveking, Edward H. (Edward Henry), 1879; Skirrow, Charles F., Mrs., 1878-[1887]; Skirrow, Charles F., Mr. and Mrs., 1884; Smith, George Barnett, 1882; Smith, G. Reeves, 1877; Smith, George, [1859?]; Smith, Mrs., 1875; Stapleton-Cotton, Miss, [1881?]; Story, [Ada Maud Broadwood?], [1891?], [1894]; Temple Bar, printer of, [1862], [1862]; Thompson, [Henry Yates?], 1881; Thomson, P. M., Mrs., 1860; Timmins, Samuel, 1881; Tinsley, William, 1865-[1870?]; Toole, John Lawrence, 1878-1886; Tout & Company, bookbinders, 1889; Train, George Francis [1860?]; Turner, Godfrey, 1873-1880;</p>
<p>Vizetelly, Henry, 1858-1859; Vizetelly, Miss, 1887; Ward, Edward Matthew, 1863-1878; West, W. A., 1854; Wills, William Henry, [1856]- 1863; Wilson, [1859]; Wood, J. S., 1881; Woolner, Thomas, 1878; Wright, A., 1890; Wrigley, Joseph, 1860; unidentified editors and others, about the funeral of Watts Phillips 1874; unidentified correspondents, 1862-1894.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/300240"
id="ref17"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1853-1859" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1853">1853</fromdate>
<todate standarddate="1859">1859</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300241"
id="ref19"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1860-1862" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1862">1862</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300242"
id="ref21"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1863-1866" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1863">1863</fromdate>
<todate standarddate="1866">1866</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300243"
id="ref23"
level="file">
<did>
<unittitle>Letters</unittitle>
<unitdatestructured altrender="1867-1869" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1867">1867</fromdate>
<todate standarddate="1869">1869</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300244"
id="ref24"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1870-1872" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1870">1870</fromdate>
<todate standarddate="1872">1872</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300245"
id="ref26"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1873-1874" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873">1873</fromdate>
<todate standarddate="1874">1874</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27294 /locations/9"
containerid="39002091550013"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300246"
id="ref28"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1875-1876" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875">1875</fromdate>
<todate standarddate="1876">1876</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27295 /locations/9"
containerid="39002091550021"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300247"
id="ref30"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1877-1878" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27295 /locations/9"
containerid="39002091550021"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300248"
id="ref32"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1879" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1879">1879</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27295 /locations/9"
containerid="39002091550021"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300249"
id="ref34"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1880-1881" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1880">1880</fromdate>
<todate standarddate="1881">1881</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27295 /locations/9"
containerid="39002091550021"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300250"
id="ref36"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1882" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1882">1882</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27295 /locations/9"
containerid="39002091550021"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300251"
id="ref38"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1883-1884" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1883">1883</fromdate>
<todate standarddate="1884">1884</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27296 /locations/9"
containerid="39002091550039"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300252"
id="ref40"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1885-1886" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1885">1885</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27296 /locations/9"
containerid="39002091550039"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300253"
id="ref42"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1887-1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1887">1887</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27296 /locations/9"
containerid="39002091550039"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300254"
id="ref44"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1890-1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890">1890</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27296 /locations/9"
containerid="39002091550039"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/300255"
id="ref47"
level="file">
<did>
<unittitle>Sala, George Augustus</unittitle>
</did>
<scopecontent id="aspace_bed942caf7915be7e0b3f754e9fed494">
<head>Scope and Contents</head>
<p>Incoming letters from:</p>
<p>A'Becket, Arthur William, 1892-1894; Abercorn, James Hamilton, Duke of, 1976; Aberdeen and Temair, John Campbell Hamilton-Gordon, Marquess of, 1877; Aïdé, Hamilton, [1899?]; Alexander, George, Sir, 1890; Saxe-Coburg and Gotha, Alfred, Duke of, 1879; Armitage, Edward, 1872; Arnold, Edwin, 1870-[1891?]; Arnold, Julian, [1874-1878?];</p>
<p>Bancroft, Marie; Bancroft, Squire, 12884; Barnum, P. T. (Phineas Taylor), 1890; Barrett, Wilson, 1882-1884; Bayard, Thomas F., 1894; Beatty-Kingston, W. (William), 1876, 1890; Bedford, Bessie, 1895; Bedford, John T., 1874-1881; Bellew, J. C. M. (John Chippendall Montesquieu), 1870; Besant, Walter, Sir, 1881-1890; Black, William, [1886?]-[1893?]; Blackwood, Helen, Lady, [1887?]; Blandford, Marquess of, [1882]; Braddon, M. E. (Mary Elizabeth), [1861?]-1886; Bradley, Edward, Reverend, 1886; Brake, William N., 1891; Brooks, Shirley, 1868-1874; Burdett-Coutts, Angela Georgina, 1881-1891; Burdett-Coutts, W. (William), 1881-1890; Burnaby, Fred, [1881?]; Burnaby, Lizzie, 1883; Burnand, F. C. (Francis Cowley), [1879?]-1889; Byron, Henry J. (Henry James), 1860-1882;</p>
<p>Churchill, Randolph Henry Spencer, Lord, 1894; Colam, John, 1879; Cole, Henry, Sir, 1875; Collins, Wilkie, 1879; Combermere, Mary Woolley Gibbings Cotton, Viscountess, [1879]-1887; Corelli, Marie, 1886; Cruikshank, Eliza Widdison, 1878; Cruikshank, George, 1868, [1875]; Daryl, Sidney, 1886; Delapryme, Charles, 1894; Dickens Charles (1837-1896), 1870-1894; Dilke, Charles Wentworth, Sir, 1879, 1890; Dixon, William Hepworth, 1878; Dresser, Christopher; Dufferin and Ava, Frederick Temple Hamilton-Temple-Blackwood, Marquess of, 1891-1895; Durham, George Frederick D'Arcy Lambton, Earl of, 1879;</p>
<p>Ebsworth, Joseph Woodfall, 1883; Faithfull, Emily, 1883; Fraser, William Augustus, Sir, 1879; Frith, William Powell, 1888; Fife, Alexander William George Duff, Duke of, [1881]-[1893?]; Gallenga, Antonio Carlo Napoleone, 1879; Gladstone, Helen, 1895; Gladstone, W. E. (William Ewart), 1895; Gower, Ronald Sutherland, Lord, 1887-1895; Grunerwald, Alice A., 1886; Grunerwald, Otto, 1886;</p>
<p>Hare, John Fairs, Sir, 1889; Hatton, Joseph, 1881; Hawkes, Charles P., 1893; Hennicker-Heaton, John, Sir, 1891; Herbert, Auberon, 1888; Herkomer, Hubert von, Sir, 1881; Hogarth, Edward, 1870; Hogarth, Georgina, 1878-1879; Hogarth, William, 1894; Hollingshead, John, 1869-1892; Hood, Tom, [1870]; Hunt, J. H., Reverend, 1875; Hunt, William Holman, 1880; Hyndman, H. M (Henry Mayers), 1891; Irving, Henry, 1880; James, Henry James, Baron, [1880]; Janson, Henry, 1887; Johnson, W. A., 1887; Jones, J. D., 1893; Kinnaird, Arthur, 1884; Knollys, Francis, 1895; Knox, Alexander, 1894;</p>
<p>Labouchers, Henry Du Pre, [1877], [1887?]; Lathom, Edward George Bootle Wilbraham, Earl of, 1882; Lefevere, Shaw, 1882; Le Gallienne, Richard, 1887; Leland, Charles Godfrey, 1874; Le Sage, John Merry, Sir, 1884; Lever, W. H., 1890; Lindsay, Effie Grout, [1887?]; Littledale, Ana, 1887; London, Brighton, and South Coast Railway, 1880; Lytton, Edward Robert Bulwer Lytton, Earl of, 1882;</p>
<p>McDonnell, Schomberg Kerr, Sir, 1889; Mackenzie, Morell, 1887; Macquoid, Thomas Robert, 1879; Malet, Edward, Sir, 1890-1891; Marlborough, George Charles, Duke of, [1884]; Marriott, Fred W., 1881; Marsden, Kate, 1891; Martineau, J. P., 1887; Mayhew, Athol, 1890; Mayhew, Augustus, 1873; Montalba, Clara, 1893; Moore, Sam, 1883; Morier, Robert, Sir, 1892; [Morocco?] Emperor of, [1880?]; Nattali, Miss M. H., [1882]-[1889?];</p>
<p>O'Connor, Daniel, 1885; Ogilvie, George A., [1886?]; [Orton, Arthur?]; O'Rell, Max, 1893; Paul, Howard, 1873; Peel, Robert, 1884, 1889; Phillips, Alfred R., 1874; Phillips, Watts, [1872?]-[1873]; Pirbright, Henry de Worms, 1881; Pollock, Walter Herries, 1880-1881; Prior, Melton, 1894; Pym, Horace N., 1878; Quaritch, Bernard, 1879, 1882; Quigley, William T., 1887; Quilter, Harry, [1889?];</p>
<p>Rabelais Club, 1882-1883; Rawson, C., 1894; Reade, Charles, [1872?], [188-?]; Reay, Fanny Georgiana Jane Hasler Mitchell, Baroness, 1884; Redford, George, 1890; Richmond, Charles Henry Gordon-Lennox, Duke of, 1879; Richmond, Harold W., 1895; Robertson, W. W., [1882?]; Rose, George, 1881; Rosebery, Archibald Philip Primrose, Earl of, 1879-1895; Roseberry, Hannah, Lady, 1883, 1888; Rothschild, Ferdinand, Baron, [1886?]; Russell, Charles, Sir, 1888; Russell, George William Erskine, [1886?]-[1890?]; Russell, William Howard, Sir, 1881-1890;</p>
<p>Satow, Y. Ernest, 1882; Scott, Clement, 1883; Shaw, Bernard V., 1881; Shaw, Eyre Masseym 1876; Soulsby, William, Sir, 1894; Spurgeon, C. H. (Charles Haddon), 1888-1889; Stephen, Leslie, 1889; Stevens, Henry, 1883; Stone, Marcus, 1870; Stout, Robert, 1886; Sutherland, George Grenville William, Duke of, [1892?]; Sympson, E. M., 1881; Taglionni, Marie, 1872; Taylor, W. Grigor, 1892; Terry, Ellen, Dame, 1887; Terry, Edward; Thaddeus, Henry Jones, [1893?]; Theodoli, Marchesa, 1893; Thorpe, B., Lieutenant, 1892; Tisdell, C. E., Reverend, 1892; Toole, John Lawrence, 1880, 1882; Turner, John, 1879;</p>
<p>Vaughn, Herbert, [1895?]; Volckman, W. and C., 1882; Wallace, Donald Mackenzie, 1887; Ward, Genevieve, 1875-1880; Watts, George Frederick, 1882; Whiteley, William, 1879; Williamson, Francis John, 1879; Winchilsea, Murray Edward Gordon Finch-Hatton, Earl of, 1882; Wolseley, Garnet Wolseley, Viscount, 1883, 1894; Wood, W. Charles, 1860; Woodville, Richard Caton, 1894; Wortley, Andrew S., 1892; Wright, Wm. Horace (William Horace), 1889; Wyndham, Charles, [1882?]; Yates, Edmund, 1877.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/300256"
id="ref48"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1860-1873" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1873">1873</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27296 /locations/9"
containerid="39002091550039"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300257"
id="ref50"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1874-1878" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1874">1874</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27297 /locations/9"
containerid="39002091550047"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300258"
id="ref52"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1879-1880" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1879">1879</fromdate>
<todate standarddate="1880">1880</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27297 /locations/9"
containerid="39002091550047"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300259"
id="ref54"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1881-1882" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881">1881</fromdate>
<todate standarddate="1882">1882</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27297 /locations/9"
containerid="39002091550047"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300260"
id="ref56"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1883-1886" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1883">1883</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27298 /locations/9"
containerid="39002091550054"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300261"
id="ref58"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1887-1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1887">1887</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27298 /locations/9"
containerid="39002091550054"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300262"
id="ref60"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1890-1892" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890">1890</fromdate>
<todate standarddate="1892">1892</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27298 /locations/9"
containerid="39002091550054"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300263"
id="ref62"
level="file">
<did>
<unittitle>Letters</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1893-1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893">1893</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27299 /locations/9"
containerid="39002091550062"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/300264"
id="ref65"
level="file">
<did>
<unittitle>Sala, George Augustus</unittitle>
</did>
<scopecontent id="aspace_f969af9d88d1eabda825d2f04e3f20dd">
<head>Scope and Contents</head>
<p>Typed transcripts of outgoing letters.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/300265"
id="ref66"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1845-1864" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1845">1845</fromdate>
<todate standarddate="1864">1864</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27299 /locations/9"
containerid="39002091550062"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300266"
id="ref68"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1865-1874" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1865">1865</fromdate>
<todate standarddate="1874">1874</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27299 /locations/9"
containerid="39002091550062"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300267"
id="ref70"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1875-1879" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875">1875</fromdate>
<todate standarddate="1879">1879</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27300 /locations/9"
containerid="39002091550070"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300268"
id="ref72"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1880-1882" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1880">1880</fromdate>
<todate standarddate="1882">1882</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27300 /locations/9"
containerid="39002091550070"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300269"
id="ref74"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1883-1886" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1883">1883</fromdate>
<todate standarddate="1886">1886</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27300 /locations/9"
containerid="39002091550070"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300270"
id="ref76"
level="file">
<did>
<unittitle>Letters, typed transcripts</unittitle>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1887-1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1887">1887</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27300 /locations/9"
containerid="39002091550070"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/300271"
id="ref79"
level="file">
<did>
<unittitle>Sala, Bessie Stannard</unittitle>
</did>
<scopecontent id="aspace_ed9cab7bb1e6f599de3e1b8feeaac289">
<head>Scope and Contents</head>
<p>Outgoing letters.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/300272"
id="ref80"
level="file">
<did>
<unittitle>Andrews, William</unittitle>
<unitdatestructured altrender="1891-1896" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1891">1891</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27301 /locations/9"
containerid="39002091550088"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/300273"
id="ref81"
level="file">
<did>
<unittitle>Metcalf, R.</unittitle>
<unitdatestructured altrender="1890 July 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1890-07-09">1890 July 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/27301 /locations/9"
containerid="39002091550088"
id="aspace_ref81_c1"
label="Mixed Materials"