-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path10849.xml
4096 lines (4096 loc) · 260 KB
/
10849.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.hwalke">beinecke.hwalke</recordid>
<otherrecordid localtype="BIB">16289832</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to Henry Walke Artwork </titleproper>
<titleproper localtype="filing">Walke (Henry) Artwork</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>June 2022</date>
<num>WA MSS S-3349</num>
</publicationstmt>
<notestmt>
<controlnote localtype="onsite">
<p>Boxes: 1 (Art), 2-3 (Oversize), 4-5 (Oversize), 8 (Oversize), 11 (Oversize), 12-18 (Broadside), 19 (Oversize)</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 6-7, 9-10, 20-22</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>dacs</abbr>
<citation>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-09T00:31: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:31</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/10849" level="collection">
<did>
<unittitle>Henry Walke artwork</unittitle>
<unitid>WA MSS S-3349</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>22.47</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">14 boxes + 1 art, 7 broadside</physdesc>
<unitdatestructured altrender="1827-1917" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1827">1827</fromdate>
<todate standarddate="1917">1917</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_a81e0d00a44b01154386f4cbe3cb66b5">The collection consists of watercolors, lithographs, oil paintings, and drawings by American naval officer Henry Walke, depicting scenes from the American Civil War and Mexican-American War, as well as landscapes and maritime scenes from expeditions with the United States Navy to Europe, South America, the Middle East, and Africa.</abstract>
<origination label="Creator">
<persname relator="art">
<part localtype="agent_person">Walke, Henry, 1808-1896</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_f3caedbceabe3db6a05a12cacc35119b">
<head>Conditions Governing Access</head>
<p>This collection is open for research.</p>
</accessrestrict>
<acqinfo id="aspace_3b40110c0ebb9d2e32817cf43da1d3be">
<head>Immediate Source of Acquisition</head>
<p>Purchased from H.W. Jesse Jenckes on the Fedrick W. and Carrie S. Beinecke Fund for Western Americana, 2018.</p>
</acqinfo>
<arrangement id="aspace_35b821829b6039c71fd4c011589b3c48">
<head>Arrangement</head>
<p>Organized into two series: I. Artwork, 1827-circa 1877, undated. II. Papers, 1861-1917, undated.</p>
</arrangement>
<bioghist id="aspace_aa9fcdf602a4ed5b28b8fe925b9e6847">
<head>Henry Walke (1808-1896)</head>
<p>Rear Admiral Henry Walke was an American naval officer and artist born in Princess Anne County, Virginia, to Anthony Walke, a Yale College graduate and former American diplomat, and Susan Carmichael Walke. During the Mexican-American War, he was executive officer of the bomb-brig <title>
<part>Vesuvius</part>
</title>, which supported U.S. Army blockades of the Gulf ports of Veracruz, Alvarado, Tuxpan, and Villahermosa. In 1847 and 1848, Sarony & Major of New York City published his <title>
<part>Naval Portfolio: Naval Scenes in the Mexican War by H. Walke, lieut., U.S. Navy</part>
</title>. In the early part of the Civil War, Walke commanded the USS <title>
<part>Tyler</part>
</title> and USS <title>
<part>Carondelet</part>
</title> in the Western Theater, supporting Union forces during the Battle of Belmont and operations against Fort Henry, Fort Donelson, and Island Number 10. Walke also commanded the USS <title>
<part>Lafayette</part>
</title>, assigned to the Union Army's Mississippi River Squadron during the Battle of Vicksburg and the Red River Campaign. After serving more than 40 years in the Navy, Walke retired from active duty in 1873 and moved to Brooklyn, New York, where he worked as a writer and artist until his death. His watercolor and oil paintings were primarily based on his sketches of landscapes and maritime scenes, including Civil War engagements at Belmont, Fort Henry, and Grand Gulf. He authored and illustrated <title>
<part>Naval Scenes and Reminiscences of the Civil War</part>
</title> (1877).</p>
</bioghist>
<prefercite id="aspace_e3b93bac0ce02a6713362f9c14f27d42">
<head>Preferred Citation</head>
<p>Henry Walke Artwork. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_7ebf48cd0e1edd43cd78e961f9a2f741">
<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. Most folder titles appearing in the contents list below were transcribed from the recto or verso of the artwork. Otherwise, folder titles were supplied by staff during 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_a183b204c9fe9eb42acfc7cdeefc3b5b">
<head>Scope and Contents</head>
<p>The collection consists of watercolors, lithographs, oil paintings, and drawings by American naval officer Henry Walke, depicting scenes from the American Civil War and Mexican-American War, as well as expeditions with the United States Navy to Europe, South America, the Middle East, and Africa. Included are paintings of Union ships commanded by Walke, such as the USS <title>
<part>Carondelet</part>
</title>, and Civil War battles of Belmont, Fort Donelson, Fort Henry, Island Number Ten, and Grand Gulf. The collection also contains paintings and drawings of maritime scenes, landscapes, ancient ruins, monuments, buildings, and religious sites in Angola, Australia, Brazil, Equatorial Guinea, Ireland, Israel, Italy, South Africa, and Syria. Additionally included are a few photographs, broadsides, and printed material by or related to Walke.</p>
</scopecontent>
<userestrict id="aspace_af677a949770c51e8b41b3b0799fa149">
<head>Conditions Governing Use</head>
<p>Henry Walke Artwork 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 source="local">
<part localtype="genre_form">Drawings (visual works)</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Lithographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Oil paintings (visual works)</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Photographs</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Watercolors (paintings)</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</genreform>
<geogname source="local_beinecke">
<part localtype="geographic">Angola</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Australia</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008114458"
source="lcsh">
<part localtype="geographic">Brazil</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Equatorial Guinea</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008115503"
source="lcsh">
<part localtype="geographic">Ireland</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008115539"
source="lcsh">
<part localtype="geographic">Israel</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Italy</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2007100313"
source="lcsh">
<part localtype="geographic">Mexico</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Mississippi River</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh2008116995"
source="lcsh">
<part localtype="geographic">South Africa</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname source="local_beinecke">
<part localtype="geographic">Syria</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85140241"
source="lcsh">
<part localtype="geographic">United States</part>
<part localtype="topical">History</part>
<part localtype="temporal">Civil War, 1861-1865</part>
<part localtype="genre_form">Pictorial works</part>
</geogname>
<occupation source="local">
<part localtype="occupation">Artists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85007979"
source="lcsh">
<part localtype="topical">Art and war</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Belmont, Battle of, Belmont, Mo., 1861</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Fort Donelson, Battle of, Tenn., 1862</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject source="local_beinecke">
<part localtype="topical">Fort Henry, Battle of, Tenn., 1862</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85081126"
source="lcsh">
<part localtype="topical">Marine art</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010007114"
source="lcsh">
<part localtype="topical">Mexican War, 1846-1848</part>
<part localtype="topical">Campaigns</part>
<part localtype="geographic">Mexico</part>
<part localtype="genre_form">Pictorial works</part>
</subject>
<persname>
<part localtype="agent_person">Walke, Henry, 1808-1896</part>
</persname>
<corpname>
<part localtype="agent_corporate_entity">Carondolet (Gunboat)</part>
</corpname>
<corpname>
<part localtype="agent_corporate_entity">United States. Navy (Officers)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/3502366"
id="aspace_184035974a5c4a48d843ea531faf33db"
level="series">
<did>
<unittitle>Artwork</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>18.72</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<unitdatestructured altrender="1827-circa 1877, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1827">1827</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_5f0865b8f5ca567871963b768541d17f">
<head>Scope and Contents</head>
<p>This series contains paintings, lithographs, and drawings depicting scenes from the Western Theater of the Civil War, United States naval expeditions under the command of M. C. Perry during the Mexican-American War, and various locations visited by Henry Walke during his naval career, in addition to landscapes and pastoral scenes from America.</p>
</scopecontent>
<arrangement id="aspace_1980617582da090404d0bb9550a98956">
<head>Arrangement</head>
<p>Organized into three subseries: Civil War, Mexican-American War, and Other.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3502368"
id="aspace_994cb70d607e88dcf7ce15857c0b8f0d"
level="subseries">
<did>
<unittitle>Civil War</unittitle>
</did>
<scopecontent id="aspace_98a5f8f4b84dee4cd035683900f3b1e3">
<head>Scope and Contents</head>
<p>This subseries contains Walke's paintings, lithographs, and drawings of early Civil War battles, engagements of the Mississippi River Squadron, and scenes of vessels he commanded, such as the Carondelet and Tyler.</p>
</scopecontent>
<arrangement id="aspace_f03c26325ad51a137a49f73c5668853e">
<head>Arrangement</head>
<p>Organized under three subheadings: Paintings, Lithographs, and Drawings. Within each subheading, materials maintain order found at time of acquisition.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/3502374"
id="aspace_1cdbe5158a234cf46277ab6ed6345287"
level="file">
<did>
<unittitle>Paintings</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/3502396"
id="aspace_86f4504bf49df363684af09f47b68e75"
level="item">
<did>
<unittitle>Naval Battle of Belmont with people and horses at home in foreground</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_86f4504bf49df363684af09f47b68e75_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_86f4504bf49df363684af09f47b68e75_c2"
localtype="folder"
parent="aspace_86f4504bf49df363684af09f47b68e75_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502397"
id="aspace_4802df4d495b49b72412591df100cd57"
level="item">
<did>
<unittitle>Carondelet - Confederate Ram Fleet - Flag Steamer Benton - Cincinnati - Mound City - St. Louis - Pittsburg - Cairo</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389068"
containerid="39002140879389"
encodinganalog="flat box (22d 3h 28w)"
id="aspace_4802df4d495b49b72412591df100cd57_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_4802df4d495b49b72412591df100cd57_c2"
localtype="folder"
parent="aspace_4802df4d495b49b72412591df100cd57_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502398"
id="aspace_cec5f433a271737ba0bd8d9a109adece"
level="item">
<did>
<unittitle>Four gun and eight guns Battle of Ft. Donelson</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389069"
containerid="39002140879397"
encodinganalog="flat box (20d 1h 24w)"
id="aspace_cec5f433a271737ba0bd8d9a109adece_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_cec5f433a271737ba0bd8d9a109adece_c2"
localtype="folder"
parent="aspace_cec5f433a271737ba0bd8d9a109adece_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502399"
id="aspace_9ff923ecf2d40d4e9bb708a6955cdbd4"
level="item">
<did>
<unittitle>Battle of Ft. Henry, Kentucky</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389069"
containerid="39002140879397"
encodinganalog="flat box (20d 1h 24w)"
id="aspace_9ff923ecf2d40d4e9bb708a6955cdbd4_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_9ff923ecf2d40d4e9bb708a6955cdbd4_c2"
localtype="folder"
parent="aspace_9ff923ecf2d40d4e9bb708a6955cdbd4_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502400"
id="aspace_5128e9db1ce35402c7c60017d6dc7b41"
level="item">
<did>
<unittitle>U.S. Gunboat Carondelet capturing the Confederate Forts below Island #10, April 6, 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389069"
containerid="39002140879397"
encodinganalog="flat box (20d 1h 24w)"
id="aspace_5128e9db1ce35402c7c60017d6dc7b41_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_5128e9db1ce35402c7c60017d6dc7b41_c2"
localtype="folder"
parent="aspace_5128e9db1ce35402c7c60017d6dc7b41_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502401"
id="aspace_bd030a5978f498f56b114536396510d5"
level="item">
<did>
<unittitle>Battle of Ft. Donelson, Feb 13, 1862 - U.S. Gunboat Carondelet</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389069"
containerid="39002140879397"
encodinganalog="flat box (20d 1h 24w)"
id="aspace_bd030a5978f498f56b114536396510d5_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_bd030a5978f498f56b114536396510d5_c2"
localtype="folder"
parent="aspace_bd030a5978f498f56b114536396510d5_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502402"
id="aspace_d5fed82a50320b555f73229d11df73df"
level="item">
<did>
<unittitle>June 5, 1862 Randolph - Mississippi River - Confederate Gunboats searching for a canoe bearing dispatches to Admiral Farragut</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389068"
containerid="39002140879389"
encodinganalog="flat box (22d 3h 28w)"
id="aspace_d5fed82a50320b555f73229d11df73df_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_d5fed82a50320b555f73229d11df73df_c2"
localtype="folder"
parent="aspace_d5fed82a50320b555f73229d11df73df_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502403"
id="aspace_c3129b973381fa2e617f71ec931cc9f1"
level="item">
<did>
<unittitle>U.S. Flotilla Bombarding the Confederate batteries above Island No 10 March 17, 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389068"
containerid="39002140879389"
encodinganalog="flat box (22d 3h 28w)"
id="aspace_c3129b973381fa2e617f71ec931cc9f1_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_c3129b973381fa2e617f71ec931cc9f1_c2"
localtype="folder"
parent="aspace_c3129b973381fa2e617f71ec931cc9f1_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502404"
id="aspace_7356c1cfa23ae562afde19d4b10742c7"
level="item">
<did>
<unittitle>"This view of running the gauntlet at Vicksburg is very good and true to era" - John S. Tennyson [written on verso]</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389068"
containerid="39002140879389"
encodinganalog="flat box (22d 3h 28w)"
id="aspace_7356c1cfa23ae562afde19d4b10742c7_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_7356c1cfa23ae562afde19d4b10742c7_c2"
localtype="folder"
parent="aspace_7356c1cfa23ae562afde19d4b10742c7_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502405"
id="aspace_31f9f5cc6a359a617f3070e4336f4feb"
level="item">
<did>
<unittitle>Battle of Belmont</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389068"
containerid="39002140879389"
encodinganalog="flat box (22d 3h 28w)"
id="aspace_31f9f5cc6a359a617f3070e4336f4feb_c1"
label="Mixed Materials"
localtype="box">3 (Oversize)</container>
<container id="aspace_31f9f5cc6a359a617f3070e4336f4feb_c2"
localtype="folder"
parent="aspace_31f9f5cc6a359a617f3070e4336f4feb_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502406"
id="aspace_ec821368f8363af029ee6c164de6efb5"
level="item">
<did>
<unittitle>Battle of Fort Henry (No. 2)</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_ec821368f8363af029ee6c164de6efb5_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ec821368f8363af029ee6c164de6efb5_c2"
localtype="folder"
parent="aspace_ec821368f8363af029ee6c164de6efb5_c1">69</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502407"
id="aspace_f91cb5d864df1db90b47625e4ed991b1"
level="item">
<did>
<unittitle>Carondelet on a reconnoiter of the Yazoo July 15th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_f91cb5d864df1db90b47625e4ed991b1_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_f91cb5d864df1db90b47625e4ed991b1_c2"
localtype="folder"
parent="aspace_f91cb5d864df1db90b47625e4ed991b1_c1">70</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502408"
id="aspace_18930dab648dd2e3bc17c7cc00b241b2"
level="item">
<did>
<unittitle>On board the U S Gunboat Taylor [sic] in the battle of Belmont, Mississippi River</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_18930dab648dd2e3bc17c7cc00b241b2_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_18930dab648dd2e3bc17c7cc00b241b2_c2"
localtype="folder"
parent="aspace_18930dab648dd2e3bc17c7cc00b241b2_c1">71</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502409"
id="aspace_a470d3182a0d7424dbb237682adfe52a"
level="item">
<did>
<unittitle>Untitled [inside of ship with three men at wheel and explosions occurring]</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389071 /locations/9"
containerid="39002140879447"
encodinganalog="flat box (11d 1h 14w)"
id="aspace_a470d3182a0d7424dbb237682adfe52a_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_a470d3182a0d7424dbb237682adfe52a_c2"
localtype="folder"
parent="aspace_a470d3182a0d7424dbb237682adfe52a_c1">134</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502410"
id="aspace_798fd93db8f7ac72ed1cea1728307a1b"
level="item">
<did>
<unittitle>U S Gunboat Carondelet passing the rebel batteries at Island No 10 April 4th 1862; Map of Mississippi River and Island No 10 drawn on the verso</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389072"
containerid="39002140879439"
encodinganalog="flat box (17d 3h 21w)"
id="aspace_798fd93db8f7ac72ed1cea1728307a1b_c1"
label="Mixed Materials"
localtype="box">8 (Oversize)</container>
<container id="aspace_798fd93db8f7ac72ed1cea1728307a1b_c2"
localtype="folder"
parent="aspace_798fd93db8f7ac72ed1cea1728307a1b_c1">119</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502411"
id="aspace_0aff7c60caf2c41bbec8f92eb861ac64"
level="item">
<did>
<unittitle>Queen of West - Taylor...Vicksburg Transports General Sumter - General Bragg - Lancaster July 15th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_0aff7c60caf2c41bbec8f92eb861ac64_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_0aff7c60caf2c41bbec8f92eb861ac64_c2"
localtype="folder"
parent="aspace_0aff7c60caf2c41bbec8f92eb861ac64_c1">72</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502412"
id="aspace_d60d278fd6ef3b5402da5d47698f186c"
level="item">
<did>
<unittitle>Queen of the West - Taylor - the Carondelet and R. Ram Arkansas parting company on the Yazoo River, July 15th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_d60d278fd6ef3b5402da5d47698f186c_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_d60d278fd6ef3b5402da5d47698f186c_c2"
localtype="folder"
parent="aspace_d60d278fd6ef3b5402da5d47698f186c_c1">73</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502413"
id="aspace_1e119e827dcfb6c6b101c2ce97874867"
level="item">
<did>
<unittitle>The Rebel Ram Arkansas closely engaged with the U S Gunboat Carondelet in the Yazoo River July 15th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_1e119e827dcfb6c6b101c2ce97874867_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_1e119e827dcfb6c6b101c2ce97874867_c2"
localtype="folder"
parent="aspace_1e119e827dcfb6c6b101c2ce97874867_c1">74</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502414"
id="aspace_64d9136c20c21de6f4a86cec8b9db413"
level="item">
<did>
<unittitle>Capturing the rebel batteries below Island No 10 April 7th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_64d9136c20c21de6f4a86cec8b9db413_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_64d9136c20c21de6f4a86cec8b9db413_c2"
localtype="folder"
parent="aspace_64d9136c20c21de6f4a86cec8b9db413_c1">75</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502415"
id="aspace_63880bef06ac8add3d9f7e3a138c0c86"
level="item">
<did>
<unittitle>The Confederate Gunboat Alabama, sunk by the U S Gunboat Kearsarge in the British Channel off Cherbourg, France June 19, 1864</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_63880bef06ac8add3d9f7e3a138c0c86_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_63880bef06ac8add3d9f7e3a138c0c86_c2"
localtype="folder"
parent="aspace_63880bef06ac8add3d9f7e3a138c0c86_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502416"
id="aspace_f631e51c1889e1597ab23b2c919fc9b6"
level="item">
<did>
<unittitle>Porter's Mortar Fleet - Farragut's fleet passing the fort New Orleans</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389072"
containerid="39002140879439"
encodinganalog="flat box (17d 3h 21w)"
id="aspace_f631e51c1889e1597ab23b2c919fc9b6_c1"
label="Mixed Materials"
localtype="box">8 (Oversize)</container>
<container id="aspace_f631e51c1889e1597ab23b2c919fc9b6_c2"
localtype="folder"
parent="aspace_f631e51c1889e1597ab23b2c919fc9b6_c1">120</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502417"
id="aspace_b68e33c362d34d2d7c4cd7cb39e856da"
level="item">
<did>
<unittitle>Farragut passing Fort Hudson - Hartford - Mississippi - Richmond</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_b68e33c362d34d2d7c4cd7cb39e856da_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_b68e33c362d34d2d7c4cd7cb39e856da_c2"
localtype="folder"
parent="aspace_b68e33c362d34d2d7c4cd7cb39e856da_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502418"
id="aspace_169c51768f2d9c47a94a4683035fdad4"
level="item">
<did>
<unittitle>Battle of Mobile</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_169c51768f2d9c47a94a4683035fdad4_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_169c51768f2d9c47a94a4683035fdad4_c2"
localtype="folder"
parent="aspace_169c51768f2d9c47a94a4683035fdad4_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502419"
id="aspace_fafd34eaa58630f48ee8439dc4217f2d"
level="item">
<did>
<unittitle>Battle of New Orleans</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_fafd34eaa58630f48ee8439dc4217f2d_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_fafd34eaa58630f48ee8439dc4217f2d_c2"
localtype="folder"
parent="aspace_fafd34eaa58630f48ee8439dc4217f2d_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502420"
id="aspace_2ab8635577f02b6f12a942d017d69fad"
level="item">
<did>
<unittitle>The U States Flotilla under the Command of R Admiral DD Porter passing Vicksburg Batteries April 16th 1863</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_2ab8635577f02b6f12a942d017d69fad_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_2ab8635577f02b6f12a942d017d69fad_c2"
localtype="folder"
parent="aspace_2ab8635577f02b6f12a942d017d69fad_c1">76</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502421"
id="aspace_f2c39124db83323e8186e8a0e3ed559e"
level="item">
<did>
<unittitle>The Battle of Grand Gulf, 2nd position about 11 o'clock am</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_f2c39124db83323e8186e8a0e3ed559e_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_f2c39124db83323e8186e8a0e3ed559e_c2"
localtype="folder"
parent="aspace_f2c39124db83323e8186e8a0e3ed559e_c1">77</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502422"
id="aspace_b46a2acc667e6f41a3ca5b6d72119534"
level="item">
<did>
<unittitle>The Battle of Grand Gulf 1st Position April 29th 1863 at 10 o'clock am</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_b46a2acc667e6f41a3ca5b6d72119534_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_b46a2acc667e6f41a3ca5b6d72119534_c2"
localtype="folder"
parent="aspace_b46a2acc667e6f41a3ca5b6d72119534_c1">78</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502423"
id="aspace_ff9344f01056856140760fe7b4653f95"
level="item">
<did>
<unittitle>Interior battle scene on board of the U States Ram Gunboat Carondelet Com H Walke - Battle of Fort Donelson Febry 11th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_ff9344f01056856140760fe7b4653f95_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ff9344f01056856140760fe7b4653f95_c2"
localtype="folder"
parent="aspace_ff9344f01056856140760fe7b4653f95_c1">79</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502424"
id="aspace_fd66a4ffdc8d3efabb5142e03c356ccf"
level="item">
<did>
<unittitle>United States Gunboat Carondelet passing the rebel batteries at Island Number Ten April 4th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389067"
containerid="39002140879371"
encodinganalog="flat box (21d 3h 25w)"
id="aspace_fd66a4ffdc8d3efabb5142e03c356ccf_c1"
label="Mixed Materials"
localtype="box">2 (Oversize)</container>
<container id="aspace_fd66a4ffdc8d3efabb5142e03c356ccf_c2"
localtype="folder"
parent="aspace_fd66a4ffdc8d3efabb5142e03c356ccf_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502425"
id="aspace_769d1b342a2c81aa25325e9ac0bfecfd"
level="item">
<did>
<unittitle>The Retreating Confederate fleet at the Battle of Memphis June 6th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_769d1b342a2c81aa25325e9ac0bfecfd_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_769d1b342a2c81aa25325e9ac0bfecfd_c2"
localtype="folder"
parent="aspace_769d1b342a2c81aa25325e9ac0bfecfd_c1">80</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502426"
id="aspace_9dab3abb9d906995f39765485f77b722"
level="item">
<did>
<unittitle>Rebels vessels on fire - City of Memphis in the distance June 6th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_9dab3abb9d906995f39765485f77b722_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_9dab3abb9d906995f39765485f77b722_c2"
localtype="folder"
parent="aspace_9dab3abb9d906995f39765485f77b722_c1">81</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/3502427"
id="aspace_75de0e1f6aa51984764be6b8893855c8"
level="item">
<did>
<unittitle>Battle of Memphis June 6th 1862</unittitle>
<unitdatestructured altrender="circa 1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1877">1877</fromdate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/389070 /locations/9"
containerid="39002140879413"
encodinganalog="flat box (14d 3h 18w)"
id="aspace_75de0e1f6aa51984764be6b8893855c8_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_75de0e1f6aa51984764be6b8893855c8_c2"
localtype="folder"
parent="aspace_75de0e1f6aa51984764be6b8893855c8_c1">82</container>