-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1087.xml
3526 lines (3526 loc) · 208 KB
/
1087.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.sussex">beinecke.sussex</recordid>
<otherrecordid localtype="BIB">3954503</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Sussex Correspondence
</titleproper>
<titleproper localtype="filing">Sussex Correspondence</titleproper>
<author>by Diane J. Ducharme</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 1996</date>
<num>OSB MSS 58</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">3954503</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-2</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="5">5</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-09T00:09:06-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:09</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1087" level="collection">
<did>
<unittitle>Sussex correspondence</unittitle>
<unitid>OSB MSS 58</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>0.8</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1812-1841" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1812">1812</fromdate>
<todate standarddate="1841">1841</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_b368cec35cbbbe18488c6dfa08e85533">Letters to Augustus Frederick, mainly concerning the Duke's library and his literary interests; many originally accompanied presentation copies of works by the authors. Also letters requesting financial patronage, personal favors, or the Duke's participation in learned societies.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Augustus Frederick, Prince, Duke of Sussex, 1773-1843</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_79a8ac27bc9c93abd29384d089f7b0a9">
<head>Immediate Source of Acquisition</head>
<p>Gift of James Marshall and Marie-Louise Osborn.</p>
</acqinfo>
<userestrict id="aspace_8be6a292f1c49c6ff6cdea42610e1316">
<head>Conditions Governing Use</head>
<p>The Sussex Correspondence 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_bd43dc0949891b0f3bed201668c88e69">
<head>Preferred Citation</head>
<p>Sussex Correspondence. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_ba3e7ff58099f37e1605dc661351a670">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_b2eb18127ae48bdd221577cab97f2176">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained.</p>
</processinfo>
<bioghist id="aspace_8a618d7f3f95e90ca4d3084b5b340c51">
<head>AUGUSTUS FREDERICK, DUKE OF SUSSEX (1773-1843)</head>
<p>Augustus Frederick, Duke of Sussex, was the ninth child of King George III and Queen Charlotte. Educated on the Continent, he met and married Lady Augusta Murray secretly in 1793. George III declared the marriage invalid in accordance with the Royal Marriage Act of 1772, although the couple remained together for some years and had two children.</p>
<p>In 1801 Augustus Frederick was granted the title of Baron Arklow, Earl of Inverness and Duke of Sussex. He supported the abolition of the slave trade, Catholic emancipation, civil liberties for Jews and Dissenters, and Parliamentary reform. He became Grand Master of the Freemasons in 1811; was elected President of the Society of Arts in 1816; and served as President of the Royal Society from 1830 to 1838.</p>
<p>The Duke was an avid book collector, often bidding in competition with Sir Thomas Phillipps, and his library eventually contained over 50,000 volumes, including more than 1,000 editions of the Bible and many Hebrew manuscripts. In 1817 he appointed Thomas Joseph Pettigrew his surgeon; Pettigrew came to serve as his librarian for some years and published the first volumes of the <title localtype="simple" render="italic">
<part>Bibliotheca Sussexiana</part>
</title> in 1827. The two men were estranged as a result of the Duke's embarrassingly narrow victory in the Royal Society elections of 1830, a contest that Pettigrew had persuaded the Duke to enter, but the next volumes of the <title localtype="simple" render="italic">
<part>Bibliotheca</part>
</title> nevertheless appeared in 1839.</p>
<p>Augustus Frederick remarried late in life, to Cecelia, ninth daughter of the Earl of Arran and widow of Sir George Buggins; there were no children of this marriage. The Duke died of erysipelas on April 21, 1843.</p>
</bioghist>
<scopecontent id="aspace_d7d61ca36bc4ef457b87b0ec9dc107f6">
<head>Scope and Contents</head>
<p>The Sussex Correspondence consists of over 130 letters to Augustus Frederick, Duke of Sussex, and approximately 30 letters addressed to his surgeon and librarian, Thomas Joseph Pettigrew. The letters, arranged alphabetically by author, span the dates 1812-1841 and document the Duke's book collecting as well as some of his patronage and charitable activities.</p>
<p>Letters from many correspondents originally accompanied presentation copies of works they had authored, including those by George Man Burrows, Bishop Samuel Butler, William Collyer, Thomas Agar Holland, George Skene Keith, César Moreau, William Müller, Sir Nicholas Harris Nicholas, Edward O'Reilly, Charles Hippolyte Paravey, George Petrie, George Skinner, William Smith, and Benjamin Lewis Vulliamy. Other letters seek the Duke's patronage for recent or proposed publications. Thomas Christopher Banks sought to sell a copy of his <title localtype="simple" render="italic">
<part>Stemmata Anglicana</part>
</title>, for example, while P. Lauder solicited funds for the publication of his "Observations on the Defective State of British Timber", and Francis Nugent Macnamara requested a subscription from the Duke for his poem "The Liberator."</p>
<p>Some correspondence is more generally concerned with the Duke's library and literary interests, including requests to visit the library, offers to sell incunabula and manuscripts, and gifts of volumes on subjects of interest to the Duke, such as the gift of a catalogue of Egyptian antiquities in Turin from the chargé d'affaires of Sardinia, and the presentation by John Wylie, President of the Maitland Club, of a set of that club's antiquarian publications.</p>
<p>In addition, there are letters requesting financial assistance, patronage appointments, and small personal favors, some written by those in need of assistance, and others written in their behalf by friends and acquaintances of Augustus Frederick; correspondence concerning his membership in various learned societies; and a letter by the first earl of Donoughmore on resolutions recently approved by the Grand Lodges.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85010022"
source="lcsh">
<part localtype="topical">Authors and patrons</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85013139"
source="lcsh">
<part localtype="topical">Benevolence</part>
</subject>
<occupation source="local">
<part localtype="occupation">Benefactors</part>
<part localtype="geographic">Great Britain</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Augustus Frederick, Prince, Duke of Sussex, 1773-1843</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Pettigrew, Thomas Joseph, 1791-1865</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/391858"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
</did>
<c altrender="/repositories/11/archival_objects/391859"
id="ref12"
level="subseries">
<did>
<unittitle>"A"</unittitle>
</did>
<scopecontent id="aspace_d3aeb71956e5dd7bb36c21feac2ed9b6">
<head>Scope and Contents</head>
<p>Abinger, James Scarlett, Baron, 1769-1844</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/391860"
id="ref13"
level="file">
<did>
<unittitle>ALS to the Earl of Sheffield, London</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[after 1837]</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
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/391861"
id="ref14"
level="file">
<did>
<unittitle>Académie des sciences, arts et belles-lettres de Dijon. 2 letters in French to the Duke of Sussex, signed by Maillard de Chambrune, Dijon</unittitle>
<unitdatestructured altrender="1828-30" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1828">1828</fromdate>
<todate standarddate="1830">1830</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
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>
<scopecontent id="aspace_e8d86195c69764c7e7f1bc49dbc02c5f">
<head>Scope and Contents</head>
<p>Election of the Duke of Sussex as an honorary member.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391862"
id="ref16"
level="file">
<did>
<unittitle>Alexander, Mr.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391863"
id="ref17"
level="file">
<did>
<unittitle>AL in third person to Mr. Conroy, Great Yarmouth</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Nov 7</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391864"
id="ref18"
level="file">
<did>
<unittitle>Anson, Anna to the Duke of Sussex</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Jun 17</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391865"
id="ref19"
level="file">
<did>
<unittitle>Augustus Frederick, Duke of Sussex, 1773-1843</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391866"
id="ref20"
level="file">
<did>
<unittitle>ALS to Karl II, Duke Brunswick, Kensington Palace</unittitle>
<unitdatestructured altrender="1827 Jul 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-07-11">1827 Jul 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391867"
id="ref21"
level="file">
<did>
<unittitle>Memorandum (copy, partial) on William Salisbury, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">6</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391868"
id="ref23"
level="subseries">
<did>
<unittitle>"B"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391869"
id="ref24"
level="file">
<did>
<unittitle>Badham, Charles, 1780-1845. AL to the Duke of Sussex, [n.p.]</unittitle>
<unitdatestructured altrender="[1830]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830">[1830]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391870"
id="ref25"
level="file">
<did>
<unittitle>Baird, George Husband, 1761-1840</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391871"
id="ref26"
level="file">
<did>
<unittitle>AL to T. J. Pettigrew, Parliament Street</unittitle>
<unitdatestructured altrender="1830 Aug 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-08-05">1830 Aug 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391872"
id="ref27"
level="file">
<did>
<unittitle>AL to the Duke of Sussex, London</unittitle>
<unitdatestructured altrender="1830 Aug 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-08-01">1830 Aug 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">9</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391873"
id="ref28"
level="file">
<did>
<unittitle>Banks, Thomas Christopher, 1765-1854. ALS to the Duke of Sussex, Dormant Peerage Office</unittitle>
<unitdatestructured altrender="1825 Mar 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-03-10">1825 Mar 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">10</container>
</did>
<scopecontent id="aspace_9c078850f518214b95200d8414675c62">
<head>Scope and Contents</head>
<p>Written on blank page of prospectus for <title localtype="simple" render="italic">
<part>Stemmata Anglicana</part>
</title>. Sales letter for his new volume.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391874"
id="ref30"
level="file">
<did>
<unittitle>Barréres, B. AL (copy) in French to the Duke of Sussex, Brussels</unittitle>
<unitdatestructured altrender="1822 Mar 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-03-07">1822 Mar 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391875"
id="ref31"
level="file">
<did>
<unittitle>Beresford, William Carr Beresford, 1st viscount, 1768-1854. ALS to the Duke of Sussex</unittitle>
<unitdatestructured altrender="1814 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-02-06">1814 Feb 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391876"
id="ref32"
level="file">
<did>
<unittitle>Berkeley, Mary (Cole) Berkeley, countess of, 1767-1844. ALS to the Duke of Sussex, Cranford House</unittitle>
<unitdatestructured altrender="1814 May 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-05-03">1814 May 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">13</container>
</did>
<scopecontent id="aspace_5852f8b5c2074dd12002976f51188c8b">
<head>Scope and Contents</head>
<p>Asks justice as to validity of her marriage.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391877"
id="ref34"
level="file">
<did>
<unittitle>Blackwood, Sir Henry, 1770-1832. ALS to the Duke of Sussex, Admiralty House</unittitle>
<unitdatestructured altrender="1830 Jun 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-06-04">1830 Jun 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391878"
id="ref35"
level="file">
<did>
<unittitle>Blair, Robert</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391879"
id="ref36"
level="file">
<did>
<unittitle>ALS to the Duke of Sussex, Edinburgh</unittitle>
<unitdatestructured altrender="1830 Jul 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-07-24">1830 Jul 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391880"
id="ref37"
level="file">
<did>
<unittitle>ALS to T. J. Pettigrew, Edinburgh</unittitle>
<unitdatestructured altrender="1830 Aug 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-08-10">1830 Aug 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">16</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391881"
id="ref38"
level="file">
<did>
<unittitle>Blair, Robert, 1760-1837. AL to T. J. Pettigrew, Edinburgh</unittitle>
<unitdatestructured altrender="1823 Aug 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1823-08-23">1823 Aug 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391882"
id="ref39"
level="file">
<did>
<unittitle>Bradfield, Henry Joseph Steele, 1805-1852. ALS to T. J. Pettigrew, London</unittitle>
<unitdatestructured altrender="1841 Aug 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1841-08-28">1841 Aug 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391883"
id="ref40"
level="file">
<did>
<unittitle>Buckingham and Chandos, Richard Temple Nugent Brydges Chandos, 1st Duke of, 1776-1839. ALS to the Duke of Sussex, Stow</unittitle>
<unitdatestructured altrender="1827 Jun 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-06-03">1827 Jun 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391884"
id="ref41"
level="file">
<did>
<unittitle>Burrows, George Man, 1771-1846</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391885"
id="ref42"
level="file">
<did>
<unittitle>AL to the Duke of Sussex, 10 Montague St</unittitle>
<unitdatestructured altrender="1828 Aug 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-08-02">1828 Aug 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">20</container>
</did>
<scopecontent id="aspace_1011102b3b759e7a9216406e0d5cf517">
<head>Scope and Contents</head>
<p>Sends copy of his new book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391886"
id="ref44"
level="file">
<did>
<unittitle>ALS to R. J. Pettigrew, 10 Montague St</unittitle>
<unitdatestructured altrender="1829 Oct 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-10-24">1829 Oct 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">21</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391887"
id="ref45"
level="file">
<did>
<unittitle>Butler, Samuel, Bishop of Lichfield, 1774-1839</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391888"
id="ref46"
level="file">
<did>
<unittitle>AL to T. J. Pettigrew, Shrewsbury</unittitle>
<unitdatestructured altrender="1817 Jun 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-06-24">1817 Jun 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">22</container>
</did>
<scopecontent id="aspace_fb50456e3542e8417acdb186f2fe92a4">
<head>Scope and Contents</head>
<p>Visits library of Duke of Sussex. Sends book.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391889"
id="ref48"
level="file">
<did>
<unittitle>AL to the Duke of Sussex, Shrewsbury</unittitle>
<unitdatestructured altrender="1825 Mar 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1825-03-28">1825 Mar 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">23</container>
</did>
<scopecontent id="aspace_ce237557e14a2072069393ca83d49440">
<head>Scope and Contents</head>
<p>Sends a copy of the funeral sermon.</p>
</scopecontent>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391890"
id="ref50"
level="subseries">
<did>
<unittitle>"C"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391891"
id="ref51"
level="file">
<did>
<unittitle>Cambridge, Adolphus Frederick, Duke of, 1774-1850. AL to unidentified recipient, Cambridge House</unittitle>
<unitdatestructured altrender="[1849?] Jul 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849-07-02">[1849?] Jul 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">24</container>
</did>
<scopecontent id="aspace_c90ad2703c05d00edd8b01accde449e0">
<head>Scope and Contents</head>
<p>Concerning assistance for Mrs. Gautier.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391892"
id="ref53"
level="file">
<did>
<unittitle>Camporese, Violante Giustiniani. ALS in Italian to the Duke of Sussex, Golden Square</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">25</container>
</did>
<scopecontent id="aspace_946d3eca364dc94d48e4cd8f92fe0e66">
<head>Scope and Contents</head>
<p>Thanks for patronage.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391893"
id="ref55"
level="file">
<did>
<unittitle>Cassan, Stephen Hyde, 1789-1841. ALS to [T. J. Pettigrew], Mere</unittitle>
<unitdatestructured altrender="1828 Mar 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-03-01">1828 Mar 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391894"
id="ref56"
level="file">
<did>
<unittitle>Chetwynd, Richard Chetwynd, 5th viscount, 1757-1821. ALS to T. J. Pettigrew, Whitehall</unittitle>
<unitdatestructured altrender="1820 Jun 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-06-09">1820 Jun 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">27</container>
</did>
<scopecontent id="aspace_a03631544543ff14d135d1b52e8288af">
<head>Scope and Contents</head>
<p>Committee on preparation for coronation.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391895"
id="ref58"
level="file">
<did>
<unittitle>Chevalier, Thomas, 1767-1824. ALS to the Duke of Sussex, South Audley St.</unittitle>
<unitdatestructured altrender="1823 Aug 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1823-08-14">1823 Aug 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">28</container>
</did>
<scopecontent id="aspace_5d9f8a2e0cef54919ff79f0858535b6a">
<head>Scope and Contents</head>
<p>Requests support for Mr. Sweatman.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391896"
id="ref60"
level="file">
<did>
<unittitle>Clifford, of Chudleigh, Charles Clifford, 6th baron, 1759-1831. AL to the Duke of Sussex, Portman Square</unittitle>
<unitdatestructured altrender="1814 Mar 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-03-23">1814 Mar 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">29</container>
</did>
<scopecontent id="aspace_b3f382c2bc0ccad83911ae8b04300da1">
<head>Scope and Contents</head>
<p>Sends Rules of Associated R.C. Charities.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391897"
id="ref62"
level="file">
<did>
<unittitle>Coigny, duc de. ALS in French to the Duke of Sussex, Spanish Place</unittitle>
<unitdatestructured altrender="1814 Apr 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-04-20">1814 Apr 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391898"
id="ref63"
level="file">
<did>
<unittitle>Collyer, William Bengo, 1782-1854. ALS to the Duke of Sussex, Peckham</unittitle>
<unitdatestructured altrender="1829 Sep 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-09-07">1829 Sep 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">31</container>
<daoset altrender="/repositories/11/digital_objects/167510">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16684003"
identifier="oid:16684003"
linktitle="4 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16684004/full/!150,150/0/default.jpg"
identifier="oid:16684003"
linktitle="4 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16684003"
identifier="oid:16684003"
linktitle="4 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Collyer, William Bengo, 1782-1854. ALS to the Duke of Sussex, Peckham</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_4c2848b11e45c1385b1bd832d66183f2">
<head>Scope and Contents</head>
<p>Sends volumes of sermons.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391899"
id="ref65"
level="subseries">
<did>
<unittitle>"D"</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/391900"
id="ref66"
level="file">
<did>
<unittitle>Disney, John, 1779-1857. ALS to the Duke of Sussex, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391901"
id="ref67"
level="file">
<did>
<unittitle>Donoughmore, Richard Hely-Hutchinson, 1st earl of, 1756-1825. ALS to the Duke of Sussex, Knocklofty</unittitle>
<unitdatestructured altrender="1814 Nov 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-11-02">1814 Nov 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">33</container>
</did>
<scopecontent id="aspace_a4b69a03bdab111f4699150fa70b74ce">
<head>Scope and Contents</head>
<p>Approval of certain resolutions by Grand Lodges.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391902"
id="ref69"
level="file">
<did>
<unittitle>Doodley, D. ALS to the Duke of Sussex, Cavendish St.</unittitle>
<unitdatestructured altrender="1829 Jun 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-06-03">1829 Jun 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391903"
id="ref70"
level="file">
<did>
<unittitle>Dover, George James Welbore Agar-Ellis, 1st baron, 1797-1833. ALS to the Duke of Sussex, Spring Garden</unittitle>
<unitdatestructured altrender="1827 Apr 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-04-11">1827 Apr 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391904"
id="ref71"
level="file">
<did>
<unittitle>Drury, Henry Joseph Thomas, 1778-1841. 2 ALS to an unnamed recipient, Harrow</unittitle>
<unitdatestructured altrender="1829" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829">1829</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1830" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830">1830</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">36</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/391905"
id="ref72"
level="subseries">
<did>
<unittitle>"E"</unittitle>
</did>
<scopecontent id="aspace_e063ce5107677cde80867dc16ff37df6">
<head>Scope and Contents</head>
<p>Eardley, Sampson Eardley, 1st baron, 1745-1824</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/391906"
id="ref73"
level="file">
<did>
<unittitle>ALS to [H.F. Stephenson?], Grosvenor Street</unittitle>
<unitdatestructured altrender="1813 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1813-07-08">1813 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391907"
id="ref74"
level="file">
<did>
<unittitle>ALS to the Duke of Sussex, Grosvenor Street</unittitle>
<unitdatestructured altrender="1822 Apr 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-04-30">1822 Apr 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/391908"
id="ref75"
level="file">
<did>
<unittitle>Egremont, George O'Brien Wyndham, 3rd earl of, 1751-1837. ALS to the Duke of Sussex, Grosvenor Place</unittitle>
<unitdatestructured altrender="1819 May 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-05-08">1819 May 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">39</container>
</did>
<scopecontent id="aspace_f4182632d1f5333327f8b12748d29e5d">
<head>Scope and Contents</head>
<p>Success of Mr. Pettigrew in election.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391909"
id="ref77"
level="file">
<did>
<unittitle>Einsiedel, Henry. ALS to the Duke of Sussex, 108 Jermyn St.</unittitle>
<unitdatestructured altrender="1826 Apr 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-04-06">1826 Apr 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"
containerid="39002099371297"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">40</container>
</did>
<scopecontent id="aspace_e25920f9da5a79535184e2eb38c5ffcf">
<head>Scope and Contents</head>
<p>About one of the Duke's Bibles.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/391910"
id="ref79"
level="file">
<did>
<unittitle>Elizabeth, Princess, Landgravine of Hesse-Harding, 1770-1840. ALS to T. J. Pettigrew, Buckingham House</unittitle>
<unitdatestructured altrender="[1831] May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-05-06">[1831] May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38568 /locations/4051"