-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path11870.xml
3786 lines (3786 loc) · 228 KB
/
11870.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.steuart">beinecke.steuart</recordid>
<otherrecordid localtype="BIB">16625585</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Steuart Family Papers </titleproper>
<titleproper localtype="filing">Steuart Family Papers</titleproper>
<author>by Brooke McManus</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>March 2023</date>
<num>OSB MSS 341</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1-10, 13-14 (Oversize), 16 (Broadside), 18 (Broadside), 40 (Oversize), 42 (Oversize), 43-44 (Broadside), 50 (Broadside)</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 11-12 (Oversize), 15 (Roll), 17 (Roll), 19-20 (Roll), 21, 22 (Roll), 23-39, 41, 45-49</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>Describing Archives: A Content Standard</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.Describing Archives: A Content Standard</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>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-29T23:09:09-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 29, 2025 at 23:09</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/11870" level="collection">
<did>
<unittitle>Steuart family papers</unittitle>
<unitid>OSB MSS 341</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>In English and Latin.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>25.3</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">49 boxes + 5 roll, 4 broadside</physdesc>
<unitdatestructured altrender="1511-2011" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1511">1511</fromdate>
<todate standarddate="2011">2011</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1511">1511</fromdate>
<todate standarddate="1920">1920</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_6e69956ace799cadfdb311c8b355a3b4">The collection consists of correspondence, legal and financial papers, military orders and commissions, printed material, and a small amount of photographs by or relating to the Steuart family of Scotland.</abstract>
<origination label="Creator">
<famname relator="aut" rules="rda" source="local_beinecke">
<part localtype="agent_family">Steuart family</part>
</famname>
</origination>
</did>
<accessrestrict id="aspace_9404fad2a35d085f3f83d36e4ad324c3">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_734a482331e0e2b14abc2906bba00f53">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Bob Hower and Alison Hein on the James Marshall and Marie-Louise Osborn Collection Fund, 2018.</p>
</acqinfo>
<arrangement id="aspace_98f0dc7c871084b141806d5238bd6ef8">
<head>Arrangement</head>
<p>Organized into four series: I. Family Papers, 1511-1936. II. Dominica Plantation and Slavery Records, 1756-1815. III. Military Papers, 1799-1819. IV. Other Papers, 1679-2011.</p>
</arrangement>
<bioghist id="aspace_7184d6e654ec5c8347ad9e270c0100c5">
<head>Steuart family</head>
<p>The Steuart (or Stewart) family is descended from the Stewarts of Auchingown, Blackhall, and Ardgowan in Scotland. The family primarily lived in Steuarthall estate near Stirling, Scotland, and included attorneys, merchants, and soldiers. Walter Stewart was born circa 1671 to Anne Crawford (1635-1680) and Sir Archibald Stewart (circa 1635-circa 1722). Walter, who served as Solicitor General of Scotland, changed the spelling of the family surname to Steuart. He married Barbara Kae (or Kay), and they had at least four children, including Archibald (1701-1779), Barbara (1702-1737), John (1704-), and Ann (1706-). Archibald's oldest son, Walter, died in 1764. His sons Charles (-1784), a London merchant, James (-1798), John (-1789), Alexander (-1799), and David (1744-1823), a Writer to the Signet, owned a coffee plantation in Dominica, also called Steuarthall, that enslaved up to 100 people; another son, Archibald, was captain of the ship Warren in service to the British East India Company and died in Mumbai, India, in 1778. David's children included Archibald (-1823), an officer in the British Army who fought in the War of 1812; Robert (1776-1844), a solicitor and sheriff of Renfrewshire, Scotland; and George Mackenzie (1786-1855), a lieutenant general who worked for the East India Company. Robert's son Captain David Steuart (1830-1890) was deployed to India with the British Army's Regiment of Foot following the Indian Rebellion of 1857. George's ten children included Alice, who married the Reverend T. B. W. Niven.</p>
</bioghist>
<prefercite id="aspace_51f39cdc72a887ea73376f91bda335f0">
<head>Preferred Citation</head>
<p>Steuart Family Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_9406eddaf5613b4bcb6fb31432308827">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<scopecontent id="aspace_9375d3e2a1cccf2adfd60341a7ab2aae">
<head>Scope and Contents</head>
<p>The collection consists of correspondence, legal and financial papers, military orders and commissions, printed material, and a small amount of photographs by or relating to the Steuart family of Scotland. Early vellum and parchment documents with wax seals pertain to land owned by the Kae, Crawford, and Stewart families and Walter Steuart. Later materials concern Steuarthall estate in Scotland and the personal and business activities of Archibald Steuart and his sons Archibald, Alexander, Charles, David, James, John, and Walter; Robert Steuart, an attorney and sheriff, and his son Captain David Steuart, who served the British East India Company; and other Steuart descendants. Included are letters, appraisals, accounts, inventories, and mortgages related to lands and a coffee plantation in Dominica owned by the family, and people they enslaved there. The collection also documents the military career of Major General Archibald Steuart, including letters from Prince Edward Augustus, Duke of Kent, and accounts of the Battle of Lundy's Lane and other conflicts with American and Indigenous soldiers during the War of 1812; and a book of general orders for British soldiers and sailors serving under the command of Prince Frederick Augustus, Duke of York, during the Napoleonic Wars.</p>
</scopecontent>
<userestrict id="aspace_f0b8af3362f0a2ff61517bb2c18a8a2b">
<head>Conditions Governing Use</head>
<p>The Steuart Family Papers 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>
<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/300046300" source="aat">
<part localtype="genre_form">Photographs</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300028877" source="aat">
<part localtype="genre_form">Seals (artifacts)</part>
</genreform>
<subject source="local">
<part localtype="topical">Administration of estates</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2005008621"
source="lcsh">
<part localtype="topical">Coffee plantations</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065409"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="topical">Wars</part>
<part localtype="temporal">1812-1815</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009128668"
source="lcsh">
<part localtype="topical">Land tenure</part>
<part localtype="geographic">Scotland</part>
</subject>
<subject source="local">
<part localtype="topical">Land titles</part>
<part localtype="geographic">Scotland</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85078881"
source="lcsh">
<part localtype="topical">Lundy's Lane, Battle of, Ont., 1814</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Military orders</part>
<part localtype="geographic">Great Britain</part>
<part localtype="temporal">19th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85089767"
source="lcsh">
<part localtype="topical">Napoleonic Wars, 1800-1815</part>
</subject>
<subject source="local">
<part localtype="topical">Plantation owners</part>
<part localtype="geographic">West Indies</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Plantations</part>
<part localtype="geographic">West Indies</part>
<part localtype="temporal">18th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008110515"
source="lcsh">
<part localtype="topical">Real property</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Slaveholders</part>
<part localtype="geographic">West Indies</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008111728"
source="lcsh">
<part localtype="topical">Slavery</part>
<part localtype="geographic">West Indies</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Slaves</part>
<part localtype="geographic">West Indies</part>
</subject>
<geogname source="local">
<part localtype="geographic">Dominica</part>
<part localtype="topical">Economic conditions</part>
<part localtype="temporal">18th century</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85056632"
source="lcsh">
<part localtype="geographic">Great Britain</part>
<part localtype="topical">Colonies</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85064915"
source="lcsh">
<part localtype="geographic">India</part>
<part localtype="topical">History</part>
<part localtype="temporal">British occupation, 1765-1947</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85118824"
source="lcsh">
<part localtype="geographic">Scotland</part>
<part localtype="topical">Economic conditions</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh96009637"
source="lcsh">
<part localtype="geographic">Scotland</part>
<part localtype="topical">Economic conditions</part>
<part localtype="temporal">18th century</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n82060202"
source="lcsh">
<part localtype="geographic">Stirlingshire (Scotland)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140194"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">War of 1812</part>
</geogname>
<famname rules="rda" source="local_beinecke">
<part localtype="agent_family">Crawford family</part>
</famname>
<famname rules="rda" source="local_beinecke">
<part localtype="agent_family">Kae family</part>
</famname>
<persname>
<part localtype="agent_person">Edward Augustus, Prince, Duke of Kent, 1767-1820</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Frederick Augustus, Duke of York and Albany, 1763-1827</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, Alexander, -1799</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, Archibald, -1778</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, Archibald, -1823</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, David, 1744-1823</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, David, 1830-1890</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, James, -1798</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, John, -1789</part>
</persname>
<persname rules="rda" source="local_beinecke">
<part localtype="agent_person">Steuart, Robert, 1776-1844 </part>
</persname>
<persname>
<part localtype="agent_person">Steuart, Walter, -1764</part>
</persname>
<corpname rules="aacr" source="local">
<part localtype="agent_corporate_entity">British East India Company</part>
</corpname>
<famname rules="rda" source="local_beinecke">
<part localtype="agent_family">Steuart family</part>
</famname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3569808"
id="aspace_0e9b6947cd12e0a9279c7490e1c322fb"
level="series">
<did>
<unittitle>Family Papers</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>17.8</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">17 boxes + 5 roll, 2 broadside</physdesc>
<unitdatestructured altrender="1511–1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1511">1511</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_10a225a2b1c2d6510b0743f23b33dfc5">
<head>Scope and Contents</head>
<p>This series consists of early vellum and parchment deeds and legal documents pertaining to land owned by the Kae, Crawford, and Steuart families, correspondence, wills and estate papers, inventories, accounts, contracts, family histories, and other materials related to personal and business matters and people enslaved by the Steuarts. A number of materials concern the establishment and operation of Steuarthall estate in Stirling, Scotland, and the family's Dominica plantation, as well as David Steuart's claim to freeholder status.</p>
</scopecontent>
<arrangement id="aspace_cb2bd118318b6ce361262cc47c15b9c0">
<head>Arrangement</head>
<p>Arranged alphabetically by folder title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3569812"
id="aspace_c3e61f6a9b2b052cb8b81b505eb4293d"
level="file">
<did>
<unittitle>Kae, Crawford, and Stewart families</unittitle>
</did>
<scopecontent id="aspace_ee1e531ce14ee60db10396197d39e383">
<head>Scope and Contents</head>
<p>Primarily legal documents in Latin on vellum or parchment with wax seals attached. Included are deeds, accounts of land accumulated by the families, and marriage contracts.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3569836"
id="aspace_8a8ee4a44a6997b8400fe53eaed7ef6c"
level="item">
<did>
<unittitle>Vellum document signed by John Maston, with two hanging wax seals affixed to strips of vellum</unittitle>
<unitdatestructured altrender="circa 1500s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1500">1500</fromdate>
<todate standarddate="1599">1599</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394168"
containerid="39002137199395"
id="aspace_8a8ee4a44a6997b8400fe53eaed7ef6c_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569837"
id="aspace_8d64bc6295e6b4c457e12d10d8941aef"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1548 March 8" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1548-03-08">1548 March 8</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394169"
containerid="39002137199403"
id="aspace_8d64bc6295e6b4c457e12d10d8941aef_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569838"
id="aspace_cd7c79de3c6260fff07785fa40880375"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1569 May 20" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1569-05-20">1569 May 20</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394170"
containerid="39002137199411"
id="aspace_cd7c79de3c6260fff07785fa40880375_c1"
label="Mixed Materials"
localtype="box">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569839"
id="aspace_97e9d7cd7c2bafd67bd6ed6a8084d306"
level="item">
<did>
<unittitle>Vellum document, with two hanging wax seals affixed to strips of vellum</unittitle>
<unitdatestructured altrender="circa 1588 February 22"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1588-02-22">1588 February 22</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394171"
containerid="39002137199429"
id="aspace_97e9d7cd7c2bafd67bd6ed6a8084d306_c1"
label="Mixed Materials"
localtype="box">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569840"
id="aspace_e8f6367f88f75d6acde3a47e56f7946d"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1588 February 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1588-02-24">1588 February 24</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394172"
containerid="39002137199437"
id="aspace_e8f6367f88f75d6acde3a47e56f7946d_c1"
label="Mixed Materials"
localtype="box">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569841"
id="aspace_5ecb8d555b4f5ea94bac615b463655b9"
level="item">
<did>
<unittitle>Vellum document, with two hanging wax seals affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1607 April 6" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1607-04-06">1607 April 6</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394173"
containerid="39002137199445"
id="aspace_5ecb8d555b4f5ea94bac615b463655b9_c1"
label="Mixed Materials"
localtype="box">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569842"
id="aspace_f7a406342c203853462e66077cbe7231"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1607 May 12" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1607-05-12">1607 May 12</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394174"
containerid="39002137199452"
id="aspace_f7a406342c203853462e66077cbe7231_c1"
label="Mixed Materials"
localtype="box">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569843"
id="aspace_0ce596e73cba82067d7a49d88a2fd5a3"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1528 September 7"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1528-09-07">1528 September 7</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394175"
containerid="39002137199460"
id="aspace_0ce596e73cba82067d7a49d88a2fd5a3_c1"
label="Mixed Materials"
localtype="box">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569844"
id="aspace_22be8de66259eae2b802b0c460ed3640"
level="item">
<did>
<unittitle>Vellum document, with hanging wax seal affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1588 July 21" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1588-07-21">1588 July 21</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394176"
containerid="39002137199478"
id="aspace_22be8de66259eae2b802b0c460ed3640_c1"
label="Mixed Materials"
localtype="box">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569845"
id="aspace_314987e696335e4ce6cbbe0cee062766"
level="item">
<did>
<unittitle>Vellum document, with two hanging wax seals affixed to strips of vellum</unittitle>
<unitdatestructured altrender="1613" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1613">1613</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394177"
containerid="39002137199486"
id="aspace_314987e696335e4ce6cbbe0cee062766_c1"
label="Mixed Materials"
localtype="box">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569846"
id="aspace_bcb8e345940ef5d5c72a1b45d8def51f"
level="item">
<did>
<unittitle>Vellum documents</unittitle>
<unitdatestructured altrender="circa 1500s-1632"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1500">1500</fromdate>
<todate standarddate="1632">1632</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394178"
containerid="39002137199510"
id="aspace_bcb8e345940ef5d5c72a1b45d8def51f_c1"
label="Mixed Materials"
localtype="box">13 (Oversize)</container>
<container id="aspace_bcb8e345940ef5d5c72a1b45d8def51f_c2"
localtype="folder"
parent="aspace_bcb8e345940ef5d5c72a1b45d8def51f_c1">12-15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569847"
id="aspace_2a078abdcc5427c4b404f7a6a766ec56"
level="item">
<did>
<unittitle>Vellum and parchment documents</unittitle>
<unitdatestructured altrender="1511–1696" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1511">1511</fromdate>
<todate standarddate="1696">1696</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394179 /locations/9"
containerid="39002137199619"
id="aspace_2a078abdcc5427c4b404f7a6a766ec56_c1"
label="Mixed Materials"
localtype="box">23</container>
<container id="aspace_2a078abdcc5427c4b404f7a6a766ec56_c2"
localtype="folder"
parent="aspace_2a078abdcc5427c4b404f7a6a766ec56_c1">21-27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569848"
id="aspace_edef4d309f69bb0c6cc56371e9dc8d20"
level="item">
<did>
<unittitle>Scroll related to the Kae family</unittitle>
<unitdatestructured altrender="circa 1500s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1500">1500</fromdate>
<todate standarddate="1599">1599</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394180 /locations/9"
containerid="39002137199536"
id="aspace_edef4d309f69bb0c6cc56371e9dc8d20_c1"
label="Mixed Materials"
localtype="box">15 (Roll)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569849"
id="aspace_fdd468f822635f143c99c1492a2bda2b"
level="item">
<did>
<unittitle>Vellum and parchment documents</unittitle>
<unitdatestructured altrender="1569–1632" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1569">1569</fromdate>
<todate standarddate="1632">1632</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394181 /locations/9"
containerid="39002137199627"
id="aspace_fdd468f822635f143c99c1492a2bda2b_c1"
label="Mixed Materials"
localtype="box">24</container>
<container id="aspace_fdd468f822635f143c99c1492a2bda2b_c2"
localtype="folder"
parent="aspace_fdd468f822635f143c99c1492a2bda2b_c1">28-36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569850"
id="aspace_d233bb9a94538613fc33d32fce12acdf"
level="item">
<did>
<unittitle>Vellum and parchment documents</unittitle>
<unitdatestructured altrender="1599–1679" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1599">1599</fromdate>
<todate standarddate="1679">1679</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394182 /locations/9"
containerid="39002137199635"
id="aspace_d233bb9a94538613fc33d32fce12acdf_c1"
label="Mixed Materials"
localtype="box">25</container>
<container id="aspace_d233bb9a94538613fc33d32fce12acdf_c2"
localtype="folder"
parent="aspace_d233bb9a94538613fc33d32fce12acdf_c1">37-47</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569851"
id="aspace_300cce75f79cb22a81644033d9d1f7b8"
level="item">
<did>
<unittitle>Vellum and parchment documents</unittitle>
<unitdatestructured altrender="1615–1699" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1615">1615</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394183 /locations/9"
containerid="39002137199494"
id="aspace_300cce75f79cb22a81644033d9d1f7b8_c1"
label="Mixed Materials"
localtype="box">11 (Oversize)</container>
<container id="aspace_300cce75f79cb22a81644033d9d1f7b8_c2"
localtype="folder"
parent="aspace_300cce75f79cb22a81644033d9d1f7b8_c1">1-4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569852"
id="aspace_b608ad5b6ee925eacd3e4270810d0568"
level="item">
<did>
<unittitle>Parchment documents</unittitle>
<unitdatestructured altrender="1615–1670" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1615">1615</fromdate>
<todate standarddate="1670">1670</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394184"
containerid="39002137199528"
id="aspace_b608ad5b6ee925eacd3e4270810d0568_c1"
label="Mixed Materials"
localtype="box">14 (Oversize)</container>
<container id="aspace_b608ad5b6ee925eacd3e4270810d0568_c2"
localtype="folder"
parent="aspace_b608ad5b6ee925eacd3e4270810d0568_c1">17-20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3796036"
id="aspace_bcfc0e5296e565ba25c73a7216e211ad"
level="item">
<did>
<unittitle>Parchment documents, 1615–1670</unittitle>
<container altrender="/repositories/11/top_containers/405060"
containerid="39002140864670"
id="aspace_bcfc0e5296e565ba25c73a7216e211ad_c1"
label="Mixed Materials"
localtype="box">50 (Broadside)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569853"
id="aspace_5cefb96f0c81703e8cf85fe578955621"
level="item">
<did>
<unittitle>Parchment scroll</unittitle>
<unitdatestructured altrender="1632 April 18" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1632-04-18">1632 April 18</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394185"
containerid="39002137199585"
id="aspace_5cefb96f0c81703e8cf85fe578955621_c1"
label="Mixed Materials"
localtype="box">16 (Broadside)</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569854"
id="aspace_3c3a2848df95d44a2714981e8d212aa6"
level="item">
<did>
<unittitle>Parchment scroll related to Anna Kae, Mathew Stewart, and Cannonsgate</unittitle>
<unitdatestructured altrender="circa 1600s" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1600">1600</fromdate>
<todate standarddate="1699">1699</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394186 /locations/9"
containerid="39002137199544"
id="aspace_3c3a2848df95d44a2714981e8d212aa6_c1"
label="Mixed Materials"
localtype="box">17 (Roll)</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3569813"
id="aspace_e4de72d563bea4255f860731c312b1f3"
level="file">
<did>
<unittitle>Steuart family</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3569855"
id="aspace_3d18597fa82750d6d8ae75e881b0066b"
level="file">
<did>
<unittitle>Alexander Steuart death and funeral costs</unittitle>
<unitdatestructured altrender="1799" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1799">1799</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_3d18597fa82750d6d8ae75e881b0066b_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_3d18597fa82750d6d8ae75e881b0066b_c2"
localtype="folder"
parent="aspace_3d18597fa82750d6d8ae75e881b0066b_c1">57</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569856"
id="aspace_05d9ce7d42a35096029f51ecfd00272f"
level="file">
<did>
<unittitle>Archibald, Captain Archibald, David, and Robert Steuart</unittitle>
</did>
<scopecontent id="aspace_6beaaa3855b0882563c7580197c7f6ad">
<head>Scope and Contents</head>
<p>Lease agreements, lists of land owned, promissory notes, wills, and correspondence. Some materials relate to the lands of Dullatur and Todsbought. Includes an memorandum to David Steuart related to tax duties payable for his freehold in the parish of Mairns and shire of Renfrew.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/3569956"
id="aspace_a42bb8669257265ec44858f6b0aae8c2"
level="item">
<did>
<unittitle>Correspondence and documents</unittitle>
<unitdatestructured altrender="1778–1844" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1778">1778</fromdate>
<todate standarddate="1844">1844</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_a42bb8669257265ec44858f6b0aae8c2_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_a42bb8669257265ec44858f6b0aae8c2_c2"
localtype="folder"
parent="aspace_a42bb8669257265ec44858f6b0aae8c2_c1">58-60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569957"
id="aspace_57a1956ccf58d6560414061346b678e5"
level="item">
<did>
<unittitle>Duplicate of the latter will of the recently deceased Captain Archibald Steuart</unittitle>
<unitdatestructured altrender="1778" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1778">1778</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394188 /locations/9"
containerid="39002137199643"
id="aspace_57a1956ccf58d6560414061346b678e5_c1"
label="Mixed Materials"
localtype="box">26</container>
<container id="aspace_57a1956ccf58d6560414061346b678e5_c2"
localtype="folder"
parent="aspace_57a1956ccf58d6560414061346b678e5_c1">48</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/3569857"
id="aspace_47be914d75c5d6fd5032f5c524bd6435"
level="file">
<did>
<unittitle>Captain David Steuart</unittitle>
<unitdatestructured altrender="1842–1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1842">1842</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_47be914d75c5d6fd5032f5c524bd6435_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_47be914d75c5d6fd5032f5c524bd6435_c2"
localtype="folder"
parent="aspace_47be914d75c5d6fd5032f5c524bd6435_c1">61-64</container>
</did>
<scopecontent id="aspace_b2971276d9489dc08cf5fac59cfbe117">
<head>Scope and Contents</head>
<p>Includes Steuart's early letters and a notebook, copy of his birth certificate, military papers related to his service with the 34th Regiment in India, inventories, accounts, bonds, and correspondence related to his financial affairs.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3569858"
id="aspace_230cba4c83844daa50deda44bd852d9f"
level="file">
<did>
<unittitle>Captain David Steuart</unittitle>
<unitdatestructured altrender="1860–1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394189 /locations/9"
containerid="39002137199502"
id="aspace_230cba4c83844daa50deda44bd852d9f_c1"
label="Mixed Materials"
localtype="box">12 (Oversize)</container>
<container id="aspace_230cba4c83844daa50deda44bd852d9f_c2"
localtype="folder"
parent="aspace_230cba4c83844daa50deda44bd852d9f_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569859"
id="aspace_67f4fc38297efc872dd4ae9f51821155"
level="file">
<did>
<unittitle>Captain David Steuart accounts</unittitle>
<unitdatestructured altrender="1860–1874" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1874">1874</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_67f4fc38297efc872dd4ae9f51821155_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_67f4fc38297efc872dd4ae9f51821155_c2"
localtype="folder"
parent="aspace_67f4fc38297efc872dd4ae9f51821155_c1">65-66</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569860"
id="aspace_8f70d9be26dfd7a882b81dbcc08620ea"
level="file">
<did>
<unittitle>Charles Steuart of Kirkwood</unittitle>
<unitdatestructured altrender="1722–1779" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1722">1722</fromdate>
<todate standarddate="1779">1779</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_8f70d9be26dfd7a882b81dbcc08620ea_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_8f70d9be26dfd7a882b81dbcc08620ea_c2"
localtype="folder"
parent="aspace_8f70d9be26dfd7a882b81dbcc08620ea_c1">67-68</container>
</did>
<scopecontent id="aspace_dc6f966e4b9f3be626a8beaecf7f83af">
<head>Scope and Contents</head>
<p>Documents related to the land and titles of the Kirkwood estate, correspondence, and other papers. Includes agreement of Charles to sell his share in Steuarthall plantation in Dominica to Alexander Steuart.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3569861"
id="aspace_ae7265e2f4a77decd35ef3852ed41d8f"
level="file">
<did>
<unittitle>Charles Steuart of Kirkwood death/Kirkwood estate final accounts</unittitle>
<unitdatestructured altrender="1777–1781" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1777">1777</fromdate>
<todate standarddate="1781">1781</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394187 /locations/9"
containerid="39002137199668"
id="aspace_ae7265e2f4a77decd35ef3852ed41d8f_c1"
label="Mixed Materials"
localtype="box">28</container>
<container id="aspace_ae7265e2f4a77decd35ef3852ed41d8f_c2"
localtype="folder"
parent="aspace_ae7265e2f4a77decd35ef3852ed41d8f_c1">69-70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569862"
id="aspace_54c8239d225cbbc68d23a1028edd3b8b"
level="file">
<did>
<unittitle>David Steuart, Writer to the Signet</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3569958"
id="aspace_2c8d0bb031b93492faa44fa2c7ffa537"
level="item">
<did>
<unittitle>Papers</unittitle>
<unitdatestructured altrender="1758–1768" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1758">1758</fromdate>
<todate standarddate="1768">1768</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394190 /locations/9"
containerid="39002137199676"
id="aspace_2c8d0bb031b93492faa44fa2c7ffa537_c1"
label="Mixed Materials"
localtype="box">29</container>
<container id="aspace_2c8d0bb031b93492faa44fa2c7ffa537_c2"
localtype="folder"
parent="aspace_2c8d0bb031b93492faa44fa2c7ffa537_c1">71-73</container>
</did>
<scopecontent id="aspace_d54581874dcbcc631b08cf5365d7280a">
<head>Scope and Contents</head>
<p>Indentures, certificates, commissions, accounts current, and other papers.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3569959"
id="aspace_0fef859e8cb4ea847e61f9f251cc4c2a"
level="item">
<did>
<unittitle>Statement of accounts</unittitle>
<unitdatestructured altrender="1770–1812" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1770">1770</fromdate>
<todate standarddate="1812">1812</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394190 /locations/9"
containerid="39002137199676"
id="aspace_0fef859e8cb4ea847e61f9f251cc4c2a_c1"
label="Mixed Materials"
localtype="box">29</container>
<container id="aspace_0fef859e8cb4ea847e61f9f251cc4c2a_c2"
localtype="folder"
parent="aspace_0fef859e8cb4ea847e61f9f251cc4c2a_c1">74-78</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3569960"
id="aspace_fafc5a3ee8d522cc18297e8f0b70a756"
level="item">
<did>
<unittitle>Papers, freeholder</unittitle>
<unitdatestructured altrender="1800–1821" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1800">1800</fromdate>
<todate standarddate="1821">1821</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394190 /locations/9"
containerid="39002137199676"
id="aspace_fafc5a3ee8d522cc18297e8f0b70a756_c1"
label="Mixed Materials"
localtype="box">29</container>
<container id="aspace_fafc5a3ee8d522cc18297e8f0b70a756_c2"
localtype="folder"
parent="aspace_fafc5a3ee8d522cc18297e8f0b70a756_c1">79-81</container>
</did>
<scopecontent id="aspace_25c76a316d740fe7d1dca29ee8f692c0">
<head>Scope and Contents</head>
<p>Correspondence, accounts, contracts, and other papers. Includes a letter from John Steuart in Dominica discussing business matters and people enslaved by the family.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3569961"
id="aspace_7d2e358b4a747573373698ca25fcd6f9"
level="item">
<did>
<unittitle>David Steuart and Robert Steuart</unittitle>
<unitdatestructured altrender="1823–1826" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1823">1823</fromdate>
<todate standarddate="1826">1826</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/394190 /locations/9"
containerid="39002137199676"
id="aspace_7d2e358b4a747573373698ca25fcd6f9_c1"
label="Mixed Materials"