-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path719.xml
1166 lines (1166 loc) · 68.7 KB
/
719.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.pitt">beinecke.pitt</recordid>
<otherrecordid localtype="BIB">4421468</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William Pitt Collection
</titleproper>
<titleproper localtype="filing">Pitt (William) Collection</titleproper>
<author>by Kathryn Rawdon</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>May 1999</date>
<num>GEN MSS 442</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">4421468</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</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:32:10-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:32</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/719" level="collection">
<did>
<unittitle>William Pitt collection</unittitle>
<unitid>GEN MSS 442</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.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1758-1806" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1806">1806</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e3157a2b20786e03bf92a4eba5e4907f">Correspondence, writings, and other papers that document the lives and work of William Pitt, Earl of Chatham (1708-1778) and his son, William Pitt (1759-1806). Correspondents include John Murray, Duke of Atholl;George Nugent Temple Grenville, Marquess of Buckingham; Philip Yorke, Earl of Hardwicke; and George William Frederick Osborne, Duke of Leeds.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Pitt, William, Earl of Chatham, 1708-1778</part>
</persname>
</origination>
<origination label="Creator">
<persname>
<part localtype="agent_person">Pitt, William, 1759-1806</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_54860cb6ead5b32dbedd81f23d1343f3">
<head>Immediate Source of Acquisition</head>
<p>Gift of Frederick W. Hilles in memory of Bernhard Knollenberg, 1974.</p>
</acqinfo>
<userestrict id="aspace_7c09f4d8a17d67a70c522981bc8a7fea">
<head>Conditions Governing Use</head>
<p>The William Pitt 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_a70e23cabe5aa3d3e5dcf59a72f90fff">
<head>Preferred Citation</head>
<p>William Pitt Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_ac2420f25b080f5712701a0bc7f47659">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<bioghist id="aspace_cbdaf880d85e50e315aa3ac4a98d9ddd">
<head>WILLIAM PITT, EARL OF CHATHAM (1708-1778)</head>
<p>Born in London on 15 November 1708, "the elder Pitt," as William Pitt was known, was the son of Robert Pitt and Lady Harriet Villiers. He was educated at Eton and Trinity College, Oxford, and in 1735 entered parliament for Old Sarum, one of the boroughs controlled by his brother. He became secretary of state in 1756, where he was determined to continue and increase military action against France during the Seven Years War. Opposition from King George II forced him to resign a year later, but public support brought him back only a few months later. He was forced to resign again in 1761, when the cabinet refused to support a war with Spain. In 1766 he established a new ministry, but his health prevented him from serving any real function, and he resigned in 1768. Pitt died on 11 May 1778.</p>
</bioghist>
<bioghist id="aspace_04217b265ae08ae2285ab591baf6f683">
<head>WILLIAM PITT (1759-1806)</head>
<p>William Pitt was born in Kent, England on 28 May 1759, son of William Pitt, Earl of Chatham, and Lady Hester Grenville. He was educated at home as a child, and at age fourteen attended Pembroke Hall, Cambridge. In 1780, he was called to the bar, and joined the western assize circuit. He failed to win a parliamentary seat at Cambridge in 1780, but in 1781 he was elected to a seat for Appleby in Westmorland. In July of 1782, he became Chancellor of the Exchequer. He became the leader of the Commons in the ministry of William Petty, Earl of Shelburne, defeating Charles James Fox, with whom he began a lifelong rivalry. After the failure of the ministries of Shelburne and his successor, William Henry Cavendish-Bentinck, Duke of Portland, Pitt became Britain's youngest Prime Minister at the age of twenty-four. His seventeen-year term saw the reduction of the national debt, the union of England with Ireland, and the defeat of the invading French at Trafalgar. He died heavily in debt in 1806.</p>
</bioghist>
<scopecontent id="aspace_2a35e3498a21d5089b5e5da8c40dd7d7">
<head>Scope and Contents</head>
<p>The William Pitt Collection contains correspondence, writings and other papers that document the lives and work of William Pitt, Earl of Chatham (1708-1778) and his son, William Pitt (1759-1806). The collection has been arranged into two series, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> and <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, contains letters to and from both William Pitt the elder and the younger. Also included are third party letters.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref74">Series II, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref>, contains six texts, the authorship of which is undetermined, except the first, which has been attributed to Mr. Franklyn.</p>
</scopecontent>
<controlaccess>
<persname rules="aacr">
<part localtype="agent_person">Atholl, John Murray, Duke of, 1755-1830</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Buckingham, George Nugent Temple Grenville, Marquess of, 1753-1813</part>
</persname>
<persname>
<part localtype="agent_person">Hardwicke, Philip Yorke, Earl of, 1690-1764</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Leeds, George William Frederick Osborne, Duke of, 1775-1856</part>
</persname>
<persname>
<part localtype="agent_person">Pitt, William, Earl of Chatham, 1708-1778</part>
</persname>
<persname>
<part localtype="agent_person">Pitt, William, 1759-1806</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/225727"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1758-1806" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1806">1806</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_df8d25668c22176d18d103309e719305">0.30' (3/4 box)</physdesc>
</did>
<scopecontent id="aspace_9241680f1e3da8e1c8cf3c8ef4df08e1">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, is organized into three subseries: William Pitt, Earl of Chatham (1708-1778); William Pitt (1759-1806); and Third Party Letters.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/225728"
id="ref13"
level="subseries">
<did>
<unittitle>WILLIAM PITT, EARL OF CHATHAM (1708-1778)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225729"
id="ref14"
level="subseries">
<did>
<unittitle>Outgoing</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225730"
id="ref15"
level="file">
<did>
<unittitle>Bristol, George William Hervey, Earl of (extracts and originals)</unittitle>
<unitdatestructured altrender="1758" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758">1758</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1760" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760">1760</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225731"
id="ref16"
level="file">
<did>
<unittitle>Read, W. and E. Charlton</unittitle>
<unitdatestructured altrender="1759" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759">1759</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225732"
id="ref17"
level="file">
<did>
<unittitle>Stanley, Hans (extract of letter)</unittitle>
<unitdatestructured altrender="1761 Jul 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-07-28">1761 Jul 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
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/225733"
id="ref18"
level="subseries">
<did>
<unittitle>Incoming</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225734"
id="ref19"
level="file">
<did>
<unittitle>Abreu, Félix de (copies and originals)</unittitle>
<unitdatestructured altrender="1758-59" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1759">1759</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225735"
id="ref20"
level="file">
<did>
<unittitle>Bedford, John Russell, Duke of (1710-1771)</unittitle>
<unitdatestructured altrender="1759 Sep 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759-09-02">1759 Sep 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
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/225736"
id="ref21"
level="file">
<did>
<unittitle>Carteret, John, Earl Granville</unittitle>
<unitdatestructured altrender="1761 Apr 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-04-05">1761 Apr 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
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 altrender="/repositories/11/archival_objects/225737"
id="ref22"
level="file">
<did>
<unittitle>Dover, Joseph Yorke, Baron</unittitle>
<unitdatestructured altrender="1759" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759">1759</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225738"
id="ref23"
level="file">
<did>
<unittitle>Frankland, [Thomas, Sir?]</unittitle>
<unitdatestructured altrender="1759" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759">1759</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225739"
id="ref24"
level="file">
<did>
<unittitle>Hardwicke, Philip Yorke, Earl of (1690-1764)</unittitle>
<unitdatestructured altrender="1759-60" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1759">1759</fromdate>
<todate standarddate="1760">1760</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225740"
id="ref25"
level="file">
<did>
<unittitle>Hawke, Edward Hawke, Baron</unittitle>
<unitdatestructured altrender="1760 Dec 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-12-21">1760 Dec 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225741"
id="ref26"
level="file">
<did>
<unittitle>Porten, Stanier, Sir</unittitle>
<unitdatestructured altrender="1760 Apr 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-04-02">1760 Apr 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225742"
id="ref27"
level="file">
<did>
<unittitle>Stanley, Hans</unittitle>
<unitdatestructured altrender="1761" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761">1761</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">12</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/225743"
id="ref28"
level="subseries">
<did>
<unittitle>WILLIAM PITT (1759-1806)</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225744"
id="ref29"
level="subseries">
<did>
<unittitle>Outgoing</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225745"
id="ref30"
level="file">
<did>
<unittitle>Aldborough, [Edward Stratford, Earl of?]</unittitle>
<unitdatestructured altrender="1785 Aug 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-08-30">1785 Aug 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225746"
id="ref31"
level="file">
<did>
<unittitle>Courtney, Lord</unittitle>
<unitdatestructured altrender="1785 Sep 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-09-01">1785 Sep 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225747"
id="ref32"
level="file">
<did>
<unittitle>Lisburn, Sharman, Lt. Col. (draft)</unittitle>
<unitdatestructured altrender="1783 Aug 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-08-11">1783 Aug 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225748"
id="ref33"
level="file">
<did>
<unittitle>Miles, [William Augustus?]</unittitle>
<unitdatestructured altrender="1785 Dec 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-12-23">1785 Dec 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225749"
id="ref34"
level="file">
<did>
<unittitle>Molloy, Captain</unittitle>
<unitdatestructured altrender="1785 Oct 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-10-27">1785 Oct 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225750"
id="ref35"
level="file">
<did>
<unittitle>Sackville, [George Germain, Viscount] (draft)</unittitle>
<unitdatestructured altrender="1783 Dec 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-12-29">1783 Dec 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">18</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/225751"
id="ref36"
level="subseries">
<did>
<unittitle>Incoming</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225752"
id="ref37"
level="file">
<did>
<unittitle>Atholl, John Murray, Duke of (1755-1830)</unittitle>
<unitdatestructured altrender="1787-97" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1787">1787</fromdate>
<todate standarddate="1797">1797</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225753"
id="ref38"
level="file">
<did>
<unittitle>Auckland, William Eden, Baron</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225754"
id="ref39"
level="file">
<did>
<unittitle>Buckingham, George Nugent Temple Grenville, Marquess of</unittitle>
<unitdatestructured altrender="1783-85, n.d." label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1783">1783</fromdate>
<todate standarddate="1785">1785</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225755"
id="ref40"
level="file">
<did>
<unittitle>Carmarthen, Marquis of</unittitle>
</did>
<relatedmaterial id="aspace_16103409e54275ff7415037a96ad7b3a">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref44">See: George William Frederick Osborne, Duke of Leeds, box 1, folder 24</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/225756"
id="ref42"
level="file">
<did>
<unittitle>Castlereagh, Robert Stewart, Viscount (copy)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225757"
id="ref43"
level="file">
<did>
<unittitle>Cooke, Edward (fragment)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225758"
id="ref44"
level="file">
<did>
<unittitle>Leeds, George William Frederick Osborne, Duke of</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225759"
id="ref45"
level="file">
<did>
<unittitle>Miles, William Augustus</unittitle>
<unitdatestructured altrender="1785 Nov 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-11-17">1785 Nov 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225760"
id="ref46"
level="file">
<did>
<unittitle>Newcastle, Henry Fienness Pelham- Clinton, Duke of</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225761"
id="ref47"
level="file">
<did>
<unittitle>Orde, Thomas, Baron Bolton</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225762"
id="ref48"
level="file">
<did>
<unittitle>Portland, William Henry Cavendish- Bentinck, Duke of</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225763"
id="ref49"
level="file">
<did>
<unittitle>Redesdale, John Mitford, Baron</unittitle>
<unitdatestructured altrender="1800 Jul 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1800-07-07">1800 Jul 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225764"
id="ref50"
level="file">
<did>
<unittitle>Rous, George</unittitle>
<unitdate label="creation" unitdatetype="inclusive">[n.y.] Mar 26</unitdate>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225765"
id="ref51"
level="file">
<did>
<unittitle>Rutland, Charles Manners, Duke of</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225766"
id="ref52"
level="file">
<did>
<unittitle>Sackville, George Germain, Viscount</unittitle>
<unitdatestructured altrender="1783 Dec 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-12-31">1783 Dec 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225767"
id="ref53"
level="file">
<did>
<unittitle>Teignmouth, John Shore, Baron</unittitle>
<unitdatestructured altrender="1798 Jan 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1798-01-31">1798 Jan 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225768"
id="ref54"
level="file">
<did>
<unittitle>"G. R."</unittitle>
<unitdatestructured altrender="1785 Nov 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-11-04">1785 Nov 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225769"
id="ref55"
level="file">
<did>
<unittitle>Precis of letters received by Mr. Pitt</unittitle>
<unitdatestructured altrender="1793-1806" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1793">1793</fromdate>
<todate standarddate="1806">1806</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">35</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/225770"
id="ref56"
level="subseries">
<did>
<unittitle>THIRD PARTY LETTERS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225771"
id="ref57"
level="subseries">
<did>
<unittitle>Carmarthen, Marquis of</unittitle>
</did>
<relatedmaterial id="aspace_05a36f4b046ee8889391622dc4c82089">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref44">See: George William Frederick Osborne, Duke of Leeds, box 1, folder 24</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/225772"
id="ref59"
level="subseries">
<did>
<unittitle>Leeds, George William Frederick Osborne, Duke of</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225773"
id="ref60"
level="file">
<did>
<unittitle>To Mr. Crawford</unittitle>
<unitdatestructured altrender="1785 Nov 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-11-04">1785 Nov 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225774"
id="ref61"
level="file">
<did>
<unittitle>To Sir David Dalrymple</unittitle>
<unitdatestructured altrender="1785 Sep 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-09-30">1785 Sep 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225775"
id="ref62"
level="file">
<did>
<unittitle>To James Harris, Earl of Malmesbury (copy)</unittitle>
<unitdatestructured altrender="1785 Dec 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-12-16">1785 Dec 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225776"
id="ref63"
level="file">
<did>
<unittitle>To Charles Lennox, Duke of Richmond and Lennox[?] (copy)</unittitle>
<unitdatestructured altrender="1785 Dec 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-12-27">1785 Dec 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225777"
id="ref64"
level="file">
<did>
<unittitle>From Sir David Dalrymple (extracts, copies, and originals)</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225778"
id="ref65"
level="file">
<did>
<unittitle>From James Harris, Earl of Malmesbury</unittitle>
<unitdatestructured altrender="1785" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785">1785</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225779"
id="ref66"
level="file">
<did>
<unittitle>From Mr. Walpole (extract of letter)</unittitle>
<unitdatestructured altrender="1785 Dec 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-12-03">1785 Dec 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">42</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/225780"
id="ref67"
level="subseries">
<did>
<unittitle>Others</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/225781"
id="ref68"
level="file">
<did>
<unittitle>Munro, Al. to Mr. Woodford (extract of letters)</unittitle>
<unitdatestructured altrender="1785 Nov 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1785-11-24">1785 Nov 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225782"
id="ref69"
level="file">
<did>
<unittitle>Price, Richard to William Petty, [Marquis of Lansdowne?]</unittitle>
<unitdatestructured altrender="1782 Aug 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1782-08-06">1782 Aug 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20109 /locations/4051"
containerid="39002075016445"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/225783"
id="ref70"