-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1114.xml
1959 lines (1959 loc) · 102 KB
/
1114.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.c232">beinecke.c232</recordid>
<otherrecordid localtype="BIB">7040731</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William Upcott, Collection of Autograph Letters
</titleproper>
<titleproper localtype="filing">Upcott (William) Collection of Autograph Letters</titleproper>
<author>by Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>August 2005</date>
<num>OSBORN C232</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">7040731</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Box: 1</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="3">3</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="7">7</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:10:53-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:10</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1114" level="collection">
<did>
<unittitle>[Collection of autograph letters of various English peers, statesmen, antiquaries, etc.]</unittitle>
<unitid>OSBORN C232</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.13</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 volume</physdesc>
<unitdatestructured altrender="18th and 19th century"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1701">1701</fromdate>
<todate standarddate="1900">1900</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_f7eb9b728d33188ec2dda63cdeafdd7c">MS.</abstract>
<origination label="Creator">
<persname relator="col">
<part localtype="agent_person">Upcott, William, 1779-1845</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_79692e9d32f0c1881a0733b09cf05cda">
<head>Immediate Source of Acquisition</head>
<p>For provenance information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_a7c02a44f596ae8c6d3a15fb65858e06">
<head>Conditions Governing Use</head>
<p>Osborn c232 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_f27ec3c25c805f0cf75cb9476e2ae3f4">
<head>Preferred Citation</head>
<p>William Upcott, Collection of autograph letters. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_d2644efc3d54609df92be96600e681c7">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_ed99bd31fb765a0e33f47fd257b1e5fe">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing list or card set. All pertinent bibliographical information has been retained; the volume may contain additional unlisted material.</p>
</processinfo>
<scopecontent id="aspace_d0d05e68f09a98025d043b356f016a38">
<head>Scope and Contents</head>
<p>The following finding aid is a complete inventory of the contents of <ref actuate="onrequest" show="replace" target="ref9">Osborn c232</ref>. This list was reformatted from previously existing cataloging.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Antiquarians</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Collectors and collecting</part>
<part localtype="geographic">Great Britain</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056951"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Social life and customs</part>
<part localtype="temporal">18th century</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056952"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Social life and customs</part>
<part localtype="temporal">19th century</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300026877" source="aat">
<part localtype="genre_form">Correspondence </part>
</genreform>
<persname>
<part localtype="agent_person">George, King of Great Britain, IV, 1762-1830</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Monteagle, Thomas Spring Rice, 1st baron, 1790-1866</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Pembroke, Henry Herbert, Earl of, 1734-1794</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Richmond, Charles Gordon-Lennox, Duke of, 1791-1860</part>
</persname>
<persname>
<part localtype="agent_person">Smith, John Thomas, 1766-1833</part>
</persname>
<persname>
<part localtype="agent_person">Upcott, William, 1779-1845</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/426217"
id="ref9"
level="series">
<did>
<unittitle>Osborn c232</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426218"
id="ref10"
level="subseries">
<did>
<unittitle>ANONYMOUS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426219"
id="ref11"
level="file">
<did>
<unittitle>ALS to William Upcott (1779-1845)</unittitle>
<unitdatestructured altrender="1827 Sep 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1827-09-15">1827 Sep 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_fc7f76e69bef009e43ba6f0b7cf141cf">
<head>Scope and Contents</head>
<p>[Portsmouth] <lb/> 1 p.; 23 x 18 cm. <lb/> 232/49</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426220"
id="ref13"
level="subseries">
<did>
<unittitle>BADEN, DOWAGER DUCHESS OF</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426221"
id="ref14"
level="file">
<did>
<unittitle>Invitation to receive Mr. Farr [?Revd Thomas Farr]</unittitle>
<unitdatestructured altrender="1841 2 Sep" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1841-09-02">1841 2 Sep</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_3e3611c0cf329c0922a4d599c70505af">
<head>Scope and Contents</head>
<p>Baden <lb/> 1 p.; 22 x 14 cm. <lb/> A note at the bottom of the <lb/> invitation, in the hand of the <lb/> Duchess's chamberlain, thanks Mr. <lb/> Farr for the packet which he <lb/> previously sent. <lb/> 232/57</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426222"
id="ref16"
level="subseries">
<did>
<unittitle>GEORGE IV, KING OF GT. BRIT., 1762-1830</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426223"
id="ref17"
level="file">
<did>
<unittitle>Letter to James Heath (1757-1834)</unittitle>
<unitdatestructured altrender="1809 May 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1809-05-11">1809 May 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_2073d05b4c5a0c9ee7eef3ebcdef832f">
<head>Scope and Contents</head>
<p>n.p. <lb/> 1 p.; 18 x 12 cm. <lb/> 232/8</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426224"
id="ref19"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426225"
id="ref20"
level="file">
<did>
<unittitle>Envelope Addressed to Revd Thos Farr</unittitle>
<unitdatestructured altrender="1841 Mar 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1841-03-23">1841 Mar 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_7007cad4b52f548f74ba71ca4ea5807d">
<head>Scope and Contents</head>
<p>Beccles <lb/> 1 p.; 19 x 16 cm. <lb/> Postal Cancellations. <lb/> 232/12</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426226"
id="ref22"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426227"
id="ref23"
level="file">
<did>
<unittitle>Envelope Addressed to: Monsieur Mons. Heris, Rue Royale N. 112 a Bruxelles.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_999a0d6d1dfdac6bbf18afb29eae342e">
<head>Scope and Contents</head>
<p>1 p.;20 x 24 cm. <lb/> 232/39</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426228"
id="ref25"
level="subseries">
<did>
<unittitle>[ANONYMOUS]</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426229"
id="ref26"
level="file">
<did>
<unittitle>Envelope Addressed to D. W. Turner</unittitle>
<unitdatestructured altrender="1842 Nov 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1842-11-28">1842 Nov 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_f8622a2cc1c32875cc113ae7ca201ca7">
<head>Scope and Contents</head>
<p>Yarmouth- Norfolk <lb/> 1 p.; 7 x 12 cm. <lb/> Postal cancellations. <lb/> 232/48</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426230"
id="ref28"
level="subseries">
<did>
<unittitle>MONTEAGLE, THOMAS SPRING-RICE, 1ST BARON, 1790-1866</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426231"
id="ref29"
level="file">
<did>
<unittitle>ALS to an unidentified recipient</unittitle>
<unitdatestructured altrender="1819 Dec 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1819-12-05">1819 Dec 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_ce07c7a7b8cbf94213b27a09312f4757">
<head>Scope and Contents</head>
<p>Nenagh <lb/> 1 p.; 23 x 18 cm. <lb/> Will clear off the debt of the late <lb/> Sir Vere Hunt. <lb/> 232/22</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426232"
id="ref31"
level="subseries">
<did>
<unittitle>NEAL, H.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426233"
id="ref32"
level="file">
<did>
<unittitle>ALS to Dawson Turner</unittitle>
<unitdatestructured altrender="1845 May 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-05-11">1845 May 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_cc9b399e82864b3b6705d9f78f7e8901">
<head>Scope and Contents</head>
<p>Worlingham <lb/> 1 p.; 23 x 28 cm. <lb/> Sale of a property; accompanied by a <lb/> printed version of "Testimonials" <lb/> concerning W.W. Simpson. <lb/> 232/52-3</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426234"
id="ref34"
level="subseries">
<did>
<unittitle>PATRICK, F. C.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426235"
id="ref35"
level="file">
<did>
<unittitle>ALS to Mary (Palgrave) Turner</unittitle>
<unitdatestructured altrender="1822 Aug 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-08-24">1822 Aug 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_4a040eb1e753ca5172e76361cb083977">
<head>Scope and Contents</head>
<p>Portman Street <lb/> 2 p.; 23 x 19 cm. <lb/> Mary Palgrave became Mrs. Dawson <lb/> Turner. <lb/> 232/7</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426236"
id="ref37"
level="subseries">
<did>
<unittitle>PATTEN, WILLIAM</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426237"
id="ref38"
level="file">
<did>
<unittitle>ALS to Nicolas Mori (1797-1839)</unittitle>
<unitdatestructured altrender="1837 Aug 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1837-08-07">1837 Aug 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_475ba356bb7d220f62d13d6990841561">
<head>Scope and Contents</head>
<p>Winchester <lb/> 1 p.; 24 x 19 cm. <lb/> With title page of Patten's <lb/> "Congregational Melodies". <lb/> 232/6</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426238"
id="ref40"
level="subseries">
<did>
<unittitle>PEMBROKE, HENRY HERBERT, 10TH EARL OF, 1734-1794</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426239"
id="ref41"
level="file">
<did>
<unittitle>ALS to Sir George Savile, 8th bart., (1726-1784)</unittitle>
<unitdatestructured altrender="1766 Sep 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1766-09-08">1766 Sep 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_d1bd301acae73d56ffae947e9f6273aa">
<head>Scope and Contents</head>
<p>Wilton House <lb/> 2 p.; 23 x 19 cm. <lb/> On releasing dragoons of his <lb/> regiment. <lb/> 232/13</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426240"
id="ref43"
level="subseries">
<did>
<unittitle>PENRICE, THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426241"
id="ref44"
level="file">
<did>
<unittitle>2 ALS to Mr. Dulau, bookseller</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1808-12</unitdate>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_3028c3220f7e3cff69dc383bb6b1eccd">
<head>Scope and Contents</head>
<p>1808 Aug 12 and 1812 Jul 21 <lb/> Yarmouth and Narford <lb/> 2 p.; 24 x 18 cm. <lb/> 232/14-15</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426242"
id="ref46"
level="subseries">
<did>
<unittitle>PERKIN, BACON & PATCH</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426243"
id="ref47"
level="file">
<did>
<unittitle>ALS to Gurney, Turner & Co.</unittitle>
<unitdatestructured altrender="1845" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845">1845</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_2144a2f9c145b2bac1c639f22c61a96b">
<head>Scope and Contents</head>
<p>1845 Jun 21 and May 9, London <lb/> 3 p.; 25 x 20 cm. <lb/> On improved methods of printing <lb/> banknotes and documents. <lb/> 232/3-4</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426244"
id="ref49"
level="subseries">
<did>
<unittitle>PEYTON, SIR THOMAS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426245"
id="ref50"
level="file">
<did>
<unittitle>ALS to Sir Thomas Hare, 4th bart. (ca. 1688-1760)</unittitle>
<unitdatestructured altrender="1748 Nov 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1748-11-19">1748 Nov 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_fcd6c492832fcb8492c0fd47d5bb0496">
<head>Scope and Contents</head>
<p>Emneth <lb/> 2 p.; 20 x 16 cm. <lb/> Declines further participation. <lb/> 232/5</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426246"
id="ref52"
level="subseries">
<did>
<unittitle>REYNOLDS, WILLIAM, 1758-1803</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426247"
id="ref53"
level="file">
<did>
<unittitle>ALS to an unnamed recipient</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[no year]</unitdate>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_3aa15db500e8d6f2f426af2b330ae2c8">
<head>Scope and Contents</head>
<p>[no year] May 30 <lb/> n.p. <lb/> 1 p.; 22 x 18 cm. <lb/> 232/21</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426248"
id="ref55"
level="subseries">
<did>
<unittitle>RIBBANS, F. B.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426249"
id="ref56"
level="file">
<did>
<unittitle>ALS to the Committee of the Yarmouth Proprietary Grammar School</unittitle>
<unitdatestructured altrender="1843 Nov 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1843-11-27">1843 Nov 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_cc8fb87d7e46f6cfd9e0001319cc6c90">
<head>Scope and Contents</head>
<p>[Edgbaston] <lb/> 1 p.; 23 x 18 <lb/> 232/23</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426250"
id="ref58"
level="subseries">
<did>
<unittitle>RICHMOND, CHARLES GORDON-LENNOX, 5TH DUKE OF, 1791-1860</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426251"
id="ref59"
level="file">
<did>
<unittitle>2 ALS to Thomas William Anson, 1st earl of Lichfield (1795-1854)</unittitle>
<unitdatestructured altrender="1835-37" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1835">1835</fromdate>
<todate standarddate="1837">1837</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_29458c03f8050dccc8e4218863cb61a1">
<head>Scope and Contents</head>
<p>1835 Nov 15 and 1837 Feb 6, Goodwood <lb/> 7 p.; various sizes <lb/> 232/19-20</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426252"
id="ref61"
level="subseries">
<did>
<unittitle>RIGBY, EDWARD, 1804-1860</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426253"
id="ref62"
level="file">
<did>
<unittitle>ALS to Dawson Turner (1775-1858)</unittitle>
<unitdatestructured altrender="1834 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-02-06">1834 Feb 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_7363d96fb9fcb793464a500394d5df84">
<head>Scope and Contents</head>
<p>44 Parliament Street <lb/> 1 p.; 25 x 20 cm. <lb/> S. Gurney is attending his midwifery <lb/> lectures. <lb/> 232/2</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426254"
id="ref64"
level="subseries">
<did>
<unittitle>RIVAROL, ANTOINE DE, COUNT, 1753-1801</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426255"
id="ref65"
level="file">
<did>
<unittitle>AL (in French) to an unnamed recipient</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[1826 or later]</unitdate>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_03b61dc1d3cb16342676b040d0a39bf8">
<head>Scope and Contents</head>
<p>n.p. <lb/> 1 p.; 20 x 16 cm. <lb/> States that the Count has an <lb/> unedited letter of Burke - "On the <lb/> French Revolution". <lb/> 232/18</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426256"
id="ref67"
level="subseries">
<did>
<unittitle>RIVINGTON, JOHN, 1720-1792</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426257"
id="ref68"
level="file">
<did>
<unittitle>Account (receipted and signed) with Society for Promoting Christian Knowledge</unittitle>
<unitdatestructured altrender="1783 Apr 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-04-07">1783 Apr 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_173ee4e003f0df3d72b7297daa78092d">
<head>Scope and Contents</head>
<p>[London] <lb/> 1 p.; 23 x 18 cm. <lb/> 232/16</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426258"
id="ref70"
level="subseries">
<did>
<unittitle>RIVINGTON, JOHN, 1720-1792</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426259"
id="ref71"
level="file">
<did>
<unittitle>ALS to Cadell & Davies, publishers</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[no year]</unitdate>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_4a839b5421659254d5528908cb830aff">
<head>Scope and Contents</head>
<p>[no year] Sep 7 <lb/> [London] <lb/> 1 p.; 17 x 23 cm. <lb/> 232/17</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426260"
id="ref73"
level="subseries">
<did>
<unittitle>SCARSDALE, NATHANIEL CURZON, 2ND BARON, 1751-1837</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426261"
id="ref74"
level="file">
<did>
<unittitle>ALS to an unnamed recipient</unittitle>
<unitdatestructured altrender="[1806]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1806">[1806]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_9b4ab34afe54559f81759ad8a5e5f077">
<head>Scope and Contents</head>
<p>[Derby] <lb/> 1 p.; 12 x 19 cm. <lb/> Mounted with an envelope addressed <lb/> to Herries, Farquhar & Co., <lb/> dated 1817. <lb/> 232/1</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426262"
id="ref76"
level="subseries">
<did>
<unittitle>SCHWABE, DR.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426263"
id="ref77"
level="file">
<did>
<unittitle>AL to Charles Frederick Partington (?d. 1857)</unittitle>
<unitdatestructured altrender="1830 Feb 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-02-20">1830 Feb 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_54d814ff9cd2e74fc47f95498f6e8928">
<head>Scope and Contents</head>
<p>Stamford Hill <lb/> 1 p.; 23 x 18 cm. <lb/> Wants to buy patent feet warmer. <lb/> 232/56</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426264"
id="ref79"
level="subseries">
<did>
<unittitle>SEAFORTH, FRANCIS MACKENZIE HUMBERSTON, 1ST BARON, 1754-1815</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426265"
id="ref80"
level="file">
<did>
<unittitle>AL to James Christie, 1730-1803</unittitle>
<unitdatestructured altrender="1799 Jul 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1799-07-22">1799 Jul 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_98950a68ea57eef44d52f7d6569b1890">
<head>Scope and Contents</head>
<p>Hereford Street <lb/> 2 p.; 23 x 19 cm. <lb/> Attaches inventory requested. <lb/> 232/64</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426266"
id="ref82"
level="subseries">
<did>
<unittitle>SEAFORTH, FRANCIS MACKENZIE HUMBERSTON, BARON, 1754-1815</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426267"
id="ref83"
level="file">
<did>
<unittitle>AL to George Chalmers (1742-1825)</unittitle>
<unitdatestructured altrender="[1799?]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1799">[1799?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_417222c678b06fb6949955480a7d93c4">
<head>Scope and Contents</head>
<p>Princes Street <lb/> 1 p.; 23 x 18 cm. <lb/> 232/67</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426268"
id="ref85"
level="subseries">
<did>
<unittitle>SEFTON, WILLIAM PHILIP MOLYNEUX, 2ND EARL OF, 1772-1838</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426269"
id="ref86"
level="file">
<did>
<unittitle>ALS to James Christie (1730-1803)</unittitle>
<unitdatestructured altrender="[1801 Oct 26]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1801-10-26">[1801 Oct 26]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref86_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_e9817ba63ee6ac8a4888d1051f7a0eb9">
<head>Scope and Contents</head>
<p>Quorn <lb/> 3 p.; 23 x 19 cm. <lb/> Sale of a house. <lb/> 232/68</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426270"
id="ref88"
level="subseries">
<did>
<unittitle>SEWELL, WILLIAM, 1780-1853</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426271"
id="ref89"
level="file">
<did>
<unittitle>ALS to Mr. Stephenson</unittitle>
<unitdatestructured altrender="1813 Dec 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1813-12-29">1813 Dec 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref89_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_32936e5a3be7c70082cbec099a0b2b6f">
<head>Scope and Contents</head>
<p>Veterinary College <lb/> 2 p.; 24 x 19 cm. <lb/> 232/69</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426272"
id="ref91"
level="subseries">
<did>
<unittitle>SEYMOUR, LORD HUGH, 1759-1801</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426273"
id="ref92"
level="file">
<did>
<unittitle>ALS to General Bentham</unittitle>
<unitdatestructured altrender="1794" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1794">1794</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref92_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_ad80a53f5fda667db5dc714e490a1fa0">
<head>Scope and Contents</head>
<p>Admiralty <lb/> 2 p.; 24 x 19 cm. <lb/> 232/70</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426274"
id="ref94"
level="subseries">
<did>
<unittitle>SHARP, J. B.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426275"
id="ref95"
level="file">
<did>
<unittitle>ALS to William Upcott (1779-1845)</unittitle>
<unitdatestructured altrender="1822 Jun 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-06-26">1822 Jun 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref95_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
<scopecontent id="aspace_0ea3b629fc4e69204ba3f036f70c1855">
<head>Scope and Contents</head>
<p>21 Arundell Street <lb/> 2 p.; 25 x 20 cm. <lb/> Wishes a ticket to the Library for Mr. Gillow. <lb/> 232/71</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426276"
id="ref97"
level="subseries">
<did>
<unittitle>SHARPE, W.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426277"
id="ref98"
level="file">
<did>
<unittitle>ALS to John Stevens Henslow, (1796-1861)</unittitle>
<unitdatestructured altrender="1842 Sep 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1842-09-23">1842 Sep 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/381247 /locations/9"
containerid="39002084163303"
id="aspace_ref98_c1"
label="Mixed Materials"
localtype="box">1</container>
<daoset altrender="/repositories/11/digital_objects/280305">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/15494510"
identifier="oid:15494510"
linktitle="2 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/15494514/full/!150,150/0/default.jpg"
identifier="oid:15494510"
linktitle="[recto]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/15494510"
identifier="oid:15494510"
linktitle="[recto]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>ALS to John Stevens Henslow, (1796-1861)</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_a44a8f431b013795d6a6e8938213693a">
<head>Scope and Contents</head>
<p>Cambridge <lb/> 1 p.; 20 x 13 cm. <lb/> Published about 150 years ago by Mr. <lb/> Gouge of Christ College; Sales letter <lb/> per copy, title not mentioned. <lb/> 232/72</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/426278"
id="ref100"
level="subseries">
<did>
<unittitle>SHEFFIELD, CHARLES</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/426279"
id="ref101"