-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path759.xml
2481 lines (2481 loc) · 142 KB
/
759.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.hayward">beinecke.hayward</recordid>
<otherrecordid localtype="BIB">7374974</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Abraham Hayward Collection
</titleproper>
<titleproper localtype="filing">Hayward (Abraham) Collection</titleproper>
<author>by Michael Rush</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>October 2006</date>
<num>GEN MSS 553</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">7374974</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-2, 4, 6</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 3, 5, 7</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="7">7</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="90">90</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:35:08-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:35</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/759" level="collection">
<did>
<unittitle>Abraham Hayward collection</unittitle>
<unitid>GEN MSS 553</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.51</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">7 boxes</physdesc>
<unitdatestructured altrender="1791-1962" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1791">1791</fromdate>
<todate standarddate="1962">1962</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_245d29a91e65be24e732ea37f41aa31a">Correspondence, printed materials, other papers, and photographs related to Abraham Hayward, as well as the research materials of Hayward biographer Brian Roberts. Outgoing correspondence includes letters to Hayward's sisters Fanny and Mary Anne Hayward, as well as publisher Richard Bentley. Incoming correspondence primarily consists of letters from members of Hayward's literary and political circles, including George Bentley; John Thaddeus Delane; Edward Everett; Alexander William Kinglake; John Murray; Henry Pelham, Duke of Newcastle; Viscountess Emily Lamb Palmerston; Horace Smith, and others. Topics discussed in Hayward's corresondence include contemporary politics; publishing concerns; London society; and invitations to dine. Third party correspondence consists of letters to Fanny Hayward.<lb/>The bulk of the printed materials consists of pamphlets, a petition, and clippings related to a controversy over the Inner Temple's rules for election to the bench, which resulted from a dissenter rejecting Hayward. Printed materials also include title pages inscribed by and to Hayward; a theater program; calling cards; clippings; and a menu from the Café de Paris. Other papers include an account of the estate of Robert Abraham, for whom Hayward was the executor; Hayward's passport (1862-1871); a design for a fruit garden; and whist instructions. Photographs consist of 12 cartes-de-visite, including portraits of Abraham Hayward; Mrs. Cornwallis West; Mrs. Wheeler; Olive Campbell; Florence de Bretton; Madaillae Florian; and Countess Fanny Karolyi.<lb/>Brian Roberts research materials consist of correspondence; typescripts for three chapters of an unfinished biography of Hayward; manuscript and typescript transcriptions of correspondence and writings related to Hayward; a biographical timeline; and other research papers.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Hayward, A. (Abraham), 1801-1884</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Roberts, Brian, 1930-</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_1d5938a8338770e2f6eba79e56bff067">
<head>Immediate Source of Acquisition</head>
<p>The Abraham Hayward Collection was acquired through purchase from Christopher Edwards on the George Henry Nettleton Fund, 2003.</p>
</acqinfo>
<userestrict id="aspace_296f6798e282b5b47f7e6253fad15b2b">
<head>Conditions Governing Use</head>
<p>The Abraham Hayward 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_1485d523788b5689b668fe16a6f9f38d">
<head>Preferred Citation</head>
<p>Abraham Hayward Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_be1b177dbc142cb581a5726eec3db5e3">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 7: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<bioghist id="aspace_95413115141889d9cc75fc2e6387acf9">
<head>ABRAHAM HAYWARD (1801-1884)</head>
<p>Abraham Hayward, 1801-1884, was an English essayist and translator. Born in Wiltshire, Hayward studied at several schools, including Blundell's School in Tiverton, before moving to London and enrolling at the Inner Temple in 1824. He was called to the bar in 1832, but after the success of his 1833 translation of Goethe's <title localtype="simple" render="italic">
<part>Faust</part>
</title>, the first translation of <title localtype="simple" render="italic">
<part>Faust</part>
</title> into English, he pursued a career in journalism and literature. He never married.</p>
<p>Residing in London for the rest of his life, Hayward was well-connected in literary and political circles, counting among his acquaintances Thomas Babington Macaulay, William Makepeace Thackeray, W. E. Gladstone, and others. He contributed to many periodicals, including <title localtype="simple" render="italic">
<part>Quarterly Review</part>
</title>, <title localtype="simple" render="italic">
<part>Monthly Magazine</part>
</title>, and <title localtype="simple" render="italic">
<part>Edinburgh Review</part>
</title>, and wrote several books, including collections of essays and biographies of Goethe and Mrs. Thrale (a friend of Dr. Johnson).</p>
<p>Hayward was involved in a controversy in 1845 over the Inner Temple's rules governing elections to the bench of the Inner Temple. Having received an appointment from Lord Chancellor Lyndhurst, Hayward then failed to win election to the bench. He attributed the rejection to a grudge held by a Mr. Roebuck who, according to Inner Temple tradition, was able to exclude him with a single black ball.</p>
</bioghist>
<scopecontent id="aspace_193254f68a9eb7be903f5f633e5a7faf">
<head>Scope and Contents</head>
<p>The Abraham Hayward Collection consists of correspondence, printed materials, photographs, and other papers related to Abraham Hayward (1801-1884), a London essayist and translator, as well as the research papers of Brian Roberts, who started but abandoned a biography of Hayward in the 1950s. The papers, which span the years 1791-1962, are stored in seven boxes (including 3 oversize), and are organized into five series: <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, <title localtype="simple" render="italic">
<part>Printed Materials</part>
</title>, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>, <title localtype="simple" render="italic">
<part>Photographs</part>
</title>, and <title localtype="simple" render="italic">
<part>Brian Roberts Research Materials</part>
</title>. The papers document Hayward's familial relations, the literary and political circles of mid-nineteeth century London, and a controversy involving Hayward and the Inner Temple.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref10">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is arranged alphabetically in three subseries: Outgoing, Incoming, and Third Party Correspondence. The bulk of the outgoing correspondence consists of letters to Hayward's two sisters, Fanny and Mary Anne Hayward. In his letters to his sisters, Hayward discusses his travels, London society, and politics, in particular the governments of Gladstone and Disraeli. Outgoing correspondence also includes letters from Hayward to the publisher Richard Bentley regarding articles and book reviews.</p>
<p>Incoming correspondence consists of letters to Hayward from George Bentley, John Thaddeus Delane, Edward Everett, Alexander William Kinglake, John Murray, Henry Pelham, Viscountess Emily Lamb Palmerston, and Horace Smith, and others. Topics include invitations to dine, the politics of Gladstone and Disraeli, Hayward's political appointments, and the publication of various articles, reviews, and pamphlets. The bulk of the third party correspondence is to Fanny Hayward a decade after Abraham Hayward's death.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref54">Series II, <title localtype="simple" render="italic">
<part>Printed Materials</part>
</title>
</ref>, is arranged chronologically in two subseries: Inner Temple Affair and Other Printed Materials. Inner Temple Affair materials consist of two pamphlets, a petition, and clippings related to the controversy that arose from Hayward's failed election to the Inner Temple bench. Other printed materials include titlepages, a theater program, a menu from the Café de Paris, clippings, a circular on John Stuart Mill's antipopulation theory, and a broadside, "Men of the Day, No. 117, Mr. Abraham Hayward, Q.C."</p>
<p>
<ref actuate="onrequest" show="replace" target="ref79">Series III, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref>, is arranged chronologically and includes the following: an account of the estate of Robert Abraham, for whom Abraham Hayward was an executor; Abraham Hayward's passport for the years 1862-1871; a copy of his entry in Blundell's School registry; an undated design for a fruit garden or orchard; manuscript copies of poems by Caroline Sheridan Norton, Rev. E.D. Rhodes, and others; and whist instructions.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref93">Series IV, <title localtype="simple" render="italic">
<part>Photographs</part>
</title>
</ref>, consists of a carte-de-visite album containing 12 cartes-de-visite of Abraham Hayward and eleven women, including Mrs. Cornwallis West, Mrs. Wheeler, Olive Campbell, Florence de Bretton, Madaillae Florian, and Countess Fanny Karolyi.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref97">Series V, <title localtype="simple" render="italic">
<part>Brian Roberts Research Materials</part>
</title>
</ref>, is arranged in four subseries: Correspondence, Writings, Notes, and Other Papers. Correspondence is arranged alphabetically and includes letters from many people Roberts contacted in the course of his research on Abraham Hayward, including members of the Hayward family and Muriel Abbot-Anderson, who helped Roberts with local research in England's West Country. Writings include typescript drafts of chapters 1, 2, and 3 of Roberts's biography of Hayward.</p>
<p>The bulk of Brian Roberts's research notes consists of manscript transcriptions of correspondence and writings related to Hayward. The manuscript transcriptions are arranged approximately by the decade of the original document. Roberts's notes also include typescript transcriptions, a biographical timeline, a research notebook containing transcriptions of letters present in Series I, and note cards.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref146">
<title localtype="simple" render="italic">
<part>Oversize</part>
</title>
</ref> material is housed in boxes 5 and 6. <ref actuate="onrequest" show="replace" target="ref160">
<title localtype="simple" render="italic">
<part>Restricted Fragile Oversize</part>
</title>
</ref> material is stored in box 7 and contains oversize fragile originals for which preservation photocopies have been made for reference use and filed in the regular series run.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009856"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">19th century</part>
</subject>
<subject source="local">
<part localtype="topical">Gardens</part>
<part localtype="topical">Design</part>
<part localtype="geographic">England</part>
</subject>
<subject source="local">
<part localtype="topical">Politics and culture</part>
<part localtype="geographic">England</part>
<part localtype="topical">History</part>
<part localtype="temporal">19th century</part>
</subject>
<subject source="local">
<part localtype="topical">Publishers and publishing</part>
<part localtype="geographic">England</part>
<part localtype="topical">History</part>
<part localtype="temporal">19th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85146448"
source="lcsh">
<part localtype="topical">Whist</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300026823" source="aat">
<part localtype="genre_form">Visiting cards</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Menus</part>
<part localtype="geographic">France</part>
<part localtype="geographic">Paris</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027392" source="aat">
<part localtype="genre_form">Passports</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname source="local">
<part localtype="agent_person">Abraham, Robert, d. 1833</part>
<part localtype="topical">Estate</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Bentley, George, 1828-1895</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Bentley, Richard, 1794-1871</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Delane, John Thaddeus, 1817-1879</part>
</persname>
<persname>
<part localtype="agent_person">Everett, Edward, 1794-1865</part>
</persname>
<persname>
<part localtype="agent_person">Hayward, A. (Abraham), 1801-1884</part>
</persname>
<persname source="local">
<part localtype="agent_person">Hayward, Fanny, d. 1904</part>
</persname>
<persname source="local">
<part localtype="agent_person">Hayward, Mary Anne</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kinglake, Alexander William, 1809-1891</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Murray, John, 1808-1892</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Newcastle, Henry Pelham, Duke of, 1811-1864</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Palmerston, Emily Lamb, Viscountess, 1787-1869</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Roberts, Brian, 1930-</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Smith, Horace, 1779-1849</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Inner Temple (London, England)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/237854"
id="ref10"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>43</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1833-1896" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1833">1833</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_c6680f6a625968829b7776b9170bb839">
<head>Scope and Contents</head>
<p>Series I, Correspondence, is arranged into three subseries: Outgoing, Incoming, and Third Party Correspondence. Each is arranged alphabetically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/237855"
id="ref12"
level="subseries">
<did>
<unittitle>OUTGOING</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/237856"
id="ref13"
level="file">
<did>
<unittitle>Bentley, [Richard]</unittitle>
<unitdatestructured altrender="1873-83" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873">1873</fromdate>
<todate standarddate="1883">1883</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237857"
id="ref14"
level="file">
<did>
<unittitle>Boyes, ----</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Nov 3</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237858"
id="ref15"
level="file">
<did>
<unittitle>Hayward, Fanny; Hayward, Mary Anne</unittitle>
<unitdatestructured altrender="1854-82, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1854">1854</fromdate>
<todate standarddate="1882">1882</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3-7</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/237859"
id="ref16"
level="subseries">
<did>
<unittitle>INCOMING</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/237860"
id="ref17"
level="file">
<did>
<unittitle>Bancroft, B.</unittitle>
<unitdatestructured altrender="1881 Dec 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1881-12-17">1881 Dec 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237861"
id="ref18"
level="file">
<did>
<unittitle>Bentley, George</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Oct 21</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237862"
id="ref19"
level="file">
<did>
<unittitle>Blessington, Marguerite, Countess of</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237863"
id="ref20"
level="file">
<did>
<unittitle>Brougham and Vaux, Henry Brougham, Baron</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237864"
id="ref21"
level="file">
<did>
<unittitle>Caldwell, Anita S.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237865"
id="ref22"
level="file">
<did>
<unittitle>[Cornwallis?], ----</unittitle>
<unitdatestructured altrender="1867 Jun 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1867-06-06">1867 Jun 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237866"
id="ref23"
level="file">
<did>
<unittitle>Delane, John Thaddeus</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237867"
id="ref24"
level="file">
<did>
<unittitle>Everett, Edward</unittitle>
<unitdatestructured altrender="1844 Mar 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1844-03-02">1844 Mar 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237868"
id="ref25"
level="file">
<did>
<unittitle>Froude, [James Anthony]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Oct 12</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237869"
id="ref26"
level="file">
<did>
<unittitle>Harvey, A.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237870"
id="ref27"
level="file">
<did>
<unittitle>Hawtrey, [Edward Craven]</unittitle>
<unitdatestructured altrender="1833 Dec 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1833-12-28">1833 Dec 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237871"
id="ref28"
level="file">
<did>
<unittitle>Hayter, William Goodenough, Sir</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Aug 19</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237872"
id="ref29"
level="file">
<did>
<unittitle>Kinglake, [Alexander William]</unittitle>
<unitdatestructured altrender="1853" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1853">1853</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237873"
id="ref30"
level="file">
<did>
<unittitle>Lhwyd, Angharad</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Sep 11</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237874"
id="ref31"
level="file">
<did>
<unittitle>Lowe, [Robert, Viscount Sherbrooke]</unittitle>
<unitdatestructured altrender="1857 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1857-02-06">1857 Feb 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237875"
id="ref32"
level="file">
<did>
<unittitle>Lytton, [Rosina Bulwer Lytton, Baroness?]</unittitle>
<unitdatestructured altrender="1872 Aug 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1872-08-20">1872 Aug 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237876"
id="ref33"
level="file">
<did>
<unittitle>Murray, John</unittitle>
<unitdatestructured altrender="1863 May 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1863-05-04">1863 May 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237877"
id="ref34"
level="file">
<did>
<unittitle>Newcastle, [Henry Pelham, Duke of]</unittitle>
<unitdatestructured altrender="1858 Nov 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858-11-06">1858 Nov 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237878"
id="ref35"
level="file">
<did>
<unittitle>Palmerston, [Emily Lamb, Viscountess]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237879"
id="ref36"
level="file">
<did>
<unittitle>Peel, Emily, Lady</unittitle>
<unitdatestructured altrender="1859 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1859-02-06">1859 Feb 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237880"
id="ref37"
level="file">
<did>
<unittitle>Platt, Thomas Joshua, Sir</unittitle>
<unitdatestructured altrender="1846 May 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-05-25">1846 May 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237881"
id="ref38"
level="file">
<did>
<unittitle>Smith, Horace</unittitle>
<unitdatestructured altrender="1840 Jan 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1840-01-22">1840 Jan 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237882"
id="ref39"
level="file">
<did>
<unittitle>Stirling-Maxwell, William, Sir</unittitle>
<unitdatestructured altrender="1868 Nov 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-11-08">1868 Nov 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237883"
id="ref40"
level="file">
<did>
<unittitle>Wellesley, [Henry]</unittitle>
<unitdatestructured altrender="1861 Mar 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-03-07">1861 Mar 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237884"
id="ref41"
level="file">
<did>
<unittitle>Unidentified</unittitle>
<unitdatestructured altrender="1834-80" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1834">1834</fromdate>
<todate standarddate="1880">1880</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">32</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/237885"
id="ref42"
level="subseries">
<did>
<unittitle>THIRD PARTY</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/237886"
id="ref43"
level="file">
<did>
<unittitle>De Limberg Hiram, S. J., to Fanny Hayward</unittitle>
<unitdatestructured altrender="1894 Dec 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1894-12-22">1894 Dec 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237887"
id="ref44"
level="file">
<did>
<unittitle>Eaton, Alfred E., to [Fanny] Hayward</unittitle>
<unitdatestructured altrender="1896 Dec 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1896-12-18">1896 Dec 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237888"
id="ref45"
level="file">
<did>
<unittitle>Escott, T. H. S. (Thomas Hay Sweet) to [Fanny Hayward]</unittitle>
<unitdatestructured altrender="1895" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1895">1895</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237889"
id="ref46"
level="file">
<did>
<unittitle>Farmer, E., to [Fanny] Hayward</unittitle>
<unitdatestructured altrender="1893 Aug 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1893-08-12">1893 Aug 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237890"
id="ref47"
level="file">
<did>
<unittitle>Hayward, J., to Mr. Pearce</unittitle>
<unitdatestructured altrender="1896 Mar 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1896-03-31">1896 Mar 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237891"
id="ref48"
level="file">
<did>
<unittitle>Mills, Dudley, to Fanny Hayward</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Mar 27</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237892"
id="ref49"
level="file">
<did>
<unittitle>Shearer, George, to Herman Merivale and Henry Davison</unittitle>
<unitdatestructured altrender="1846 Jan" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-01">1846 Jan</datesingle>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_657a2f080fef0b5570afd47af8473a55">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref61"> See: Series II. <title localtype="simple" render="italic">
<part>Printed Materials</part>
</title>, Petition, Box 1, folder 44 </ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/237893"
id="ref51"
level="file">
<did>
<unittitle>Unidentified niece to [Fanny] Hayward</unittitle>
<unitdatestructured altrender="1893" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1893">1893</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237894"
id="ref52"
level="file">
<did>
<unittitle>Unidentified to [L. Waldgren?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">40</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/237895"
id="ref54"
level="series">
<did>
<unittitle>Printed Materials</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>11</quantity>
<unittype>Folders</unittype>
</physdescstructured>
<unitdatestructured altrender="1791-1896" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1791">1791</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_2fd408f2c060d8099cec04c37e9fbc8d">
<head>Scope and Contents</head>
<p>Series II, Printed Materials, is arranged into two subseries: Inner Temple Affair and Other Printed Materials. Each is arranged chronologically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/237896"
id="ref56"
level="subseries">
<did>
<unittitle>INNER TEMPLE AFFAIR</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/237897"
id="ref57"
level="file">
<did>
<unittitle>Pamphlet, "Remarks on the Mode of Electing Benchers at the Inner Temple," annotated</unittitle>
<unitdatestructured altrender="1845" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845">1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">41</container>
</did>
<scopecontent id="aspace_ed09e4e381496347d14b149d479c74ab">
<head>Scope and Contents</head>
<p>London: Owen Richards, Law Bookseller, 194 Fleet Street</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/237898"
id="ref59"
level="file">
<did>
<unittitle>Untitled pamphlet by Abraham Hayward concerning the Inner Temple Affair</unittitle>
<unitdatestructured altrender="1845" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845">1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237899"
id="ref60"
level="file">
<did>
<unittitle>Clippings related to the Inner Temple Affair</unittitle>
<unitdatestructured altrender="[ca. 1845]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845">[ca. 1845]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20720 /locations/9"
containerid="39002099280498"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/237900"
id="ref61"
level="file">
<did>