-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1247.xml
2210 lines (2210 loc) · 125 KB
/
1247.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.dey">beinecke.dey</recordid>
<otherrecordid localtype="BIB">4011629</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Anthony Dey Galveston Bay and Texas Land Company Records
</titleproper>
<titleproper localtype="filing">Dey (Anthony) Galveston Bay and Texas Land Company Records</titleproper>
<author>by Diana M. Smith</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>September 1996</date>
<num>WA MSS S-1743</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">4011629</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-6, bsd, folder 94</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="5">5</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="46">46</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:19:29-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:19</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1247" level="collection">
<did>
<unittitle>Anthony Dey Galveston Bay and Texas Land Company records</unittitle>
<unitid>WA MSS S-1743</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>5.87</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">6 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1821">1821</fromdate>
<todate standarddate="1855">1855</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1830">1830</fromdate>
<todate standarddate="1835">1835</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_fd6e2b8f49076dd94f1b6d5690a38517">The records consist of correspondence, documents, account books, case files, financial papers, and printed material which document one of the earliest Texas land companies. The correspondence concerns the company's business, dealing with agents, and receiving reports from Texas, Mexico City, and various places in Europe. Principal correspondents include John T. Mason, William H. Sumner, Jonathan Turnbull, G. H. Paulsen, and William S. Allen. Other papers in the collection include copies of grants, agreeements with agents, papers relating to court cases, highly detailed account books, printed scrip, and a small amount of printed material including newspapers, broadsides, and pamphlets.</abstract>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Dey, Anthony, 1776-1859</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_000d3df1c64a8c0fa27871e134195ab2">
<head>Immediate Source of Acquisition</head>
<p>The papers were purchased from High Ridge Books, Inc. in 1992-1993 on the Frederick W. and Carrie S. Beinecke Fund for Western Americana.</p>
</acqinfo>
<userestrict id="aspace_160692064ca2c16760c86fe3eb404a0d">
<head>Conditions Governing Use</head>
<p>The Anthony Dey Galveston Bay and Texas Land Company Records 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_32327bd18acacdacee9f6e7d63104585">
<head>Preferred Citation</head>
<p>Anthony Dey Galveston Bay and Texas Land Company Records. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_28f0865f1f76b39ef450a6ac2c02b7d9">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_12b09fdbc3bd69e74d8e76535ce0bba4">
<head>Processing Information</head>
<p>When the collection arrived at the Beinecke Library, it required extensive conservation treatment. The papers were treated and encapsulated in mylar, but there is still much evidence of water damage, mildew, fading of ink, and incursions of insects affecting text.</p>
</processinfo>
<bioghist id="aspace_e3de589528be5bde3ab6be4730b738c0">
<head>GALVESTON BAY AND TEXAS LAND COMPANY</head>
<p>The Galveston Bay and Texas Land Company was organized in New York on October 16, 1830 by Anthony Dey, George Curtis, and William H. Sumner. The company was to work as agents of empresarios Joseph Vehlein, David G. Burnet, and Lorenzo de Zavala, who had grants of land east of the San Jacinto River and south of Nacogdoches. Anthony Dey (1776-1859), a lawyer in New York, was the president of the company; the other trustees were George Curtis (1799-1884), also a lawyer in New York, and William H. Sumner (1780-1861), a lawyer in Boston.</p>
<p>The company was the first commercial effort in the United States to emulate Stephen Austin's plans to colonize Texas, and it published some of the earliest accounts of Texas printed in English. The company owned none of the land to be colonized but instead sold scrip which was a permit to settle. The company's American agents included Jose Antonio Mexia and John T. Mason; it also had several agents in Europe soliciting recruits. Once in Texas, the settlers would have to complete the requirements of the Mexican colonization law before they could obtain title to their land. Restrictions imposed by the government of Mexico frustrated the company's efforts, and it became a strong supporter of Texas independence.</p>
<p>In November 1835 the General Council of the provisional government of Texas closed the land office. At that time the company had not received the premium lands (three haciendas and two labors) the Mexican government had promised to empresarios for settling 200 families. When the Republic passed a law in June 1837 that permitted empresarios to institute suit to establish their claims so long as neither aliens nor assignees of aliens should benefit by the law, the company authorized Robert Rose, successor of John T. Mason, to enter a suit. In 1848 the courts ruled that the term aliens applied to assignees of the company and that Rose was not qualified to sue. With the failure of the suit, the company went out of business. Even after this time, however, Anthony Dey continued to pursue his claims against the Mexican government in court, and was sued by other members of the company.</p>
</bioghist>
<scopecontent id="aspace_8b826a67802bd045ca64a0f83e2d2e11">
<head>Scope and Contents</head>
<p>The Anthony Dey Galveston Bay and Texas Land Company Records consist of correspondence, documents, account books, case files, financial papers, and printed material which document the workings of one of the earliest Texas land companies. The collection spans the years 1828-1855, but the bulk of the material dates from the most active years of the company, 1830-1835.</p>
<p>The Records are organized into five series: Correspondence, Agreements, Grants and Proposals, Court Actions, Financial Papers, and Printed Material. Boxes 4-6 contain Oversize material.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref12">Series I, Correspondence</ref> (1828-1855), contains letters addressed to either Anthony Dey or the Galveston Bay Company and letters from Dey, as well as a small group of third party correspondence. The series is arranged chronologically. The earliest correspondences date from the time that Lorenzo de Zavala obtained his grant; later letters concern the company's business, including correspondence with agents both in Texas and Europe, sending instructions and receiving news from Texas, Mexico City and various places in Europe. There are also inquiries in response to the Company's advertisements, letters from surveyors, and discussions of the advantages of to the United States if it were to purchase Texas from Mexico. Principal correspondents include John T. Mason, William H. Sumner, Jonathan Turnbull, G. H. Paulsen, and William S. Allen. There is a gap in the correspondence from January 1836 to June 1849. The letters from 1849-1851 are written by William H. Sumner to Anthony Dey and concern a memorial to President James K. Polk that Sumner was preparing. Five folders of correspondence fragments have been placed at the end of the series. One of these, folder number 18, contains correspondence, probably written to John T. Mason, discussing the merits of the United States owning Texas.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref31">Series II, Agreements, Grants, and Proposals</ref> (1826-1835) contains documents related to the people and events discussed in the correspondence of Series I. The files include copies of the grants of the empresarios, agreements with agents, letters of attorney for agents to sell scrip, and proposals of surveyors. <ref actuate="onrequest" show="replace" target="ref68">Series III, Court Actions</ref> (1832-1852), contains papers relating to four court cases in which the company or Dey was involved, which are arranged by case. The first, Anthony Dey, impleaded with George Curtis ads. Charles A. Carter concerns a dispute with a land agent over payment for services rendered. The second case, Anthony Dey ads. Peter Reinoudt and Stewart Newell concerns Anthony Dey's dispute with his agents Newell and Reinoudt over the allocation of the grant lands. The case of Galveston Bay Company vs. Federal Government of Mexico consists of Anthony Dey's claims against the government of Mexico for the expenses incurred and premiums not gained due to governmental interference. The case of Stephen Whitney et al. vs. Anthony Dey et al. concerns a complaint brought by Stephen Whitney and others who had been appointed directors of the Galveston Bay Company.</p>
<p>Anthony Dey's personal financial papers are included with Galveston Bay Company papers in <ref actuate="onrequest" show="replace" target="ref94">Series IV, Financial Papers</ref> (1821-1837). A two volume, highly detailed, account book dating from 1821 to 1834 carries both personal and business accounts, from the payment of servants, and purchase of horses and bread to the sale of shares in the Galveston Bay Company. Also present is Anthony Dey's bankbook as trustee of the company, and eight printed scrip, one of which was printed in Germany. <ref actuate="onrequest" show="replace" target="ref118">Series V, Printed Material</ref>, includes newspapers, pamphlets (one published in Germany), broadsides, and other printed ephemera. Several items in this series have been cataloged separately, but remain with the collection.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref142">Oversize</ref> contains material from Series II, IV, and V, arranged in box order.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Land companies</part>
<part localtype="geographic">Texas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh90001971"
source="lcsh">
<part localtype="topical">Land grants</part>
<part localtype="geographic">Texas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008110494"
source="lcsh">
<part localtype="topical">Real property</part>
<part localtype="geographic">Texas</part>
</subject>
<geogname source="local">
<part localtype="geographic">Coahuila and Texas (Mexico)</part>
<part localtype="topical">Colonization</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85134258"
source="lcsh">
<part localtype="geographic">Texas</part>
<part localtype="topical">Description and travel</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="topical">Emigration and immigration</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85134262"
source="lcsh">
<part localtype="geographic">Texas</part>
<part localtype="topical">History</part>
<part localtype="temporal">To 1846</part>
</geogname>
<genreform identifier="http://vocab.getty.edu/aat/300027483" source="aat">
<part localtype="genre_form">Account books</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300026977" source="aat">
<part localtype="genre_form">Case files</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027253" source="aat">
<part localtype="genre_form">Land grants</part>
</genreform>
<persname>
<part localtype="agent_person">Allen, William S.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Burnet, David G. (David Gouverneur), 1788-1870</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Curtis, George, 1799-1884</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Dey, Anthony, 1776-1859</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Mason, John T. (John Thomson), 1787-1850</part>
</persname>
<persname source="local">
<part localtype="agent_person">Paulsen, G. H.</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sumner, William H. (William Hyslop), 1780-1861</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Turnbull, Jonathan</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Vehlein, Joseph</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Zavala, Lorenzo de, 1788-1836</part>
</persname>
<corpname rules="aacr">
<part localtype="agent_corporate_entity">Galveston Bay and Texas Land Company</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/457827"
id="ref12"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1828-1855" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1828">1828</fromdate>
<todate standarddate="1855">1855</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_76dc0f27a8e3495a2b2bc806fb8fd8a5">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, contains letters addressed to either Anthony Dey or the Galveston Bay Company, letters from Dey, as well as a few third party letters. Correspondence fragments are filed at the end of the series.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/457828"
id="ref14"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1828 Jun 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1828-06-07">1828 Jun 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457829"
id="ref15"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1829 Apr" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-04">1829 Apr</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457830"
id="ref16"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1830" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830">1830</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457831"
id="ref17"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1831" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831">1831</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4-5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457832"
id="ref18"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1832" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832">1832</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457833"
id="ref19"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1833" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1833">1833</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457834"
id="ref20"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1834" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834">1834</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">8-9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457835"
id="ref21"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1835" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1835">1835</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">10-11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457836"
id="ref22"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1836 Jan 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-01-18">1836 Jan 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457837"
id="ref23"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1849" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1849">1849</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457838"
id="ref24"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1850 Dec 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1850-12-02">1850 Dec 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457839"
id="ref25"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1851 Apr 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1851-04-16">1851 Apr 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457840"
id="ref26"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdatestructured altrender="1855 Jul 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1855-07-07">1855 Jul 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457841"
id="ref27"
level="file">
<did>
<unittitle>Correspondence</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457842"
id="ref28"
level="file">
<did>
<unittitle>Correspondence fragments</unittitle>
<unitdatestructured altrender="1831, n.d." label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831">1831, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">18-21</container>
<daoset altrender="/repositories/11/digital_objects/160136">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16710085"
identifier="oid:16710085"
linktitle="16 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16710095/full/!150,150/0/default.jpg"
identifier="oid:16710085"
linktitle="16 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16710085"
identifier="oid:16710085"
linktitle="16 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Correspondence fragments</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457843"
id="ref29"
level="file">
<did>
<unittitle>Correspondence fragment</unittitle>
<unitdatestructured altrender="[1834]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834">[1834]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59867 /locations/4051"
containerid="39002093668664"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">22</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/457844"
id="ref31"
level="series">
<did>
<unittitle>Agreements, Grants and Proposals</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.2</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<unitdatestructured altrender="1826-1835" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1826">1826</fromdate>
<todate standarddate="1835">1835</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_429da50af1ea5a7268e2eab581b3bf95">
<head>Scope and Contents</head>
<p>Series II, <title localtype="simple" render="italic">
<part>Agreements, Grants and Proposals</part>
</title>, is arranged chronologically.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/457845"
id="ref33"
level="file">
<did>
<unittitle>Copy of David G. Burnet's grant</unittitle>
<unitdatestructured altrender="1826 Dec 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1826-12-22">1826 Dec 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457846"
id="ref34"
level="file">
<did>
<unittitle>Translation of the grant to Lorenzo de Zavala</unittitle>
<unitdatestructured altrender="1829 Nov 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1829-11-10">1829 Nov 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457847"
id="ref35"
level="file">
<did>
<unittitle>Revoking agreement with Joseph R. Brazier</unittitle>
<unitdatestructured altrender="1830 Dec 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1830-12-25">1830 Dec 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457848"
id="ref36"
level="file">
<did>
<unittitle>Draft proposition of Barnabus Bartol</unittitle>
<unitdatestructured altrender="1831 Jan" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-01">1831 Jan</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457849"
id="ref37"
level="file">
<did>
<unittitle>Draft proposition of Daniel McLaren & Co.</unittitle>
<unitdatestructured altrender="1831 Jan" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-01">1831 Jan</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457850"
id="ref38"
level="file">
<did>
<unittitle>Agreement with Benjamin Poor</unittitle>
<unitdatestructured altrender="1831 Oct 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1831-10-11">1831 Oct 11</datesingle>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_ee70eaf7f12ae0e6e49e1a3fba886fb1">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref144">See: Oversize, box 4, folder 79</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457851"
id="ref40"
level="file">
<did>
<unittitle>Agreement with Jane M. McManus</unittitle>
<unitdatestructured altrender="1832 Sep 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-09-12">1832 Sep 12</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_61bfb23f29e7f5968574f55d3066f8a3">
<head>Scope and Contents</head>
<p>Three copies, two of them signed by McManus and Dey</p>
</scopecontent>
<relatedmaterial id="aspace_91056eb5b7db486dcf68d877fb415269">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref145">See: Oversize, box 4, folder 80.</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457852"
id="ref43"
level="file">
<did>
<unittitle>Anthony Dey's letter of attorney to Jane M. McManus authorizing her to sell scrip for labors of land</unittitle>
<unitdatestructured altrender="1832 Sep 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-09-12">1832 Sep 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">28</container>
</did>
<relatedmaterial id="aspace_f70379955c09ce57dfd398b09291329e">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref147">See also: Oversize, box 4, folder 81</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457853"
id="ref45"
level="file">
<did>
<unittitle>Contract with David Ayres</unittitle>
<unitdatestructured altrender="1832 Sep 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-09-19">1832 Sep 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457854"
id="ref46"
level="file">
<did>
<unittitle>Agreement with Barrett Ames</unittitle>
<unitdatestructured altrender="1832 Oct 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-10-16">1832 Oct 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457855"
id="ref47"
level="file">
<did>
<unittitle>Answer to proposal of Jane M. McManus</unittitle>
<unitdatestructured altrender="1832 Oct 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-10-26">1832 Oct 26</datesingle>
</unitdatestructured>
</did>
<relatedmaterial id="aspace_125878db912f18c10fac50e9b9c72a85">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref148">See: Oversize, box 4, folder 82</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457856"
id="ref49"
level="file">
<did>
<unittitle>Trustees letter of attorney to John T. Mason</unittitle>
<unitdatestructured altrender="1832 Nov 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-11-09">1832 Nov 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">31</container>
<daoset altrender="/repositories/11/digital_objects/160137">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16710086"
identifier="oid:16710086"
linktitle="10 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16710111/full/!150,150/0/default.jpg"
identifier="oid:16710086"
linktitle="10 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16710086"
identifier="oid:16710086"
linktitle="10 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Trustees letter of attorney to John T. Mason</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_d4149a6faade9e3a8b9385d097b36b52">
<head>Scope and Contents</head>
<p>One letter of attorney written on the verso of a printed broadsheet dated December 10, 1830</p>
</scopecontent>
<relatedmaterial id="aspace_fc26228a145496ff01d18c2a8b41eeb5">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref149">See also: Oversize, box 4, folder 83.</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457857"
id="ref52"
level="file">
<did>
<unittitle>Agreement with John Turnbull</unittitle>
<unitdatestructured altrender="1834 Jul 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-07-05">1834 Jul 5</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_4b25c493245f07c342b96d2b79662c3f">
<head>Scope and Contents</head>
<p>Two copies, both signed by Turnbull and Dey</p>
</scopecontent>
<relatedmaterial id="aspace_9adbc29118e8cf16d8c5400060a8df53">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref150">See: Oversize, box 4, folder 84.</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457858"
id="ref55"
level="file">
<did>
<unittitle>Agreement with George Henry Paulsen</unittitle>
<unitdatestructured altrender="1834 Oct 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-10-20">1834 Oct 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457859"
id="ref56"
level="file">
<did>
<unittitle>Agreement with Moses Willard Wetmore</unittitle>
<unitdatestructured altrender="1834 Dec 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-12-01">1834 Dec 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457860"
id="ref57"
level="file">
<did>
<unittitle>Agreement with Rollin C. Hall</unittitle>
<unitdatestructured altrender="1834 Dec 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1834-12-24">1834 Dec 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457861"
id="ref58"
level="file">
<did>
<unittitle>Schedule of Contracts made by A. Dey for the sale of Texas Scrip</unittitle>
<unitdatestructured altrender="1834-35" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1834">1834</fromdate>
<todate standarddate="1835">1835</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457862"
id="ref59"
level="file">
<did>
<unittitle>Agreement with William S. Allen</unittitle>
<unitdatestructured altrender="1835 Mar 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1835-03-13">1835 Mar 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457863"
id="ref60"
level="file">
<did>
<unittitle>Alphabetical list of names and addresses</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<relatedmaterial id="aspace_0a3fe6f590b0a75dc67ecdb2ba14616c">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref152">See: Oversize, box 4, folder 85</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457864"
id="ref62"
level="file">
<did>
<unittitle>Copy of Lorenzo de Zavala's grant</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">37-38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457865"
id="ref63"
level="file">
<did>
<unittitle>Form for the grants for land in Texas</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
</did>
<relatedmaterial id="aspace_bc31ed51e9deed3add3b90e90536f412">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref153">See: Oversize, box 4, folder 86</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/457866"
id="ref65"
level="file">
<did>
<unittitle>Proposal of surveyors Charles Zimpel & J. J. S. Hassler</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/457867"
id="ref66"
level="file">
<did>
<unittitle>Translation into Spanish, Trustees letter of attorney to Jose Antonio Mexia</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/59868 /locations/4051"
containerid="39002091591231"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">40</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/457868"
id="ref68"
level="series">
<did>
<unittitle>Court Actions</unittitle>
<unitid>Series III</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<unitdatestructured altrender="1832-1852" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1832">1832</fromdate>
<todate standarddate="1852">1852</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_427edce155550cf734c80fdda472abd1">
<head>Scope and Contents</head>
<p>Series III, <title localtype="simple" render="italic">
<part>Court Actions</part>