-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1071.xml
2922 lines (2922 loc) · 161 KB
/
1071.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.clay">beinecke.clay</recordid>
<otherrecordid localtype="BIB">3946727</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Clayton Papers
</titleproper>
<titleproper localtype="filing">Clayton Papers</titleproper>
<author>by Beinecke Staff</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>June 1996</date>
<num>OSB MSS 40</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">3946727</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-3, 4 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object 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:08:22-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:08</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1071" level="collection">
<did>
<unittitle>Clayton papers</unittitle>
<unitid>OSB MSS 40</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>2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1589">1589</fromdate>
<todate standarddate="1824">1824</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a7e00a8482b248c990220f9e4ff1ee14">Papers documenting Clayton's and Morris's work as scriveners. The papers include receipts, indentures, money orders, notes, and short letters to Clayton and Morris. Some bear the signatures of Clayton and Morris.</abstract>
<physdesc id="aspace_f3aea39435556381a07c487bb83035fa">Other Storage Formats: Oversize</physdesc>
<origination label="Creator">
<persname>
<part localtype="agent_person">Clayton, Robert, Sir, 1629-1707</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f474ba9056dda0ac206c0927be37ad15">
<head>Immediate Source of Acquisition</head>
<p>Please consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_8692e84a2f53c0d049c86ab0907688c0">
<head>Conditions Governing Use</head>
<p>The Clayton Papers are 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_06d7223d82c12f9252a491ae6c91b866">
<head>Preferred Citation</head>
<p>Clayton Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_556d63fada10c619ce804c898750dfee">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_1f7297732d898341a52bf1db3923bdb5">
<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. If the collection also contains unlisted or unsorted material, this has been noted in the box-and-folder list.</p>
</processinfo>
<scopecontent id="aspace_23a0a95636004ca6c85bd8ce007c6e30">
<head>Scope and Contents</head>
<p>This finding aid encompasses accessions of materials pertaining to Robert Clayton and John Morris.</p>
</scopecontent>
<controlaccess>
<genreform identifier="http://vocab.getty.edu/aat/300027753" source="aat">
<part localtype="genre_form">Indentures</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300193975" source="aat">
<part localtype="genre_form">Money orders</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027573" source="aat">
<part localtype="genre_form">Receipts (financial records) </part>
</genreform>
<occupation source="local">
<part localtype="occupation">Scriveners (Law)</part>
<part localtype="geographic">England</part>
<part localtype="geographic">London</part>
</occupation>
<persname>
<part localtype="agent_person">Clayton, Robert, Sir, 1629-1707</part>
</persname>
<persname source="local">
<part localtype="agent_person">Morris, John, ca. 1627-1682</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/390073"
id="ref11"
level="series">
<did>
<unittitle>Papers documenting the work of Clayton and Morris</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390074"
id="ref12"
level="file">
<did>
<unittitle>Apsley, Sir Allen, 1616-1683.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390075"
id="ref13"
level="file">
<did>
<unittitle>14 ALS, 1 receipt, 1 money order to Robert Clayton and staff and "a schedule of Rents Parcell of the Dutchy of Lancast. Conveyed to Sir Allen Apsley by the King's Command," [v.p.]</unittitle>
<unitdatestructured altrender="1660 Aug 20-1679 Aug 23"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1660-08-20">1660 August 20</fromdate>
<todate standarddate="1679-08-23">1679 August 23</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
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/390076"
id="ref14"
level="file">
<did>
<unittitle>Indenture</unittitle>
<unitdatestructured altrender="1670 Apr 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1670-04-02">1670 Apr 2</datesingle>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_c5e42bc453e0b6923d47c3dafded81b1">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref197">See: Oversize, folder 134</ref>
</p>
</relatedmaterial>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390077"
id="ref16"
level="file">
<did>
<unittitle>Apsley, Sir Peter</unittitle>
<unitdatestructured altrender="[1679]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1679">[1679]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
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/390078"
id="ref17"
level="file">
<did>
<unittitle>Aram, Thomas. Indenture</unittitle>
<unitdatestructured altrender="1671 Jun 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1671-06-26">1671 Jun 26</datesingle>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_e303a52504838720bbc7c009ce3f2781">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref201">See: Oversize, folder 135</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/390079"
id="ref19"
level="file">
<did>
<unittitle>Ayliffe, George. DS acknowledging the receipt of legacy from Francis Englefield.</unittitle>
<unitdatestructured altrender="1670 Dec 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1670-12-14">1670 Dec 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390080"
id="ref20"
level="file">
<did>
<unittitle>Becher, Henry. 4 ALS to John Morris, [v.p.]</unittitle>
<unitdatestructured altrender="1675 Jan 20-1676 Apr 17"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1675-01-20">1675 January 20</fromdate>
<todate standarddate="1676-04-17">1676 April 17</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390081"
id="ref21"
level="file">
<did>
<unittitle>Belke, William. Receipt, [n.p.]</unittitle>
<unitdatestructured altrender="1663 Nov 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1663-11-09">1663 Nov 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">5</container>
</did>
<scopecontent id="aspace_8170787b9bed8b13a388f4317bfeca71">
<head>Scope and Contents</head>
<p>Countersigned by Edward Fane.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390082"
id="ref23"
level="file">
<did>
<unittitle>Berkshire, Charles Howard, 2d Earl of, ca. 1615-1679</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390083"
id="ref24"
level="file">
<did>
<unittitle>AL to Alderman Blackwell, [n.p.]</unittitle>
<unitdatestructured altrender="1670 May 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1670-05-09">1670 May 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390084"
id="ref25"
level="file">
<did>
<unittitle>AL to Robert Clayton, [n.p.]</unittitle>
<unitdatestructured altrender="1674 Mar 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1674-03-03">1674 Mar 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390085"
id="ref26"
level="file">
<did>
<unittitle>Indentures</unittitle>
<unitdatestructured altrender="1661-1670" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1661">1661</fromdate>
<todate standarddate="1670">1670</todate>
</daterange>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_c2bb5ffae1177cafd9f6f456928e2130">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref203">See: Oversize, folders 136-138</ref>
</p>
</relatedmaterial>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390086"
id="ref28"
level="file">
<did>
<unittitle>Berkshire, Thomas Howard, 1st Earl of, ca. 1590-1659</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390087"
id="ref29"
level="file">
<did>
<unittitle>Indentures, [n.p.]</unittitle>
<unitdatestructured altrender="1656-58" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1656">1656</fromdate>
<todate standarddate="1658">1658</todate>
</daterange>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_e6df179d47d9e0fdebcd5ac9385afe47">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref205">See: Oversize, folders 139-141</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/390088"
id="ref31"
level="file">
<did>
<unittitle>1 ALS, to Robert Clayton and John Morris</unittitle>
<unitdatestructured altrender="1662 Apr 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1662-04-09">1662 Apr 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390089"
id="ref32"
level="file">
<did>
<unittitle>DS to John Brewster, [n.p.]</unittitle>
<unitdatestructured altrender="1661 Jun 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1661-06-29">1661 Jun 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">9</container>
</did>
<scopecontent id="aspace_0726cf3f4229b43fc705fe750f08e874">
<head>Scope and Contents</head>
<p>Empowering John Morris and Robert Clayton to collect certain sums in payment of a loan to Howard. Damaged.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390090"
id="ref34"
level="file">
<did>
<unittitle>DS, London</unittitle>
<unitdatestructured altrender="1661 Apr 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1661-04-01">1661 Apr 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">10</container>
</did>
<scopecontent id="aspace_b8b46786ee819fb2eca8d79cfce6b913">
<head>Scope and Contents</head>
<p>Bond to Sir Robert Clayton.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390091"
id="ref36"
level="file">
<did>
<unittitle>DS, [n.p.]</unittitle>
<unitdatestructured altrender="1662 May 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1662-05-14">1662 May 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">11</container>
</did>
<scopecontent id="aspace_1efebe4acd449f64ab92b159a5a73ff5">
<head>Scope and Contents</head>
<p>Receipt for monies from Clayton and Morris.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390092"
id="ref38"
level="file">
<did>
<unittitle>Berkshire, Thomas Howard, 3d Earl of, ca. 1619-1706.</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390093"
id="ref39"
level="file">
<did>
<unittitle>DS (in Latin), [n.p.]</unittitle>
<unitdatestructured altrender="1677" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1677">1677</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390094"
id="ref40"
level="file">
<did>
<unittitle>6 ALS to Robert Clayton and John Morris, 3 bills for "writings done"</unittitle>
<unitdatestructured altrender="1667-1689" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1667">1667</fromdate>
<todate standarddate="1689">1689</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">13</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390095"
id="ref41"
level="file">
<did>
<unittitle>Beverly, Sir James, fl. 1660. 10 ALS to Robert Clayton and John Morris, [v.p.]</unittitle>
<unitdatestructured altrender="1659 Feb 12-1672 Nov 14"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1659-02-12">1659 February 12</fromdate>
<todate standarddate="1672-11-14">1672 November 14</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390096"
id="ref42"
level="file">
<did>
<unittitle>Bretland, R. 4 ALS to John Morris, [n.p.]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1675 Jan 11-1677</unitdate>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390097"
id="ref43"
level="file">
<did>
<unittitle>Buckingham, George Villiers, Duke of, 1628-1687. ALS to Mr. Morris. Gardiner's Accounts: Henry Story.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1667 Sep 16-1684</unitdate>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390098"
id="ref44"
level="file">
<did>
<unittitle>Carter, Richard, d. 1692. 3 ALS to Thomas Browne, Robert Clayton, and John Morris, [n.p.]</unittitle>
<unitdatestructured altrender="1672-76" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1672">1672</fromdate>
<todate standarddate="1676">1676</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">17</container>
</did>
<scopecontent id="aspace_74ea7161111038c5039d8fa013a4192e">
<head>Scope and Contents</head>
<p>Concerning naval matters.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390099"
id="ref46"
level="file">
<did>
<unittitle>Charlton, Mr. ALS to John Morris.</unittitle>
<unitdatestructured altrender="1676 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1676-07-08">1676 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390100"
id="ref47"
level="file">
<did>
<unittitle>Clarendon, Henry Hyde, 2d Earl of, 1638-1709. ALS to Robert Clayton, London</unittitle>
<unitdatestructured altrender="1674 Feb" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1674-02">1674 Feb</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390101"
id="ref48"
level="file">
<did>
<unittitle>Clayton, Robert, Sir Robert, 1629-1707</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/390102"
id="ref49"
level="file">
<did>
<unittitle>5 indentures, [n.p.]</unittitle>
<unitdatestructured altrender="1661-62" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1661">1661</fromdate>
<todate standarddate="1662">1662</todate>
</daterange>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_43aacaf8130b166a979776e629f7cb31">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref207">See: Oversize, folders 142-146</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/390103"
id="ref51"
level="file">
<did>
<unittitle>Receipt to Ambrose Holbeck, [n.p.]</unittitle>
<unitdatestructured altrender="1664 Jan 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1664-01-02">1664 Jan 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">20</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/390104"
id="ref52"
level="file">
<did>
<unittitle>Clitherow, James. 3 ALS, 19 money drafts, [n.p.]</unittitle>
<unitdatestructured altrender="1661 Jan 2-1677 Oct 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1661-01-02">1661 January 2</fromdate>
<todate standarddate="1677-10-11">1677 October 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">21</container>
</did>
<scopecontent id="aspace_4e10f04cac4da24bfa48f2dfc55537c2">
<head>Scope and Contents</head>
<p>Business correspondence to Thomas Browne, Robert Clayton, and John Morris.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390105"
id="ref54"
level="file">
<did>
<unittitle>Crane, William. 7 money orders, 1 receipt, [n.p.]</unittitle>
<unitdatestructured altrender="1661 Jun 26-1665 May 2"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1661-06-26">1661 June 26</fromdate>
<todate standarddate="1665-05-02">1665 May 2</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">22</container>
</did>
<scopecontent id="aspace_9caac0aa81c05e009ab492947c5395a5">
<head>Scope and Contents</head>
<p>Business correspondence to Thomas Browne, Robert Clayton, and John Morris. Sworn statement on reverse of Crane to Clayton and Morris, 1663 Jul 22.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390106"
id="ref56"
level="file">
<did>
<unittitle>Crispe, Thomas. ALS to Robert Clayton.</unittitle>
<unitdatestructured altrender="1660 Jul 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1660-07-17">1660 Jul 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390107"
id="ref57"
level="file">
<did>
<unittitle>Fane, Sir Francis, d. 1691. 12 ALS to Robert Clayton and John Morris and an undated memorial on behalf of Fane, [v.p.]</unittitle>
<unitdatestructured altrender="1664 Apr 13-1674 Nov 25"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1664-04-13">1664 April 13</fromdate>
<todate standarddate="1674-11-25">1674 November 25</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390108"
id="ref58"
level="file">
<did>
<unittitle>Fane, Sir Francis, fl. 1626. ALS to Sir Francis Fane (son), Fulbeck</unittitle>
<unitdatestructured altrender="1672 Nov 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1672-11-23">1672 Nov 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390109"
id="ref59"
level="file">
<did>
<unittitle>Graham, Ronald. ALS to Mr. Clayton</unittitle>
<unitdatestructured altrender="1677 Nov 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1677-11-24">1677 Nov 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390110"
id="ref60"
level="file">
<did>
<unittitle>Grahme, Ranald. 23 ALS, 2 money orders, [n.p.]</unittitle>
<unitdatestructured altrender="1663 Jul 15-1678 Mar 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1663-07-15">1663 July 15</fromdate>
<todate standarddate="1678-03-11">1678 March 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">27</container>
</did>
<scopecontent id="aspace_9ec89a3860bc0a1092a44fb98377e1df">
<head>Scope and Contents</head>
<p>Business correspondence to Lord Carlisle, Peter Clayton, Robert Clayton, Ranald Grahme, John Morris.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390111"
id="ref62"
level="file">
<did>
<unittitle>Hall, John. 12 ALS, 2 receipts, [n.p.]</unittitle>
<unitdatestructured altrender="1672 Feb 8-1682 Jun 16"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1672-02-08">1672 February 8</fromdate>
<todate standarddate="1682-06-16">1682 June 16</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">28</container>
</did>
<scopecontent id="aspace_8d9bb48d5b39686cfaefb4dc07376144">
<head>Scope and Contents</head>
<p>Business correspondence with Thomas Browne, Robert Clayton, and John Morris.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390112"
id="ref64"
level="file">
<did>
<unittitle>Hall, William. 1 receipt.</unittitle>
<unitdatestructured altrender="1660 Feb 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1660-02-12">1660 Feb 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390113"
id="ref65"
level="file">
<did>
<unittitle>Hardy, Robert. ALS on behalf of Mr. Hungate.</unittitle>
<unitdatestructured altrender="1674" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1674">1674</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390114"
id="ref66"
level="file">
<did>
<unittitle>Harris, C. 3 ALS to Robert Clayton, [v.p.]</unittitle>
<unitdatestructured altrender="1673-74" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1673">1673</fromdate>
<todate standarddate="1674">1674</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390115"
id="ref67"
level="file">
<did>
<unittitle>Heneage, Lady Faith. 8 ALS to Robert Clayton and John Morris, [n.p.]</unittitle>
<unitdatestructured altrender="1671 Jun 5-1677 Jul 23"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1671-06-05">1671 June 5</fromdate>
<todate standarddate="1677-07-23">1677 July 23</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390116"
id="ref68"
level="file">
<did>
<unittitle>Hodgkinson, William. 8 ALS to Robert Clayton, Thomas Gorman, and John Morris, [n.p.]</unittitle>
<unitdatestructured altrender="1675 Oct 26-1677 May 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1675-10-26">1675 October 26</fromdate>
<todate standarddate="1677-05-24">1677 May 24</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390117"
id="ref69"
level="file">
<did>
<unittitle>Holbech, Ambrose. 4 ALS to Robert Clayton and John Morris, [n.p.]</unittitle>
<unitdatestructured altrender="1661 Apr 1-1676 Jul 3"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1661-04-01">1661 April 1</fromdate>
<todate standarddate="1676-07-03">1676 July 3</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
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/390118"
id="ref70"
level="file">
<did>
<unittitle>Houghton, John, fl. 1669-1695. 2 ALS 2 DS, [n.p.]</unittitle>
<unitdatestructured altrender="1669-95" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1669">1669</fromdate>
<todate standarddate="1695">1695</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
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>
<scopecontent id="aspace_ef3408a2881dd0a717d8fe62ad6ae472">
<head>Scope and Contents</head>
<p>Business correspondence with Thomas Browne, Robert Clayton, and John Morris.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390119"
id="ref72"
level="file">
<did>
<unittitle>Houghton, Robert. 11 ALS, 2 DS, [n.p.]</unittitle>
<unitdatestructured altrender="1669-77" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1669">1669</fromdate>
<todate standarddate="1677">1677</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">36</container>
</did>
<scopecontent id="aspace_9f09a6477f1e03c14c23ab1b6a348fbe">
<head>Scope and Contents</head>
<p>Business correspondence to Thomas Browne, Robert Clayton, and John Morris.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/390120"
id="ref74"
level="file">
<did>
<unittitle>Howard, Bernard. 1 ALS.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/390121"
id="ref75"
level="file">
<did>
<unittitle>Howard, Cathrine. Autograph, n.p.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38499 /locations/4051"
containerid="39002099370687"